chiark / gitweb /
selinux: make sure we do not try to print missing fields
[elogind.git] / src / core / selinux-access.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2012 Dan Walsh
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 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   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include "selinux-access.h"
23
24 #ifdef HAVE_SELINUX
25
26 #include <stdio.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <limits.h>
30 #include <selinux/selinux.h>
31 #include <selinux/avc.h>
32 #include <sys/socket.h>
33 #ifdef HAVE_AUDIT
34 #include <libaudit.h>
35 #endif
36
37 #include "sd-bus.h"
38 #include "bus-util.h"
39 #include "util.h"
40 #include "log.h"
41 #include "audit.h"
42 #include "selinux-util.h"
43 #include "audit-fd.h"
44 #include "strv.h"
45
46 static bool initialized = false;
47
48 struct audit_info {
49         sd_bus_creds *creds;
50         const char *path;
51         const char *cmdline;
52 };
53
54 /*
55    Any time an access gets denied this callback will be called
56    with the audit data.  We then need to just copy the audit data into the msgbuf.
57 */
58 static int audit_callback(
59                 void *auditdata,
60                 security_class_t cls,
61                 char *msgbuf,
62                 size_t msgbufsize) {
63
64         const struct audit_info *audit = auditdata;
65         uid_t uid = 0, login_uid = 0;
66         gid_t gid = 0;
67         char login_uid_buf[DECIMAL_STR_MAX(uid_t)] = "n/a";
68         char uid_buf[DECIMAL_STR_MAX(uid_t)] = "n/a";
69         char gid_buf[DECIMAL_STR_MAX(gid_t)] = "n/a";
70
71         if (sd_bus_creds_get_audit_login_uid(audit->creds, &login_uid) >= 0)
72                 snprintf(login_uid_buf, sizeof(login_uid_buf), UID_FMT, login_uid);
73         if (sd_bus_creds_get_uid(audit->creds, &uid) >= 0)
74                 snprintf(uid_buf, sizeof(uid_buf), UID_FMT, uid);
75         if (sd_bus_creds_get_gid(audit->creds, &gid) >= 0)
76                 snprintf(gid_buf, sizeof(gid_buf), GID_FMT, gid);
77
78         snprintf(msgbuf, msgbufsize,
79                  "auid=%s uid=%s gid=%s%s%s%s%s%s%s",
80                  login_uid_buf, uid_buf, gid_buf,
81                  audit->path ? " path=\"" : "", strempty(audit->path), audit->path ? "\"" : "",
82                  audit->cmdline ? " cmdline=\"" : "", strempty(audit->cmdline), audit->cmdline ? "\"" : "");
83
84         msgbuf[msgbufsize-1] = 0;
85
86         return 0;
87 }
88
89 /*
90    Any time an access gets denied this callback will be called
91    code copied from dbus. If audit is turned on the messages will go as
92    user_avc's into the /var/log/audit/audit.log, otherwise they will be
93    sent to syslog.
94 */
95 _printf_(2, 3) static int log_callback(int type, const char *fmt, ...) {
96         va_list ap;
97
98 #ifdef HAVE_AUDIT
99         if (get_audit_fd() >= 0) {
100                 _cleanup_free_ char *buf = NULL;
101                 int r;
102
103                 va_start(ap, fmt);
104                 r = vasprintf(&buf, fmt, ap);
105                 va_end(ap);
106
107                 if (r >= 0) {
108                         audit_log_user_avc_message(get_audit_fd(), AUDIT_USER_AVC, buf, NULL, NULL, NULL, 0);
109                         return 0;
110                 }
111         }
112 #endif
113
114         va_start(ap, fmt);
115         log_metav(LOG_USER | LOG_INFO, __FILE__, __LINE__, __FUNCTION__, fmt, ap);
116         va_end(ap);
117
118         return 0;
119 }
120
121 /*
122    Function must be called once to initialize the SELinux AVC environment.
123    Sets up callbacks.
124    If you want to cleanup memory you should need to call selinux_access_finish.
125 */
126 static int access_init(void) {
127         int r = 0;
128
129         if (avc_open(NULL, 0)) {
130                 log_error("avc_open() failed: %m");
131                 return -errno;
132         }
133
134         selinux_set_callback(SELINUX_CB_AUDIT, (union selinux_callback) audit_callback);
135         selinux_set_callback(SELINUX_CB_LOG, (union selinux_callback) log_callback);
136
137         if (security_getenforce() < 0){
138                 r = -errno;
139                 avc_destroy();
140         }
141
142         return r;
143 }
144
145 static int selinux_access_init(sd_bus_error *error) {
146         int r;
147
148         if (initialized)
149                 return 0;
150
151         if (!mac_selinux_use())
152                 return 0;
153
154         r = access_init();
155         if (r < 0)
156                 return sd_bus_error_set(error, SD_BUS_ERROR_ACCESS_DENIED, "Failed to initialize SELinux.");
157
158         initialized = true;
159         return 0;
160 }
161
162 void selinux_access_free(void) {
163
164         if (!initialized)
165                 return;
166
167         avc_destroy();
168         initialized = false;
169 }
170
171 /*
172    This function communicates with the kernel to check whether or not it should
173    allow the access.
174    If the machine is in permissive mode it will return ok.  Audit messages will
175    still be generated if the access would be denied in enforcing mode.
176 */
177 int selinux_generic_access_check(
178                 sd_bus_message *message,
179                 const char *path,
180                 const char *permission,
181                 sd_bus_error *error) {
182
183         _cleanup_bus_creds_unref_ sd_bus_creds *creds = NULL;
184         const char *tclass = NULL, *scon = NULL;
185         struct audit_info audit_info = {};
186         _cleanup_free_ char *cl = NULL;
187         security_context_t fcon = NULL;
188         char **cmdline = NULL;
189         int r = 0;
190
191         assert(message);
192         assert(permission);
193         assert(error);
194
195         if (!mac_selinux_use())
196                 return 0;
197
198         r = selinux_access_init(error);
199         if (r < 0)
200                 return r;
201
202         r = sd_bus_query_sender_creds(
203                         message,
204                         SD_BUS_CREDS_PID|SD_BUS_CREDS_UID|SD_BUS_CREDS_GID|
205                         SD_BUS_CREDS_CMDLINE|SD_BUS_CREDS_AUDIT_LOGIN_UID|
206                         SD_BUS_CREDS_SELINUX_CONTEXT,
207                         &creds);
208         if (r < 0)
209                 goto finish;
210
211         r = sd_bus_creds_get_selinux_context(creds, &scon);
212         if (r < 0)
213                 goto finish;
214
215         if (path) {
216                 /* Get the file context of the unit file */
217
218                 r = getfilecon(path, &fcon);
219                 if (r < 0) {
220                         r = sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "Failed to get file context on %s.", path);
221                         goto finish;
222                 }
223
224                 tclass = "service";
225         } else {
226                 r = getcon(&fcon);
227                 if (r < 0) {
228                         r = sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "Failed to get current context.");
229                         goto finish;
230                 }
231
232                 tclass = "system";
233         }
234
235         sd_bus_creds_get_cmdline(creds, &cmdline);
236         cl = strv_join(cmdline, " ");
237
238         audit_info.creds = creds;
239         audit_info.path = path;
240         audit_info.cmdline = cl;
241
242         r = selinux_check_access((security_context_t) scon, fcon, tclass, permission, &audit_info);
243         if (r < 0)
244                 r = sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "SELinux policy denies access.");
245
246         log_debug("SELinux access check scon=%s tcon=%s tclass=%s perm=%s path=%s cmdline=%s: %i", scon, fcon, tclass, permission, path, cl, r);
247
248 finish:
249         freecon(fcon);
250
251         if (r < 0 && security_getenforce() != 1) {
252                 sd_bus_error_free(error);
253                 r = 0;
254         }
255
256         return r;
257 }
258
259 int selinux_unit_access_check_strv(char **units,
260                                 sd_bus_message *message,
261                                 Manager *m,
262                                 const char *permission,
263                                 sd_bus_error *error) {
264         char **i;
265         Unit *u;
266         int r;
267
268         STRV_FOREACH(i, units) {
269                 u = manager_get_unit(m, *i);
270                 if (u) {
271                         r = selinux_unit_access_check(u, message, permission, error);
272                         if (r < 0)
273                                 return r;
274                 }
275         }
276
277         return 0;
278 }
279
280 #else
281
282 int selinux_generic_access_check(
283                 sd_bus_message *message,
284                 const char *path,
285                 const char *permission,
286                 sd_bus_error *error) {
287
288         return 0;
289 }
290
291 void selinux_access_free(void) {
292 }
293
294 int selinux_unit_access_check_strv(char **units,
295                                 sd_bus_message *message,
296                                 Manager *m,
297                                 const char *permission,
298                                 sd_bus_error *error) {
299         return 0;
300 }
301
302 #endif