summaryrefslogtreecommitdiff
path: root/src/core/selinux-access.c
blob: 732fcbfd2c3e6a0f87ccdc6f4705d75a26cc3aca (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/

/***
  This file is part of systemd.

  Copyright 2012 Dan Walsh

  systemd 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 2 of the License, or
  (at your option) any later version.

  systemd 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 systemd; If not, see <http://www.gnu.org/licenses/>.
***/

#include "util.h"
#include "job.h"
#include "manager.h"
#include "selinux-access.h"

#ifdef HAVE_SELINUX
#include "dbus.h"
#include "log.h"
#include "dbus-unit.h"
#include "bus-errors.h"
#include "dbus-common.h"
#include "audit.h"

#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <selinux/selinux.h>
#include <selinux/avc.h>
#ifdef HAVE_AUDIT
#include <libaudit.h>
#endif
#include <limits.h>

/* FD to send audit messages to */
static int audit_fd = -1;
static int selinux_enabled = -1;
static int first_time = 1;
static int selinux_enforcing = 0;

struct auditstruct {
        const char *path;
        char *cmdline;
        uid_t loginuid;
        uid_t uid;
        gid_t gid;
};

/*
   Define a mapping between the systemd method calls and the SELinux access to check.
   We define two tables, one for access checks on unit files, and one for
   access checks for the system in general.

   If we do not find a match in either table, then the "undefined" system
   check will be called.
*/

static const char unit_methods[] =
        "DisableUnitFiles\0"       "disable\0"
        "EnableUnitFiles\0"        "enable\0"
        "GetUnit\0"                "status\0"
        "GetUnitFileState\0"       "status\0"
        "Kill\0"                   "stop\0"
        "KillUnit\0"               "stop\0"
        "LinkUnitFiles\0"          "enable\0"
        "MaskUnitFiles\0"          "disable\0"
        "PresetUnitFiles\0"        "enable\0"
        "ReenableUnitFiles\0"      "enable\0"
        "ReloadOrRestart\0"        "start\0"
        "ReloadOrRestartUnit\0"    "start\0"
        "ReloadOrTryRestart\0"     "start\0"
        "ReloadOrTryRestartUnit\0" "start\0"
        "Reload\0"                 "reload\0"
        "ReloadUnit\0"             "reload\0"
        "ResetFailedUnit\0"        "stop\0"
        "Restart\0"                "start\0"
        "RestartUnit\0"            "start\0"
        "Start\0"                  "start\0"
        "StartUnit\0"              "start\0"
        "StartUnitReplace\0"       "start\0"
        "Stop\0"                   "stop\0"
        "StopUnit\0"               "stop\0"
        "TryRestart\0"             "start\0"
        "TryRestartUnit\0"         "start\0"
        "UnmaskUnitFiles\0"        "enable\0";

static const char system_methods[] =
        "ClearJobs\0"              "reboot\0"
        "CreateSnapshot\0"         "status\0"
        "Dump\0"                   "status\0"
        "Exit\0"                   "halt\0"
        "FlushDevices\0"           "halt\0"
        "Get\0"                    "status\0"
        "GetAll\0"                 "status\0"
        "GetJob\0"                 "status\0"
        "GetSeat\0"                "status\0"
        "GetSession\0"             "status\0"
        "GetSessionByPID\0"        "status\0"
        "GetUnitByPID\0"           "status\0"
        "GetUser\0"                "status\0"
        "Halt\0"                   "halt\0"
        "Introspect\0"             "status\0"
        "KExec\0"                  "reboot\0"
        "KillSession\0"            "halt\0"
        "KillUser\0"               "halt\0"
        "LoadUnit\0"               "reload\0"
        "ListJobs\0"               "status\0"
        "ListSeats\0"              "status\0"
        "ListSessions\0"           "status\0"
        "ListUnits\0"              "status\0"
        "ListUnitFiles\0"          "status\0"
        "ListUsers\0"              "status\0"
        "LockSession\0"            "halt\0"
        "PowerOff\0"               "halt\0"
        "Reboot\0"                 "reboot\0"
        "Reload\0"                 "reload\0"
        "Reexecute\0"              "reload\0"
        "ResetFailed\0"            "reload\0"
        "Subscribe\0"              "status\0"
        "SwithcRoot\0"             "reboot\0"
        "SetEnvironment\0"         "status\0"
        "SetUserLinger\0"          "halt\0"
        "TerminateSeat\0"          "halt\0"
        "TerminateSession\0"       "halt\0"
        "TerminateUser\0"          "halt\0"
        "Unsubscribe\0"            "status\0"
        "UnsetEnvironment\0"       "status\0"
        "UnsetAndSetEnvironment\0" "status\0";

/*
   If the admin toggles the selinux enforcment mode this callback
   will get called before the next access check
*/
static int setenforce_callback(int enforcing)
{
        selinux_enforcing = enforcing;
        return 0;
}

/* This mimics dbus_bus_get_unix_user() */
static int bus_get_selinux_security_context(
                DBusConnection *connection,
                const char *name,
                char **scon,
                DBusError *error) {

        DBusMessage *m = NULL, *reply = NULL;
        int r;

        m = dbus_message_new_method_call(
                        DBUS_SERVICE_DBUS,
                        DBUS_PATH_DBUS,
                        DBUS_INTERFACE_DBUS,
                        "GetConnectionSELinuxSecurityContext");
        if (!m) {
                r = -errno;
                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
                goto finish;
        }

        r = dbus_message_append_args(
                m,
                DBUS_TYPE_STRING, &name,
                DBUS_TYPE_INVALID);
        if (!r) {
                r = -errno;
                dbus_set_error_const(error, DBUS_ERROR_NO_MEMORY, NULL);
                goto finish;
        }

        reply = dbus_connection_send_with_reply_and_block(connection, m, -1, error);
        if (!reply) {
                r = -errno;
                goto finish;
        }

        r = dbus_set_error_from_message(error, reply);
        if (!r) {
                r = -errno;
                goto finish;
        }

        r = dbus_message_get_args(
                reply, error,
                DBUS_TYPE_STRING, scon,
                DBUS_TYPE_INVALID);
        if (!r) {
                r = -errno;
                goto finish;
        }

        r = 0;
finish:
        if (m)
                dbus_message_unref(m);

        if (reply)
                dbus_message_unref(reply);

        return r;
}

/* This mimics dbus_bus_get_unix_user() */
static int bus_get_audit_data(
                DBusConnection *connection,
                const char *name,
                struct auditstruct *audit,
                DBusError *error) {

        pid_t pid;
        int r;

        pid = bus_get_unix_process_id(connection, name, error);
        if (pid <= 0)
                return -EINVAL;

        r = audit_loginuid_from_pid(pid, &audit->loginuid);
        if (r < 0)
                return r;

        r = get_process_uid(pid, &audit->uid);
        if (r < 0)
                return r;

        r = get_process_gid(pid, &audit->gid);
        if (r < 0)
                return r;

        r = get_process_cmdline(pid, LINE_MAX, true, &audit->cmdline);
        if (r < 0)
                return r;

        return 0;
}

/*
   Any time an access gets denied this callback will be called
   with the aduit data.  We then need to just copy the audit data into the msgbuf.
*/
static int audit_callback(void *auditdata, security_class_t cls,
                          char *msgbuf, size_t msgbufsize)
{
        struct auditstruct *audit = (struct auditstruct *) auditdata;
        snprintf(msgbuf, msgbufsize,
                 "auid=%d uid=%d gid=%d",
                 audit->loginuid,
                 audit->uid, audit->gid);

        if (audit->path) {
		strncat(msgbuf," path=\"", msgbufsize);
		strncat(msgbuf, audit->path, msgbufsize);
		strncat(msgbuf,"\"", msgbufsize);
        }

        if (audit->cmdline) {
		strncat(msgbuf," cmdline=\"", msgbufsize);
		strncat(msgbuf, audit->cmdline, msgbufsize);
		strncat(msgbuf,"\"", msgbufsize);
        }

        return 0;
}

/*
   Any time an access gets denied this callback will be called
   code copied from dbus. If audit is turned on the messages will go as
   user_avc's into the /var/log/audit/audit.log, otherwise they will be
   sent to syslog.
*/
static int log_callback(int type, const char *fmt, ...)
{
        va_list ap;

        va_start(ap, fmt);
#ifdef HAVE_AUDIT
        if (audit_fd >= 0) {
                char buf[LINE_MAX*2];

                vsnprintf(buf, sizeof(buf), fmt, ap);
                audit_log_user_avc_message(audit_fd, AUDIT_USER_AVC,
                                           buf, NULL, NULL, NULL, 0);
                va_end(ap);
                return 0;
        }
#endif
        log_metav(LOG_USER | LOG_INFO, __FILE__, __LINE__, __FUNCTION__, fmt, ap);
        va_end(ap);
        return 0;
}

/*
   Function must be called once to initialize the SELinux AVC environment.
   Sets up callbacks.
   If you want to cleanup memory you should need to call selinux_access_finish.
*/
static int access_init(void) {

        int r = -1;

        if (avc_open(NULL, 0)) {
                log_error("avc_open failed: %m");
                return -errno;
        }

        selinux_set_callback(SELINUX_CB_AUDIT, (union selinux_callback) &audit_callback);
        selinux_set_callback(SELINUX_CB_LOG, (union selinux_callback) &log_callback);
        selinux_set_callback(SELINUX_CB_SETENFORCE, (union selinux_callback) &setenforce_callback);

        if ((r = security_getenforce()) >= 0) {
                setenforce_callback(r);
                return 0;
        }
        r = -errno;
        avc_destroy();
        return r;
}

static int selinux_init(Manager *m, DBusError *error) {

        int r;

#ifdef HAVE_AUDIT
        audit_fd = m->audit_fd;
#endif
        if (!first_time)
                return 0;

        if (selinux_enabled < 0)
                selinux_enabled = is_selinux_enabled() == 1;

        if (selinux_enabled) {
                /* if not first time is not set, then initialize access */
                r = access_init();
                if (r < 0) {
                        dbus_set_error(error, DBUS_ERROR_ACCESS_DENIED, "Failed to initialize SELinux.");
                        return r;
                }
        }

        first_time = 0;
        return 0;
}

static int get_audit_data(
        DBusConnection *connection,
        DBusMessage *message,
        struct auditstruct *audit,
        DBusError *error) {

        const char *sender;
        int r;

        sender = dbus_message_get_sender(message);
        if (sender)
                return bus_get_audit_data(connection, sender, audit, error);
        else {
                int fd;
                struct ucred ucred;
                socklen_t len;

                if (!dbus_connection_get_unix_fd(connection, &fd))
                        return -EINVAL;

                r = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &ucred, &len);
                if (r < 0) {
                        log_error("Failed to determine peer credentials: %m");
                        return -errno;
                }

                audit->uid = ucred.uid;
                audit->gid = ucred.gid;

                r = audit_loginuid_from_pid(ucred.pid, &audit->loginuid);
                if (r < 0)
                        return r;

                r = get_process_cmdline(ucred.pid, LINE_MAX, true, &audit->cmdline);
                if (r < 0)
                        return r;

                return 0;
        }
}

