2018-10-19 20:44:35 +00:00
|
|
|
package access
|
2018-09-21 15:18:23 +00:00
|
|
|
|
|
|
|
import (
|
2019-02-07 16:56:33 +00:00
|
|
|
"net/http"
|
2018-09-21 15:18:23 +00:00
|
|
|
"net/url"
|
2019-02-07 16:56:33 +00:00
|
|
|
"strings"
|
2018-09-21 15:18:23 +00:00
|
|
|
|
|
|
|
"github.com/cloudflare/cloudflared/carrier"
|
2018-10-19 20:44:35 +00:00
|
|
|
"github.com/cloudflare/cloudflared/cmd/cloudflared/config"
|
2018-09-21 15:18:23 +00:00
|
|
|
"github.com/cloudflare/cloudflared/validation"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
cli "gopkg.in/urfave/cli.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ssh will start a WS proxy server for server mode
|
|
|
|
// or copy from stdin/stdout for client mode
|
|
|
|
// useful for proxying other protocols (like ssh) over websockets
|
|
|
|
// (which you can put Access in front of)
|
|
|
|
func ssh(c *cli.Context) error {
|
2019-01-23 21:42:10 +00:00
|
|
|
// get the hostname from the cmdline and error out if its not provided
|
|
|
|
rawHostName := c.String(sshHostnameFlag)
|
|
|
|
hostname, err := validation.ValidateHostname(rawHostName)
|
|
|
|
if err != nil || rawHostName == "" {
|
2018-10-19 20:44:35 +00:00
|
|
|
return cli.ShowCommandHelp(c, "ssh")
|
2018-09-21 15:18:23 +00:00
|
|
|
}
|
2019-10-22 15:41:44 +00:00
|
|
|
originURL := ensureURLScheme(hostname)
|
2019-01-23 21:42:10 +00:00
|
|
|
|
|
|
|
// get the headers from the cmdline and add them
|
|
|
|
headers := buildRequestHeaders(c.StringSlice(sshHeaderFlag))
|
|
|
|
if c.IsSet(sshTokenIDFlag) {
|
|
|
|
headers.Add("CF-Access-Client-Id", c.String(sshTokenIDFlag))
|
|
|
|
}
|
|
|
|
if c.IsSet(sshTokenSecretFlag) {
|
|
|
|
headers.Add("CF-Access-Client-Secret", c.String(sshTokenSecretFlag))
|
2019-03-06 19:09:13 +00:00
|
|
|
}
|
2019-01-23 21:42:10 +00:00
|
|
|
|
2019-10-02 20:56:28 +00:00
|
|
|
destination := c.String(sshDestinationFlag)
|
2019-10-11 17:26:23 +00:00
|
|
|
if destination != "" {
|
|
|
|
headers.Add("CF-Access-SSH-Destination", destination)
|
2019-10-02 20:56:28 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:42:10 +00:00
|
|
|
options := &carrier.StartOptions{
|
2019-05-22 20:41:21 +00:00
|
|
|
OriginURL: originURL,
|
|
|
|
Headers: headers,
|
2019-03-06 19:09:13 +00:00
|
|
|
}
|
2018-09-21 15:18:23 +00:00
|
|
|
|
2019-01-23 21:42:10 +00:00
|
|
|
if c.NArg() > 0 || c.IsSet(sshURLFlag) {
|
2018-10-19 20:44:35 +00:00
|
|
|
localForwarder, err := config.ValidateUrl(c)
|
2018-09-21 15:18:23 +00:00
|
|
|
if err != nil {
|
|
|
|
logger.WithError(err).Error("Error validating origin URL")
|
|
|
|
return errors.Wrap(err, "error validating origin URL")
|
|
|
|
}
|
|
|
|
forwarder, err := url.Parse(localForwarder)
|
|
|
|
if err != nil {
|
|
|
|
logger.WithError(err).Error("Error validating origin URL")
|
|
|
|
return errors.Wrap(err, "error validating origin URL")
|
|
|
|
}
|
2019-01-23 21:42:10 +00:00
|
|
|
return carrier.StartServer(logger, forwarder.Host, shutdownC, options)
|
2018-09-21 15:18:23 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 21:42:10 +00:00
|
|
|
return carrier.StartClient(logger, &carrier.StdinoutStream{}, options)
|
2019-02-07 16:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func buildRequestHeaders(values []string) http.Header {
|
|
|
|
headers := make(http.Header)
|
|
|
|
for _, valuePair := range values {
|
|
|
|
split := strings.Split(valuePair, ":")
|
|
|
|
if len(split) > 1 {
|
|
|
|
headers.Add(strings.TrimSpace(split[0]), strings.TrimSpace(split[1]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return headers
|
2018-09-21 15:18:23 +00:00
|
|
|
}
|