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