2016-10-02 18:37:38 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2022-03-28 08:03:45 -04:00
|
|
|
;;; Copyright © 2016-2022 Ludovic Courtès <ludo@gnu.org>
|
2018-06-11 15:07:24 -04:00
|
|
|
;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
|
2017-10-29 10:59:54 -04:00
|
|
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
2016-10-02 18:37:38 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu tests ssh)
|
|
|
|
#:use-module (gnu tests)
|
|
|
|
#:use-module (gnu system)
|
|
|
|
#:use-module (gnu system vm)
|
|
|
|
#:use-module (gnu services)
|
|
|
|
#:use-module (gnu services ssh)
|
|
|
|
#:use-module (gnu services networking)
|
|
|
|
#:use-module (gnu packages ssh)
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
#:use-module (guix store)
|
2016-10-03 09:18:51 -04:00
|
|
|
#:export (%test-openssh
|
|
|
|
%test-dropbear))
|
2016-10-02 18:37:38 -04:00
|
|
|
|
2019-05-09 06:02:20 -04:00
|
|
|
(define* (run-ssh-test name ssh-service pid-file
|
|
|
|
#:key (sftp? #f) (test-getlogin? #t))
|
2016-10-03 09:14:46 -04:00
|
|
|
"Run a test of an OS running SSH-SERVICE, which writes its PID to PID-FILE.
|
|
|
|
SSH-SERVICE must be configured to listen on port 22 and to allow for root and
|
2017-03-19 08:20:11 -04:00
|
|
|
empty-password logins.
|
|
|
|
|
|
|
|
When SFTP? is true, run an SFTP server test."
|
2017-07-18 04:41:51 -04:00
|
|
|
(define os
|
|
|
|
(marionette-operating-system
|
2018-10-17 18:45:05 -04:00
|
|
|
(simple-operating-system (service dhcp-client-service-type) ssh-service)
|
2017-07-18 04:41:51 -04:00
|
|
|
#:imported-modules '((gnu services herd)
|
|
|
|
(guix combinators))))
|
|
|
|
(define vm
|
|
|
|
(virtual-machine
|
|
|
|
(operating-system os)
|
|
|
|
(port-forwardings '((2222 . 22)))))
|
|
|
|
|
|
|
|
(define test
|
|
|
|
(with-imported-modules '((gnu build marionette))
|
2018-05-28 12:23:24 -04:00
|
|
|
(with-extensions (list guile-ssh)
|
|
|
|
#~(begin
|
|
|
|
(use-modules (gnu build marionette)
|
|
|
|
(srfi srfi-26)
|
|
|
|
(srfi srfi-64)
|
2019-05-09 06:02:20 -04:00
|
|
|
(ice-9 textual-ports)
|
2018-05-28 12:23:24 -04:00
|
|
|
(ice-9 match)
|
|
|
|
(ssh session)
|
|
|
|
(ssh auth)
|
|
|
|
(ssh channel)
|
2019-05-09 06:02:20 -04:00
|
|
|
(ssh popen)
|
2018-05-28 12:23:24 -04:00
|
|
|
(ssh sftp))
|
|
|
|
|
|
|
|
(define marionette
|
|
|
|
;; Enable TCP forwarding of the guest's port 22.
|
|
|
|
(make-marionette (list #$vm)))
|
|
|
|
|
|
|
|
(define (make-session-for-test)
|
|
|
|
"Make a session with predefined parameters for a test."
|
|
|
|
(make-session #:user "root"
|
|
|
|
#:port 2222
|
|
|
|
#:host "localhost"
|
|
|
|
#:log-verbosity 'protocol))
|
|
|
|
|
|
|
|
(define (call-with-connected-session proc)
|
|
|
|
"Call the one-argument procedure PROC with a freshly created and
|
2017-03-19 08:18:37 -04:00
|
|
|
connected SSH session object, return the result of the procedure call. The
|
|
|
|
session is disconnected when the PROC is finished."
|
2018-05-28 12:23:24 -04:00
|
|
|
(let ((session (make-session-for-test)))
|
|
|
|
(dynamic-wind
|
|
|
|
(lambda ()
|
|
|
|
(let ((result (connect! session)))
|
|
|
|
(unless (equal? result 'ok)
|
|
|
|
(error "Could not connect to a server"
|
|
|
|
session result))))
|
|
|
|
(lambda () (proc session))
|
|
|
|
(lambda () (disconnect! session)))))
|
|
|
|
|
|
|
|
(define (call-with-connected-session/auth proc)
|
|
|
|
"Make an authenticated session. We should be able to connect as
|
2017-03-19 08:18:37 -04:00
|
|
|
root with an empty password."
|
2018-05-28 12:23:24 -04:00
|
|
|
(call-with-connected-session
|
|
|
|
(lambda (session)
|
|
|
|
;; Try the simple authentication methods. Dropbear requires
|
|
|
|
;; 'none' when there are no passwords, whereas OpenSSH accepts
|
|
|
|
;; 'password' with an empty password.
|
|
|
|
(let loop ((methods (list (cut userauth-password! <> "")
|
|
|
|
(cut userauth-none! <>))))
|
|
|
|
(match methods
|
|
|
|
(()
|
|
|
|
(error "all the authentication methods failed"))
|
|
|
|
((auth rest ...)
|
|
|
|
(match (pk 'auth (auth session))
|
|
|
|
('success
|
|
|
|
(proc session))
|
|
|
|
('denied
|
|
|
|
(loop rest)))))))))
|
|
|
|
|
tests: Reduce boilerplate for users of 'system-test-runner'.
* gnu/tests/audio.scm, gnu/tests/base.scm, gnu/tests/ci.scm,
gnu/tests/cups.scm, gnu/tests/databases.scm, gnu/tests/desktop.scm,
gnu/tests/dict.scm, gnu/tests/docker.scm, gnu/tests/file-sharing.scm,
gnu/tests/ganeti.scm, gnu/tests/guix.scm, gnu/tests/ldap.scm,
gnu/tests/linux-modules.scm,
gnu/tests/mail.scm, gnu/tests/messaging.scm, gnu/tests/monitoring.scm,
gnu/tests/networking.scm, gnu/tests/nfs.scm,
gnu/tests/package-management.scm, gnu/tests/reconfigure.scm,
gnu/tests/rsync.scm, gnu/tests/security-token.scm,
gnu/tests/singularity.scm, gnu/tests/ssh.scm, gnu/tests/telephony.scm,
gnu/tests/version-control.scm, gnu/tests/virtualization.scm,
gnu/tests/web.scm: Remove (mkdir #$output) (chdir #$output) and
pass #$output as argument to 'system-test-runner'.
2021-09-26 17:20:56 -04:00
|
|
|
(test-runner-current (system-test-runner #$output))
|
2018-05-28 12:23:24 -04:00
|
|
|
(test-begin "ssh-daemon")
|
|
|
|
|
|
|
|
;; Wait for sshd to be up and running.
|
2018-06-11 15:07:24 -04:00
|
|
|
(test-assert "service running"
|
2018-05-28 12:23:24 -04:00
|
|
|
(marionette-eval
|
|
|
|
'(begin
|
|
|
|
(use-modules (gnu services herd))
|
2018-06-11 15:07:24 -04:00
|
|
|
(start-service 'ssh-daemon))
|
2018-05-28 12:23:24 -04:00
|
|
|
marionette))
|
|
|
|
|
|
|
|
;; Check sshd's PID file.
|
2022-03-28 08:03:45 -04:00
|
|
|
(test-assert "sshd PID"
|
|
|
|
(let ((pid (marionette-eval
|
|
|
|
'(begin
|
|
|
|
(use-modules (gnu services herd)
|
|
|
|
(srfi srfi-1))
|
|
|
|
|
|
|
|
(live-service-running
|
|
|
|
(find (lambda (live)
|
|
|
|
(memq 'ssh-daemon
|
|
|
|
(live-service-provision live)))
|
|
|
|
(current-services))))
|
|
|
|
marionette)))
|
|
|
|
(if #$pid-file
|
|
|
|
(= pid (wait-for-file #$pid-file marionette))
|
|
|
|
pid)))
|
2018-05-28 12:23:24 -04:00
|
|
|
|
2022-05-22 14:12:27 -04:00
|
|
|
(test-assert "wait for port 22, IPv4"
|
2020-04-21 09:47:56 -04:00
|
|
|
(wait-for-tcp-port 22 marionette))
|
|
|
|
|
2022-05-22 14:12:27 -04:00
|
|
|
(test-assert "wait for port 22, IPv6"
|
|
|
|
;; Make sure it's also available as IPv6.
|
|
|
|
;; See <https://issues.guix.gnu.org/55335>.
|
|
|
|
(wait-for-tcp-port 22 marionette
|
|
|
|
#:address
|
|
|
|
`(make-socket-address
|
|
|
|
AF_INET6
|
|
|
|
(inet-pton AF_INET6 "::1")
|
|
|
|
22)))
|
|
|
|
|
2018-05-28 12:23:24 -04:00
|
|
|
;; Connect to the guest over SSH. Make sure we can run a shell
|
|
|
|
;; command there.
|
|
|
|
(test-equal "shell command"
|
|
|
|
'hello
|
|
|
|
(call-with-connected-session/auth
|
|
|
|
(lambda (session)
|
|
|
|
;; FIXME: 'get-server-public-key' segfaults.
|
|
|
|
;; (get-server-public-key session)
|
|
|
|
(let ((channel (make-channel session)))
|
|
|
|
(channel-open-session channel)
|
|
|
|
(channel-request-exec channel "echo hello > /root/witness")
|
|
|
|
(and (zero? (channel-get-exit-status channel))
|
|
|
|
(wait-for-file "/root/witness" marionette))))))
|
|
|
|
|
2019-05-09 06:02:20 -04:00
|
|
|
;; Check whether the 'getlogin' procedure returns the right thing.
|
|
|
|
(unless #$test-getlogin?
|
|
|
|
(test-skip 1))
|
|
|
|
(test-equal "getlogin"
|
|
|
|
'(0 "root")
|
|
|
|
(call-with-connected-session/auth
|
|
|
|
(lambda (session)
|
|
|
|
(let* ((pipe (open-remote-input-pipe
|
|
|
|
session
|
|
|
|
"guile -c '(display (getlogin))'"))
|
|
|
|
(output (get-string-all pipe))
|
|
|
|
(status (channel-get-exit-status pipe)))
|
|
|
|
(list status output)))))
|
|
|
|
|
2018-05-28 12:23:24 -04:00
|
|
|
;; Connect to the guest over SFTP. Make sure we can write and
|
|
|
|
;; read a file there.
|
|
|
|
(unless #$sftp?
|
|
|
|
(test-skip 1))
|
|
|
|
(test-equal "SFTP file writing and reading"
|
|
|
|
'hello
|
|
|
|
(call-with-connected-session/auth
|
|
|
|
(lambda (session)
|
|
|
|
(let ((sftp-session (make-sftp-session session))
|
|
|
|
(witness "/root/sftp-witness"))
|
|
|
|
(call-with-remote-output-file sftp-session witness
|
|
|
|
(cut display "hello" <>))
|
|
|
|
(call-with-remote-input-file sftp-session witness
|
|
|
|
read)))))
|
|
|
|
|
|
|
|
;; Connect to the guest over SSH. Make sure we can run commands
|
|
|
|
;; from the system profile.
|
|
|
|
(test-equal "run executables from system profile"
|
|
|
|
#t
|
|
|
|
(call-with-connected-session/auth
|
|
|
|
(lambda (session)
|
|
|
|
(let ((channel (make-channel session)))
|
|
|
|
(channel-open-session channel)
|
|
|
|
(channel-request-exec
|
|
|
|
channel
|
|
|
|
(string-append
|
|
|
|
"mkdir -p /root/.guix-profile/bin && "
|
|
|
|
"touch /root/.guix-profile/bin/path-witness && "
|
|
|
|
"chmod 755 /root/.guix-profile/bin/path-witness"))
|
|
|
|
(zero? (channel-get-exit-status channel))))))
|
|
|
|
|
|
|
|
;; Connect to the guest over SSH. Make sure we can run commands
|
|
|
|
;; from the user profile.
|
|
|
|
(test-equal "run executable from user profile"
|
|
|
|
#t
|
|
|
|
(call-with-connected-session/auth
|
|
|
|
(lambda (session)
|
|
|
|
(let ((channel (make-channel session)))
|
|
|
|
(channel-open-session channel)
|
|
|
|
(channel-request-exec channel "path-witness")
|
|
|
|
(zero? (channel-get-exit-status channel))))))
|
|
|
|
|
tests: Adjust to SRFI-64 as found in Guile 3.0.7.
In Guile 3.0.7, 'test-runner-current' is set to #f upon 'test-end'.
Consequently, the previous strategy, where we'd call
'test-runner-current' after 'test-end', no longer works. Instead, set
the test runner in each test right before 'test-begin'.
* gnu/build/marionette.scm (system-test-runner): New procedure.
* gnu/tests/audio.scm (run-mpd-test): Replace (exit (= ...)) idiom
by (test-runner-current (system-test-runner)).
* gnu/tests/base.scm (run-basic-test)
(run-cleanup-test, run-mcron-test, run-nss-mdns-test): Likewise.
* gnu/tests/ci.scm (run-laminar-test): Likewise.
* gnu/tests/cups.scm (run-cups-test): Likewise.
* gnu/tests/databases.scm (run-memcached-test)
(run-postgresql-test, run-mysql-test): Likewise.
* gnu/tests/desktop.scm (run-elogind-test): Likewise.
* gnu/tests/dict.scm (run-dicod-test): Likewise.
* gnu/tests/docker.scm (run-docker-test): Likewise.
(run-docker-system-test): Likewise.
* gnu/tests/file-sharing.scm (run-transmission-daemon-test): Likewise.
* gnu/tests/ganeti.scm (run-ganeti-test): Likewise.
* gnu/tests/guix.scm (run-guix-build-coordinator-test): Likewise.
(run-guix-data-service-test): Likewise.
* gnu/tests/ldap.scm (run-ldap-test): Likewise.
* gnu/tests/linux-modules.scm (run-loadable-kernel-modules-test-base): Likewise.
* gnu/tests/mail.scm (run-opensmtpd-test)
(run-exim-test, run-dovecot-test, run-getmail-test): Likewise.
* gnu/tests/messaging.scm (run-xmpp-test)
(run-bitlbee-test, run-quassel-test): Likewise.
* gnu/tests/monitoring.scm (run-prometheus-node-exporter-server-test)
(run-zabbix-server-test): Likewise.
* gnu/tests/networking.scm (run-inetd-test, run-openvswitch-test)
(run-dhcpd-test, run-tor-test, run-iptables-test, run-ipfs-test): Likewise.
* gnu/tests/nfs.scm (run-nfs-test)
(run-nfs-server-test, run-nfs-root-fs-test): Likewise.
* gnu/tests/package-management.scm (run-nix-test): Likewise.
* gnu/tests/reconfigure.scm (run-switch-to-system-test)
(run-upgrade-services-test, run-install-bootloader-test): Likewise.
* gnu/tests/rsync.scm (run-rsync-test): Likewise.
* gnu/tests/security-token.scm (run-pcscd-test): Likewise.
* gnu/tests/singularity.scm (run-singularity-test): Likewise.
* gnu/tests/ssh.scm (run-ssh-test): Likewise.
* gnu/tests/telephony.scm (run-jami-test): Likewise.
* gnu/tests/version-control.scm (run-cgit-test): Likewise.
(run-git-http-test, run-gitolite-test, run-gitile-test): Likewise.
* gnu/tests/virtualization.scm (run-libvirt-test, run-childhurd-test): Likewise.
* gnu/tests/web.scm (run-webserver-test, run-php-fpm-test)
(run-hpcguix-web-server-test, run-tailon-test, run-patchwork-test): Likewise.
2021-09-25 12:36:04 -04:00
|
|
|
(test-end)))))
|
2017-07-18 04:41:51 -04:00
|
|
|
|
|
|
|
(gexp->derivation name test))
|
2016-10-02 18:37:38 -04:00
|
|
|
|
|
|
|
(define %test-openssh
|
|
|
|
(system-test
|
|
|
|
(name "openssh")
|
|
|
|
(description "Connect to a running OpenSSH daemon.")
|
2016-10-03 09:14:46 -04:00
|
|
|
(value (run-ssh-test name
|
|
|
|
;; Allow root logins with an empty password to
|
|
|
|
;; simplify testing.
|
|
|
|
(service openssh-service-type
|
|
|
|
(openssh-configuration
|
|
|
|
(permit-root-login #t)
|
|
|
|
(allow-empty-passwords? #t)))
|
2022-03-28 08:03:45 -04:00
|
|
|
#f ;inetd-style, no PID file
|
2017-03-19 08:20:11 -04:00
|
|
|
#:sftp? #t))))
|
2016-10-03 09:18:51 -04:00
|
|
|
|
|
|
|
(define %test-dropbear
|
|
|
|
(system-test
|
|
|
|
(name "dropbear")
|
|
|
|
(description "Connect to a running Dropbear SSH daemon.")
|
|
|
|
(value (run-ssh-test name
|
|
|
|
(service dropbear-service-type
|
|
|
|
(dropbear-configuration
|
|
|
|
(root-login? #t)
|
|
|
|
(allow-empty-passwords? #t)))
|
2019-05-09 06:02:20 -04:00
|
|
|
"/var/run/dropbear.pid"
|
|
|
|
|
|
|
|
;; XXX: Our Dropbear is not built with PAM support.
|
|
|
|
;; Even when it is, it seems to ignore the PAM
|
|
|
|
;; 'session' requirements.
|
|
|
|
#:test-getlogin? #f))))
|