]> git.armaanb.net Git - opendoas.git/blob - doas.c
eb9c47a47b43a3c0bdc62a53e7219960087bf50a
[opendoas.git] / doas.c
1 /* $OpenBSD: doas.c,v 1.52 2016/04/28 04:48:56 tedu Exp $ */
2 /*
3  * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org>
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 #include "config.h"
19
20 #include <sys/types.h>
21 #include <sys/stat.h>
22 #include <sys/ioctl.h>
23
24 #include <limits.h>
25 #ifdef HAVE_LOGIN_CAP_H
26 #include <login_cap.h>
27 #endif
28 #include <string.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <err.h>
32 #include <unistd.h>
33 #include <pwd.h>
34 #include <grp.h>
35 #include <syslog.h>
36 #include <errno.h>
37 #include <fcntl.h>
38 #include <time.h>
39
40 #include "openbsd.h"
41 #include "doas.h"
42
43 static void __dead
44 usage(void)
45 {
46         fprintf(stderr, "usage: doas [-Lns] [-C config] [-u user]"
47             " command [args]\n");
48         exit(1);
49 }
50
51 static int
52 parseuid(const char *s, uid_t *uid)
53 {
54         struct passwd *pw;
55         const char *errstr;
56
57         if ((pw = getpwnam(s)) != NULL) {
58                 *uid = pw->pw_uid;
59                 if (*uid == UID_MAX)
60                         return -1;
61                 return 0;
62         }
63         *uid = strtonum(s, 0, UID_MAX - 1, &errstr);
64         if (errstr)
65                 return -1;
66         return 0;
67 }
68
69 static int
70 uidcheck(const char *s, uid_t desired)
71 {
72         uid_t uid;
73
74         if (parseuid(s, &uid) != 0)
75                 return -1;
76         if (uid != desired)
77                 return -1;
78         return 0;
79 }
80
81 static int
82 parsegid(const char *s, gid_t *gid)
83 {
84         struct group *gr;
85         const char *errstr;
86
87         if ((gr = getgrnam(s)) != NULL) {
88                 *gid = gr->gr_gid;
89                 if (*gid == GID_MAX)
90                         return -1;
91                 return 0;
92         }
93         *gid = strtonum(s, 0, GID_MAX - 1, &errstr);
94         if (errstr)
95                 return -1;
96         return 0;
97 }
98
99 static int
100 match(uid_t uid, gid_t *groups, int ngroups, uid_t target, const char *cmd,
101     const char **cmdargs, struct rule *r)
102 {
103         int i;
104
105         if (r->ident[0] == ':') {
106                 gid_t rgid;
107                 if (parsegid(r->ident + 1, &rgid) == -1)
108                         return 0;
109                 for (i = 0; i < ngroups; i++) {
110                         if (rgid == groups[i])
111                                 break;
112                 }
113                 if (i == ngroups)
114                         return 0;
115         } else {
116                 if (uidcheck(r->ident, uid) != 0)
117                         return 0;
118         }
119         if (r->target && uidcheck(r->target, target) != 0)
120                 return 0;
121         if (r->cmd) {
122                 if (strcmp(r->cmd, cmd))
123                         return 0;
124                 if (r->cmdargs) {
125                         /* if arguments were given, they should match explicitly */
126                         for (i = 0; r->cmdargs[i]; i++) {
127                                 if (!cmdargs[i])
128                                         return 0;
129                                 if (strcmp(r->cmdargs[i], cmdargs[i]))
130                                         return 0;
131                         }
132                         if (cmdargs[i])
133                                 return 0;
134                 }
135         }
136         return 1;
137 }
138
139 static int
140 permit(uid_t uid, gid_t *groups, int ngroups, const struct rule **lastr,
141     uid_t target, const char *cmd, const char **cmdargs)
142 {
143         size_t i;
144
145         *lastr = NULL;
146         for (i = 0; i < nrules; i++) {
147                 if (match(uid, groups, ngroups, target, cmd,
148                     cmdargs, rules[i]))
149                         *lastr = rules[i];
150         }
151         if (!*lastr)
152                 return 0;
153         return (*lastr)->action == PERMIT;
154 }
155
156 static void
157 parseconfig(const char *filename, int checkperms)
158 {
159         extern FILE *yyfp;
160         extern int yyparse(void);
161         struct stat sb;
162
163         yyfp = fopen(filename, "r");
164         if (!yyfp)
165                 err(1, checkperms ? "doas is not enabled, %s" :
166                     "could not open config file %s", filename);
167
168         if (checkperms) {
169                 if (fstat(fileno(yyfp), &sb) != 0)
170                         err(1, "fstat(\"%s\")", filename);
171                 if ((sb.st_mode & (S_IWGRP|S_IWOTH)) != 0)
172                         errx(1, "%s is writable by group or other", filename);
173                 if (sb.st_uid != 0)
174                         errx(1, "%s is not owned by root", filename);
175         }
176
177         yyparse();
178         fclose(yyfp);
179         if (parse_errors)
180                 exit(1);
181 }
182
183 static void __dead
184 checkconfig(const char *confpath, int argc, char **argv,
185     uid_t uid, gid_t *groups, int ngroups, uid_t target)
186 {
187         const struct rule *rule;
188
189         if (setresuid(uid, uid, uid) != 0)
190                 err(1, "setresuid");
191
192         parseconfig(confpath, 0);
193         if (!argc)
194                 exit(0);
195
196         if (permit(uid, groups, ngroups, &rule, target, argv[0],
197             (const char **)argv + 1)) {
198                 printf("permit%s\n", (rule->options & NOPASS) ? " nopass" : "");
199                 exit(0);
200         } else {
201                 printf("deny\n");
202                 exit(1);
203         }
204 }
205
206 int
207 mygetpwuid_r(uid_t uid, struct passwd *pwd, struct passwd **result)
208 {
209         int rv;
210         char *buf;
211         static long pwsz = 0;
212         size_t buflen;
213
214         *result = NULL;
215
216         if (pwsz == 0)
217                 pwsz = sysconf(_SC_GETPW_R_SIZE_MAX);
218
219         buflen = pwsz > 0 ? pwsz : 1024;
220
221         buf = malloc(buflen);
222         if (buf == NULL)
223                 return errno;
224
225         while ((rv = getpwuid_r(uid, pwd, buf, buflen, result)) == ERANGE) {
226                 size_t newsz;
227                 newsz = buflen * 2;
228                 if (newsz < buflen)
229                         return rv;
230                 buflen = newsz;
231                 buf = realloc(buf, buflen);
232                 if (buf == NULL)
233                         return errno;
234         }
235
236         return rv;
237 }
238
239 void
240 authfail(void)
241 {
242         printf("%s\n", getinsult());
243         errx(1, "Authentication failed");
244 }
245
246 int
247 main(int argc, char **argv)
248 {
249         const char *safepath = "/bin:/sbin:/usr/bin:/usr/sbin:"
250             "/usr/local/bin:/usr/local/sbin";
251         const char *confpath = NULL;
252         char *shargv[] = { NULL, NULL };
253         char *sh;
254         const char *p;
255         const char *cmd;
256         char cmdline[LINE_MAX];
257         struct passwd mypwstore, targpwstore;
258         struct passwd *mypw, *targpw;
259         const struct rule *rule;
260         uid_t uid;
261         uid_t target = 0;
262         gid_t groups[NGROUPS_MAX + 1];
263         int ngroups;
264         int i, ch, rv;
265         int sflag = 0;
266         int nflag = 0;
267         char cwdpath[PATH_MAX];
268         const char *cwd;
269         char **envp;
270
271         setprogname("doas");
272
273         closefrom(STDERR_FILENO + 1);
274
275         uid = getuid();
276
277         while ((ch = getopt(argc, argv, "+C:Lnsu:")) != -1) {
278                 switch (ch) {
279                 case 'C':
280                         confpath = optarg;
281                         break;
282                 case 'L':
283 #if defined(USE_TIMESTAMP)
284                         exit(timestamp_clear() == -1);
285 #else
286                         exit(0);
287 #endif
288                 case 'u':
289                         if (parseuid(optarg, &target) != 0)
290                                 errx(1, "unknown user");
291                         break;
292                 case 'n':
293                         nflag = 1;
294                         break;
295                 case 's':
296                         sflag = 1;
297                         break;
298                 default:
299                         usage();
300                         break;
301                 }
302         }
303         argv += optind;
304         argc -= optind;
305
306         if (confpath) {
307                 if (sflag)
308                         usage();
309         } else if ((!sflag && !argc) || (sflag && argc))
310                 usage();
311
312         rv = mygetpwuid_r(uid, &mypwstore, &mypw);
313         if (rv != 0)
314                 err(1, "getpwuid_r failed");
315         if (mypw == NULL)
316                 errx(1, "no passwd entry for self");
317         ngroups = getgroups(NGROUPS_MAX, groups);
318         if (ngroups == -1)
319                 err(1, "can't get groups");
320         groups[ngroups++] = getgid();
321
322         if (sflag) {
323                 sh = getenv("SHELL");
324                 if (sh == NULL || *sh == '\0') {
325                         shargv[0] = mypw->pw_shell;
326                 } else
327                         shargv[0] = sh;
328                 argv = shargv;
329                 argc = 1;
330         }
331
332         if (confpath) {
333                 checkconfig(confpath, argc, argv, uid, groups, ngroups,
334                     target);
335                 exit(1);        /* fail safe */
336         }
337
338         if (geteuid())
339                 errx(1, "not installed setuid");
340
341         parseconfig(DOAS_CONF, 1);
342
343         /* cmdline is used only for logging, no need to abort on truncate */
344         (void)strlcpy(cmdline, argv[0], sizeof(cmdline));
345         for (i = 1; i < argc; i++) {
346                 if (strlcat(cmdline, " ", sizeof(cmdline)) >= sizeof(cmdline))
347                         break;
348                 if (strlcat(cmdline, argv[i], sizeof(cmdline)) >= sizeof(cmdline))
349                         break;
350         }
351
352         cmd = argv[0];
353         if (!permit(uid, groups, ngroups, &rule, target, cmd,
354             (const char **)argv + 1)) {
355                 syslog(LOG_AUTHPRIV | LOG_NOTICE,
356                     "command not permitted for %s: %s", mypw->pw_name, cmdline);
357                 errc(1, EPERM, NULL);
358         }
359
360 #if defined(USE_SHADOW)
361         if (!(rule->options & NOPASS)) {
362                 if (nflag)
363                         errx(1, "Authentication required");
364
365                 shadowauth(mypw->pw_name, rule->options & PERSIST);
366         }
367 #elif !defined(USE_PAM)
368         /* no authentication provider, only allow NOPASS rules */
369         (void) nflag;
370         if (!(rule->options & NOPASS))
371                 errx(1, "Authentication required");
372 #endif
373
374         if ((p = getenv("PATH")) != NULL)
375                 formerpath = strdup(p);
376         if (formerpath == NULL)
377                 formerpath = "";
378
379         if (rule->cmd) {
380                 if (setenv("PATH", safepath, 1) == -1)
381                         err(1, "failed to set PATH '%s'", safepath);
382         }
383
384         rv = mygetpwuid_r(target, &targpwstore, &targpw);
385         if (rv != 0)
386                 err(1, "getpwuid_r failed");
387         if (targpw == NULL)
388                 errx(1, "no passwd entry for target");
389
390 #if defined(USE_PAM)
391         pamauth(targpw->pw_name, mypw->pw_name, !nflag, rule->options & NOPASS,
392             rule->options & PERSIST);
393 #endif
394
395 #ifdef HAVE_LOGIN_CAP_H
396         if (setusercontext(NULL, targpw, target, LOGIN_SETGROUP |
397             LOGIN_SETPATH |
398             LOGIN_SETPRIORITY | LOGIN_SETRESOURCES | LOGIN_SETUMASK |
399             LOGIN_SETUSER) != 0)
400                 errx(1, "failed to set user context for target");
401 #else
402         if (setresgid(targpw->pw_gid, targpw->pw_gid, targpw->pw_gid) != 0)
403                 err(1, "setresgid");
404         if (initgroups(targpw->pw_name, targpw->pw_gid) != 0)
405                 err(1, "initgroups");
406         if (setresuid(target, target, target) != 0)
407                 err(1, "setresuid");
408         if (setenv("PATH", safepath, 1) == -1)
409                 err(1, "failed to set PATH '%s'", safepath);
410 #endif
411
412         if (getcwd(cwdpath, sizeof(cwdpath)) == NULL)
413                 cwd = "(failed)";
414         else
415                 cwd = cwdpath;
416
417         if (!(rule->options & NOLOG)) {
418                 syslog(LOG_AUTHPRIV | LOG_INFO,
419                     "%s ran command %s as %s from %s",
420                     mypw->pw_name, cmdline, targpw->pw_name, cwd);
421         }
422
423         envp = prepenv(rule, mypw, targpw);
424
425         /* setusercontext set path for the next process, so reset it for us */
426         if (rule->cmd) {
427                 if (setenv("PATH", safepath, 1) == -1)
428                         err(1, "failed to set PATH '%s'", safepath);
429         } else {
430                 if (setenv("PATH", formerpath, 1) == -1)
431                         err(1, "failed to set PATH '%s'", formerpath);
432         }
433         execvpe(cmd, argv, envp);
434         if (errno == ENOENT)
435                 errx(1, "%s: command not found", cmd);
436         err(1, "%s", cmd);
437 }