2022-07-07 20:11:50 +00:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2022-07-14 14:57:08 +00:00
|
|
|
"strings"
|
2022-07-07 20:11:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type authResult int
|
|
|
|
|
|
|
|
const (
|
|
|
|
authFailure authResult = iota
|
|
|
|
authPartialSuccess
|
|
|
|
authSuccess
|
|
|
|
)
|
|
|
|
|
|
|
|
// clientAuthenticate authenticates with the remote server. See RFC 4252.
|
|
|
|
func (c *connection) clientAuthenticate(config *ClientConfig) error {
|
|
|
|
// initiate user auth session
|
|
|
|
if err := c.transport.writePacket(Marshal(&serviceRequestMsg{serviceUserAuth})); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
packet, err := c.transport.readPacket()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-07-14 14:57:08 +00:00
|
|
|
// The server may choose to send a SSH_MSG_EXT_INFO at this point (if we
|
|
|
|
// advertised willingness to receive one, which we always do) or not. See
|
|
|
|
// RFC 8308, Section 2.4.
|
|
|
|
extensions := make(map[string][]byte)
|
|
|
|
if len(packet) > 0 && packet[0] == msgExtInfo {
|
|
|
|
var extInfo extInfoMsg
|
|
|
|
if err := Unmarshal(packet, &extInfo); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
payload := extInfo.Payload
|
|
|
|
for i := uint32(0); i < extInfo.NumExtensions; i++ {
|
|
|
|
name, rest, ok := parseString(payload)
|
|
|
|
if !ok {
|
|
|
|
return parseError(msgExtInfo)
|
|
|
|
}
|
|
|
|
value, rest, ok := parseString(rest)
|
|
|
|
if !ok {
|
|
|
|
return parseError(msgExtInfo)
|
|
|
|
}
|
|
|
|
extensions[string(name)] = value
|
|
|
|
payload = rest
|
|
|
|
}
|
|
|
|
packet, err = c.transport.readPacket()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-07-07 20:11:50 +00:00
|
|
|
var serviceAccept serviceAcceptMsg
|
|
|
|
if err := Unmarshal(packet, &serviceAccept); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// during the authentication phase the client first attempts the "none" method
|
|
|
|
// then any untried methods suggested by the server.
|
|
|
|
var tried []string
|
|
|
|
var lastMethods []string
|
|
|
|
|
|
|
|
sessionID := c.transport.getSessionID()
|
|
|
|
for auth := AuthMethod(new(noneAuth)); auth != nil; {
|
2022-07-14 14:57:08 +00:00
|
|
|
ok, methods, err := auth.auth(sessionID, config.User, c.transport, config.Rand, extensions)
|
2022-07-07 20:11:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ok == authSuccess {
|
|
|
|
// success
|
|
|
|
return nil
|
|
|
|
} else if ok == authFailure {
|
|
|
|
if m := auth.method(); !contains(tried, m) {
|
|
|
|
tried = append(tried, m)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if methods == nil {
|
|
|
|
methods = lastMethods
|
|
|
|
}
|
|
|
|
lastMethods = methods
|
|
|
|
|
|
|
|
auth = nil
|
|
|
|
|
|
|
|
findNext:
|
|
|
|
for _, a := range config.Auth {
|
|
|
|
candidateMethod := a.method()
|
|
|
|
if contains(tried, candidateMethod) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for _, meth := range methods {
|
|
|
|
if meth == candidateMethod {
|
|
|
|
auth = a
|
|
|
|
break findNext
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fmt.Errorf("ssh: unable to authenticate, attempted methods %v, no supported methods remain", tried)
|
|
|
|
}
|
|
|
|
|
|
|
|
func contains(list []string, e string) bool {
|
|
|
|
for _, s := range list {
|
|
|
|
if s == e {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// An AuthMethod represents an instance of an RFC 4252 authentication method.
|
|
|
|
type AuthMethod interface {
|
|
|
|
// auth authenticates user over transport t.
|
|
|
|
// Returns true if authentication is successful.
|
|
|
|
// If authentication is not successful, a []string of alternative
|
|
|
|
// method names is returned. If the slice is nil, it will be ignored
|
|
|
|
// and the previous set of possible methods will be reused.
|
2022-07-14 14:57:08 +00:00
|
|
|
auth(session []byte, user string, p packetConn, rand io.Reader, extensions map[string][]byte) (authResult, []string, error)
|
2022-07-07 20:11:50 +00:00
|
|
|
|
|
|
|
// method returns the RFC 4252 method name.
|
|
|
|
method() string
|
|
|
|
}
|
|
|
|
|
|
|
|
// "none" authentication, RFC 4252 section 5.2.
|
|
|
|
type noneAuth int
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
func (n *noneAuth) auth(session []byte, user string, c packetConn, rand io.Reader, _ map[string][]byte) (authResult, []string, error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
if err := c.writePacket(Marshal(&userAuthRequestMsg{
|
|
|
|
User: user,
|
|
|
|
Service: serviceSSH,
|
|
|
|
Method: "none",
|
|
|
|
})); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return handleAuthResponse(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *noneAuth) method() string {
|
|
|
|
return "none"
|
|
|
|
}
|
|
|
|
|
|
|
|
// passwordCallback is an AuthMethod that fetches the password through
|
|
|
|
// a function call, e.g. by prompting the user.
|
|
|
|
type passwordCallback func() (password string, err error)
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
func (cb passwordCallback) auth(session []byte, user string, c packetConn, rand io.Reader, _ map[string][]byte) (authResult, []string, error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
type passwordAuthMsg struct {
|
|
|
|
User string `sshtype:"50"`
|
|
|
|
Service string
|
|
|
|
Method string
|
|
|
|
Reply bool
|
|
|
|
Password string
|
|
|
|
}
|
|
|
|
|
|
|
|
pw, err := cb()
|
|
|
|
// REVIEW NOTE: is there a need to support skipping a password attempt?
|
|
|
|
// The program may only find out that the user doesn't have a password
|
|
|
|
// when prompting.
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := c.writePacket(Marshal(&passwordAuthMsg{
|
|
|
|
User: user,
|
|
|
|
Service: serviceSSH,
|
|
|
|
Method: cb.method(),
|
|
|
|
Reply: false,
|
|
|
|
Password: pw,
|
|
|
|
})); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return handleAuthResponse(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cb passwordCallback) method() string {
|
|
|
|
return "password"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Password returns an AuthMethod using the given password.
|
|
|
|
func Password(secret string) AuthMethod {
|
|
|
|
return passwordCallback(func() (string, error) { return secret, nil })
|
|
|
|
}
|
|
|
|
|
|
|
|
// PasswordCallback returns an AuthMethod that uses a callback for
|
|
|
|
// fetching a password.
|
|
|
|
func PasswordCallback(prompt func() (secret string, err error)) AuthMethod {
|
|
|
|
return passwordCallback(prompt)
|
|
|
|
}
|
|
|
|
|
|
|
|
type publickeyAuthMsg struct {
|
|
|
|
User string `sshtype:"50"`
|
|
|
|
Service string
|
|
|
|
Method string
|
|
|
|
// HasSig indicates to the receiver packet that the auth request is signed and
|
|
|
|
// should be used for authentication of the request.
|
|
|
|
HasSig bool
|
|
|
|
Algoname string
|
|
|
|
PubKey []byte
|
|
|
|
// Sig is tagged with "rest" so Marshal will exclude it during
|
|
|
|
// validateKey
|
|
|
|
Sig []byte `ssh:"rest"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// publicKeyCallback is an AuthMethod that uses a set of key
|
|
|
|
// pairs for authentication.
|
|
|
|
type publicKeyCallback func() ([]Signer, error)
|
|
|
|
|
|
|
|
func (cb publicKeyCallback) method() string {
|
|
|
|
return "publickey"
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
func pickSignatureAlgorithm(signer Signer, extensions map[string][]byte) (as AlgorithmSigner, algo string) {
|
|
|
|
keyFormat := signer.PublicKey().Type()
|
|
|
|
|
|
|
|
// Like in sendKexInit, if the public key implements AlgorithmSigner we
|
|
|
|
// assume it supports all algorithms, otherwise only the key format one.
|
|
|
|
as, ok := signer.(AlgorithmSigner)
|
|
|
|
if !ok {
|
|
|
|
return algorithmSignerWrapper{signer}, keyFormat
|
|
|
|
}
|
|
|
|
|
|
|
|
extPayload, ok := extensions["server-sig-algs"]
|
|
|
|
if !ok {
|
|
|
|
// If there is no "server-sig-algs" extension, fall back to the key
|
|
|
|
// format algorithm.
|
|
|
|
return as, keyFormat
|
|
|
|
}
|
|
|
|
|
|
|
|
// The server-sig-algs extension only carries underlying signature
|
|
|
|
// algorithm, but we are trying to select a protocol-level public key
|
|
|
|
// algorithm, which might be a certificate type. Extend the list of server
|
|
|
|
// supported algorithms to include the corresponding certificate algorithms.
|
|
|
|
serverAlgos := strings.Split(string(extPayload), ",")
|
|
|
|
for _, algo := range serverAlgos {
|
|
|
|
if certAlgo, ok := certificateAlgo(algo); ok {
|
|
|
|
serverAlgos = append(serverAlgos, certAlgo)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
keyAlgos := algorithmsForKeyFormat(keyFormat)
|
|
|
|
algo, err := findCommon("public key signature algorithm", keyAlgos, serverAlgos)
|
|
|
|
if err != nil {
|
|
|
|
// If there is no overlap, try the key anyway with the key format
|
|
|
|
// algorithm, to support servers that fail to list all supported
|
|
|
|
// algorithms.
|
|
|
|
return as, keyFormat
|
|
|
|
}
|
|
|
|
return as, algo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cb publicKeyCallback) auth(session []byte, user string, c packetConn, rand io.Reader, extensions map[string][]byte) (authResult, []string, error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
// Authentication is performed by sending an enquiry to test if a key is
|
|
|
|
// acceptable to the remote. If the key is acceptable, the client will
|
|
|
|
// attempt to authenticate with the valid key. If not the client will repeat
|
|
|
|
// the process with the remaining keys.
|
|
|
|
|
|
|
|
signers, err := cb()
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
var methods []string
|
|
|
|
for _, signer := range signers {
|
2022-07-14 14:57:08 +00:00
|
|
|
pub := signer.PublicKey()
|
|
|
|
as, algo := pickSignatureAlgorithm(signer, extensions)
|
|
|
|
|
|
|
|
ok, err := validateKey(pub, algo, user, c)
|
2022-07-07 20:11:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
pubKey := pub.Marshal()
|
2022-07-14 14:57:08 +00:00
|
|
|
data := buildDataSignedForAuth(session, userAuthRequestMsg{
|
2022-07-07 20:11:50 +00:00
|
|
|
User: user,
|
|
|
|
Service: serviceSSH,
|
|
|
|
Method: cb.method(),
|
2022-07-14 14:57:08 +00:00
|
|
|
}, algo, pubKey)
|
|
|
|
sign, err := as.SignWithAlgorithm(rand, data, underlyingAlgo(algo))
|
2022-07-07 20:11:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// manually wrap the serialized signature in a string
|
|
|
|
s := Marshal(sign)
|
|
|
|
sig := make([]byte, stringLength(len(s)))
|
|
|
|
marshalString(sig, s)
|
|
|
|
msg := publickeyAuthMsg{
|
|
|
|
User: user,
|
|
|
|
Service: serviceSSH,
|
|
|
|
Method: cb.method(),
|
|
|
|
HasSig: true,
|
2022-07-14 14:57:08 +00:00
|
|
|
Algoname: algo,
|
2022-07-07 20:11:50 +00:00
|
|
|
PubKey: pubKey,
|
|
|
|
Sig: sig,
|
|
|
|
}
|
|
|
|
p := Marshal(&msg)
|
|
|
|
if err := c.writePacket(p); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
var success authResult
|
|
|
|
success, methods, err = handleAuthResponse(c)
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// If authentication succeeds or the list of available methods does not
|
|
|
|
// contain the "publickey" method, do not attempt to authenticate with any
|
|
|
|
// other keys. According to RFC 4252 Section 7, the latter can occur when
|
|
|
|
// additional authentication methods are required.
|
|
|
|
if success == authSuccess || !containsMethod(methods, cb.method()) {
|
|
|
|
return success, methods, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return authFailure, methods, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func containsMethod(methods []string, method string) bool {
|
|
|
|
for _, m := range methods {
|
|
|
|
if m == method {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateKey validates the key provided is acceptable to the server.
|
2022-07-14 14:57:08 +00:00
|
|
|
func validateKey(key PublicKey, algo string, user string, c packetConn) (bool, error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
pubKey := key.Marshal()
|
|
|
|
msg := publickeyAuthMsg{
|
|
|
|
User: user,
|
|
|
|
Service: serviceSSH,
|
|
|
|
Method: "publickey",
|
|
|
|
HasSig: false,
|
2022-07-14 14:57:08 +00:00
|
|
|
Algoname: algo,
|
2022-07-07 20:11:50 +00:00
|
|
|
PubKey: pubKey,
|
|
|
|
}
|
|
|
|
if err := c.writePacket(Marshal(&msg)); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
return confirmKeyAck(key, algo, c)
|
2022-07-07 20:11:50 +00:00
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
func confirmKeyAck(key PublicKey, algo string, c packetConn) (bool, error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
pubKey := key.Marshal()
|
|
|
|
|
|
|
|
for {
|
|
|
|
packet, err := c.readPacket()
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
switch packet[0] {
|
|
|
|
case msgUserAuthBanner:
|
|
|
|
if err := handleBannerResponse(c, packet); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
case msgUserAuthPubKeyOk:
|
|
|
|
var msg userAuthPubKeyOkMsg
|
|
|
|
if err := Unmarshal(packet, &msg); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2022-07-14 14:57:08 +00:00
|
|
|
if msg.Algo != algo || !bytes.Equal(msg.PubKey, pubKey) {
|
2022-07-07 20:11:50 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
case msgUserAuthFailure:
|
|
|
|
return false, nil
|
|
|
|
default:
|
2022-07-14 14:57:08 +00:00
|
|
|
return false, unexpectedMessageError(msgUserAuthPubKeyOk, packet[0])
|
2022-07-07 20:11:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PublicKeys returns an AuthMethod that uses the given key
|
|
|
|
// pairs.
|
|
|
|
func PublicKeys(signers ...Signer) AuthMethod {
|
|
|
|
return publicKeyCallback(func() ([]Signer, error) { return signers, nil })
|
|
|
|
}
|
|
|
|
|
|
|
|
// PublicKeysCallback returns an AuthMethod that runs the given
|
|
|
|
// function to obtain a list of key pairs.
|
|
|
|
func PublicKeysCallback(getSigners func() (signers []Signer, err error)) AuthMethod {
|
|
|
|
return publicKeyCallback(getSigners)
|
|
|
|
}
|
|
|
|
|
|
|
|
// handleAuthResponse returns whether the preceding authentication request succeeded
|
|
|
|
// along with a list of remaining authentication methods to try next and
|
|
|
|
// an error if an unexpected response was received.
|
|
|
|
func handleAuthResponse(c packetConn) (authResult, []string, error) {
|
2022-07-14 14:57:08 +00:00
|
|
|
gotMsgExtInfo := false
|
2022-07-07 20:11:50 +00:00
|
|
|
for {
|
|
|
|
packet, err := c.readPacket()
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch packet[0] {
|
|
|
|
case msgUserAuthBanner:
|
|
|
|
if err := handleBannerResponse(c, packet); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
2022-07-14 14:57:08 +00:00
|
|
|
case msgExtInfo:
|
|
|
|
// Ignore post-authentication RFC 8308 extensions, once.
|
|
|
|
if gotMsgExtInfo {
|
|
|
|
return authFailure, nil, unexpectedMessageError(msgUserAuthSuccess, packet[0])
|
|
|
|
}
|
|
|
|
gotMsgExtInfo = true
|
2022-07-07 20:11:50 +00:00
|
|
|
case msgUserAuthFailure:
|
|
|
|
var msg userAuthFailureMsg
|
|
|
|
if err := Unmarshal(packet, &msg); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
if msg.PartialSuccess {
|
|
|
|
return authPartialSuccess, msg.Methods, nil
|
|
|
|
}
|
|
|
|
return authFailure, msg.Methods, nil
|
|
|
|
case msgUserAuthSuccess:
|
|
|
|
return authSuccess, nil, nil
|
|
|
|
default:
|
|
|
|
return authFailure, nil, unexpectedMessageError(msgUserAuthSuccess, packet[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleBannerResponse(c packetConn, packet []byte) error {
|
|
|
|
var msg userAuthBannerMsg
|
|
|
|
if err := Unmarshal(packet, &msg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
transport, ok := c.(*handshakeTransport)
|
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if transport.bannerCallback != nil {
|
|
|
|
return transport.bannerCallback(msg.Message)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// KeyboardInteractiveChallenge should print questions, optionally
|
|
|
|
// disabling echoing (e.g. for passwords), and return all the answers.
|
|
|
|
// Challenge may be called multiple times in a single session. After
|
|
|
|
// successful authentication, the server may send a challenge with no
|
2022-07-14 14:57:08 +00:00
|
|
|
// questions, for which the name and instruction messages should be
|
2022-07-07 20:11:50 +00:00
|
|
|
// printed. RFC 4256 section 3.3 details how the UI should behave for
|
|
|
|
// both CLI and GUI environments.
|
2022-07-14 14:57:08 +00:00
|
|
|
type KeyboardInteractiveChallenge func(name, instruction string, questions []string, echos []bool) (answers []string, err error)
|
2022-07-07 20:11:50 +00:00
|
|
|
|
|
|
|
// KeyboardInteractive returns an AuthMethod using a prompt/response
|
|
|
|
// sequence controlled by the server.
|
|
|
|
func KeyboardInteractive(challenge KeyboardInteractiveChallenge) AuthMethod {
|
|
|
|
return challenge
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cb KeyboardInteractiveChallenge) method() string {
|
|
|
|
return "keyboard-interactive"
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packetConn, rand io.Reader, _ map[string][]byte) (authResult, []string, error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
type initiateMsg struct {
|
|
|
|
User string `sshtype:"50"`
|
|
|
|
Service string
|
|
|
|
Method string
|
|
|
|
Language string
|
|
|
|
Submethods string
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := c.writePacket(Marshal(&initiateMsg{
|
|
|
|
User: user,
|
|
|
|
Service: serviceSSH,
|
|
|
|
Method: "keyboard-interactive",
|
|
|
|
})); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
gotMsgExtInfo := false
|
2022-07-07 20:11:50 +00:00
|
|
|
for {
|
|
|
|
packet, err := c.readPacket()
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// like handleAuthResponse, but with less options.
|
|
|
|
switch packet[0] {
|
|
|
|
case msgUserAuthBanner:
|
|
|
|
if err := handleBannerResponse(c, packet); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
continue
|
2022-07-14 14:57:08 +00:00
|
|
|
case msgExtInfo:
|
|
|
|
// Ignore post-authentication RFC 8308 extensions, once.
|
|
|
|
if gotMsgExtInfo {
|
|
|
|
return authFailure, nil, unexpectedMessageError(msgUserAuthInfoRequest, packet[0])
|
|
|
|
}
|
|
|
|
gotMsgExtInfo = true
|
|
|
|
continue
|
2022-07-07 20:11:50 +00:00
|
|
|
case msgUserAuthInfoRequest:
|
|
|
|
// OK
|
|
|
|
case msgUserAuthFailure:
|
|
|
|
var msg userAuthFailureMsg
|
|
|
|
if err := Unmarshal(packet, &msg); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
if msg.PartialSuccess {
|
|
|
|
return authPartialSuccess, msg.Methods, nil
|
|
|
|
}
|
|
|
|
return authFailure, msg.Methods, nil
|
|
|
|
case msgUserAuthSuccess:
|
|
|
|
return authSuccess, nil, nil
|
|
|
|
default:
|
|
|
|
return authFailure, nil, unexpectedMessageError(msgUserAuthInfoRequest, packet[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
var msg userAuthInfoRequestMsg
|
|
|
|
if err := Unmarshal(packet, &msg); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Manually unpack the prompt/echo pairs.
|
|
|
|
rest := msg.Prompts
|
|
|
|
var prompts []string
|
|
|
|
var echos []bool
|
|
|
|
for i := 0; i < int(msg.NumPrompts); i++ {
|
|
|
|
prompt, r, ok := parseString(rest)
|
|
|
|
if !ok || len(r) == 0 {
|
|
|
|
return authFailure, nil, errors.New("ssh: prompt format error")
|
|
|
|
}
|
|
|
|
prompts = append(prompts, string(prompt))
|
|
|
|
echos = append(echos, r[0] != 0)
|
|
|
|
rest = r[1:]
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(rest) != 0 {
|
|
|
|
return authFailure, nil, errors.New("ssh: extra data following keyboard-interactive pairs")
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
answers, err := cb(msg.Name, msg.Instruction, prompts, echos)
|
2022-07-07 20:11:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(answers) != len(prompts) {
|
|
|
|
return authFailure, nil, fmt.Errorf("ssh: incorrect number of answers from keyboard-interactive callback %d (expected %d)", len(answers), len(prompts))
|
|
|
|
}
|
|
|
|
responseLength := 1 + 4
|
|
|
|
for _, a := range answers {
|
|
|
|
responseLength += stringLength(len(a))
|
|
|
|
}
|
|
|
|
serialized := make([]byte, responseLength)
|
|
|
|
p := serialized
|
|
|
|
p[0] = msgUserAuthInfoResponse
|
|
|
|
p = p[1:]
|
|
|
|
p = marshalUint32(p, uint32(len(answers)))
|
|
|
|
for _, a := range answers {
|
|
|
|
p = marshalString(p, []byte(a))
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := c.writePacket(serialized); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type retryableAuthMethod struct {
|
|
|
|
authMethod AuthMethod
|
|
|
|
maxTries int
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
func (r *retryableAuthMethod) auth(session []byte, user string, c packetConn, rand io.Reader, extensions map[string][]byte) (ok authResult, methods []string, err error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
for i := 0; r.maxTries <= 0 || i < r.maxTries; i++ {
|
2022-07-14 14:57:08 +00:00
|
|
|
ok, methods, err = r.authMethod.auth(session, user, c, rand, extensions)
|
2022-07-07 20:11:50 +00:00
|
|
|
if ok != authFailure || err != nil { // either success, partial success or error terminate
|
|
|
|
return ok, methods, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ok, methods, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *retryableAuthMethod) method() string {
|
|
|
|
return r.authMethod.method()
|
|
|
|
}
|
|
|
|
|
|
|
|
// RetryableAuthMethod is a decorator for other auth methods enabling them to
|
|
|
|
// be retried up to maxTries before considering that AuthMethod itself failed.
|
|
|
|
// If maxTries is <= 0, will retry indefinitely
|
|
|
|
//
|
|
|
|
// This is useful for interactive clients using challenge/response type
|
|
|
|
// authentication (e.g. Keyboard-Interactive, Password, etc) where the user
|
|
|
|
// could mistype their response resulting in the server issuing a
|
|
|
|
// SSH_MSG_USERAUTH_FAILURE (rfc4252 #8 [password] and rfc4256 #3.4
|
|
|
|
// [keyboard-interactive]); Without this decorator, the non-retryable
|
|
|
|
// AuthMethod would be removed from future consideration, and never tried again
|
|
|
|
// (and so the user would never be able to retry their entry).
|
|
|
|
func RetryableAuthMethod(auth AuthMethod, maxTries int) AuthMethod {
|
|
|
|
return &retryableAuthMethod{authMethod: auth, maxTries: maxTries}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GSSAPIWithMICAuthMethod is an AuthMethod with "gssapi-with-mic" authentication.
|
|
|
|
// See RFC 4462 section 3
|
|
|
|
// gssAPIClient is implementation of the GSSAPIClient interface, see the definition of the interface for details.
|
|
|
|
// target is the server host you want to log in to.
|
|
|
|
func GSSAPIWithMICAuthMethod(gssAPIClient GSSAPIClient, target string) AuthMethod {
|
|
|
|
if gssAPIClient == nil {
|
|
|
|
panic("gss-api client must be not nil with enable gssapi-with-mic")
|
|
|
|
}
|
|
|
|
return &gssAPIWithMICCallback{gssAPIClient: gssAPIClient, target: target}
|
|
|
|
}
|
|
|
|
|
|
|
|
type gssAPIWithMICCallback struct {
|
|
|
|
gssAPIClient GSSAPIClient
|
|
|
|
target string
|
|
|
|
}
|
|
|
|
|
2022-07-14 14:57:08 +00:00
|
|
|
func (g *gssAPIWithMICCallback) auth(session []byte, user string, c packetConn, rand io.Reader, _ map[string][]byte) (authResult, []string, error) {
|
2022-07-07 20:11:50 +00:00
|
|
|
m := &userAuthRequestMsg{
|
|
|
|
User: user,
|
|
|
|
Service: serviceSSH,
|
|
|
|
Method: g.method(),
|
|
|
|
}
|
|
|
|
// The GSS-API authentication method is initiated when the client sends an SSH_MSG_USERAUTH_REQUEST.
|
|
|
|
// See RFC 4462 section 3.2.
|
|
|
|
m.Payload = appendU32(m.Payload, 1)
|
|
|
|
m.Payload = appendString(m.Payload, string(krb5OID))
|
|
|
|
if err := c.writePacket(Marshal(m)); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
// The server responds to the SSH_MSG_USERAUTH_REQUEST with either an
|
|
|
|
// SSH_MSG_USERAUTH_FAILURE if none of the mechanisms are supported or
|
|
|
|
// with an SSH_MSG_USERAUTH_GSSAPI_RESPONSE.
|
|
|
|
// See RFC 4462 section 3.3.
|
|
|
|
// OpenSSH supports Kerberos V5 mechanism only for GSS-API authentication,so I don't want to check
|
|
|
|
// selected mech if it is valid.
|
|
|
|
packet, err := c.readPacket()
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
userAuthGSSAPIResp := &userAuthGSSAPIResponse{}
|
|
|
|
if err := Unmarshal(packet, userAuthGSSAPIResp); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
// Start the loop into the exchange token.
|
|
|
|
// See RFC 4462 section 3.4.
|
|
|
|
var token []byte
|
|
|
|
defer g.gssAPIClient.DeleteSecContext()
|
|
|
|
for {
|
|
|
|
// Initiates the establishment of a security context between the application and a remote peer.
|
|
|
|
nextToken, needContinue, err := g.gssAPIClient.InitSecContext("host@"+g.target, token, false)
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
if len(nextToken) > 0 {
|
|
|
|
if err := c.writePacket(Marshal(&userAuthGSSAPIToken{
|
|
|
|
Token: nextToken,
|
|
|
|
})); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !needContinue {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
packet, err = c.readPacket()
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
switch packet[0] {
|
|
|
|
case msgUserAuthFailure:
|
|
|
|
var msg userAuthFailureMsg
|
|
|
|
if err := Unmarshal(packet, &msg); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
if msg.PartialSuccess {
|
|
|
|
return authPartialSuccess, msg.Methods, nil
|
|
|
|
}
|
|
|
|
return authFailure, msg.Methods, nil
|
|
|
|
case msgUserAuthGSSAPIError:
|
|
|
|
userAuthGSSAPIErrorResp := &userAuthGSSAPIError{}
|
|
|
|
if err := Unmarshal(packet, userAuthGSSAPIErrorResp); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
return authFailure, nil, fmt.Errorf("GSS-API Error:\n"+
|
|
|
|
"Major Status: %d\n"+
|
|
|
|
"Minor Status: %d\n"+
|
|
|
|
"Error Message: %s\n", userAuthGSSAPIErrorResp.MajorStatus, userAuthGSSAPIErrorResp.MinorStatus,
|
|
|
|
userAuthGSSAPIErrorResp.Message)
|
|
|
|
case msgUserAuthGSSAPIToken:
|
|
|
|
userAuthGSSAPITokenReq := &userAuthGSSAPIToken{}
|
|
|
|
if err := Unmarshal(packet, userAuthGSSAPITokenReq); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
token = userAuthGSSAPITokenReq.Token
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Binding Encryption Keys.
|
|
|
|
// See RFC 4462 section 3.5.
|
|
|
|
micField := buildMIC(string(session), user, "ssh-connection", "gssapi-with-mic")
|
|
|
|
micToken, err := g.gssAPIClient.GetMIC(micField)
|
|
|
|
if err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
if err := c.writePacket(Marshal(&userAuthGSSAPIMIC{
|
|
|
|
MIC: micToken,
|
|
|
|
})); err != nil {
|
|
|
|
return authFailure, nil, err
|
|
|
|
}
|
|
|
|
return handleAuthResponse(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *gssAPIWithMICCallback) method() string {
|
|
|
|
return "gssapi-with-mic"
|
|
|
|
}
|