display p2pstdio stderr after auth
Display error messages that come from git-annex-shell when the p2p protocol is used, so that diskreserve messages, IO errors, etc from the remote side are visible again. Felt like it should perhaps use outputError, so --json-error-messages would include these, but as an async IO action, it can't, and this would need MessageState to be converted to a tvar. Anyway, when not using p2pstdio, that's not done; nor is it done for stderr from external special remotes or other commands, so punted on the idea for now. This commit was sponsored by mo on Patreon.
This commit is contained in:
parent
90a3afb60f
commit
760f66829a
3 changed files with 64 additions and 10 deletions
|
@ -11,6 +11,9 @@ git-annex (6.20180530) UNRELEASED; urgency=medium
|
|||
by replying to the GETINFO message.
|
||||
* adb: Android serial numbers are not all 16 characters long, so accept
|
||||
other lengths.
|
||||
* Display error messages that come from git-annex-shell when the p2p
|
||||
protocol is used, so that diskreserve messages, IO errors, etc from
|
||||
the remote side are visible again.
|
||||
|
||||
-- Joey Hess <id@joeyh.name> Wed, 30 May 2018 11:49:08 -0400
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@ import qualified P2P.IO as P2P
|
|||
import qualified P2P.Annex as P2P
|
||||
|
||||
import Control.Concurrent.STM
|
||||
import Control.Concurrent.Async
|
||||
import qualified Data.ByteString as B
|
||||
|
||||
toRepo :: ConsumeStdin -> Git.Repo -> RemoteGitConfig -> SshCommand -> Annex (FilePath, [CommandParam])
|
||||
toRepo cs r gc remotecmd = do
|
||||
|
@ -186,12 +188,15 @@ contentLockedMarker = "OK"
|
|||
|
||||
-- A connection over ssh to git-annex shell speaking the P2P protocol.
|
||||
type P2PSshConnection = P2P.ClosableConnection
|
||||
(P2P.RunState, P2P.P2PConnection, ProcessHandle)
|
||||
(P2P.RunState, P2P.P2PConnection, ProcessHandle, TVar StderrHandlerState)
|
||||
|
||||
data StderrHandlerState = DiscardStderr | DisplayStderr | EndStderrHandler
|
||||
|
||||
closeP2PSshConnection :: P2PSshConnection -> IO (P2PSshConnection, Maybe ExitCode)
|
||||
closeP2PSshConnection P2P.ClosedConnection = return (P2P.ClosedConnection, Nothing)
|
||||
closeP2PSshConnection (P2P.OpenConnection (_st, conn, pid)) = do
|
||||
closeP2PSshConnection (P2P.OpenConnection (_st, conn, pid, stderrhandlerst)) = do
|
||||
P2P.closeConnection conn
|
||||
atomically $ writeTVar stderrhandlerst EndStderrHandler
|
||||
exitcode <- waitForProcess pid
|
||||
return (P2P.ClosedConnection, Just exitcode)
|
||||
|
||||
|
@ -245,14 +250,12 @@ openP2PSshConnection r connpool = do
|
|||
return Nothing
|
||||
Just (cmd, params) -> start cmd params =<< getRepo r
|
||||
where
|
||||
start cmd params repo = liftIO $ withNullHandle $ \nullh -> do
|
||||
-- stderr is discarded because old versions of git-annex
|
||||
-- shell always error
|
||||
(Just from, Just to, Nothing, pid) <- createProcess $
|
||||
start cmd params repo = liftIO $ do
|
||||
(Just from, Just to, Just err, pid) <- createProcess $
|
||||
(proc cmd (toCommand params))
|
||||
{ std_in = CreatePipe
|
||||
, std_out = CreatePipe
|
||||
, std_err = UseHandle nullh
|
||||
, std_err = CreatePipe
|
||||
}
|
||||
let conn = P2P.P2PConnection
|
||||
{ P2P.connRepo = repo
|
||||
|
@ -260,14 +263,17 @@ openP2PSshConnection r connpool = do
|
|||
, P2P.connIhdl = to
|
||||
, P2P.connOhdl = from
|
||||
}
|
||||
stderrhandlerst <- newStderrHandler err
|
||||
runst <- P2P.mkRunState P2P.Client
|
||||
let c = P2P.OpenConnection (runst, conn, pid)
|
||||
let c = P2P.OpenConnection (runst, conn, pid, stderrhandlerst)
|
||||
-- When the connection is successful, the remote
|
||||
-- will send an AUTH_SUCCESS with its uuid.
|
||||
let proto = P2P.postAuth $
|
||||
P2P.negotiateProtocolVersion P2P.maxProtocolVersion
|
||||
tryNonAsync (P2P.runNetProto runst conn proto) >>= \case
|
||||
Right (Right (Just theiruuid)) | theiruuid == uuid r ->
|
||||
Right (Right (Just theiruuid)) | theiruuid == uuid r -> do
|
||||
atomically $
|
||||
writeTVar stderrhandlerst DisplayStderr
|
||||
return $ Just c
|
||||
_ -> do
|
||||
(cclosed, exitcode) <- closeP2PSshConnection c
|
||||
|
@ -286,6 +292,33 @@ openP2PSshConnection r connpool = do
|
|||
modifyTVar' connpool $
|
||||
maybe (Just P2PSshUnsupported) Just
|
||||
|
||||
newStderrHandler :: Handle -> IO (TVar StderrHandlerState)
|
||||
newStderrHandler errh = do
|
||||
-- stderr from git-annex-shell p2pstdio is initially discarded
|
||||
-- because old versions don't support the command. Once it's known
|
||||
-- to be running, this is changed to DisplayStderr.
|
||||
v <- newTVarIO DiscardStderr
|
||||
p <- async $ go v
|
||||
void $ async $ ender p v
|
||||
return v
|
||||
where
|
||||
go v = do
|
||||
l <- B.hGetLine errh
|
||||
atomically (readTVar v) >>= \case
|
||||
DiscardStderr -> go v
|
||||
DisplayStderr -> do
|
||||
B.hPut stderr l
|
||||
go v
|
||||
EndStderrHandler -> return ()
|
||||
|
||||
ender p v = do
|
||||
atomically $ do
|
||||
readTVar v >>= \case
|
||||
EndStderrHandler -> return ()
|
||||
_ -> retry
|
||||
hClose errh
|
||||
cancel p
|
||||
|
||||
-- Runs a P2P Proto action on a remote when it supports that,
|
||||
-- otherwise the fallback action.
|
||||
runProto :: Remote -> P2PSshConnectionPool -> a -> Annex a -> P2P.Proto a -> Annex (Maybe a)
|
||||
|
@ -304,7 +337,7 @@ runProto r connpool bad fallback proto = Just <$>
|
|||
|
||||
runProtoConn :: P2P.Proto a -> P2PSshConnection -> Annex (P2PSshConnection, Maybe a)
|
||||
runProtoConn _ P2P.ClosedConnection = return (P2P.ClosedConnection, Nothing)
|
||||
runProtoConn a conn@(P2P.OpenConnection (runst, c, _pid)) = do
|
||||
runProtoConn a conn@(P2P.OpenConnection (runst, c, _, _)) = do
|
||||
P2P.runFullProto runst c a >>= \case
|
||||
Right r -> return (conn, Just r)
|
||||
-- When runFullProto fails, the connection is no longer
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
`git-annex-shell p2pstdio` hides error messages that were transported over
|
||||
ssh to display to the user before. For example, diskreserve problems or IO
|
||||
errors. --[[Joey]]
|
||||
|
||||
git-annex discards stderr from the command because old
|
||||
versions of git-annex-shell don't support the command and error out.
|
||||
|
||||
Simply letting stderr through seems like the best solution though,
|
||||
if a way can be found to do it.
|
||||
Otherwise, all errors would have to be trapped (easy), and all stderr
|
||||
output also trapped (hard!), to be sent over the protocol using ERROR.
|
||||
And, there'd be a problem with sending messages atomically; if a message is
|
||||
being sent and an exception is thrown, that message needs to somehow be
|
||||
ended before an ERROR message can be sent.
|
||||
|
||||
Hmm, it negotiates the protocol version after opening the connection.
|
||||
Any error at that point would make it not use the p2p protocol,
|
||||
so can be excluded. Then, after version negotiation is complete, it
|
||||
could start displaying stderr.
|
||||
|
||||
> [[fixed|done]] --[[Joey]]
|
||||
|
|
Loading…
Add table
Reference in a new issue