be1c2c54d9
* gnu/services/avahi.scm (configuration-file): Use 'plain-file' instead of 'text-file'. (avahi-service): Turn into a regular procedure that returns a <service>. * gnu/services/base.scm (root-file-system-service, file-system-service, user-unmount-service, user-processes-service, host-name-service, console-keymap-service, console-font-service, mingetty-service, nscd.conf-file, nscd-service): Likewise. (%default-syslog.conf): New variable. (syslog-service): Use it. Turn into a regular procedure. (guix-service, udev-rules-union, kvm-udev-rule, udev-service, device-mapping-service, swap-service): Likewise. * gnu/services/databases.scm (%default-postgres-hba, %default-postgres-ident): Use 'plain-file' instead of 'text-file'. (%default-postgres-config): Use 'mixed-text-file' instead of 'text-file*'. (postgresql-service): Use 'program-file' instead of 'gexp->script'. Turn into a regular procedure. * gnu/services/desktop.scm (dbus-configuration-directory): Use 'computed-file' instead of 'gexp->derivation'. (upower-configuration-file, geoclue-configuration-file, elogind-configuration-file): Use 'plain-file' instead of 'text-file'. (dbus-service, upower-service, colord-service, geoclue-service, polkit-service, elogind-service): Turn into regular procedures. (%desktop-services): Remove use of 'mlet' when iterating on %BASE-SERVICES. * gnu/services/lirc.scm (lirc-service): Turn into a regular procedure. * gnu/services/networking.scm (static-networking-service, dhcp-client-service, ntp-service, tor-service, bitlbee-service, wicd-service): Likewise. * gnu/services/ssh.scm (lsh-service): Likewise. * gnu/services/web.scm (nginx-service): Likewise. * gnu/services/xorg.scm (xorg-configuration-file): Use 'mixed-text-file' instead of 'text-file*'. (xorg-start-command, slim-service): Turn into regular procedures. (xinitrc): Use 'program-file' instead of 'gexp->script'. * gnu/system/install.scm (cow-store-service, configuration-template-service): Turn into regular procedures. * gnu/system.scm (other-file-system-services, device-mapping-services, swap-services, essential-services, operating-system-services, user-shells, operating-system-accounts): Remove now unnecessary 'mlet' and turn into regular procedures. (operating-system-etc-directory, operating-system-activation-script, operating-system-boot-script): Adjust accordingly. * doc/guix.texi (Base Services, Networking Services, X Window, Desktop Services, Database Services, Web Services, Various Services, Name Service Switch): Adjust accordingly.
171 lines
6.6 KiB
Scheme
171 lines
6.6 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
|
;;;
|
|
;;; 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 services ssh)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix store)
|
|
#:use-module (gnu services)
|
|
#:use-module (gnu system linux) ; 'pam-service'
|
|
#:use-module (gnu packages lsh)
|
|
#:export (lsh-service))
|
|
|
|
;;; Commentary:
|
|
;;;
|
|
;;; This module implements secure shell (SSH) services.
|
|
;;;
|
|
;;; Code:
|
|
|
|
(define %yarrow-seed
|
|
"/var/spool/lsh/yarrow-seed-file")
|
|
|
|
(define (activation lsh host-key)
|
|
"Return the gexp to activate the LSH service for HOST-KEY."
|
|
#~(begin
|
|
(unless (file-exists? #$%yarrow-seed)
|
|
(system* (string-append #$lsh "/bin/lsh-make-seed")
|
|
"--sloppy" "-o" #$%yarrow-seed))
|
|
|
|
(unless (file-exists? #$host-key)
|
|
(mkdir-p (dirname #$host-key))
|
|
(format #t "creating SSH host key '~a'...~%" #$host-key)
|
|
|
|
;; FIXME: We're just doing a simple pipeline, but 'system' cannot be
|
|
;; used yet because /bin/sh might be dangling; factorize this somehow.
|
|
(let* ((in+out (pipe))
|
|
(keygen (primitive-fork)))
|
|
(case keygen
|
|
((0)
|
|
(close-port (car in+out))
|
|
(close-fdes 1)
|
|
(dup2 (fileno (cdr in+out)) 1)
|
|
(execl (string-append #$lsh "/bin/lsh-keygen")
|
|
"lsh-keygen" "--server"))
|
|
(else
|
|
(let ((write-key (primitive-fork)))
|
|
(case write-key
|
|
((0)
|
|
(close-port (cdr in+out))
|
|
(close-fdes 0)
|
|
(dup2 (fileno (car in+out)) 0)
|
|
(execl (string-append #$lsh "/bin/lsh-writekey")
|
|
"lsh-writekey" "--server" "-o" #$host-key))
|
|
(else
|
|
(close-port (car in+out))
|
|
(close-port (cdr in+out))
|
|
(waitpid keygen)
|
|
(waitpid write-key))))))))))
|
|
|
|
(define* (lsh-service #:key
|
|
(lsh lsh)
|
|
(daemonic? #t)
|
|
(host-key "/etc/lsh/host-key")
|
|
(interfaces '())
|
|
(port-number 22)
|
|
(allow-empty-passwords? #f)
|
|
(root-login? #f)
|
|
(syslog-output? #t)
|
|
(pid-file? #f)
|
|
(pid-file "/var/run/lshd.pid")
|
|
(x11-forwarding? #t)
|
|
(tcp/ip-forwarding? #t)
|
|
(password-authentication? #t)
|
|
(public-key-authentication? #t)
|
|
(initialize? #t))
|
|
"Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
|
|
@var{host-key} must designate a file containing the host key, and readable
|
|
only by root.
|
|
|
|
When @var{daemonic?} is true, @command{lshd} will detach from the
|
|
controlling terminal and log its output to syslogd, unless one sets
|
|
@var{syslog-output?} to false. Obviously, it also makes lsh-service
|
|
depend on existence of syslogd service. When @var{pid-file?} is true,
|
|
@command{lshd} writes its PID to the file called @var{pid-file}.
|
|
|
|
When @var{initialize?} is true, automatically create the seed and host key
|
|
upon service activation if they do not exist yet. This may take long and
|
|
require interaction.
|
|
|
|
When @var{initialize?} is false, it is up to the user to initialize the
|
|
randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
|
|
a key pair with the private key stored in file @var{host-key} (@pxref{lshd
|
|
basics,,, lsh, LSH Manual}).
|
|
|
|
When @var{interfaces} is empty, lshd listens for connections on all the
|
|
network interfaces; otherwise, @var{interfaces} must be a list of host names
|
|
or addresses.
|
|
|
|
@var{allow-empty-passwords?} specifies whether to accept log-ins with empty
|
|
passwords, and @var{root-login?} specifies whether to accept log-ins as
|
|
root.
|
|
|
|
The other options should be self-descriptive."
|
|
(define lsh-command
|
|
(append
|
|
(cons #~(string-append #$lsh "/sbin/lshd")
|
|
(if daemonic?
|
|
(let ((syslog (if syslog-output? '()
|
|
(list "--no-syslog"))))
|
|
(cons "--daemonic"
|
|
(if pid-file?
|
|
(cons #~(string-append "--pid-file=" #$pid-file)
|
|
syslog)
|
|
(cons "--no-pid-file" syslog))))
|
|
(if pid-file?
|
|
(list #~(string-append "--pid-file=" #$pid-file))
|
|
'())))
|
|
(cons* #~(string-append "--host-key=" #$host-key)
|
|
#~(string-append "--password-helper=" #$lsh "/sbin/lsh-pam-checkpw")
|
|
#~(string-append "--subsystems=sftp=" #$lsh "/sbin/sftp-server")
|
|
"-p" (number->string port-number)
|
|
(if password-authentication? "--password" "--no-password")
|
|
(if public-key-authentication?
|
|
"--publickey" "--no-publickey")
|
|
(if root-login?
|
|
"--root-login" "--no-root-login")
|
|
(if x11-forwarding?
|
|
"--x11-forward" "--no-x11-forward")
|
|
(if tcp/ip-forwarding?
|
|
"--tcpip-forward" "--no-tcpip-forward")
|
|
(if (null? interfaces)
|
|
'()
|
|
(list (string-append "--interfaces="
|
|
(string-join interfaces ",")))))))
|
|
|
|
(define requires
|
|
(if (and daemonic? syslog-output?)
|
|
'(networking syslogd)
|
|
'(networking)))
|
|
|
|
(service
|
|
(documentation "GNU lsh SSH server")
|
|
(provision '(ssh-daemon))
|
|
(requirement requires)
|
|
(start #~(make-forkexec-constructor (list #$@lsh-command)))
|
|
(stop #~(make-kill-destructor))
|
|
(pam-services
|
|
(list (unix-pam-service
|
|
"lshd"
|
|
#:allow-empty-passwords? allow-empty-passwords?)))
|
|
(activate #~(begin
|
|
(use-modules (guix build utils))
|
|
(mkdir-p "/var/spool/lsh")
|
|
#$(if initialize?
|
|
(activation lsh host-key)
|
|
#t)))))
|
|
|
|
;;; ssh.scm ends here
|