mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 14:37:00 +00:00
Merge pull request #9440 from brendandburns/ssh
Add an initial test for SSH.
This commit is contained in:
commit
43a423f6fc
@ -22,6 +22,7 @@ import (
|
|||||||
"crypto/rsa"
|
"crypto/rsa"
|
||||||
"crypto/x509"
|
"crypto/x509"
|
||||||
"encoding/pem"
|
"encoding/pem"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
@ -52,10 +53,22 @@ func (s *SSHTunnel) copyBytes(out io.Writer, in io.Reader) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func NewSSHTunnel(user, keyfile, host string) (*SSHTunnel, error) {
|
func NewSSHTunnel(user, keyfile, host string) (*SSHTunnel, error) {
|
||||||
signer, err := MakePrivateKeySigner(keyfile)
|
signer, err := MakePrivateKeySignerFromFile(keyfile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
return makeSSHTunnel(user, signer, host)
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewSSHTunnelFromBytes(user string, buffer []byte, host string) (*SSHTunnel, error) {
|
||||||
|
signer, err := MakePrivateKeySignerFromBytes(buffer)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return makeSSHTunnel(user, signer, host)
|
||||||
|
}
|
||||||
|
|
||||||
|
func makeSSHTunnel(user string, signer ssh.Signer, host string) (*SSHTunnel, error) {
|
||||||
config := ssh.ClientConfig{
|
config := ssh.ClientConfig{
|
||||||
User: user,
|
User: user,
|
||||||
Auth: []ssh.AuthMethod{ssh.PublicKeys(signer)},
|
Auth: []ssh.AuthMethod{ssh.PublicKeys(signer)},
|
||||||
@ -77,6 +90,9 @@ func (s *SSHTunnel) Open() error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (s *SSHTunnel) Dial(network, address string) (net.Conn, error) {
|
func (s *SSHTunnel) Dial(network, address string) (net.Conn, error) {
|
||||||
|
if s.client == nil {
|
||||||
|
return nil, errors.New("tunnel is not opened.")
|
||||||
|
}
|
||||||
return s.client.Dial(network, address)
|
return s.client.Dial(network, address)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,7 +151,7 @@ func RunSSHCommand(cmd, host string, signer ssh.Signer) (string, string, int, er
|
|||||||
return bout.String(), berr.String(), code, err
|
return bout.String(), berr.String(), code, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func MakePrivateKeySigner(key string) (ssh.Signer, error) {
|
func MakePrivateKeySignerFromFile(key string) (ssh.Signer, error) {
|
||||||
// Create an actual signer.
|
// Create an actual signer.
|
||||||
file, err := os.Open(key)
|
file, err := os.Open(key)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -146,9 +162,13 @@ func MakePrivateKeySigner(key string) (ssh.Signer, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("error reading SSH key %s: '%v'", key, err)
|
return nil, fmt.Errorf("error reading SSH key %s: '%v'", key, err)
|
||||||
}
|
}
|
||||||
|
return MakePrivateKeySignerFromBytes(buffer)
|
||||||
|
}
|
||||||
|
|
||||||
|
func MakePrivateKeySignerFromBytes(buffer []byte) (ssh.Signer, error) {
|
||||||
signer, err := ssh.ParsePrivateKey(buffer)
|
signer, err := ssh.ParsePrivateKey(buffer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("error parsing SSH key %s: '%v'", key, err)
|
return nil, fmt.Errorf("error parsing SSH key %s: '%v'", buffer, err)
|
||||||
}
|
}
|
||||||
return signer, nil
|
return signer, nil
|
||||||
}
|
}
|
||||||
|
161
pkg/util/ssh_test.go
Normal file
161
pkg/util/ssh_test.go
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package util
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"net"
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/golang/glog"
|
||||||
|
"golang.org/x/crypto/ssh"
|
||||||
|
)
|
||||||
|
|
||||||
|
type testSSHServer struct {
|
||||||
|
Host string
|
||||||
|
Port string
|
||||||
|
Type string
|
||||||
|
Data []byte
|
||||||
|
PrivateKey []byte
|
||||||
|
PublicKey []byte
|
||||||
|
}
|
||||||
|
|
||||||
|
func runTestSSHServer(user, password string) (*testSSHServer, error) {
|
||||||
|
result := &testSSHServer{}
|
||||||
|
// Largely derived from https://godoc.org/golang.org/x/crypto/ssh#example-NewServerConn
|
||||||
|
config := &ssh.ServerConfig{
|
||||||
|
PasswordCallback: func(c ssh.ConnMetadata, pass []byte) (*ssh.Permissions, error) {
|
||||||
|
if c.User() == user && string(pass) == password {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return nil, fmt.Errorf("password rejected for %s", c.User())
|
||||||
|
},
|
||||||
|
PublicKeyCallback: func(c ssh.ConnMetadata, key ssh.PublicKey) (*ssh.Permissions, error) {
|
||||||
|
result.Type = key.Type()
|
||||||
|
result.Data = ssh.MarshalAuthorizedKey(key)
|
||||||
|
return nil, nil
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
privateKey, publicKey, err := GenerateKey(2048)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
privateBytes := EncodePrivateKey(privateKey)
|
||||||
|
signer, err := ssh.ParsePrivateKey(privateBytes)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
config.AddHostKey(signer)
|
||||||
|
result.PrivateKey = privateBytes
|
||||||
|
|
||||||
|
publicBytes, err := EncodePublicKey(publicKey)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
result.PublicKey = publicBytes
|
||||||
|
|
||||||
|
listener, err := net.Listen("tcp", "127.0.0.1:0")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
host, port, err := net.SplitHostPort(listener.Addr().String())
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
result.Host = host
|
||||||
|
result.Port = port
|
||||||
|
go func() {
|
||||||
|
// TODO: return this port.
|
||||||
|
defer listener.Close()
|
||||||
|
|
||||||
|
conn, err := listener.Accept()
|
||||||
|
if err != nil {
|
||||||
|
glog.Errorf("Failed to accept: %v", err)
|
||||||
|
}
|
||||||
|
_, chans, reqs, err := ssh.NewServerConn(conn, config)
|
||||||
|
if err != nil {
|
||||||
|
glog.Errorf("Failed handshake: %v", err)
|
||||||
|
}
|
||||||
|
go ssh.DiscardRequests(reqs)
|
||||||
|
for newChannel := range chans {
|
||||||
|
if newChannel.ChannelType() != "direct-tcpip" {
|
||||||
|
newChannel.Reject(ssh.UnknownChannelType, fmt.Sprintf("unknown channel type: %s", newChannel.ChannelType()))
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
channel, requests, err := newChannel.Accept()
|
||||||
|
if err != nil {
|
||||||
|
glog.Errorf("Failed to accept channel: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for req := range requests {
|
||||||
|
glog.Infof("Got request: %v", req)
|
||||||
|
}
|
||||||
|
|
||||||
|
channel.Close()
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSSHTunnel(t *testing.T) {
|
||||||
|
private, public, err := GenerateKey(2048)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
server, err := runTestSSHServer("foo", "bar")
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
|
||||||
|
privateData := EncodePrivateKey(private)
|
||||||
|
tunnel, err := NewSSHTunnelFromBytes("foo", privateData, server.Host)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
tunnel.SSHPort = server.Port
|
||||||
|
|
||||||
|
if err := tunnel.Open(); err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
t.FailNow()
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = tunnel.Dial("tcp", "127.0.0.1:8080")
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if server.Type != "ssh-rsa" {
|
||||||
|
t.Errorf("expected %s, got %s", "ssh-rsa", server.Type)
|
||||||
|
}
|
||||||
|
|
||||||
|
publicData, err := EncodeSSHKey(public)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
if !reflect.DeepEqual(server.Data, publicData) {
|
||||||
|
t.Errorf("expected %s, got %s", string(server.Data), string(privateData))
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := tunnel.Close(); err != nil {
|
||||||
|
t.Errorf("unexpected error: %v", err)
|
||||||
|
}
|
||||||
|
}
|
@ -1217,7 +1217,7 @@ func getSigner(provider string) (ssh.Signer, error) {
|
|||||||
key := filepath.Join(keydir, keyfile)
|
key := filepath.Join(keydir, keyfile)
|
||||||
Logf("Using SSH key: %s", key)
|
Logf("Using SSH key: %s", key)
|
||||||
|
|
||||||
return util.MakePrivateKeySigner(key)
|
return util.MakePrivateKeySignerFromFile(key)
|
||||||
}
|
}
|
||||||
|
|
||||||
// checkPodsRunning returns whether all pods whose names are listed in podNames
|
// checkPodsRunning returns whether all pods whose names are listed in podNames
|
||||||
|
Loading…
Reference in New Issue
Block a user