chiark / gitweb /
logind: move logind into its own subdirectory
[elogind.git] / src / pam-module.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <sys/file.h>
25 #include <pwd.h>
26 #include <endian.h>
27 #include <sys/capability.h>
28
29 #include <security/pam_modules.h>
30 #include <security/_pam_macros.h>
31 #include <security/pam_modutil.h>
32 #include <security/pam_ext.h>
33 #include <security/pam_misc.h>
34
35 #include "util.h"
36 #include "macro.h"
37 #include "sd-daemon.h"
38 #include "strv.h"
39 #include "dbus-common.h"
40 #include "def.h"
41 #include "socket-util.h"
42
43 static int parse_argv(pam_handle_t *handle,
44                       int argc, const char **argv,
45                       char ***controllers,
46                       char ***reset_controllers,
47                       bool *kill_processes,
48                       char ***kill_only_users,
49                       char ***kill_exclude_users,
50                       bool *debug) {
51
52         unsigned i;
53
54         assert(argc >= 0);
55         assert(argc == 0 || argv);
56
57         for (i = 0; i < (unsigned) argc; i++) {
58                 int k;
59
60                 if (startswith(argv[i], "kill-session-processes=")) {
61                         if ((k = parse_boolean(argv[i] + 23)) < 0) {
62                                 pam_syslog(handle, LOG_ERR, "Failed to parse kill-session-processes= argument.");
63                                 return k;
64                         }
65
66                         if (kill_processes)
67                                 *kill_processes = k;
68
69                 } else if (startswith(argv[i], "kill-session=")) {
70                         /* As compatibility for old versions */
71
72                         if ((k = parse_boolean(argv[i] + 13)) < 0) {
73                                 pam_syslog(handle, LOG_ERR, "Failed to parse kill-session= argument.");
74                                 return k;
75                         }
76
77                         if (kill_processes)
78                                 *kill_processes = k;
79
80                 } else if (startswith(argv[i], "controllers=")) {
81
82                         if (controllers) {
83                                 char **l;
84
85                                 if (!(l = strv_split(argv[i] + 12, ","))) {
86                                         pam_syslog(handle, LOG_ERR, "Out of memory.");
87                                         return -ENOMEM;
88                                 }
89
90                                 strv_free(*controllers);
91                                 *controllers = l;
92                         }
93
94                 } else if (startswith(argv[i], "reset-controllers=")) {
95
96                         if (reset_controllers) {
97                                 char **l;
98
99                                 if (!(l = strv_split(argv[i] + 18, ","))) {
100                                         pam_syslog(handle, LOG_ERR, "Out of memory.");
101                                         return -ENOMEM;
102                                 }
103
104                                 strv_free(*reset_controllers);
105                                 *reset_controllers = l;
106                         }
107
108                 } else if (startswith(argv[i], "kill-only-users=")) {
109
110                         if (kill_only_users) {
111                                 char **l;
112
113                                 if (!(l = strv_split(argv[i] + 16, ","))) {
114                                         pam_syslog(handle, LOG_ERR, "Out of memory.");
115                                         return -ENOMEM;
116                                 }
117
118                                 strv_free(*kill_only_users);
119                                 *kill_only_users = l;
120                         }
121
122                 } else if (startswith(argv[i], "kill-exclude-users=")) {
123
124                         if (kill_exclude_users) {
125                                 char **l;
126
127                                 if (!(l = strv_split(argv[i] + 19, ","))) {
128                                         pam_syslog(handle, LOG_ERR, "Out of memory.");
129                                         return -ENOMEM;
130                                 }
131
132                                 strv_free(*kill_exclude_users);
133                                 *kill_exclude_users = l;
134                         }
135
136                 } else if (startswith(argv[i], "debug=")) {
137                         if ((k = parse_boolean(argv[i] + 6)) < 0) {
138                                 pam_syslog(handle, LOG_ERR, "Failed to parse debug= argument.");
139                                 return k;
140                         }
141
142                         if (debug)
143                                 *debug = k;
144
145                 } else if (startswith(argv[i], "create-session=") ||
146                            startswith(argv[i], "kill-user=")) {
147
148                         pam_syslog(handle, LOG_WARNING, "Option %s not supported anymore, ignoring.", argv[i]);
149
150                 } else {
151                         pam_syslog(handle, LOG_ERR, "Unknown parameter '%s'.", argv[i]);
152                         return -EINVAL;
153                 }
154         }
155
156         return 0;
157 }
158
159 static int get_user_data(
160                 pam_handle_t *handle,
161                 const char **ret_username,
162                 struct passwd **ret_pw) {
163
164         const char *username = NULL;
165         struct passwd *pw = NULL;
166         uid_t uid;
167         int r;
168
169         assert(handle);
170         assert(ret_username);
171         assert(ret_pw);
172
173         r = audit_loginuid_from_pid(0, &uid);
174         if (r >= 0)
175                 pw = pam_modutil_getpwuid(handle, uid);
176         else {
177                 r = pam_get_user(handle, &username, NULL);
178                 if (r != PAM_SUCCESS) {
179                         pam_syslog(handle, LOG_ERR, "Failed to get user name.");
180                         return r;
181                 }
182
183                 if (isempty(username)) {
184                         pam_syslog(handle, LOG_ERR, "User name not valid.");
185                         return PAM_AUTH_ERR;
186                 }
187
188                 pw = pam_modutil_getpwnam(handle, username);
189         }
190
191         if (!pw) {
192                 pam_syslog(handle, LOG_ERR, "Failed to get user data.");
193                 return PAM_USER_UNKNOWN;
194         }
195
196         *ret_pw = pw;
197         *ret_username = username ? username : pw->pw_name;
198
199         return PAM_SUCCESS;
200 }
201
202 static bool check_user_lists(
203                 pam_handle_t *handle,
204                 uid_t uid,
205                 char **kill_only_users,
206                 char **kill_exclude_users) {
207
208         const char *name = NULL;
209         char **l;
210
211         assert(handle);
212
213         if (uid == 0)
214                 name = "root"; /* Avoid obvious NSS requests, to suppress network traffic */
215         else {
216                 struct passwd *pw;
217
218                 pw = pam_modutil_getpwuid(handle, uid);
219                 if (pw)
220                         name = pw->pw_name;
221         }
222
223         STRV_FOREACH(l, kill_exclude_users) {
224                 uid_t u;
225
226                 if (parse_uid(*l, &u) >= 0)
227                         if (u == uid)
228                                 return false;
229
230                 if (name && streq(name, *l))
231                         return false;
232         }
233
234         if (strv_isempty(kill_only_users))
235                 return true;
236
237         STRV_FOREACH(l, kill_only_users) {
238                 uid_t u;
239
240                 if (parse_uid(*l, &u) >= 0)
241                         if (u == uid)
242                                 return true;
243
244                 if (name && streq(name, *l))
245                         return true;
246         }
247
248         return false;
249 }
250
251 static int get_seat_from_display(const char *display, const char **seat, uint32_t *vtnr) {
252         char *p = NULL;
253         int r;
254         int fd;
255         union sockaddr_union sa;
256         struct ucred ucred;
257         socklen_t l;
258         char *tty;
259         int v;
260
261         assert(display);
262         assert(seat);
263         assert(vtnr);
264
265         /* We deduce the X11 socket from the display name, then use
266          * SO_PEERCRED to determine the X11 server process, ask for
267          * the controlling tty of that and if it's a VC then we know
268          * the seat and the virtual terminal. Sounds ugly, is only
269          * semi-ugly. */
270
271         r = socket_from_display(display, &p);
272         if (r < 0)
273                 return r;
274
275         fd = socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, 0);
276         if (fd < 0) {
277                 free(p);
278                 return -errno;
279         }
280
281         zero(sa);
282         sa.un.sun_family = AF_UNIX;
283         strncpy(sa.un.sun_path, p, sizeof(sa.un.sun_path)-1);
284         free(p);
285
286         if (connect(fd, &sa.sa, offsetof(struct sockaddr_un, sun_path) + strlen(sa.un.sun_path)) < 0) {
287                 close_nointr_nofail(fd);
288                 return -errno;
289         }
290
291         l = sizeof(ucred);
292         r = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &ucred, &l);
293         close_nointr_nofail(fd);
294
295         if (r < 0)
296                 return -errno;
297
298         r = get_ctty(ucred.pid, NULL, &tty);
299         if (r < 0)
300                 return r;
301
302         v = vtnr_from_tty(tty);
303         free(tty);
304
305         if (v < 0)
306                 return v;
307         else if (v == 0)
308                 return -ENOENT;
309
310         *seat = "seat0";
311         *vtnr = (uint32_t) v;
312
313         return 0;
314 }
315
316 _public_ PAM_EXTERN int pam_sm_open_session(
317                 pam_handle_t *handle,
318                 int flags,
319                 int argc, const char **argv) {
320
321         struct passwd *pw;
322         bool kill_processes = false, debug = false;
323         const char *username, *id, *object_path, *runtime_path, *service = NULL, *tty = NULL, *display = NULL, *remote_user = NULL, *remote_host = NULL, *seat = NULL, *type, *cvtnr = NULL;
324         char **controllers = NULL, **reset_controllers = NULL, **kill_only_users = NULL, **kill_exclude_users = NULL;
325         DBusError error;
326         uint32_t uid, pid;
327         DBusMessageIter iter;
328         dbus_bool_t kp;
329         int session_fd = -1;
330         DBusConnection *bus = NULL;
331         DBusMessage *m = NULL, *reply = NULL;
332         dbus_bool_t remote;
333         int r;
334         uint32_t vtnr = 0;
335
336         assert(handle);
337
338         dbus_error_init(&error);
339
340         /* pam_syslog(handle, LOG_INFO, "pam-systemd initializing"); */
341
342         /* Make this a NOP on non-systemd systems */
343         if (sd_booted() <= 0)
344                 return PAM_SUCCESS;
345
346         if (parse_argv(handle,
347                        argc, argv,
348                        &controllers, &reset_controllers,
349                        &kill_processes, &kill_only_users, &kill_exclude_users,
350                        &debug) < 0) {
351                 r = PAM_SESSION_ERR;
352                 goto finish;
353         }
354
355         r = get_user_data(handle, &username, &pw);
356         if (r != PAM_SUCCESS)
357                 goto finish;
358
359         /* Make sure we don't enter a loop by talking to
360          * systemd-logind when it is actually waiting for the
361          * background to finish start-up. If the service is
362          * "systemd-shared" we simply set XDG_RUNTIME_DIR and
363          * leave. */
364
365         pam_get_item(handle, PAM_SERVICE, (const void**) &service);
366         if (streq_ptr(service, "systemd-shared")) {
367                 char *p, *rt = NULL;
368
369                 if (asprintf(&p, "/run/systemd/users/%lu", (unsigned long) pw->pw_uid) < 0) {
370                         r = PAM_BUF_ERR;
371                         goto finish;
372                 }
373
374                 r = parse_env_file(p, NEWLINE,
375                                    "RUNTIME", &rt,
376                                    NULL);
377                 free(p);
378
379                 if (r < 0 && r != -ENOENT) {
380                         r = PAM_SESSION_ERR;
381                         free(rt);
382                         goto finish;
383                 }
384
385                 if (rt)  {
386                         r = pam_misc_setenv(handle, "XDG_RUNTIME_DIR", rt, 0);
387                         free(rt);
388
389                         if (r != PAM_SUCCESS) {
390                                 pam_syslog(handle, LOG_ERR, "Failed to set runtime dir.");
391                                 goto finish;
392                         }
393                 }
394
395                 r = PAM_SUCCESS;
396                 goto finish;
397         }
398
399         if (kill_processes)
400                 kill_processes = check_user_lists(handle, pw->pw_uid, kill_only_users, kill_exclude_users);
401
402         dbus_connection_set_change_sigpipe(FALSE);
403
404         bus = dbus_bus_get_private(DBUS_BUS_SYSTEM, &error);
405         if (!bus) {
406                 pam_syslog(handle, LOG_ERR, "Failed to connect to system bus: %s", bus_error_message(&error));
407                 r = PAM_SESSION_ERR;
408                 goto finish;
409         }
410
411         m = dbus_message_new_method_call(
412                         "org.freedesktop.login1",
413                         "/org/freedesktop/login1",
414                         "org.freedesktop.login1.Manager",
415                         "CreateSession");
416
417         if (!m) {
418                 pam_syslog(handle, LOG_ERR, "Could not allocate create session message.");
419                 r = PAM_BUF_ERR;
420                 goto finish;
421         }
422
423         uid = pw->pw_uid;
424         pid = getpid();
425
426         pam_get_item(handle, PAM_XDISPLAY, (const void**) &display);
427         pam_get_item(handle, PAM_TTY, (const void**) &tty);
428         pam_get_item(handle, PAM_RUSER, (const void**) &remote_user);
429         pam_get_item(handle, PAM_RHOST, (const void**) &remote_host);
430         seat = pam_getenv(handle, "XDG_SEAT");
431         cvtnr = pam_getenv(handle, "XDG_VTNR");
432
433         service = strempty(service);
434         tty = strempty(tty);
435         display = strempty(display);
436         remote_user = strempty(remote_user);
437         remote_host = strempty(remote_host);
438         seat = strempty(seat);
439
440         if (strchr(tty, ':')) {
441                 /* A tty with a colon is usually an X11 display, place
442                  * there to show up in utmp. We rearrange things and
443                  * don't pretend that an X display was a tty */
444
445                 if (isempty(display))
446                         display = tty;
447                 tty = "";
448         } else if (streq(tty, "cron")) {
449                 /* cron has been setting PAM_TTY to "cron" for a very long time
450                  * and it cannot stop doing that for compatibility reasons. */
451                 tty = "";
452         }
453
454         if (!isempty(cvtnr))
455                 safe_atou32(cvtnr, &vtnr);
456
457         if (!isempty(display) && isempty(seat) && vtnr <= 0)
458                 get_seat_from_display(display, &seat, &vtnr);
459
460         type = !isempty(display) ? "x11" :
461                    !isempty(tty) ? "tty" : "unspecified";
462
463         remote = !isempty(remote_host) && !streq(remote_host, "localhost") && !streq(remote_host, "localhost.localdomain");
464
465         if (!dbus_message_append_args(m,
466                                       DBUS_TYPE_UINT32, &uid,
467                                       DBUS_TYPE_UINT32, &pid,
468                                       DBUS_TYPE_STRING, &service,
469                                       DBUS_TYPE_STRING, &type,
470                                       DBUS_TYPE_STRING, &seat,
471                                       DBUS_TYPE_UINT32, &vtnr,
472                                       DBUS_TYPE_STRING, &tty,
473                                       DBUS_TYPE_STRING, &display,
474                                       DBUS_TYPE_BOOLEAN, &remote,
475                                       DBUS_TYPE_STRING, &remote_user,
476                                       DBUS_TYPE_STRING, &remote_host,
477                                       DBUS_TYPE_INVALID)) {
478                 pam_syslog(handle, LOG_ERR, "Could not attach parameters to message.");
479                 r = PAM_BUF_ERR;
480                 goto finish;
481         }
482
483         dbus_message_iter_init_append(m, &iter);
484
485         r = bus_append_strv_iter(&iter, controllers);
486         if (r < 0) {
487                 pam_syslog(handle, LOG_ERR, "Could not attach parameter to message.");
488                 r = PAM_BUF_ERR;
489                 goto finish;
490         }
491
492         r = bus_append_strv_iter(&iter, reset_controllers);
493         if (r < 0) {
494                 pam_syslog(handle, LOG_ERR, "Could not attach parameter to message.");
495                 r = PAM_BUF_ERR;
496                 goto finish;
497         }
498
499         kp = kill_processes;
500         if (!dbus_message_iter_append_basic(&iter, DBUS_TYPE_BOOLEAN, &kp)) {
501                 pam_syslog(handle, LOG_ERR, "Could not attach parameter to message.");
502                 r = PAM_BUF_ERR;
503                 goto finish;
504         }
505
506         if (debug)
507                 pam_syslog(handle, LOG_DEBUG, "Asking logind to create session: "
508                            "uid=%u pid=%u service=%s type=%s seat=%s vtnr=%u tty=%s display=%s remote=%s remote_user=%s remote_host=%s",
509                            uid, pid, service, type, seat, vtnr, tty, display, yes_no(remote), remote_user, remote_host);
510
511         reply = dbus_connection_send_with_reply_and_block(bus, m, -1, &error);
512         if (!reply) {
513                 pam_syslog(handle, LOG_ERR, "Failed to create session: %s", bus_error_message(&error));
514                 r = PAM_SESSION_ERR;
515                 goto finish;
516         }
517
518         if (!dbus_message_get_args(reply, &error,
519                                    DBUS_TYPE_STRING, &id,
520                                    DBUS_TYPE_OBJECT_PATH, &object_path,
521                                    DBUS_TYPE_STRING, &runtime_path,
522                                    DBUS_TYPE_UNIX_FD, &session_fd,
523                                    DBUS_TYPE_STRING, &seat,
524                                    DBUS_TYPE_UINT32, &vtnr,
525                                    DBUS_TYPE_INVALID)) {
526                 pam_syslog(handle, LOG_ERR, "Failed to parse message: %s", bus_error_message(&error));
527                 r = PAM_SESSION_ERR;
528                 goto finish;
529         }
530
531         if (debug)
532                 pam_syslog(handle, LOG_DEBUG, "Reply from logind: "
533                            "id=%s object_path=%s runtime_path=%s session_fd=%d seat=%s vtnr=%u",
534                            id, object_path, runtime_path, session_fd, seat, vtnr);
535
536         r = pam_misc_setenv(handle, "XDG_SESSION_ID", id, 0);
537         if (r != PAM_SUCCESS) {
538                 pam_syslog(handle, LOG_ERR, "Failed to set session id.");
539                 goto finish;
540         }
541
542         r = pam_misc_setenv(handle, "XDG_RUNTIME_DIR", runtime_path, 0);
543         if (r != PAM_SUCCESS) {
544                 pam_syslog(handle, LOG_ERR, "Failed to set runtime dir.");
545                 goto finish;
546         }
547
548         if (!isempty(seat)) {
549                 r = pam_misc_setenv(handle, "XDG_SEAT", seat, 0);
550                 if (r != PAM_SUCCESS) {
551                         pam_syslog(handle, LOG_ERR, "Failed to set seat.");
552                         goto finish;
553                 }
554         }
555
556         if (vtnr > 0) {
557                 char buf[11];
558                 snprintf(buf, sizeof(buf), "%u", vtnr);
559                 char_array_0(buf);
560
561                 r = pam_misc_setenv(handle, "XDG_VTNR", buf, 0);
562                 if (r != PAM_SUCCESS) {
563                         pam_syslog(handle, LOG_ERR, "Failed to set virtual terminal number.");
564                         goto finish;
565                 }
566         }
567
568         if (session_fd >= 0) {
569                 r = pam_set_data(handle, "systemd.session-fd", INT_TO_PTR(session_fd+1), NULL);
570                 if (r != PAM_SUCCESS) {
571                         pam_syslog(handle, LOG_ERR, "Failed to install session fd.");
572                         return r;
573                 }
574         }
575
576         session_fd = -1;
577
578         r = PAM_SUCCESS;
579
580 finish:
581         strv_free(controllers);
582         strv_free(reset_controllers);
583         strv_free(kill_only_users);
584         strv_free(kill_exclude_users);
585
586         dbus_error_free(&error);
587
588         if (bus) {
589                 dbus_connection_close(bus);
590                 dbus_connection_unref(bus);
591         }
592
593         if (m)
594                 dbus_message_unref(m);
595
596         if (reply)
597                 dbus_message_unref(reply);
598
599         if (session_fd >= 0)
600                 close_nointr_nofail(session_fd);
601
602         return r;
603 }
604
605 _public_ PAM_EXTERN int pam_sm_close_session(
606                 pam_handle_t *handle,
607                 int flags,
608                 int argc, const char **argv) {
609
610         const void *p = NULL;
611
612         pam_get_data(handle, "systemd.session-fd", &p);
613
614         if (p)
615                 close_nointr(PTR_TO_INT(p) - 1);
616
617         return PAM_SUCCESS;
618 }