aboutsummaryrefslogtreecommitdiff
path: root/src/connection/setuid.lisp
blob: 51685f271dac244ee60dad573599b7b3f960469b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;; Consfigurator -- Lisp declarative configuration management system

;;; Copyright (C) 2021  Sean Whitton <spwhitton@spwhitton.name>

;;; This file 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, or (at your option)
;;; any later version.

;;; This file 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 this program.  If not, see <http://www.gnu.org/licenses/>.

(in-package :consfigurator.connection.setuid)
(named-readtables:in-readtable :consfigurator)

(defun setuid (uid)
  #+sbcl      (sb-posix:setuid uid)
  #-(or sbcl) (foreign-funcall "setuid" :unsigned-int uid :int))

(defun setgid (gid)
  #+sbcl      (sb-posix:setgid gid)
  #-(or sbcl) (foreign-funcall "setgid" :unsigned-int uid :int))

(defclass setuid-connection (rehome-connection fork-connection)
  ((uid :type :integer :initarg :uid)
   (gid :type :integer :initarg :gid)
   (home :type :string :initarg :home)))

(defmethod establish-connection ((type (eql :setuid)) remaining &key to)
  (unless (and (lisp-connection-p) (zerop (foreign-funcall "geteuid" :int)))
    (error "~&SETUIDing requires a Lisp image running as root"))
  (informat 1 "~&SETUIDing to ~A" to)
  (re:register-groups-bind ((#'parse-integer uid gid))
      (#?/uid=([0-9]+).+gid=([0-9]+)/ (mrun "id" to))
    (let ((home (user:passwd-entry 5 uid))
          (datadir
            (ensure-directory-pathname
             (stripln
              (mrun
               "su" to "-c"
               "echo ${XDG_CACHE_HOME:-$HOME/.cache}/consfigurator/data/")))))
      (continue-connection
       (make-instance
        'setuid-connection :uid uid :gid gid :datadir datadir :home home)
       remaining))))

(defmethod post-fork ((connection setuid-connection))
  ;; TODO Set up the new environment more systematically.  Perhaps look at how
  ;; runuser(1) uses PAM to do this.
  (with-slots (uid gid home datadir) connection
    (run-program (list "chown" "-R"
                       (format nil "~A:~A" uid gid)
                       (unix-namestring datadir)))
    (unless (zerop (setgid gid))
      (error "setgid(2) failed!"))
    (unless (zerop (setuid uid))
      (error "setuid(2) failed!"))
    (setf (getenv "HOME") home)
    (uiop:chdir home)))