/*
   This function returns the security context of the remote end of the dbus
   connections.  Whether it is on the bus or a local connection.
*/
static int get_calling_context(
        DBusConnection *connection,
        DBusMessage *message,
        security_context_t *scon,
        DBusError *error) {

        const char *sender;
        int r;
        int fd;

        /*
           If sender exists then
           if sender is NULL this indicates a local connection.  Grab the fd
           from dbus and do an getpeercon to peers process context
        */
        sender = dbus_message_get_sender(message);
        if (sender) {
                r = bus_get_selinux_security_context(connection, sender, scon, error);
                if (r == 0)
                        return 0;

                log_debug("bus_get_selinux_security_context failed %m");
        }

        r = dbus_connection_get_unix_fd(connection, &fd);
        if (! r) {
                log_error("bus_connection_get_unix_fd failed %m");
                return -EINVAL;
        }

        r = getpeercon(fd, scon);
        if (r < 0) {
                log_error("getpeercon failed %m");
                return -errno;
        }

        return 0;
}

/*
   This function returns the SELinux permission to check and whether or not the
   check requires a unit file.
*/
static void selinux_perm_lookup(const char *method, const char **perm, bool *require_unit) {
        const char *m, *p;

        NULSTR_FOREACH_PAIR(m, p, unit_methods)
                if (streq(method, m)) {
                        *perm = p;
                        *require_unit = true;
                        return;
                }

        NULSTR_FOREACH_PAIR(m, p, system_methods)
                if (streq(method, m)) {
                        *perm = p;
                        *require_unit = false;
                        return;
                }

        *require_unit = false;
        *perm = "undefined";
}

