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"
|
2016-05-29 14:32:05 +08:00
|
|
|
"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() {
|
2015-11-08 20:36:10 +08:00
|
|
|
var (
|
2016-01-11 04:10:18 +08:00
|
|
|
readOnly bool
|
|
|
|
debugStderr bool
|
2016-06-13 12:45:13 +08:00
|
|
|
debugLevel string
|
2017-03-15 21:31:42 +08:00
|
|
|
options []sftp.ServerOption
|
2015-11-08 20:36:10 +08:00
|
|
|
)
|
|
|
|
|
2015-07-31 14:43:00 +08:00
|
|
|
flag.BoolVar(&readOnly, "R", false, "read-only server")
|
|
|
|
flag.BoolVar(&debugStderr, "e", false, "debug to stderr")
|
2016-06-13 12:45:13 +08:00
|
|
|
flag.StringVar(&debugLevel, "l", "none", "debug level (ignored)")
|
2015-07-31 14:43:00 +08:00
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
debugStream := ioutil.Discard
|
|
|
|
if debugStderr {
|
|
|
|
debugStream = os.Stderr
|
|
|
|
}
|
2017-03-15 21:31:42 +08:00
|
|
|
options = append(options, sftp.WithDebug(debugStream))
|
|
|
|
|
|
|
|
if readOnly {
|
|
|
|
options = append(options, sftp.ReadOnly())
|
|
|
|
}
|
2015-07-31 14:43:00 +08:00
|
|
|
|
2016-01-11 04:10:18 +08:00
|
|
|
svr, _ := sftp.NewServer(
|
2016-05-29 14:32:05 +08:00
|
|
|
struct {
|
|
|
|
io.Reader
|
|
|
|
io.WriteCloser
|
|
|
|
}{os.Stdin,
|
|
|
|
os.Stdout,
|
|
|
|
},
|
2017-03-15 21:31:42 +08:00
|
|
|
options...,
|
2016-01-11 04:10:18 +08:00
|
|
|
)
|
2015-09-07 14:55:15 +08:00
|
|
|
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
|
|
|
}
|