2014-06-30 22:33:48 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2025-02-22 22:59:07 +01:00
|
|
|
|
;;; Copyright © 2014-2019, 2022-2025 Ludovic Courtès <ludo@gnu.org>
|
2016-07-13 18:13:12 +02:00
|
|
|
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
2016-08-05 15:20:15 +02:00
|
|
|
|
;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu>
|
2017-01-24 23:50:33 +01:00
|
|
|
|
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
|
2019-01-17 17:53:57 +01:00
|
|
|
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
2020-05-05 09:31:11 +02:00
|
|
|
|
;;; Copyright © 2020 pinoaffe <pinoaffe@airmail.cc>
|
2020-09-28 23:52:51 +03:00
|
|
|
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
2021-06-20 15:15:55 +02:00
|
|
|
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
|
|
|
|
|
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2014-06-30 22:33:48 +02: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 services ssh)
|
2016-07-13 18:13:12 +02:00
|
|
|
|
#:use-module (gnu packages ssh)
|
2016-08-05 15:20:15 +02:00
|
|
|
|
#:use-module (gnu packages admin)
|
2014-06-30 22:33:48 +02:00
|
|
|
|
#:use-module (gnu services)
|
2016-01-27 15:45:01 +03:00
|
|
|
|
#:use-module (gnu services shepherd)
|
2020-09-28 23:52:51 +03:00
|
|
|
|
#:use-module (gnu services web)
|
2015-11-03 18:08:47 +01:00
|
|
|
|
#:use-module (gnu system pam)
|
2016-08-05 15:20:15 +02:00
|
|
|
|
#:use-module (gnu system shadow)
|
2021-06-20 15:15:55 +02:00
|
|
|
|
#:use-module (guix deprecation)
|
2016-07-13 18:13:12 +02:00
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
|
|
#:use-module (guix records)
|
2017-07-25 15:27:58 +02:00
|
|
|
|
#:use-module (guix modules)
|
2017-07-30 16:03:43 +02:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2015-11-27 22:46:27 +01:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2016-08-05 15:20:15 +02:00
|
|
|
|
#:use-module (ice-9 match)
|
2021-10-29 18:25:24 +02:00
|
|
|
|
#:use-module (ice-9 vlist)
|
2025-11-18 17:23:45 +01:00
|
|
|
|
#:export (openssh-configuration
|
2016-08-05 15:20:15 +02:00
|
|
|
|
openssh-configuration?
|
2023-05-17 16:30:43 -04:00
|
|
|
|
openssh-configuration-openssh
|
|
|
|
|
|
openssh-configuration-pid-file
|
|
|
|
|
|
openssh-configuration-port-number
|
|
|
|
|
|
openssh-configuration-max-connections
|
|
|
|
|
|
openssh-configuration-permit-root-login
|
|
|
|
|
|
openssh-configuration-allow-empty-passwords?
|
|
|
|
|
|
openssh-configuration-password-authentication?
|
|
|
|
|
|
openssh-configuration-public-key-authentication?
|
|
|
|
|
|
openssh-configuration-x11-forwarding?
|
|
|
|
|
|
openssh-configuration-allow-agent-forwarding?
|
|
|
|
|
|
openssh-configuration-allow-tcp-forwarding?
|
|
|
|
|
|
openssh-configuration-gateway-ports?
|
2023-05-17 21:45:08 -04:00
|
|
|
|
openssh-configuration-challenge-response-authentication?
|
2023-05-17 16:30:43 -04:00
|
|
|
|
openssh-configuration-use-pam?
|
|
|
|
|
|
openssh-configuration-print-last-log?
|
|
|
|
|
|
openssh-configuration-subsystems
|
|
|
|
|
|
openssh-configuration-accepted-environment
|
|
|
|
|
|
openssh-configuration-log-level
|
|
|
|
|
|
openssh-configuration-extra-content
|
|
|
|
|
|
openssh-configuration-authorized-keys
|
|
|
|
|
|
openssh-configuration-generate-host-keys?
|
2016-08-05 15:20:15 +02:00
|
|
|
|
openssh-service-type
|
|
|
|
|
|
|
2016-07-13 18:13:12 +02:00
|
|
|
|
dropbear-configuration
|
|
|
|
|
|
dropbear-configuration?
|
|
|
|
|
|
dropbear-service-type
|
2023-02-25 18:57:59 +00:00
|
|
|
|
dropbear-service ; deprecated
|
2020-05-05 09:31:11 +02:00
|
|
|
|
|
|
|
|
|
|
autossh-configuration
|
|
|
|
|
|
autossh-configuration?
|
2020-09-28 23:52:51 +03:00
|
|
|
|
autossh-service-type
|
|
|
|
|
|
|
|
|
|
|
|
webssh-configuration
|
|
|
|
|
|
webssh-configuration?
|
|
|
|
|
|
webssh-service-type
|
|
|
|
|
|
%webssh-configuration-nginx))
|
2014-06-30 22:33:48 +02:00
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; This module implements secure shell (SSH) services.
|
|
|
|
|
|
;;;
|
2016-08-05 15:20:15 +02:00
|
|
|
|
;;; OpenSSH.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type* <openssh-configuration>
|
|
|
|
|
|
openssh-configuration make-openssh-configuration
|
|
|
|
|
|
openssh-configuration?
|
2021-11-18 22:44:26 +01:00
|
|
|
|
;; file-like object
|
2017-03-18 11:17:57 +01:00
|
|
|
|
(openssh openssh-configuration-openssh
|
2017-03-05 13:23:21 -05:00
|
|
|
|
(default openssh))
|
2017-03-18 11:17:57 +01:00
|
|
|
|
;; string
|
2016-10-02 23:18:08 +02:00
|
|
|
|
(pid-file openssh-configuration-pid-file
|
|
|
|
|
|
(default "/var/run/sshd.pid"))
|
2017-03-18 11:17:57 +01:00
|
|
|
|
;; integer
|
|
|
|
|
|
(port-number openssh-configuration-port-number
|
2016-10-02 23:18:08 +02:00
|
|
|
|
(default 22))
|
2022-03-28 14:03:45 +02:00
|
|
|
|
;; integer
|
|
|
|
|
|
(max-connections openssh-configuration-max-connections
|
|
|
|
|
|
(default 200))
|
2021-06-20 15:15:55 +02:00
|
|
|
|
;; Boolean | 'prohibit-password
|
2017-03-18 11:17:57 +01:00
|
|
|
|
(permit-root-login openssh-configuration-permit-root-login
|
2016-10-02 23:18:08 +02:00
|
|
|
|
(default #f))
|
2017-03-18 11:17:57 +01:00
|
|
|
|
;; Boolean
|
|
|
|
|
|
(allow-empty-passwords? openssh-configuration-allow-empty-passwords?
|
2016-10-02 23:18:08 +02:00
|
|
|
|
(default #f))
|
2017-03-18 11:17:57 +01:00
|
|
|
|
;; Boolean
|
|
|
|
|
|
(password-authentication? openssh-configuration-password-authentication?
|
2020-12-11 17:26:03 +01:00
|
|
|
|
(default #t))
|
2017-03-18 11:17:57 +01:00
|
|
|
|
;; Boolean
|
2016-10-02 23:18:08 +02:00
|
|
|
|
(public-key-authentication? openssh-configuration-public-key-authentication?
|
2017-03-18 11:17:57 +01:00
|
|
|
|
(default #t))
|
|
|
|
|
|
;; Boolean
|
|
|
|
|
|
(x11-forwarding? openssh-configuration-x11-forwarding?
|
2016-10-02 23:18:08 +02:00
|
|
|
|
(default #f))
|
2018-07-24 16:19:40 -05:00
|
|
|
|
|
|
|
|
|
|
;; Boolean
|
|
|
|
|
|
(allow-agent-forwarding? openssh-configuration-allow-agent-forwarding?
|
|
|
|
|
|
(default #t))
|
|
|
|
|
|
|
|
|
|
|
|
;; Boolean
|
|
|
|
|
|
(allow-tcp-forwarding? openssh-configuration-allow-tcp-forwarding?
|
|
|
|
|
|
(default #t))
|
|
|
|
|
|
|
|
|
|
|
|
;; Boolean
|
|
|
|
|
|
(gateway-ports? openssh-configuration-gateway-ports?
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
|
2017-03-18 11:17:57 +01:00
|
|
|
|
;; Boolean
|
2023-05-17 21:45:08 -04:00
|
|
|
|
(challenge-response-authentication?
|
|
|
|
|
|
openssh-configuration-challenge-response-authentication?
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
|
2017-03-18 11:17:57 +01:00
|
|
|
|
;; Boolean
|
2017-03-02 22:06:27 +01:00
|
|
|
|
(use-pam? openssh-configuration-use-pam?
|
2017-03-18 11:17:57 +01:00
|
|
|
|
(default #t))
|
|
|
|
|
|
;; Boolean
|
2017-03-02 22:06:29 +01:00
|
|
|
|
(print-last-log? openssh-configuration-print-last-log?
|
2017-02-21 00:53:55 +01:00
|
|
|
|
(default #t))
|
|
|
|
|
|
;; list of two-element lists
|
|
|
|
|
|
(subsystems openssh-configuration-subsystems
|
2017-07-25 15:27:58 +02:00
|
|
|
|
(default '(("sftp" "internal-sftp"))))
|
|
|
|
|
|
|
2018-03-15 23:40:58 +01:00
|
|
|
|
;; list of strings
|
|
|
|
|
|
(accepted-environment openssh-configuration-accepted-environment
|
|
|
|
|
|
(default '()))
|
|
|
|
|
|
|
2018-08-28 12:33:50 +02:00
|
|
|
|
;; symbol
|
|
|
|
|
|
(log-level openssh-configuration-log-level
|
|
|
|
|
|
(default 'info))
|
|
|
|
|
|
|
2019-01-17 17:53:57 +01:00
|
|
|
|
;; String
|
|
|
|
|
|
;; This is an "escape hatch" to provide configuration that isn't yet
|
|
|
|
|
|
;; supported by this configuration record.
|
|
|
|
|
|
(extra-content openssh-configuration-extra-content
|
|
|
|
|
|
(default ""))
|
|
|
|
|
|
|
2017-07-25 15:27:58 +02:00
|
|
|
|
;; list of user-name/file-like tuples
|
2022-03-10 23:45:06 +01:00
|
|
|
|
(authorized-keys openssh-configuration-authorized-keys
|
2017-12-04 23:31:15 +01:00
|
|
|
|
(default '()))
|
|
|
|
|
|
|
2022-03-10 22:33:58 +01:00
|
|
|
|
;; Boolean
|
|
|
|
|
|
(generate-host-keys? openssh-configuration-generate-host-keys?
|
|
|
|
|
|
(default #t))
|
|
|
|
|
|
|
2017-12-04 23:31:15 +01:00
|
|
|
|
;; Boolean
|
|
|
|
|
|
;; XXX: This should really be handled in an orthogonal way, for instance as
|
|
|
|
|
|
;; proposed in <https://bugs.gnu.org/27155>. Keep it internal/undocumented
|
|
|
|
|
|
;; for now.
|
|
|
|
|
|
(%auto-start? openssh-auto-start?
|
|
|
|
|
|
(default #t)))
|
2016-08-05 15:20:15 +02:00
|
|
|
|
|
|
|
|
|
|
(define %openssh-accounts
|
|
|
|
|
|
(list (user-group (name "sshd") (system? #t))
|
|
|
|
|
|
(user-account
|
|
|
|
|
|
(name "sshd")
|
|
|
|
|
|
(group "sshd")
|
|
|
|
|
|
(system? #t)
|
|
|
|
|
|
(comment "sshd privilege separation user")
|
|
|
|
|
|
(home-directory "/var/run/sshd")
|
2019-03-04 13:34:43 +01:00
|
|
|
|
(shell (file-append shadow "/sbin/nologin")))))
|
2016-08-05 15:20:15 +02:00
|
|
|
|
|
|
|
|
|
|
(define (openssh-activation config)
|
|
|
|
|
|
"Return the activation GEXP for CONFIG."
|
2017-07-25 15:27:58 +02:00
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
|
|
|
|
|
|
|
(define (touch file-name)
|
|
|
|
|
|
(call-with-output-file file-name (const #t)))
|
|
|
|
|
|
|
|
|
|
|
|
;; Make sure /etc/ssh can be read by the 'sshd' user.
|
|
|
|
|
|
(mkdir-p "/etc/ssh")
|
|
|
|
|
|
(chmod "/etc/ssh" #o755)
|
|
|
|
|
|
(mkdir-p (dirname #$(openssh-configuration-pid-file config)))
|
|
|
|
|
|
|
|
|
|
|
|
;; 'sshd' complains if the authorized-key directory and its parents
|
|
|
|
|
|
;; are group-writable, which rules out /gnu/store. Thus we copy the
|
|
|
|
|
|
;; authorized-key directory to /etc.
|
|
|
|
|
|
(catch 'system-error
|
|
|
|
|
|
(lambda ()
|
2022-05-26 17:00:33 +02:00
|
|
|
|
(delete-file-recursively "/etc/ssh/authorized_keys.d"))
|
2017-07-25 15:27:58 +02:00
|
|
|
|
(lambda args
|
|
|
|
|
|
(unless (= ENOENT (system-error-errno args))
|
|
|
|
|
|
(apply throw args))))
|
|
|
|
|
|
(copy-recursively #$(authorized-key-directory
|
2022-03-10 23:45:06 +01:00
|
|
|
|
(openssh-configuration-authorized-keys config))
|
2017-07-25 15:27:58 +02:00
|
|
|
|
"/etc/ssh/authorized_keys.d")
|
|
|
|
|
|
|
|
|
|
|
|
(chmod "/etc/ssh/authorized_keys.d" #o555)
|
|
|
|
|
|
|
|
|
|
|
|
(let ((lastlog "/var/log/lastlog"))
|
|
|
|
|
|
(when #$(openssh-configuration-print-last-log? config)
|
|
|
|
|
|
(unless (file-exists? lastlog)
|
|
|
|
|
|
(touch lastlog))))
|
|
|
|
|
|
|
2022-03-10 22:33:58 +01:00
|
|
|
|
(when #$(openssh-configuration-generate-host-keys? config)
|
|
|
|
|
|
;; Generate missing host keys.
|
|
|
|
|
|
(system* (string-append #$(openssh-configuration-openssh config)
|
|
|
|
|
|
"/bin/ssh-keygen") "-A")))))
|
2017-07-25 15:27:58 +02:00
|
|
|
|
|
|
|
|
|
|
(define (authorized-key-directory keys)
|
|
|
|
|
|
"Return a directory containing the authorized keys specified in KEYS, a list
|
|
|
|
|
|
of user-name/file-like tuples."
|
|
|
|
|
|
(define build
|
|
|
|
|
|
(with-imported-modules (source-module-closure '((guix build utils)))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (ice-9 match) (srfi srfi-26)
|
|
|
|
|
|
(guix build utils))
|
|
|
|
|
|
|
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
|
(for-each (match-lambda
|
|
|
|
|
|
((user keys ...)
|
|
|
|
|
|
(let ((file (string-append #$output "/" user)))
|
|
|
|
|
|
(call-with-output-file file
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(for-each (lambda (key)
|
|
|
|
|
|
(call-with-input-file key
|
|
|
|
|
|
(cut dump-port <> port)))
|
|
|
|
|
|
keys))))))
|
|
|
|
|
|
'#$keys))))
|
|
|
|
|
|
|
|
|
|
|
|
(computed-file "openssh-authorized-keys" build))
|
2016-08-05 15:20:15 +02:00
|
|
|
|
|
|
|
|
|
|
(define (openssh-config-file config)
|
|
|
|
|
|
"Return the sshd configuration file corresponding to CONFIG."
|
|
|
|
|
|
(computed-file
|
|
|
|
|
|
"sshd_config"
|
2017-02-21 00:53:55 +01:00
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (ice-9 match))
|
|
|
|
|
|
(call-with-output-file #$output
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(display "# Generated by 'openssh-service'.\n" port)
|
|
|
|
|
|
(format port "Port ~a\n"
|
|
|
|
|
|
#$(number->string
|
|
|
|
|
|
(openssh-configuration-port-number config)))
|
|
|
|
|
|
(format port "PermitRootLogin ~a\n"
|
|
|
|
|
|
#$(match (openssh-configuration-permit-root-login config)
|
|
|
|
|
|
(#t "yes")
|
|
|
|
|
|
(#f "no")
|
2021-06-20 15:15:55 +02:00
|
|
|
|
('without-password (warn-about-deprecation
|
|
|
|
|
|
'without-password #f
|
|
|
|
|
|
#:replacement 'prohibit-password)
|
|
|
|
|
|
"prohibit-password")
|
|
|
|
|
|
('prohibit-password "prohibit-password")))
|
2017-02-21 00:53:55 +01:00
|
|
|
|
(format port "PermitEmptyPasswords ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-allow-empty-passwords? config)
|
|
|
|
|
|
"yes" "no"))
|
|
|
|
|
|
(format port "PasswordAuthentication ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-password-authentication? config)
|
|
|
|
|
|
"yes" "no"))
|
|
|
|
|
|
(format port "PubkeyAuthentication ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-public-key-authentication?
|
|
|
|
|
|
config)
|
|
|
|
|
|
"yes" "no"))
|
|
|
|
|
|
(format port "X11Forwarding ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-x11-forwarding? config)
|
|
|
|
|
|
"yes" "no"))
|
2018-07-24 16:19:40 -05:00
|
|
|
|
(format port "AllowAgentForwarding ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-allow-agent-forwarding? config)
|
|
|
|
|
|
"yes" "no"))
|
|
|
|
|
|
(format port "AllowTcpForwarding ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-allow-tcp-forwarding? config)
|
|
|
|
|
|
"yes" "no"))
|
|
|
|
|
|
(format port "GatewayPorts ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-gateway-ports? config)
|
|
|
|
|
|
"yes" "no"))
|
2017-02-21 00:53:55 +01:00
|
|
|
|
(format port "PidFile ~a\n"
|
|
|
|
|
|
#$(openssh-configuration-pid-file config))
|
|
|
|
|
|
(format port "ChallengeResponseAuthentication ~a\n"
|
2023-05-17 22:26:41 -04:00
|
|
|
|
#$(if (openssh-configuration-challenge-response-authentication?
|
|
|
|
|
|
config)
|
2017-02-21 00:53:55 +01:00
|
|
|
|
"yes" "no"))
|
|
|
|
|
|
(format port "UsePAM ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-use-pam? config)
|
|
|
|
|
|
"yes" "no"))
|
|
|
|
|
|
(format port "PrintLastLog ~a\n"
|
|
|
|
|
|
#$(if (openssh-configuration-print-last-log? config)
|
|
|
|
|
|
"yes" "no"))
|
2018-08-28 12:33:50 +02:00
|
|
|
|
(format port "LogLevel ~a\n"
|
|
|
|
|
|
#$(string-upcase
|
|
|
|
|
|
(symbol->string
|
|
|
|
|
|
(openssh-configuration-log-level config))))
|
2017-07-25 15:27:58 +02:00
|
|
|
|
|
|
|
|
|
|
;; Add '/etc/authorized_keys.d/%u', which we populate.
|
|
|
|
|
|
(format port "AuthorizedKeysFile \
|
|
|
|
|
|
.ssh/authorized_keys .ssh/authorized_keys2 /etc/ssh/authorized_keys.d/%u\n")
|
|
|
|
|
|
|
2018-03-15 23:40:58 +01:00
|
|
|
|
(for-each (lambda (s) (format port "AcceptEnv ~a\n" s))
|
|
|
|
|
|
'#$(openssh-configuration-accepted-environment config))
|
|
|
|
|
|
|
2017-02-21 00:53:55 +01:00
|
|
|
|
(for-each
|
|
|
|
|
|
(match-lambda
|
|
|
|
|
|
((name command) (format port "Subsystem\t~a\t~a\n" name command)))
|
|
|
|
|
|
'#$(openssh-configuration-subsystems config))
|
2019-01-17 17:53:57 +01:00
|
|
|
|
|
|
|
|
|
|
(format port "~a\n"
|
|
|
|
|
|
#$(openssh-configuration-extra-content config))
|
2017-02-21 00:53:55 +01:00
|
|
|
|
#t)))))
|
2016-08-05 15:20:15 +02:00
|
|
|
|
|
|
|
|
|
|
(define (openssh-shepherd-service config)
|
|
|
|
|
|
"Return a <shepherd-service> for openssh with CONFIG."
|
|
|
|
|
|
|
|
|
|
|
|
(define pid-file
|
|
|
|
|
|
(openssh-configuration-pid-file config))
|
|
|
|
|
|
|
2022-03-28 14:03:45 +02:00
|
|
|
|
(define port-number
|
|
|
|
|
|
(openssh-configuration-port-number config))
|
|
|
|
|
|
|
|
|
|
|
|
(define max-connections
|
|
|
|
|
|
(openssh-configuration-max-connections config))
|
|
|
|
|
|
|
2022-11-11 18:56:35 +01:00
|
|
|
|
(define config-file
|
|
|
|
|
|
(openssh-config-file config))
|
|
|
|
|
|
|
2016-08-05 15:20:15 +02:00
|
|
|
|
(define openssh-command
|
2017-03-05 13:23:21 -05:00
|
|
|
|
#~(list (string-append #$(openssh-configuration-openssh config) "/sbin/sshd")
|
2022-11-11 18:56:35 +01:00
|
|
|
|
"-D" "-f" #$config-file))
|
2016-08-05 15:20:15 +02:00
|
|
|
|
|
2022-05-22 20:12:27 +02:00
|
|
|
|
(define inetd-style?
|
|
|
|
|
|
;; Whether to use 'make-inetd-constructor'. That procedure appeared in
|
|
|
|
|
|
;; Shepherd 0.9.0, but in 0.9.0, 'make-inetd-constructor' wouldn't let us
|
|
|
|
|
|
;; pass a list of endpoints, and it wouldn't let us define a service
|
|
|
|
|
|
;; listening on both IPv4 and IPv6, hence the conditional below.
|
|
|
|
|
|
#~(and (defined? 'make-inetd-constructor)
|
|
|
|
|
|
(not (string=? (@ (shepherd config) Version) "0.9.0"))))
|
|
|
|
|
|
|
2022-07-01 16:29:53 +02:00
|
|
|
|
(define ipv6-support?
|
|
|
|
|
|
;; Expression that returns true if IPv6 support is available.
|
|
|
|
|
|
#~(catch 'system-error
|
|
|
|
|
|
(lambda ()
|
|
|
|
|
|
(let ((sock (socket AF_INET6 SOCK_STREAM 0)))
|
|
|
|
|
|
(close-port sock)
|
|
|
|
|
|
#t))
|
|
|
|
|
|
(const #f)))
|
|
|
|
|
|
|
2016-08-05 15:20:15 +02:00
|
|
|
|
(list (shepherd-service
|
|
|
|
|
|
(documentation "OpenSSH server.")
|
2024-01-05 10:11:33 +01:00
|
|
|
|
|
|
|
|
|
|
;; On the Hurd, this can only be started after pfinet is up, hence
|
|
|
|
|
|
;; the dependency on 'networking'.
|
2025-02-22 22:59:07 +01:00
|
|
|
|
(requirement '(user-processes pam syslogd loopback networking))
|
2019-12-02 19:31:15 -05:00
|
|
|
|
(provision '(ssh-daemon ssh sshd))
|
2022-05-22 20:12:27 +02:00
|
|
|
|
|
|
|
|
|
|
(start #~(if #$inetd-style?
|
2022-03-28 14:03:45 +02:00
|
|
|
|
(make-inetd-constructor
|
|
|
|
|
|
(append #$openssh-command '("-i"))
|
2022-07-01 16:29:53 +02:00
|
|
|
|
(cons (endpoint
|
2022-05-22 20:12:27 +02:00
|
|
|
|
(make-socket-address AF_INET INADDR_ANY
|
|
|
|
|
|
#$port-number))
|
2022-07-01 16:29:53 +02:00
|
|
|
|
(if #$ipv6-support?
|
|
|
|
|
|
(list
|
|
|
|
|
|
(endpoint
|
|
|
|
|
|
(make-socket-address AF_INET6 IN6ADDR_ANY
|
|
|
|
|
|
#$port-number)))
|
|
|
|
|
|
'()))
|
2023-05-20 15:41:07 +02:00
|
|
|
|
#:requirements '#$requirement
|
2022-03-28 14:03:45 +02:00
|
|
|
|
#:max-connections #$max-connections)
|
|
|
|
|
|
(make-forkexec-constructor #$openssh-command
|
|
|
|
|
|
#:pid-file #$pid-file)))
|
2022-05-22 20:12:27 +02:00
|
|
|
|
(stop #~(if #$inetd-style?
|
2022-03-28 14:03:45 +02:00
|
|
|
|
(make-inetd-destructor)
|
|
|
|
|
|
(make-kill-destructor)))
|
2022-11-11 18:56:35 +01:00
|
|
|
|
(actions (list (shepherd-configuration-action config-file)))
|
2017-12-04 23:31:15 +01:00
|
|
|
|
(auto-start? (openssh-auto-start? config)))))
|
2016-08-05 15:20:15 +02:00
|
|
|
|
|
2017-03-02 22:06:27 +01:00
|
|
|
|
(define (openssh-pam-services config)
|
|
|
|
|
|
"Return a list of <pam-services> for sshd with CONFIG."
|
|
|
|
|
|
(list (unix-pam-service
|
|
|
|
|
|
"sshd"
|
2019-05-09 12:02:20 +02:00
|
|
|
|
#:login-uid? #t
|
2017-03-02 22:06:27 +01:00
|
|
|
|
#:allow-empty-passwords?
|
|
|
|
|
|
(openssh-configuration-allow-empty-passwords? config))))
|
|
|
|
|
|
|
2017-07-30 16:03:43 +02:00
|
|
|
|
(define (extend-openssh-authorized-keys config keys)
|
|
|
|
|
|
"Extend CONFIG with the extra authorized keys listed in KEYS."
|
|
|
|
|
|
(openssh-configuration
|
|
|
|
|
|
(inherit config)
|
|
|
|
|
|
(authorized-keys
|
2022-05-26 08:10:01 +03:00
|
|
|
|
(match (append (openssh-configuration-authorized-keys config) keys)
|
2022-05-26 16:38:51 +02:00
|
|
|
|
((and alist ((users _ ...) ...))
|
2021-10-29 18:25:24 +02:00
|
|
|
|
;; Build a user/key-list mapping.
|
2022-05-26 16:38:51 +02:00
|
|
|
|
(let ((user-keys (alist->vhash alist)))
|
2021-10-29 18:25:24 +02:00
|
|
|
|
;; Coalesce the key lists associated with each user.
|
|
|
|
|
|
(map (lambda (user)
|
|
|
|
|
|
`(,user
|
|
|
|
|
|
,@(concatenate (vhash-fold* cons '() user user-keys))))
|
|
|
|
|
|
users)))))))
|
2017-07-30 16:03:43 +02:00
|
|
|
|
|
2016-08-05 15:20:15 +02:00
|
|
|
|
(define openssh-service-type
|
|
|
|
|
|
(service-type (name 'openssh)
|
2017-11-05 15:29:52 +01:00
|
|
|
|
(description
|
|
|
|
|
|
"Run the OpenSSH secure shell (SSH) server, @command{sshd}.")
|
2016-08-05 15:20:15 +02:00
|
|
|
|
(extensions
|
|
|
|
|
|
(list (service-extension shepherd-root-service-type
|
|
|
|
|
|
openssh-shepherd-service)
|
2017-03-02 22:06:27 +01:00
|
|
|
|
(service-extension pam-root-service-type
|
|
|
|
|
|
openssh-pam-services)
|
2016-08-05 15:20:15 +02:00
|
|
|
|
(service-extension activation-service-type
|
|
|
|
|
|
openssh-activation)
|
|
|
|
|
|
(service-extension account-service-type
|
2018-11-24 16:07:30 +01:00
|
|
|
|
(const %openssh-accounts))
|
|
|
|
|
|
|
|
|
|
|
|
;; Install OpenSSH in the system profile. That way,
|
|
|
|
|
|
;; 'scp' is found when someone tries to copy to or from
|
|
|
|
|
|
;; this machine.
|
|
|
|
|
|
(service-extension profile-service-type
|
|
|
|
|
|
(lambda (config)
|
|
|
|
|
|
(list (openssh-configuration-openssh
|
|
|
|
|
|
config))))))
|
2017-07-30 16:03:43 +02:00
|
|
|
|
(compose concatenate)
|
|
|
|
|
|
(extend extend-openssh-authorized-keys)
|
2017-04-16 00:06:43 +02:00
|
|
|
|
(default-value (openssh-configuration))))
|
2016-08-05 15:20:15 +02:00
|
|
|
|
|
2016-07-13 18:13:12 +02:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; Dropbear.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type* <dropbear-configuration>
|
|
|
|
|
|
dropbear-configuration make-dropbear-configuration
|
|
|
|
|
|
dropbear-configuration?
|
|
|
|
|
|
(dropbear dropbear-configuration-dropbear
|
|
|
|
|
|
(default dropbear))
|
|
|
|
|
|
(port-number dropbear-configuration-port-number
|
|
|
|
|
|
(default 22))
|
|
|
|
|
|
(syslog-output? dropbear-configuration-syslog-output?
|
|
|
|
|
|
(default #t))
|
|
|
|
|
|
(pid-file dropbear-configuration-pid-file
|
|
|
|
|
|
(default "/var/run/dropbear.pid"))
|
|
|
|
|
|
(root-login? dropbear-configuration-root-login?
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(allow-empty-passwords? dropbear-configuration-allow-empty-passwords?
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(password-authentication? dropbear-configuration-password-authentication?
|
|
|
|
|
|
(default #t)))
|
|
|
|
|
|
|
|
|
|
|
|
(define (dropbear-activation config)
|
|
|
|
|
|
"Return the activation gexp for CONFIG."
|
|
|
|
|
|
#~(begin
|
2017-01-24 23:50:33 +01:00
|
|
|
|
(use-modules (guix build utils))
|
2016-07-13 18:13:12 +02:00
|
|
|
|
(mkdir-p "/etc/dropbear")))
|
|
|
|
|
|
|
|
|
|
|
|
(define (dropbear-shepherd-service config)
|
|
|
|
|
|
"Return a <shepherd-service> for dropbear with CONFIG."
|
|
|
|
|
|
(define dropbear
|
|
|
|
|
|
(dropbear-configuration-dropbear config))
|
|
|
|
|
|
|
|
|
|
|
|
(define pid-file
|
|
|
|
|
|
(dropbear-configuration-pid-file config))
|
|
|
|
|
|
|
|
|
|
|
|
(define dropbear-command
|
|
|
|
|
|
#~(list (string-append #$dropbear "/sbin/dropbear")
|
|
|
|
|
|
|
|
|
|
|
|
;; '-R' allows host keys to be automatically generated upon first
|
|
|
|
|
|
;; connection, at a time when /dev/urandom is more likely securely
|
|
|
|
|
|
;; seeded.
|
|
|
|
|
|
"-F" "-R"
|
|
|
|
|
|
|
|
|
|
|
|
"-p" #$(number->string (dropbear-configuration-port-number config))
|
|
|
|
|
|
"-P" #$pid-file
|
|
|
|
|
|
#$@(if (dropbear-configuration-syslog-output? config) '() '("-E"))
|
|
|
|
|
|
#$@(if (dropbear-configuration-root-login? config) '() '("-w"))
|
|
|
|
|
|
#$@(if (dropbear-configuration-password-authentication? config)
|
|
|
|
|
|
'()
|
|
|
|
|
|
'("-s" "-g"))
|
|
|
|
|
|
#$@(if (dropbear-configuration-allow-empty-passwords? config)
|
|
|
|
|
|
'("-B")
|
|
|
|
|
|
'())))
|
|
|
|
|
|
|
|
|
|
|
|
(define requires
|
|
|
|
|
|
(if (dropbear-configuration-syslog-output? config)
|
2025-02-22 22:59:07 +01:00
|
|
|
|
'(user-processes networking syslogd)
|
|
|
|
|
|
'(user-processes networking)))
|
2016-07-13 18:13:12 +02:00
|
|
|
|
|
|
|
|
|
|
(list (shepherd-service
|
|
|
|
|
|
(documentation "Dropbear SSH server.")
|
|
|
|
|
|
(requirement requires)
|
2019-12-02 19:31:15 -05:00
|
|
|
|
(provision '(ssh-daemon ssh sshd))
|
2016-07-13 18:13:12 +02:00
|
|
|
|
(start #~(make-forkexec-constructor #$dropbear-command
|
|
|
|
|
|
#:pid-file #$pid-file))
|
|
|
|
|
|
(stop #~(make-kill-destructor)))))
|
|
|
|
|
|
|
|
|
|
|
|
(define dropbear-service-type
|
|
|
|
|
|
(service-type (name 'dropbear)
|
2017-11-05 15:29:52 +01:00
|
|
|
|
(description
|
|
|
|
|
|
"Run the Dropbear secure shell (SSH) server.")
|
2016-07-13 18:13:12 +02:00
|
|
|
|
(extensions
|
|
|
|
|
|
(list (service-extension shepherd-root-service-type
|
|
|
|
|
|
dropbear-shepherd-service)
|
|
|
|
|
|
(service-extension activation-service-type
|
2019-04-07 18:04:08 +02:00
|
|
|
|
dropbear-activation)))
|
|
|
|
|
|
(default-value (dropbear-configuration))))
|
2016-07-13 18:13:12 +02:00
|
|
|
|
|
2023-02-25 18:57:59 +00:00
|
|
|
|
(define-deprecated (dropbear-service #:optional
|
|
|
|
|
|
(config (dropbear-configuration)))
|
|
|
|
|
|
dropbear-service-type
|
2016-07-13 18:13:12 +02:00
|
|
|
|
"Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH
|
|
|
|
|
|
daemon} with the given @var{config}, a @code{<dropbear-configuration>}
|
|
|
|
|
|
object."
|
|
|
|
|
|
(service dropbear-service-type config))
|
|
|
|
|
|
|
2020-05-05 09:31:11 +02:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; AutoSSH.
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type* <autossh-configuration>
|
|
|
|
|
|
autossh-configuration make-autossh-configuration
|
|
|
|
|
|
autossh-configuration?
|
|
|
|
|
|
(user autossh-configuration-user
|
|
|
|
|
|
(default "autossh"))
|
|
|
|
|
|
(poll autossh-configuration-poll
|
|
|
|
|
|
(default 600))
|
|
|
|
|
|
(first-poll autossh-configuration-first-poll
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(gate-time autossh-configuration-gate-time
|
|
|
|
|
|
(default 30))
|
|
|
|
|
|
(log-level autossh-configuration-log-level
|
|
|
|
|
|
(default 1))
|
|
|
|
|
|
(max-start autossh-configuration-max-start
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(message autossh-configuration-message
|
|
|
|
|
|
(default ""))
|
|
|
|
|
|
(port autossh-configuration-port
|
|
|
|
|
|
(default "0"))
|
|
|
|
|
|
(ssh-options autossh-configuration-ssh-options
|
|
|
|
|
|
(default '())))
|
|
|
|
|
|
|
|
|
|
|
|
(define (autossh-file-name config file)
|
|
|
|
|
|
"Return a path in /var/run/autossh/ that is writable
|
|
|
|
|
|
by @code{user} from @code{config}."
|
|
|
|
|
|
(string-append "/var/run/autossh/"
|
|
|
|
|
|
(autossh-configuration-user config)
|
|
|
|
|
|
"/" file))
|
|
|
|
|
|
|
|
|
|
|
|
(define (autossh-shepherd-service config)
|
|
|
|
|
|
(shepherd-service
|
|
|
|
|
|
(documentation "Automatically set up ssh connections (and keep them alive).")
|
|
|
|
|
|
(provision '(autossh))
|
2025-02-22 22:59:07 +01:00
|
|
|
|
(requirement '(user-processes))
|
2020-05-05 09:31:11 +02:00
|
|
|
|
(start #~(make-forkexec-constructor
|
|
|
|
|
|
(list #$(file-append autossh "/bin/autossh")
|
|
|
|
|
|
#$@(autossh-configuration-ssh-options config))
|
|
|
|
|
|
#:user #$(autossh-configuration-user config)
|
|
|
|
|
|
#:group (passwd:gid (getpw #$(autossh-configuration-user config)))
|
|
|
|
|
|
#:pid-file #$(autossh-file-name config "pid")
|
|
|
|
|
|
#:log-file #$(autossh-file-name config "log")
|
|
|
|
|
|
#:environment-variables
|
|
|
|
|
|
'(#$(string-append "AUTOSSH_PIDFILE="
|
|
|
|
|
|
(autossh-file-name config "pid"))
|
|
|
|
|
|
#$(string-append "AUTOSSH_LOGFILE="
|
|
|
|
|
|
(autossh-file-name config "log"))
|
|
|
|
|
|
#$(string-append "AUTOSSH_POLL="
|
|
|
|
|
|
(number->string
|
|
|
|
|
|
(autossh-configuration-poll config)))
|
|
|
|
|
|
#$(string-append "AUTOSSH_FIRST_POLL="
|
|
|
|
|
|
(number->string
|
|
|
|
|
|
(or
|
|
|
|
|
|
(autossh-configuration-first-poll config)
|
|
|
|
|
|
(autossh-configuration-poll config))))
|
|
|
|
|
|
#$(string-append "AUTOSSH_GATETIME="
|
|
|
|
|
|
(number->string
|
|
|
|
|
|
(autossh-configuration-gate-time config)))
|
|
|
|
|
|
#$(string-append "AUTOSSH_LOGLEVEL="
|
|
|
|
|
|
(number->string
|
|
|
|
|
|
(autossh-configuration-log-level config)))
|
|
|
|
|
|
#$(string-append "AUTOSSH_MAXSTART="
|
|
|
|
|
|
(number->string
|
|
|
|
|
|
(or (autossh-configuration-max-start config)
|
|
|
|
|
|
-1)))
|
|
|
|
|
|
#$(string-append "AUTOSSH_MESSAGE="
|
|
|
|
|
|
(autossh-configuration-message config))
|
|
|
|
|
|
#$(string-append "AUTOSSH_PORT="
|
|
|
|
|
|
(autossh-configuration-port config)))))
|
|
|
|
|
|
(stop #~(make-kill-destructor))))
|
|
|
|
|
|
|
|
|
|
|
|
(define (autossh-service-activation config)
|
|
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
|
(define %user
|
|
|
|
|
|
(getpw #$(autossh-configuration-user config)))
|
|
|
|
|
|
(let* ((directory #$(autossh-file-name config ""))
|
|
|
|
|
|
(log (string-append directory "/log")))
|
|
|
|
|
|
(mkdir-p directory)
|
|
|
|
|
|
(chown directory (passwd:uid %user) (passwd:gid %user))
|
|
|
|
|
|
(call-with-output-file log (const #t))
|
|
|
|
|
|
(chown log (passwd:uid %user) (passwd:gid %user))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define autossh-service-type
|
|
|
|
|
|
(service-type
|
|
|
|
|
|
(name 'autossh)
|
|
|
|
|
|
(description "Automatically set up ssh connections (and keep them alive).")
|
|
|
|
|
|
(extensions
|
|
|
|
|
|
(list (service-extension shepherd-root-service-type
|
|
|
|
|
|
(compose list autossh-shepherd-service))
|
|
|
|
|
|
(service-extension activation-service-type
|
|
|
|
|
|
autossh-service-activation)))
|
|
|
|
|
|
(default-value (autossh-configuration))))
|
|
|
|
|
|
|
2020-09-28 23:52:51 +03:00
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
|
;;; WebSSH
|
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
|
|
(define-record-type* <webssh-configuration>
|
|
|
|
|
|
webssh-configuration make-webssh-configuration
|
|
|
|
|
|
webssh-configuration?
|
2021-11-18 22:44:26 +01:00
|
|
|
|
(package webssh-configuration-package ;file-like
|
2020-09-28 23:52:51 +03:00
|
|
|
|
(default webssh))
|
|
|
|
|
|
(user-name webssh-configuration-user-name ;string
|
|
|
|
|
|
(default "webssh"))
|
|
|
|
|
|
(group-name webssh-configuration-group-name ;string
|
|
|
|
|
|
(default "webssh"))
|
|
|
|
|
|
(policy webssh-configuration-policy ;symbol
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(known-hosts webssh-configuration-known-hosts ;list of strings
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(port webssh-configuration-port ;number
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(address webssh-configuration-address ;string
|
|
|
|
|
|
(default #f))
|
|
|
|
|
|
(log-file webssh-configuration-log-file ;string
|
|
|
|
|
|
(default "/var/log/webssh.log"))
|
|
|
|
|
|
(log-level webssh-configuration-log-level ;symbol
|
|
|
|
|
|
(default #f)))
|
|
|
|
|
|
|
|
|
|
|
|
(define %webssh-configuration-nginx
|
|
|
|
|
|
(nginx-server-configuration
|
|
|
|
|
|
(listen '("80"))
|
|
|
|
|
|
(locations
|
|
|
|
|
|
(list (nginx-location-configuration
|
|
|
|
|
|
(uri "/")
|
|
|
|
|
|
(body '("proxy_pass http://127.0.0.1:8888;"
|
|
|
|
|
|
"proxy_http_version 1.1;"
|
|
|
|
|
|
"proxy_read_timeout 300;"
|
|
|
|
|
|
"proxy_set_header Upgrade $http_upgrade;"
|
|
|
|
|
|
"proxy_set_header Connection \"upgrade\";"
|
|
|
|
|
|
"proxy_set_header Host $http_host;"
|
|
|
|
|
|
"proxy_set_header X-Real-IP $remote_addr;"
|
|
|
|
|
|
"proxy_set_header X-Real-PORT $remote_port;")))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define webssh-account
|
|
|
|
|
|
;; Return the user accounts and user groups for CONFIG.
|
|
|
|
|
|
(match-lambda
|
|
|
|
|
|
(($ <webssh-configuration> _ user-name group-name _ _ _ _ _ _)
|
|
|
|
|
|
(list (user-group
|
|
|
|
|
|
(name group-name))
|
|
|
|
|
|
(user-account
|
|
|
|
|
|
(name user-name)
|
|
|
|
|
|
(group group-name)
|
|
|
|
|
|
(comment "webssh privilege separation user")
|
|
|
|
|
|
(home-directory (string-append "/var/run/" user-name))
|
|
|
|
|
|
(shell #~(string-append #$shadow "/sbin/nologin")))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define webssh-activation
|
|
|
|
|
|
;; Return the activation GEXP for CONFIG.
|
|
|
|
|
|
(match-lambda
|
|
|
|
|
|
(($ <webssh-configuration> _ user-name group-name policy known-hosts _ _
|
|
|
|
|
|
log-file _)
|
|
|
|
|
|
(with-imported-modules '((guix build utils))
|
|
|
|
|
|
#~(begin
|
|
|
|
|
|
(let* ((home-dir (string-append "/var/run/" #$user-name))
|
|
|
|
|
|
(ssh-dir (string-append home-dir "/.ssh"))
|
|
|
|
|
|
(known-hosts-file (string-append ssh-dir "/known_hosts")))
|
|
|
|
|
|
(call-with-output-file #$log-file (const #t))
|
|
|
|
|
|
(mkdir-p ssh-dir)
|
|
|
|
|
|
(case '#$policy
|
|
|
|
|
|
((reject)
|
|
|
|
|
|
(if '#$known-hosts
|
|
|
|
|
|
(call-with-output-file known-hosts-file
|
|
|
|
|
|
(lambda (port)
|
|
|
|
|
|
(for-each (lambda (host) (display host port) (newline port))
|
|
|
|
|
|
'#$known-hosts)))
|
|
|
|
|
|
(display-hint (G_ "webssh: reject policy requires `known-hosts'.")))))
|
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
|
(chown file
|
|
|
|
|
|
(passwd:uid (getpw #$user-name))
|
|
|
|
|
|
(group:gid (getpw #$group-name))))
|
|
|
|
|
|
(list #$log-file ssh-dir known-hosts-file))
|
|
|
|
|
|
(chmod ssh-dir #o700)))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define webssh-shepherd-service
|
|
|
|
|
|
(match-lambda
|
|
|
|
|
|
(($ <webssh-configuration> package user-name group-name policy _ port
|
|
|
|
|
|
address log-file log-level)
|
|
|
|
|
|
(list (shepherd-service
|
|
|
|
|
|
(provision '(webssh))
|
|
|
|
|
|
(documentation "Run webssh daemon.")
|
|
|
|
|
|
(start #~(make-forkexec-constructor
|
|
|
|
|
|
`(,(string-append #$webssh "/bin/wssh")
|
|
|
|
|
|
,(string-append "--log-file-prefix=" #$log-file)
|
|
|
|
|
|
,@(case '#$log-level
|
|
|
|
|
|
((debug) '("--logging=debug"))
|
|
|
|
|
|
(else '()))
|
|
|
|
|
|
,@(case '#$policy
|
|
|
|
|
|
((reject) '("--policy=reject"))
|
|
|
|
|
|
(else '()))
|
|
|
|
|
|
,@(if #$port
|
|
|
|
|
|
(list (string-append "--port=" (number->string #$port)))
|
|
|
|
|
|
'())
|
|
|
|
|
|
,@(if #$address
|
|
|
|
|
|
(list (string-append "--address=" #$address))
|
|
|
|
|
|
'()))
|
|
|
|
|
|
#:user #$user-name
|
|
|
|
|
|
#:group #$group-name))
|
|
|
|
|
|
(stop #~(make-kill-destructor)))))))
|
|
|
|
|
|
|
|
|
|
|
|
(define webssh-service-type
|
|
|
|
|
|
(service-type
|
|
|
|
|
|
(name 'webssh)
|
|
|
|
|
|
(extensions
|
|
|
|
|
|
(list (service-extension shepherd-root-service-type
|
|
|
|
|
|
webssh-shepherd-service)
|
|
|
|
|
|
(service-extension account-service-type
|
|
|
|
|
|
webssh-account)
|
|
|
|
|
|
(service-extension activation-service-type
|
|
|
|
|
|
webssh-activation)))
|
|
|
|
|
|
(default-value (webssh-configuration))
|
|
|
|
|
|
(description
|
|
|
|
|
|
"Run the webssh.")))
|
|
|
|
|
|
|
2014-06-30 22:33:48 +02:00
|
|
|
|
;;; ssh.scm ends here
|