/*
   This function communicates with the kernel to check whether or not it should
   allow the access.
   If the machine is in permissive mode it will return ok.  Audit messages will
   still be generated if the access would be denied in enforcing mode.
*/
static int selinux_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error, const char *perm, const char *path) {
        security_context_t scon = NULL;
        security_context_t fcon = NULL;
        int r = 0;
        const char *tclass = NULL;
        struct auditstruct audit;

        audit.uid = audit.loginuid = (uid_t) -1;
        audit.gid = (gid_t) -1;
        audit.cmdline = NULL;
        audit.path = path;

        r = get_calling_context(connection, message, &scon, error);
        if (r != 0) {
                log_error("Failed to get caller's security context on: %m");
                goto finish;
        }
        if (path) {
                tclass = "service";
                /* get the file context of the unit file */
                r = getfilecon(path, &fcon);
                if (r < 0) {
                        dbus_set_error(error, DBUS_ERROR_ACCESS_DENIED, "Failed to get file context on %s.", path);
                        r = -errno;
                        log_error("Failed to get security context on: %s %m",path);
                        goto finish;
                }

        } else {
                tclass = "system";
                r = getcon(&fcon);
                if (r < 0) {
                        dbus_set_error(error, DBUS_ERROR_ACCESS_DENIED, "Failed to get current context.");
                        r = -errno;
                        log_error("Failed to get current process context on: %m");
                        goto finish;
                }
        }

        (void) get_audit_data(connection, message, &audit, error);

        errno= 0;
        r = selinux_check_access(scon, fcon, tclass, perm, &audit);
        if (r < 0) {
                r = -errno;
                log_error("SELinux policy denies access.");
                dbus_set_error(error, DBUS_ERROR_ACCESS_DENIED, "SELinux policy denies access.");
        }

        log_debug("SELinux checkaccess scon %s tcon %s tclass %s perm %s path %s cmdline %s: %d", scon, fcon, tclass, perm, path, audit.cmdline, r);
finish:
        free(audit.cmdline);
        freecon(scon);
        freecon(fcon);

        return r;
}

