Imported Upstream version 1.8.7
[debian/sudo] / plugins / sudoers / goodpath.c
1 /*
2  * Copyright (c) 1996, 1998-2005, 2010-2012
3  *      Todd C. Miller <Todd.Miller@courtesan.com>
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  * Sponsored in part by the Defense Advanced Research Projects
18  * Agency (DARPA) and Air Force Research Laboratory, Air Force
19  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
20  */
21
22 #include <config.h>
23
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <stdio.h>
27 #ifdef HAVE_STRING_H
28 # include <string.h>
29 #endif /* HAVE_STRING_H */
30 #ifdef HAVE_STRINGS_H
31 # include <strings.h>
32 #endif /* HAVE_STRINGS_H */
33 #ifdef HAVE_UNISTD_H
34 # include <unistd.h>
35 #endif /* HAVE_UNISTD_H */
36 #include <errno.h>
37
38 #include "sudoers.h"
39
40 /*
41  * Verify that path is a normal file and executable by root.
42  */
43 bool
44 sudo_goodpath(const char *path, struct stat *sbp)
45 {
46     struct stat sb;
47     bool rval = false;
48     debug_decl(sudo_goodpath, SUDO_DEBUG_UTIL)
49
50     if (path != NULL && stat(path, &sb) == 0) {
51         /* Make sure path describes an executable regular file. */
52         if (S_ISREG(sb.st_mode) && ISSET(sb.st_mode, 0111))
53             rval = true;
54         else
55             errno = EACCES;
56         if (sbp)
57             (void) memcpy(sbp, &sb, sizeof(struct stat));
58     }
59
60     debug_return_bool(rval);
61 }