41 lines
805 B
Go
41 lines
805 B
Go
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 (
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/pkg/sftp"
|
|
)
|
|
|
|
func main() {
|
|
var (
|
|
readOnly bool
|
|
debugStderr bool
|
|
)
|
|
|
|
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(
|
|
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)
|
|
}
|
|
}
|