Imported Upstream version 1.8.1p2
[debian/sudo] / plugins / sudoers / find_path.c
1 /*
2  * Copyright (c) 1996, 1998-2005, 2010-2011
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/param.h>
26 #include <sys/stat.h>
27 #include <stdio.h>
28 #ifdef STDC_HEADERS
29 # include <stdlib.h>
30 # include <stddef.h>
31 #else
32 # ifdef HAVE_STDLIB_H
33 #  include <stdlib.h>
34 # endif
35 #endif /* STDC_HEADERS */
36 #ifdef HAVE_STRING_H
37 # include <string.h>
38 #endif /* HAVE_STRING_H */
39 #ifdef HAVE_STRINGS_H
40 # include <strings.h>
41 #endif /* HAVE_STRINGS_H */
42 #ifdef HAVE_UNISTD_H
43 # include <unistd.h>
44 #endif /* HAVE_UNISTD_H */
45
46 #include "sudoers.h"
47
48 /*
49  * This function finds the full pathname for a command and
50  * stores it in a statically allocated array, filling in a pointer
51  * to the array.  Returns FOUND if the command was found, NOT_FOUND
52  * if it was not found, or NOT_FOUND_DOT if it would have been found
53  * but it is in '.' and IGNORE_DOT is set.
54  */
55 int
56 find_path(char *infile, char **outfile, struct stat *sbp, char *path,
57     int ignore_dot)
58 {
59     static char command[PATH_MAX]; /* qualified filename */
60     char *n;                    /* for traversing path */
61     char *origpath;             /* so we can free path later */
62     char *result = NULL;        /* result of path/file lookup */
63     int checkdot = 0;           /* check current dir? */
64     int len;                    /* length parameter */
65
66     if (strlen(infile) >= PATH_MAX)
67         errorx(1, "%s: File name too long", infile);
68
69     /*
70      * If we were given a fully qualified or relative path
71      * there is no need to look at $PATH.
72      */
73     if (strchr(infile, '/')) {
74         strlcpy(command, infile, sizeof(command));      /* paranoia */
75         if (sudo_goodpath(command, sbp)) {
76             *outfile = command;
77             return FOUND;
78         } else
79             return NOT_FOUND;
80     }
81
82     if (path == NULL)
83         return NOT_FOUND;
84     path = estrdup(path);
85     origpath = path;
86
87     do {
88         if ((n = strchr(path, ':')))
89             *n = '\0';
90
91         /*
92          * Search current dir last if it is in PATH This will miss sneaky
93          * things like using './' or './/'
94          */
95         if (*path == '\0' || (*path == '.' && *(path + 1) == '\0')) {
96             checkdot = 1;
97             path = n + 1;
98             continue;
99         }
100
101         /*
102          * Resolve the path and exit the loop if found.
103          */
104         len = snprintf(command, sizeof(command), "%s/%s", path, infile);
105         if (len <= 0 || len >= sizeof(command))
106             errorx(1, "%s: File name too long", infile);
107         if ((result = sudo_goodpath(command, sbp)))
108             break;
109
110         path = n + 1;
111
112     } while (n);
113     efree(origpath);
114
115     /*
116      * Check current dir if dot was in the PATH
117      */
118     if (!result && checkdot) {
119         len = snprintf(command, sizeof(command), "./%s", infile);
120         if (len <= 0 || len >= sizeof(command))
121             errorx(1, "%s: File name too long", infile);
122         result = sudo_goodpath(command, sbp);
123         if (result && ignore_dot)
124             return NOT_FOUND_DOT;
125     }
126
127     if (result) {
128         *outfile = result;
129         return FOUND;
130     } else
131         return NOT_FOUND;
132 }