sftp/server_standalone/main.go

46 lines
861 B
Go
Raw Normal View History

2015-07-25 16:19:29 +08:00
package main
// small wrapper around sftp server that allows it to be used as a separate process subsystem call by the ssh server.
// in practice this will statically link; however this allows unit testing from the sftp client.
import (
2015-07-31 14:43:00 +08:00
"flag"
2015-09-07 16:05:16 +08:00
"fmt"
"io"
2015-07-31 14:43:00 +08:00
"io/ioutil"
2015-07-25 16:19:29 +08:00
"os"
2015-09-07 13:21:45 +08:00
"github.com/pkg/sftp"
2015-07-25 16:19:29 +08:00
)
func main() {
var (
readOnly bool
debugStderr bool
)
2015-07-31 14:43:00 +08:00
flag.BoolVar(&readOnly, "R", false, "read-only server")
flag.BoolVar(&debugStderr, "e", false, "debug to stderr")
flag.Parse()
debugStream := ioutil.Discard
if debugStderr {
debugStream = os.Stderr
}
svr, _ := sftp.NewServer(
struct {
io.Reader
io.WriteCloser
}{os.Stdin,
os.Stdout,
},
sftp.WithDebug(debugStream),
sftp.ReadOnly(),
)
if err := svr.Serve(); err != nil {
fmt.Fprintf(debugStream, "sftp server completed with error: %v", err)
os.Exit(1)
}
2015-07-25 16:19:29 +08:00
}