Imported Upstream version 1.6.9p8
[debian/sudo] / check.c
1 /*
2  * Copyright (c) 1993-1996,1998-2005 Todd C. Miller <Todd.Miller@courtesan.com>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  *
16  * Sponsored in part by the Defense Advanced Research Projects
17  * Agency (DARPA) and Air Force Research Laboratory, Air Force
18  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
19  */
20
21 #include <config.h>
22
23 #include <sys/types.h>
24 #include <sys/param.h>
25 #include <sys/stat.h>
26 #ifndef __TANDEM
27 # include <sys/file.h>
28 #endif
29 #include <stdio.h>
30 #ifdef STDC_HEADERS
31 # include <stdlib.h>
32 # include <stddef.h>
33 #else
34 # ifdef HAVE_STDLIB_H
35 #  include <stdlib.h>
36 # endif
37 #endif /* STDC_HEADERS */
38 #ifdef HAVE_STRING_H
39 # include <string.h>
40 #else
41 # ifdef HAVE_STRINGS_H
42 #  include <strings.h>
43 # endif
44 #endif /* HAVE_STRING_H */
45 #ifdef HAVE_UNISTD_H
46 # include <unistd.h>
47 #endif /* HAVE_UNISTD_H */
48 #ifdef HAVE_ERR_H
49 # include <err.h>
50 #else
51 # include "emul/err.h"
52 #endif /* HAVE_ERR_H */
53 #include <errno.h>
54 #include <fcntl.h>
55 #include <signal.h>
56 #include <time.h>
57 #include <pwd.h>
58 #include <grp.h>
59 #ifndef HAVE_TIMESPEC
60 # include <emul/timespec.h>
61 #endif
62
63 #include "sudo.h"
64
65 #ifndef lint
66 __unused static const char rcsid[] = "$Sudo: check.c,v 1.223.2.9 2007/07/06 19:52:13 millert Exp $";
67 #endif /* lint */
68
69 /* Status codes for timestamp_status() */
70 #define TS_CURRENT              0
71 #define TS_OLD                  1
72 #define TS_MISSING              2
73 #define TS_NOFILE               3
74 #define TS_ERROR                4
75
76 /* Flags for timestamp_status() */
77 #define TS_MAKE_DIRS            1
78 #define TS_REMOVE               2
79
80 static void  build_timestamp    __P((char **, char **));
81 static int   timestamp_status   __P((char *, char *, char *, int));
82 static char *expand_prompt      __P((char *, char *, char *));
83 static void  lecture            __P((int));
84 static void  update_timestamp   __P((char *, char *));
85
86 /*
87  * This function only returns if the user can successfully
88  * verify who he/she is.
89  */
90 void
91 check_user(validated)
92     int validated;
93 {
94     char *timestampdir = NULL;
95     char *timestampfile = NULL;
96     char *prompt;
97     int status;
98
99     if (user_uid == 0 || user_uid == runas_pw->pw_uid || user_is_exempt())
100         return;
101
102     build_timestamp(&timestampdir, &timestampfile);
103     status = timestamp_status(timestampdir, timestampfile, user_name,
104         TS_MAKE_DIRS);
105     if (status != TS_CURRENT || ISSET(validated, FLAG_CHECK_USER)) {
106         lecture(status);
107
108         /* Expand any escapes in the prompt. */
109         prompt = expand_prompt(user_prompt ? user_prompt : def_passprompt,
110             user_name, user_shost);
111
112         verify_user(auth_pw, prompt);
113     }
114     /* Only update timestamp if user was validated. */
115     if (status != TS_ERROR && ISSET(validated, VALIDATE_OK))
116         update_timestamp(timestampdir, timestampfile);
117     efree(timestampdir);
118     efree(timestampfile);
119 }
120
121 /*
122  * Standard sudo lecture.
123  * TODO: allow the user to specify a file name instead.
124  */
125 static void
126 lecture(status)
127     int status;
128 {
129     FILE *fp;
130     char buf[BUFSIZ];
131     ssize_t nread;
132
133     if (def_lecture == never ||
134         (def_lecture == once && status != TS_MISSING && status != TS_ERROR))
135         return;
136
137     if (def_lecture_file && (fp = fopen(def_lecture_file, "r")) != NULL) {
138         while ((nread = fread(buf, sizeof(char), sizeof(buf), fp)) != 0)
139             fwrite(buf, nread, 1, stderr);
140         fclose(fp);
141     } else {
142         (void) fputs("\n\
143 We trust you have received the usual lecture from the local System\n\
144 Administrator. It usually boils down to these three things:\n\
145 \n\
146     #1) Respect the privacy of others.\n\
147     #2) Think before you type.\n\
148     #3) With great power comes great responsibility.\n\n",
149     stderr);
150     }
151 }
152
153 /*
154  * Update the time on the timestamp file/dir or create it if necessary.
155  */
156 static void
157 update_timestamp(timestampdir, timestampfile)
158     char *timestampdir;
159     char *timestampfile;
160 {
161     if (timestamp_uid != 0)
162         set_perms(PERM_TIMESTAMP);
163     if (touch(-1, timestampfile ? timestampfile : timestampdir, NULL) == -1) {
164         if (timestampfile) {
165             int fd = open(timestampfile, O_WRONLY|O_CREAT|O_TRUNC, 0600);
166
167             if (fd == -1)
168                 log_error(NO_EXIT|USE_ERRNO, "Can't open %s", timestampfile);
169             else
170                 close(fd);
171         } else {
172             if (mkdir(timestampdir, 0700) == -1)
173                 log_error(NO_EXIT|USE_ERRNO, "Can't mkdir %s", timestampdir);
174         }
175     }
176     if (timestamp_uid != 0)
177         set_perms(PERM_ROOT);
178 }
179
180 /*
181  * Expand %h and %u escapes in the prompt and pass back the dynamically
182  * allocated result.  Returns the same string if there are no escapes.
183  */
184 static char *
185 expand_prompt(old_prompt, user, host)
186     char *old_prompt;
187     char *user;
188     char *host;
189 {
190     size_t len, n;
191     int subst;
192     char *p, *np, *new_prompt, *endp;
193
194     /* How much space do we need to malloc for the prompt? */
195     subst = 0;
196     for (p = old_prompt, len = strlen(old_prompt); *p; p++) {
197         if (p[0] =='%') {
198             switch (p[1]) {
199                 case 'h':
200                     p++;
201                     len += strlen(user_shost) - 2;
202                     subst = 1;
203                     break;
204                 case 'H':
205                     p++;
206                     len += strlen(user_host) - 2;
207                     subst = 1;
208                     break;
209                 case 'u':
210                     p++;
211                     len += strlen(user_name) - 2;
212                     subst = 1;
213                     break;
214                 case 'U':
215                     p++;
216                     len += strlen(*user_runas) - 2;
217                     subst = 1;
218                     break;
219                 case '%':
220                     p++;
221                     len--;
222                     subst = 1;
223                     break;
224                 default:
225                     break;
226             }
227         }
228     }
229
230     if (subst) {
231         new_prompt = (char *) emalloc(++len);
232         endp = new_prompt + len;
233         for (p = old_prompt, np = new_prompt; *p; p++) {
234             if (p[0] =='%') {
235                 switch (p[1]) {
236                     case 'h':
237                         p++;
238                         n = strlcpy(np, user_shost, np - endp);
239                         if (n >= np - endp)
240                             goto oflow;
241                         np += n;
242                         continue;
243                     case 'H':
244                         p++;
245                         n = strlcpy(np, user_host, np - endp);
246                         if (n >= np - endp)
247                             goto oflow;
248                         np += n;
249                         continue;
250                     case 'u':
251                         p++;
252                         n = strlcpy(np, user_name, np - endp);
253                         if (n >= np - endp)
254                             goto oflow;
255                         np += n;
256                         continue;
257                     case 'U':
258                         p++;
259                         n = strlcpy(np,  *user_runas, np - endp);
260                         if (n >= np - endp)
261                             goto oflow;
262                         np += n;
263                         continue;
264                     case '%':
265                         /* convert %% -> % */
266                         p++;
267                         break;
268                     default:
269                         /* no conversion */
270                         break;
271                 }
272             }
273             *np++ = *p;
274             if (np >= endp)
275                 goto oflow;
276         }
277         *np = '\0';
278     } else
279         new_prompt = old_prompt;
280
281     return(new_prompt);
282
283 oflow:
284     /* We pre-allocate enough space, so this should never happen. */
285     errx(1, "internal error, expand_prompt() overflow");
286 }
287
288 /*
289  * Checks if the user is exempt from supplying a password.
290  */
291 int
292 user_is_exempt()
293 {
294     struct group *grp;
295     char **gr_mem;
296
297     if (!def_exempt_group)
298         return(FALSE);
299
300     if (!(grp = getgrnam(def_exempt_group)))
301         return(FALSE);
302
303     if (user_gid == grp->gr_gid)
304         return(TRUE);
305
306     for (gr_mem = grp->gr_mem; *gr_mem; gr_mem++) {
307         if (strcmp(user_name, *gr_mem) == 0)
308             return(TRUE);
309     }
310
311     return(FALSE);
312 }
313
314 /*
315  * Fills in timestampdir as well as timestampfile if using tty tickets.
316  */
317 static void
318 build_timestamp(timestampdir, timestampfile)
319     char **timestampdir;
320     char **timestampfile;
321 {
322     char *dirparent;
323     int len;
324
325     dirparent = def_timestampdir;
326     len = easprintf(timestampdir, "%s/%s", dirparent, user_name);
327     if (len >= PATH_MAX)
328         log_error(0, "timestamp path too long: %s", *timestampdir);
329
330     /*
331      * Timestamp file may be a file in the directory or NUL to use
332      * the directory as the timestamp.
333      */
334     if (def_tty_tickets) {
335         char *p;
336
337         if ((p = strrchr(user_tty, '/')))
338             p++;
339         else
340             p = user_tty;
341         if (def_targetpw)
342             len = easprintf(timestampfile, "%s/%s/%s:%s", dirparent, user_name,
343                 p, *user_runas);
344         else
345             len = easprintf(timestampfile, "%s/%s/%s", dirparent, user_name, p);
346         if (len >= PATH_MAX)
347             log_error(0, "timestamp path too long: %s", *timestampfile);
348     } else if (def_targetpw) {
349         len = easprintf(timestampfile, "%s/%s/%s", dirparent, user_name,
350             *user_runas);
351         if (len >= PATH_MAX)
352             log_error(0, "timestamp path too long: %s", *timestampfile);
353     } else
354         *timestampfile = NULL;
355 }
356
357 /*
358  * Check the timestamp file and directory and return their status.
359  */
360 static int
361 timestamp_status(timestampdir, timestampfile, user, flags)
362     char *timestampdir;
363     char *timestampfile;
364     char *user;
365     int flags;
366 {
367     struct stat sb;
368     time_t now;
369     char *dirparent = def_timestampdir;
370     int status = TS_ERROR;              /* assume the worst */
371
372     if (timestamp_uid != 0)
373         set_perms(PERM_TIMESTAMP);
374
375     /*
376      * Sanity check dirparent and make it if it doesn't already exist.
377      * We start out assuming the worst (that the dir is not sane) and
378      * if it is ok upgrade the status to ``no timestamp file''.
379      * Note that we don't check the parent(s) of dirparent for
380      * sanity since the sudo dir is often just located in /tmp.
381      */
382     if (lstat(dirparent, &sb) == 0) {
383         if (!S_ISDIR(sb.st_mode))
384             log_error(NO_EXIT, "%s exists but is not a directory (0%o)",
385                 dirparent, (unsigned int) sb.st_mode);
386         else if (sb.st_uid != timestamp_uid)
387             log_error(NO_EXIT, "%s owned by uid %lu, should be uid %lu",
388                 dirparent, (unsigned long) sb.st_uid,
389                 (unsigned long) timestamp_uid);
390         else if ((sb.st_mode & 0000022))
391             log_error(NO_EXIT,
392                 "%s writable by non-owner (0%o), should be mode 0700",
393                 dirparent, (unsigned int) sb.st_mode);
394         else {
395             if ((sb.st_mode & 0000777) != 0700)
396                 (void) chmod(dirparent, 0700);
397             status = TS_MISSING;
398         }
399     } else if (errno != ENOENT) {
400         log_error(NO_EXIT|USE_ERRNO, "can't stat %s", dirparent);
401     } else {
402         /* No dirparent, try to make one. */
403         if (ISSET(flags, TS_MAKE_DIRS)) {
404             if (mkdir(dirparent, S_IRWXU))
405                 log_error(NO_EXIT|USE_ERRNO, "can't mkdir %s",
406                     dirparent);
407             else
408                 status = TS_MISSING;
409         }
410     }
411     if (status == TS_ERROR) {
412         if (timestamp_uid != 0)
413             set_perms(PERM_ROOT);
414         return(status);
415     }
416
417     /*
418      * Sanity check the user's ticket dir.  We start by downgrading
419      * the status to TS_ERROR.  If the ticket dir exists and is sane
420      * this will be upgraded to TS_OLD.  If the dir does not exist,
421      * it will be upgraded to TS_MISSING.
422      */
423     status = TS_ERROR;                  /* downgrade status again */
424     if (lstat(timestampdir, &sb) == 0) {
425         if (!S_ISDIR(sb.st_mode)) {
426             if (S_ISREG(sb.st_mode)) {
427                 /* convert from old style */
428                 if (unlink(timestampdir) == 0)
429                     status = TS_MISSING;
430             } else
431                 log_error(NO_EXIT, "%s exists but is not a directory (0%o)",
432                     timestampdir, (unsigned int) sb.st_mode);
433         } else if (sb.st_uid != timestamp_uid)
434             log_error(NO_EXIT, "%s owned by uid %lu, should be uid %lu",
435                 timestampdir, (unsigned long) sb.st_uid,
436                 (unsigned long) timestamp_uid);
437         else if ((sb.st_mode & 0000022))
438             log_error(NO_EXIT,
439                 "%s writable by non-owner (0%o), should be mode 0700",
440                 timestampdir, (unsigned int) sb.st_mode);
441         else {
442             if ((sb.st_mode & 0000777) != 0700)
443                 (void) chmod(timestampdir, 0700);
444             status = TS_OLD;            /* do date check later */
445         }
446     } else if (errno != ENOENT) {
447         log_error(NO_EXIT|USE_ERRNO, "can't stat %s", timestampdir);
448     } else
449         status = TS_MISSING;
450
451     /*
452      * If there is no user ticket dir, AND we are in tty ticket mode,
453      * AND the TS_MAKE_DIRS flag is set, create the user ticket dir.
454      */
455     if (status == TS_MISSING && timestampfile && ISSET(flags, TS_MAKE_DIRS)) {
456         if (mkdir(timestampdir, S_IRWXU) == -1) {
457             status = TS_ERROR;
458             log_error(NO_EXIT|USE_ERRNO, "can't mkdir %s", timestampdir);
459         }
460     }
461
462     /*
463      * Sanity check the tty ticket file if it exists.
464      */
465     if (timestampfile && status != TS_ERROR) {
466         if (status != TS_MISSING)
467             status = TS_NOFILE;                 /* dir there, file missing */
468         if (lstat(timestampfile, &sb) == 0) {
469             if (!S_ISREG(sb.st_mode)) {
470                 status = TS_ERROR;
471                 log_error(NO_EXIT, "%s exists but is not a regular file (0%o)",
472                     timestampfile, (unsigned int) sb.st_mode);
473             } else {
474                 /* If bad uid or file mode, complain and kill the bogus file. */
475                 if (sb.st_uid != timestamp_uid) {
476                     log_error(NO_EXIT,
477                         "%s owned by uid %lu, should be uid %lu",
478                         timestampfile, (unsigned long) sb.st_uid,
479                         (unsigned long) timestamp_uid);
480                     (void) unlink(timestampfile);
481                 } else if ((sb.st_mode & 0000022)) {
482                     log_error(NO_EXIT,
483                         "%s writable by non-owner (0%o), should be mode 0600",
484                         timestampfile, (unsigned int) sb.st_mode);
485                     (void) unlink(timestampfile);
486                 } else {
487                     /* If not mode 0600, fix it. */
488                     if ((sb.st_mode & 0000777) != 0600)
489                         (void) chmod(timestampfile, 0600);
490
491                     status = TS_OLD;    /* actually check mtime below */
492                 }
493             }
494         } else if (errno != ENOENT) {
495             log_error(NO_EXIT|USE_ERRNO, "can't stat %s", timestampfile);
496             status = TS_ERROR;
497         }
498     }
499
500     /*
501      * If the file/dir exists and we are not removing it, check its mtime.
502      */
503     if (status == TS_OLD && !ISSET(flags, TS_REMOVE)) {
504         /* Negative timeouts only expire manually (sudo -k). */
505         if (def_timestamp_timeout < 0 && sb.st_mtime != 0)
506             status = TS_CURRENT;
507         else {
508             /* XXX - should use timespec here */
509             now = time(NULL);
510             if (def_timestamp_timeout &&
511                 now - sb.st_mtime < 60 * def_timestamp_timeout) {
512                 /*
513                  * Check for bogus time on the stampfile.  The clock may
514                  * have been set back or someone could be trying to spoof us.
515                  */
516                 if (sb.st_mtime > now + 60 * def_timestamp_timeout * 2) {
517                     log_error(NO_EXIT,
518                         "timestamp too far in the future: %20.20s",
519                         4 + ctime(&sb.st_mtime));
520                     if (timestampfile)
521                         (void) unlink(timestampfile);
522                     else
523                         (void) rmdir(timestampdir);
524                     status = TS_MISSING;
525                 } else
526                     status = TS_CURRENT;
527             }
528         }
529     }
530
531     if (timestamp_uid != 0)
532         set_perms(PERM_ROOT);
533     return(status);
534 }
535
536 /*
537  * Remove the timestamp ticket file/dir.
538  */
539 void
540 remove_timestamp(remove)
541     int remove;
542 {
543     struct timespec ts;
544     char *timestampdir, *timestampfile, *path;
545     int status;
546
547     build_timestamp(&timestampdir, &timestampfile);
548     status = timestamp_status(timestampdir, timestampfile, user_name,
549         TS_REMOVE);
550     if (status == TS_OLD || status == TS_CURRENT) {
551         path = timestampfile ? timestampfile : timestampdir;
552         if (remove) {
553             if (timestampfile)
554                 status = unlink(timestampfile);
555             else
556                 status = rmdir(timestampdir);
557             if (status == -1 && errno != ENOENT) {
558                 log_error(NO_EXIT, "can't remove %s (%s), will reset to Epoch",
559                     path, strerror(errno));
560                 remove = FALSE;
561             }
562         } else {
563             timespecclear(&ts);
564             if (touch(-1, path, &ts) == -1)
565                 err(1, "can't reset %s to Epoch", path);
566         }
567     }
568
569     efree(timestampdir);
570     efree(timestampfile);
571 }