]> git.armaanb.net Git - opendoas.git/blob - doas.c
Handle empty argv
[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(int opt)
241 {
242
243 #ifdef DOAS_INSULTS
244         if (opt)
245                 printf("%s\n", getinsult());
246 #endif
247
248         errx(1, "Authentication failed");
249 }
250
251 int
252 main(int argc, char **argv)
253 {
254         const char *safepath = "/bin:/sbin:/usr/bin:/usr/sbin:"
255             "/usr/local/bin:/usr/local/sbin";
256         const char *confpath = NULL;
257         char *shargv[] = { NULL, NULL };
258         char *sh;
259         const char *p;
260         const char *cmd;
261         char cmdline[LINE_MAX];
262         struct passwd mypwstore, targpwstore;
263         struct passwd *mypw, *targpw;
264         const struct rule *rule;
265         uid_t uid;
266         uid_t target = 0;
267         gid_t groups[NGROUPS_MAX + 1];
268         int ngroups;
269         int i, ch, rv;
270         int sflag = 0;
271         int nflag = 0;
272         char cwdpath[PATH_MAX];
273         const char *cwd;
274         char **envp;
275
276         if (argc <= 0 || argv == NULL || argv[0] == NULL) {
277                 fprintf(stderr, "doas: executed without argv\n");
278                 exit(1);
279         }
280
281         setprogname("doas");
282
283         closefrom(STDERR_FILENO + 1);
284
285         uid = getuid();
286
287         while ((ch = getopt(argc, argv, "+C:Lnsu:")) != -1) {
288                 switch (ch) {
289                 case 'C':
290                         confpath = optarg;
291                         break;
292                 case 'L':
293 #if defined(USE_TIMESTAMP)
294                         exit(timestamp_clear() == -1);
295 #else
296                         exit(0);
297 #endif
298                 case 'u':
299                         if (parseuid(optarg, &target) != 0)
300                                 errx(1, "unknown user");
301                         break;
302                 case 'n':
303                         nflag = 1;
304                         break;
305                 case 's':
306                         sflag = 1;
307                         break;
308                 default:
309                         usage();
310                         break;
311                 }
312         }
313         argv += optind;
314         argc -= optind;
315
316         if (confpath) {
317                 if (sflag)
318                         usage();
319         } else if ((!sflag && !argc) || (sflag && argc))
320                 usage();
321
322         rv = mygetpwuid_r(uid, &mypwstore, &mypw);
323         if (rv != 0)
324                 err(1, "getpwuid_r failed");
325         if (mypw == NULL)
326                 errx(1, "no passwd entry for self");
327         ngroups = getgroups(NGROUPS_MAX, groups);
328         if (ngroups == -1)
329                 err(1, "can't get groups");
330         groups[ngroups++] = getgid();
331
332         if (sflag) {
333                 sh = getenv("SHELL");
334                 if (sh == NULL || *sh == '\0') {
335                         shargv[0] = mypw->pw_shell;
336                 } else
337                         shargv[0] = sh;
338                 argv = shargv;
339                 argc = 1;
340         }
341
342         if (confpath) {
343                 checkconfig(confpath, argc, argv, uid, groups, ngroups,
344                     target);
345                 exit(1);        /* fail safe */
346         }
347
348         if (geteuid())
349                 errx(1, "not installed setuid");
350
351         parseconfig(DOAS_CONF, 1);
352
353         /* cmdline is used only for logging, no need to abort on truncate */
354         (void)strlcpy(cmdline, argv[0], sizeof(cmdline));
355         for (i = 1; i < argc; i++) {
356                 if (strlcat(cmdline, " ", sizeof(cmdline)) >= sizeof(cmdline))
357                         break;
358                 if (strlcat(cmdline, argv[i], sizeof(cmdline)) >= sizeof(cmdline))
359                         break;
360         }
361
362         cmd = argv[0];
363         if (!permit(uid, groups, ngroups, &rule, target, cmd,
364             (const char **)argv + 1)) {
365                 syslog(LOG_AUTHPRIV | LOG_NOTICE,
366                     "command not permitted for %s: %s", mypw->pw_name, cmdline);
367                 errc(1, EPERM, NULL);
368         }
369
370         if (!(rule->options & NOPASS)) {
371                 if (nflag)
372                         errx(1, "Authentication required");
373
374                 int ret = shadowauth(mypw->pw_name, rule->options & PERSIST);
375                 if (ret == 5)
376                         authfail(rule->options & INSULT);
377         }
378
379         if ((p = getenv("PATH")) != NULL)
380                 formerpath = strdup(p);
381         if (formerpath == NULL)
382                 formerpath = "";
383
384         if (rule->cmd) {
385                 if (setenv("PATH", safepath, 1) == -1)
386                         err(1, "failed to set PATH '%s'", safepath);
387         }
388
389         rv = mygetpwuid_r(target, &targpwstore, &targpw);
390         if (rv != 0)
391                 err(1, "getpwuid_r failed");
392         if (targpw == NULL)
393                 errx(1, "no passwd entry for target");
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 }