1993-11-27 23:42:49 +00:00
|
|
|
/*
|
2019-04-29 07:21:51 -06:00
|
|
|
* SPDX-License-Identifier: ISC
|
|
|
|
*
|
2019-01-20 07:49:48 -07:00
|
|
|
* Copyright (c) 1996, 1998-2005, 2010-2015, 2017-2019
|
2017-12-03 17:53:40 -07:00
|
|
|
* Todd C. Miller <Todd.Miller@sudo.ws>
|
1993-02-16 03:01:06 +00:00
|
|
|
*
|
2004-02-13 21:36:43 +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.
|
1999-07-31 16:19:45 +00:00
|
|
|
*
|
2004-02-13 21:36:43 +00:00
|
|
|
* 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.
|
1993-09-04 18:08:15 +00:00
|
|
|
*/
|
|
|
|
|
2018-10-26 08:39:09 -06:00
|
|
|
/*
|
|
|
|
* This is an open source non-commercial project. Dear PVS-Studio, please check it.
|
|
|
|
* PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
|
|
|
*/
|
2018-10-21 08:46:05 -06:00
|
|
|
|
2004-11-19 18:39:14 +00:00
|
|
|
#include <config.h>
|
1994-03-12 18:36:53 +00:00
|
|
|
|
2001-12-14 19:52:47 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
1993-02-16 03:01:06 +00:00
|
|
|
#include <stdio.h>
|
2015-06-19 14:29:27 -06:00
|
|
|
#include <stdlib.h>
|
1994-03-12 18:36:53 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
2001-12-14 19:52:47 +00:00
|
|
|
# include <string.h>
|
1994-03-12 18:36:53 +00:00
|
|
|
#endif /* HAVE_STRING_H */
|
2010-06-29 13:08:05 -04:00
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif /* HAVE_STRINGS_H */
|
2015-07-02 09:08:28 -06:00
|
|
|
#include <unistd.h>
|
2011-05-18 13:44:36 -04:00
|
|
|
#include <errno.h>
|
1999-07-22 12:49:28 +00:00
|
|
|
|
2010-03-14 19:58:47 -04:00
|
|
|
#include "sudoers.h"
|
1993-09-04 18:08:15 +00:00
|
|
|
|
2015-06-18 09:51:36 -06:00
|
|
|
/*
|
|
|
|
* Check the given command against the specified whitelist (NULL-terminated).
|
|
|
|
* On success, rewrites cmnd based on the whitelist and returns true.
|
|
|
|
* On failure, returns false.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
cmnd_allowed(char *cmnd, size_t cmnd_size, struct stat *cmnd_sbp,
|
|
|
|
char * const *whitelist)
|
|
|
|
{
|
|
|
|
const char *cmnd_base;
|
|
|
|
char * const *wl;
|
|
|
|
debug_decl(cmnd_allowed, SUDOERS_DEBUG_UTIL)
|
|
|
|
|
|
|
|
if (!sudo_goodpath(cmnd, cmnd_sbp))
|
|
|
|
debug_return_bool(false);
|
|
|
|
|
|
|
|
if (whitelist == NULL)
|
|
|
|
debug_return_bool(true); /* nothing to check */
|
|
|
|
|
|
|
|
/* We compare the base names to avoid excessive stat()ing. */
|
|
|
|
if ((cmnd_base = strrchr(cmnd, '/')) == NULL)
|
|
|
|
debug_return_bool(false); /* can't happen */
|
|
|
|
cmnd_base++;
|
|
|
|
|
|
|
|
for (wl = whitelist; *wl != NULL; wl++) {
|
|
|
|
struct stat sb;
|
|
|
|
const char *base;
|
|
|
|
|
|
|
|
if ((base = strrchr(*wl, '/')) == NULL)
|
|
|
|
continue; /* XXX - warn? */
|
|
|
|
base++;
|
|
|
|
|
|
|
|
if (strcmp(cmnd_base, base) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (sudo_goodpath(*wl, &sb) &&
|
|
|
|
sb.st_dev == cmnd_sbp->st_dev && sb.st_ino == cmnd_sbp->st_ino) {
|
|
|
|
/* Overwrite cmnd with safe version from whitelist. */
|
|
|
|
if (strlcpy(cmnd, *wl, cmnd_size) < cmnd_size)
|
|
|
|
return true;
|
|
|
|
debug_return_bool(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
debug_return_bool(false);
|
|
|
|
}
|
|
|
|
|
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
|
1999-10-07 21:21:08 +00:00
|
|
|
* but it is in '.' and IGNORE_DOT is set.
|
2015-06-18 09:51:36 -06:00
|
|
|
* The caller is responsible for freeing the output file.
|
1993-02-16 03:01:06 +00:00
|
|
|
*/
|
1999-04-10 04:49:03 +00:00
|
|
|
int
|
2015-06-17 06:49:59 -06:00
|
|
|
find_path(const char *infile, char **outfile, struct stat *sbp,
|
2015-06-18 09:51:36 -06:00
|
|
|
const char *path, int ignore_dot, char * const *whitelist)
|
1993-02-16 03:01:06 +00:00
|
|
|
{
|
2015-06-18 09:51:36 -06:00
|
|
|
char command[PATH_MAX];
|
2015-06-17 06:49:59 -06:00
|
|
|
const char *cp, *ep, *pathend;
|
|
|
|
bool found = false;
|
|
|
|
bool checkdot = false;
|
|
|
|
int len;
|
2015-02-01 08:24:49 -07:00
|
|
|
debug_decl(find_path, SUDOERS_DEBUG_UTIL)
|
1993-09-04 18:08:15 +00:00
|
|
|
|
1994-08-05 20:12:09 +00:00
|
|
|
/*
|
1995-09-01 04:04:43 +00:00
|
|
|
* 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
|
|
|
*/
|
2015-06-17 06:49:59 -06:00
|
|
|
if (strchr(infile, '/') != NULL) {
|
2015-06-18 09:51:36 -06:00
|
|
|
if (strlcpy(command, infile, sizeof(command)) >= sizeof(command)) {
|
|
|
|
errno = ENAMETOOLONG;
|
|
|
|
debug_return_int(NOT_FOUND_ERROR);
|
|
|
|
}
|
|
|
|
found = cmnd_allowed(command, sizeof(command), sbp, whitelist);
|
|
|
|
goto done;
|
1995-01-16 21:32:30 +00:00
|
|
|
}
|
1993-02-16 03:01:06 +00:00
|
|
|
|
2010-05-13 10:27:03 -04:00
|
|
|
if (path == NULL)
|
2011-10-22 14:40:21 -04:00
|
|
|
debug_return_int(NOT_FOUND);
|
1993-02-16 03:01:06 +00:00
|
|
|
|
2015-06-17 06:49:59 -06:00
|
|
|
pathend = path + strlen(path);
|
|
|
|
for (cp = sudo_strsplit(path, pathend, ":", &ep); cp != NULL;
|
|
|
|
cp = sudo_strsplit(NULL, pathend, ":", &ep)) {
|
1993-10-04 00:12:35 +00:00
|
|
|
|
|
|
|
/*
|
2015-06-17 06:49:59 -06:00
|
|
|
* Search current dir last if it is in PATH.
|
|
|
|
* This will miss sneaky things like using './' or './/' (XXX)
|
1993-10-04 00:12:35 +00:00
|
|
|
*/
|
2015-06-17 06:49:59 -06:00
|
|
|
if (cp == ep || (*cp == '.' && cp + 1 == ep)) {
|
1993-10-04 00:12:35 +00:00
|
|
|
checkdot = 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
|
|
|
*/
|
2015-06-17 06:49:59 -06:00
|
|
|
len = snprintf(command, sizeof(command), "%.*s/%s",
|
|
|
|
(int)(ep - cp), cp, infile);
|
2019-01-20 07:49:48 -07:00
|
|
|
if (len <= 0 || len >= (int)sizeof(command)) {
|
2012-11-09 16:32:29 -05:00
|
|
|
errno = ENAMETOOLONG;
|
2014-03-26 14:15:15 -06:00
|
|
|
debug_return_int(NOT_FOUND_ERROR);
|
2012-11-09 16:32:29 -05:00
|
|
|
}
|
2015-06-18 09:51:36 -06:00
|
|
|
found = cmnd_allowed(command, sizeof(command), sbp, whitelist);
|
|
|
|
if (found)
|
1994-06-06 00:03:26 +00:00
|
|
|
break;
|
2015-06-17 06:49:59 -06:00
|
|
|
}
|
1993-10-04 00:12:35 +00:00
|
|
|
|
1993-10-04 19:10:33 +00:00
|
|
|
/*
|
1998-11-08 20:56:52 +00:00
|
|
|
* Check current dir if dot was in the PATH
|
1993-10-04 19:10:33 +00:00
|
|
|
*/
|
2011-11-13 12:11:00 -05:00
|
|
|
if (!found && checkdot) {
|
2010-04-09 06:10:07 -04:00
|
|
|
len = snprintf(command, sizeof(command), "./%s", infile);
|
2019-01-20 07:49:48 -07:00
|
|
|
if (len <= 0 || len >= (int)sizeof(command)) {
|
2012-11-09 16:32:29 -05:00
|
|
|
errno = ENAMETOOLONG;
|
2014-03-26 14:15:15 -06:00
|
|
|
debug_return_int(NOT_FOUND_ERROR);
|
2012-11-09 16:32:29 -05:00
|
|
|
}
|
2015-06-18 09:51:36 -06:00
|
|
|
found = cmnd_allowed(command, sizeof(command), sbp, whitelist);
|
2011-11-13 12:11:00 -05:00
|
|
|
if (found && ignore_dot)
|
2011-10-22 14:40:21 -04:00
|
|
|
debug_return_int(NOT_FOUND_DOT);
|
1998-11-08 20:56:52 +00:00
|
|
|
}
|
1995-01-16 21:32:30 +00:00
|
|
|
|
2015-06-18 09:51:36 -06:00
|
|
|
done:
|
2011-11-13 12:11:00 -05:00
|
|
|
if (found) {
|
2015-06-18 09:51:36 -06:00
|
|
|
if ((*outfile = strdup(command)) == NULL)
|
|
|
|
debug_return_int(NOT_FOUND_ERROR);
|
2011-10-22 14:40:21 -04:00
|
|
|
debug_return_int(FOUND);
|
2015-06-18 09:51:36 -06:00
|
|
|
}
|
|
|
|
debug_return_int(NOT_FOUND);
|
1995-03-26 01:39:14 +00:00
|
|
|
}
|