aboutsummaryrefslogtreecommitdiffstats
path: root/clients
diff options
context:
space:
mode:
authorAlberto Cortés <alcortesm@gmail.com>2016-10-27 20:12:24 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-10-27 18:12:24 +0000
commit5944d8a185ff1f91e0e108dab1d756fd88692c3b (patch)
tree06d6fc8f9c8c6a579d518d289ffab8be70ce008d /clients
parent0c6c4047155692caff733d0cd239b80508b7bd04 (diff)
downloadgo-git-5944d8a185ff1f91e0e108dab1d756fd88692c3b.tar.gz
Fix ssh workflow (#96)
* Fix #80 We were sending an additional `\n` to the server when sending the upload request, see clients/ssh/git_upload_pack.go:174: fmt.Fprintln(si, r.String()) The reason for this was to flush the input stream, otherwise, the message was not send to the server. Also, we were (and still are) not checking remote execution errors, so we were unaware of this error, reading the first portion of the packfile as if nothing were wrong. On the few ocasions when the server was quick enough to fail before sending the full packfile, one of our tests (the one that checks the received packfile size) failed. We were also escaping the repository name in the remote command execution string incorrectly. Now we are: - using ssh.Run to run the remote command, instead of start and wait, which is the same but simpler. - using io.Copy instead of fmt.Fprintln, so we avoid adding and extra EOL and also we don't use a line buffered stream. and we no longer have to flush it. - we are closing the input stream as soon as possible, so the remote command can exit also as soon as possible. - the remote command escape character (') is used correctly * WIP * ssh: return remote command exit value when closing the packfile stream
Diffstat (limited to 'clients')
-rw-r--r--clients/ssh/git_upload_pack.go128
-rw-r--r--clients/ssh/git_upload_pack_test.go15
2 files changed, 91 insertions, 52 deletions
diff --git a/clients/ssh/git_upload_pack.go b/clients/ssh/git_upload_pack.go
index 3bdb64f..e3b59a5 100644
--- a/clients/ssh/git_upload_pack.go
+++ b/clients/ssh/git_upload_pack.go
@@ -2,15 +2,14 @@
package ssh
import (
- "bufio"
"bytes"
"errors"
"fmt"
"io"
- "io/ioutil"
"strings"
"gopkg.in/src-d/go-git.v4/clients/common"
+ "gopkg.in/src-d/go-git.v4/formats/packp/advrefs"
"golang.org/x/crypto/ssh"
)
@@ -24,6 +23,8 @@ var (
ErrUploadPackAnswerFormat = errors.New("git-upload-pack bad answer format")
ErrUnsupportedVCS = errors.New("only git is supported")
ErrUnsupportedRepo = errors.New("only github.com is supported")
+
+ nak = []byte("0008NAK\n")
)
// GitUploadPackService holds the service information.
@@ -134,11 +135,10 @@ func (s *GitUploadPackService) Disconnect() (err error) {
return s.client.Close()
}
-// Fetch retrieves the GitUploadPack form the repository.
-// You must be connected to the repository before using this method
-// (using the ConnectWithAuth() method).
-// TODO: fetch should really reuse the info session instead of openning a new
-// one
+// Fetch returns a packfile for a given upload request. It opens a new
+// SSH session on a connected GitUploadPackService, sends the given
+// upload request to the server and returns a reader for the received
+// packfile. Closing the returned reader will close the SSH session.
func (s *GitUploadPackService) Fetch(r *common.GitUploadPackRequest) (rc io.ReadCloser, err error) {
if !s.connected {
return nil, ErrNotConnected
@@ -146,69 +146,97 @@ func (s *GitUploadPackService) Fetch(r *common.GitUploadPackRequest) (rc io.Read
session, err := s.client.NewSession()
if err != nil {
- return nil, err
+ return nil, fmt.Errorf("cannot open SSH session: %s", err)
}
- defer func() {
- // the session can be closed by the other endpoint,
- // therefore we must ignore a close error.
- _ = session.Close()
- }()
-
si, err := session.StdinPipe()
if err != nil {
- return nil, err
+ return nil, fmt.Errorf("cannot pipe remote stdin: %s", err)
}
so, err := session.StdoutPipe()
if err != nil {
- return nil, err
- }
-
- if err := session.Start(s.getCommand()); err != nil {
- return nil, err
+ return nil, fmt.Errorf("cannot pipe remote stdout: %s", err)
}
+ done := make(chan error)
go func() {
- fmt.Fprintln(si, r.String())
- err = si.Close()
+ done <- session.Run(s.getCommand())
}()
- // TODO: investigate this *ExitError type (command fails or
- // doesn't complete successfully), as it is happenning all
- // the time, but everything seems to work fine.
- if err := session.Wait(); err != nil {
- if _, ok := err.(*ssh.ExitError); !ok {
- return nil, err
- }
- }
-
- // read until the header of the second answer
- soBuf := bufio.NewReader(so)
- token := "0000"
- for {
- var line string
- line, err = soBuf.ReadString('\n')
- if err == io.EOF {
- return nil, ErrUploadPackAnswerFormat
- }
- if line[0:len(token)] == token {
- break
- }
- }
-
- data, err := ioutil.ReadAll(soBuf)
+ if err := skipAdvRef(so); err != nil {
+ return nil, fmt.Errorf("skipping advertised-refs: %s", err)
+ }
+
+ // send the upload request
+ _, err = io.Copy(si, r.Reader())
if err != nil {
- return nil, err
+ return nil, fmt.Errorf("sending upload-req message: %s", err)
+ }
+
+ if err := si.Close(); err != nil {
+ return nil, fmt.Errorf("closing input: %s", err)
}
- buf := bytes.NewBuffer(data)
- return ioutil.NopCloser(buf), nil
+ // TODO support multi_ack mode
+ // TODO support multi_ack_detailed mode
+ // TODO support acks for common objects
+ // TODO build a proper state machine for all these processing options
+ buf := make([]byte, len(nak))
+ if _, err := io.ReadFull(so, buf); err != nil {
+ return nil, fmt.Errorf("looking for NAK: %s", err)
+ }
+ if !bytes.Equal(buf, nak) {
+ return nil, fmt.Errorf("NAK answer not found")
+ }
+
+ return &fetchSession{
+ Reader: so,
+ session: session,
+ done: done,
+ }, nil
+}
+
+func skipAdvRef(so io.Reader) error {
+ d := advrefs.NewDecoder(so)
+ ar := advrefs.New()
+
+ return d.Decode(ar)
+}
+
+type fetchSession struct {
+ io.Reader
+ session *ssh.Session
+ done chan error
+}
+
+// Close closes the session and collects the output state of the remote
+// SSH command.
+//
+// If both the remote command and the closing of the session completes
+// susccessfully it returns nil.
+//
+// If the remote command completes unsuccessfully or is interrupted by a
+// signal, it returns the corresponding *ExitError.
+//
+// Otherwise, if clossing the SSH session fails it returns the close
+// error. Closing the session when the other has already close it is
+// not cosidered an error.
+func (f *fetchSession) Close() (err error) {
+ if err := <-f.done; err != nil {
+ return err
+ }
+
+ if err := f.session.Close(); err != nil && err != io.EOF {
+ return err
+ }
+
+ return nil
}
func (s *GitUploadPackService) getCommand() string {
directory := s.endpoint.Path
directory = directory[1:len(directory)]
- return fmt.Sprintf("git-upload-pack %s", directory)
+ return fmt.Sprintf("git-upload-pack '%s'", directory)
}
diff --git a/clients/ssh/git_upload_pack_test.go b/clients/ssh/git_upload_pack_test.go
index 7a47f33..ff27cc2 100644
--- a/clients/ssh/git_upload_pack_test.go
+++ b/clients/ssh/git_upload_pack_test.go
@@ -121,10 +121,21 @@ func (s *RemoteSuite) TestFetch(c *C) {
req.Want(core.NewHash("e8d3ffab552895c19b9fcf7aa264d277cde33881"))
reader, err := r.Fetch(req)
c.Assert(err, IsNil)
+ defer func() { c.Assert(reader.Close(), IsNil) }()
b, err := ioutil.ReadAll(reader)
c.Assert(err, IsNil)
-
- //this is failling randomly, should be fixed ASAP
c.Check(len(b), Equals, 85585)
}
+
+func (s *RemoteSuite) TestFetchError(c *C) {
+ r := NewGitUploadPackService(s.Endpoint)
+ c.Assert(r.Connect(), IsNil)
+ defer func() { c.Assert(r.Disconnect(), IsNil) }()
+
+ req := &common.GitUploadPackRequest{}
+ req.Want(core.NewHash("1111111111111111111111111111111111111111"))
+
+ _, err := r.Fetch(req)
+ c.Assert(err, Not(IsNil))
+}