mirror of
https://github.com/moul/sshportal.git
synced 2024-11-15 12:46:17 +08:00
102 lines
2.2 KiB
Go
102 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
|
|
"github.com/gliderlabs/ssh"
|
|
gossh "golang.org/x/crypto/ssh"
|
|
)
|
|
|
|
func proxy(s ssh.Session, host *Host, hk gossh.HostKeyCallback) error {
|
|
config, err := host.clientConfig(s, hk)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
rconn, err := gossh.Dial("tcp", host.Addr, config)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() { _ = rconn.Close() }()
|
|
|
|
rch, rreqs, err := rconn.OpenChannel("session", []byte{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Println("SSH Connection established")
|
|
return pipe(s.MaskedReqs(), rreqs, s, rch)
|
|
}
|
|
|
|
func pipe(lreqs, rreqs <-chan *gossh.Request, lch, rch gossh.Channel) error {
|
|
defer func() {
|
|
_ = lch.Close()
|
|
_ = rch.Close()
|
|
}()
|
|
|
|
errch := make(chan error, 1)
|
|
|
|
go func() {
|
|
_, _ = io.Copy(lch, rch)
|
|
errch <- errors.New("lch closed the connection")
|
|
}()
|
|
|
|
go func() {
|
|
_, _ = io.Copy(rch, lch)
|
|
errch <- errors.New("rch closed the connection")
|
|
}()
|
|
|
|
for {
|
|
select {
|
|
case req := <-lreqs: // forward ssh requests from local to remote
|
|
if req == nil {
|
|
return nil
|
|
}
|
|
b, err := rch.SendRequest(req.Type, req.WantReply, req.Payload)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err2 := req.Reply(b, nil); err2 != nil {
|
|
return err2
|
|
}
|
|
case req := <-rreqs: // forward ssh requests from remote to local
|
|
if req == nil {
|
|
return nil
|
|
}
|
|
b, err := lch.SendRequest(req.Type, req.WantReply, req.Payload)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err2 := req.Reply(b, nil); err2 != nil {
|
|
return err2
|
|
}
|
|
case err := <-errch:
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
func (host *Host) clientConfig(_ ssh.Session, hk gossh.HostKeyCallback) (*gossh.ClientConfig, error) {
|
|
config := gossh.ClientConfig{
|
|
User: host.User,
|
|
HostKeyCallback: hk,
|
|
Auth: []gossh.AuthMethod{},
|
|
}
|
|
if host.SSHKey != nil {
|
|
signer, err := gossh.ParsePrivateKey([]byte(host.SSHKey.PrivKey))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
config.Auth = append(config.Auth, gossh.PublicKeys(signer))
|
|
}
|
|
if host.Password != "" {
|
|
config.Auth = append(config.Auth, gossh.Password(host.Password))
|
|
}
|
|
if len(config.Auth) == 0 {
|
|
return nil, fmt.Errorf("no valid authentication method for host %q", host.Name)
|
|
}
|
|
return &config, nil
|
|
}
|