/*
  Clean up memory allocated in selinux_avc_init
*/
void selinux_access_finish(void) {
        if (!first_time)
                avc_destroy();
        first_time = 1;
}

int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, const char *path, DBusError *error) {
        const char *perm;
        bool require_unit;
        const char *member;
        int r;

        log_debug("SELinux unit access check %s\n", path);
        r = selinux_init(m, error);
        if (r < 0)
                return r;

        if (! selinux_enabled)
                return 0;

        member = dbus_message_get_member(message);

        selinux_perm_lookup(member, &perm, &require_unit);
        log_debug("SELinux dbus-unit Look %s up perm %s require_unit %d", member, perm, require_unit);

        r = selinux_access_check(connection, message, m, error, perm, path);

        /* if SELinux is in permissive mode return 0 */
        if (r && (security_getenforce() != 1 )) {
                dbus_error_init(error);
                r = 0;
        }

        return r;
}

int selinux_manager_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error) {
        int r = -1;
        const char *member;
        bool require_unit;
        const char *perm;
        char *path = NULL;

        log_debug("SELinux manager access check\n");
        r = selinux_init(m, error);
        if (r < 0)
                return r;

        if (! selinux_enabled)
                return 0;

        member = dbus_message_get_member(message);

        selinux_perm_lookup(member, &perm, &require_unit);
        log_debug("SELinux dbus-manager Lookup %s perm %s require_unit %d", member, perm, require_unit);

        if (require_unit) {
                const char *name, *smode, *old_name = NULL;
                Unit *u;

                if (! dbus_message_get_args(
                            message,
                            error,
                            DBUS_TYPE_STRING, &old_name,
                            DBUS_TYPE_STRING, &name,
                            DBUS_TYPE_STRING, &smode,
                            DBUS_TYPE_INVALID)) {
                        dbus_error_init(error);
                        if (!dbus_message_get_args(
                                    message,
                                    error,
                                    DBUS_TYPE_STRING, &name,
                                    DBUS_TYPE_STRING, &smode,
                                    DBUS_TYPE_INVALID)) {
                                dbus_error_init(error);
                                if (!dbus_message_get_args(
                                            message,
                                            error,
                                            DBUS_TYPE_STRING, &name,
                                            DBUS_TYPE_INVALID)) {
                                        r = -EINVAL;
                                        /* This is broken for now, if I can not get a name
                                           return success.
                                        */
                                        log_error("SELinux dbus-manager failed to find unit %m");
                                        r = 0;
                                        goto finish;
                                }
                        }
                }

                log_debug("SELinux dbus-manager load unit %s", name);
                r = manager_load_unit(m, name, NULL, error, &u);
                if (r < 0) {
                        log_error("Unit %s is not loaded.", name);
                        /* This is broken for now, if I can not load a unit
                           return success.
                         */
                        dbus_error_init(error);
                        r = 0;
                        goto finish;
                }

                path = u->source_path ? u->source_path : u->fragment_path;
                if (!path) {
//                      r = -1;
                        log_error("Unit %s does not have path.", name);
                        goto finish;
                }
        }
        r = selinux_access_check(connection, message, m, error, perm, path);

finish:
        /* if SELinux is in permissive mode return 0 */
        if (r && (security_getenforce() != 1 )) {
                dbus_error_init(error);
                r = 0;
        }
        return r;
}

#else
int selinux_unit_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, const char *path, DBusError *error) {
        return 0;
}

int selinux_manager_access_check(DBusConnection *connection, DBusMessage *message, Manager *m, DBusError *error) {
        return 0;
}

void selinux_access_finish(void) {
}
#endif