2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 18:08:23 +00:00
sudo/plugins/sudoers/find_path.c

140 lines
3.8 KiB
C
Raw Normal View History

/*
2013-04-24 09:35:02 -04:00
* Copyright (c) 1996, 1998-2005, 2010-2013
2010-06-14 12:19:49 -04:00
* Todd C. Miller <Todd.Miller@courtesan.com>
1993-02-16 03:01:06 +00:00
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2003-04-16 00:42:10 +00:00
*
* Sponsored in part by the Defense Advanced Research Projects
* Agency (DARPA) and Air Force Research Laboratory, Air Force
* Materiel Command, USAF, under agreement number F39502-99-1-0512.
*/
#include <config.h>
#include <sys/types.h>
#include <sys/stat.h>
1993-02-16 03:01:06 +00:00
#include <stdio.h>
#ifdef STDC_HEADERS
# include <stdlib.h>
# include <stddef.h>
#else
# ifdef HAVE_STDLIB_H
# include <stdlib.h>
# endif
#endif /* STDC_HEADERS */
#ifdef HAVE_STRING_H
# include <string.h>
#endif /* HAVE_STRING_H */
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif /* HAVE_STRINGS_H */
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif /* HAVE_UNISTD_H */
2011-05-18 13:44:36 -04:00
#include <errno.h>
1999-07-22 12:49:28 +00:00
#include "sudoers.h"
1999-07-22 12:49:28 +00:00
/*
* This function finds the full pathname for a command and
* stores it in a statically allocated array, filling in a pointer
* to the array. Returns FOUND if the command was found, NOT_FOUND
* if it was not found, or NOT_FOUND_DOT if it would have been found
* but it is in '.' and IGNORE_DOT is set.
1993-02-16 03:01:06 +00:00
*/
int
find_path(char *infile, char **outfile, struct stat *sbp, char *path,
int ignore_dot)
1993-02-16 03:01:06 +00:00
{
static char command[PATH_MAX]; /* qualified filename */
1999-07-22 12:49:28 +00:00
char *n; /* for traversing path */
char *origpath; /* so we can free path later */
bool found = false; /* did we find the command? */
bool checkdot = false; /* check current dir? */
int len; /* length parameter */
debug_decl(find_path, SUDO_DEBUG_UTIL)
if (strlen(infile) >= PATH_MAX) {
errno = ENAMETOOLONG;
fatal("%s", infile);
}
/*
* If we were given a fully qualified or relative path
1999-07-22 12:49:28 +00:00
* there is no need to look at $PATH.
1993-10-04 19:10:33 +00:00
*/
if (strchr(infile, '/')) {
strlcpy(command, infile, sizeof(command)); /* paranoia */
if (sudo_goodpath(command, sbp)) {
*outfile = command;
debug_return_int(FOUND);
} else
debug_return_int(NOT_FOUND);
}
1993-02-16 03:01:06 +00:00
if (path == NULL)
debug_return_int(NOT_FOUND);
1999-03-29 02:59:34 +00:00
path = estrdup(path);
origpath = path;
1993-02-16 03:01:06 +00:00
do {
if ((n = strchr(path, ':')))
*n = '\0';
/*
1999-07-22 12:49:28 +00:00
* Search current dir last if it is in PATH This will miss sneaky
* things like using './' or './/'
*/
1993-11-30 00:14:02 +00:00
if (*path == '\0' || (*path == '.' && *(path + 1) == '\0')) {
checkdot = 1;
path = n + 1;
continue;
}
1993-10-04 19:10:33 +00:00
/*
1999-07-22 12:49:28 +00:00
* Resolve the path and exit the loop if found.
1993-10-04 19:10:33 +00:00
*/
len = snprintf(command, sizeof(command), "%s/%s", path, infile);
2013-10-23 15:03:31 -06:00
if (len <= 0 || (size_t)len >= sizeof(command)) {
errno = ENAMETOOLONG;
fatal("%s", infile);
}
if ((found = sudo_goodpath(command, sbp)))
break;
path = n + 1;
} while (n);
efree(origpath);
1993-10-04 19:10:33 +00:00
/*
* Check current dir if dot was in the PATH
1993-10-04 19:10:33 +00:00
*/
if (!found && checkdot) {
len = snprintf(command, sizeof(command), "./%s", infile);
2013-10-23 15:03:31 -06:00
if (len <= 0 || (size_t)len >= sizeof(command)) {
errno = ENAMETOOLONG;
fatal("%s", infile);
}
found = sudo_goodpath(command, sbp);
if (found && ignore_dot)
debug_return_int(NOT_FOUND_DOT);
}
if (found) {
*outfile = command;
debug_return_int(FOUND);
} else
debug_return_int(NOT_FOUND);
1995-03-26 01:39:14 +00:00
}