static void usage __P((int));
static void load_globals __P((int));
static int check_sudoers __P((void));
-static void load_cmnd __P((int));
+static int load_cmnd __P((int));
static void add_env __P((int));
static void clean_env __P((char **, struct env_table *));
extern int user_is_exempt __P((void));
int argc;
char **argv;
{
- int rtn;
+ int rtn, found_cmnd;
int sudo_mode = MODE_RUN;
extern char ** environ;
#endif /* SECURE_PATH */
if ((sudo_mode & MODE_RUN)) {
- load_cmnd(sudo_mode); /* load the cmnd global variable */
+ found_cmnd = load_cmnd(sudo_mode); /* load the cmnd global variable */
} else if (sudo_mode == MODE_KILL) {
remove_timestamp(); /* remove the timestamp ticket file */
exit(0);
case VALIDATE_OK_NOPASS:
if (rtn != VALIDATE_OK_NOPASS)
check_user();
+
+ /* finally tell the user if the command did not exist */
+ if ((sudo_mode & MODE_RUN) && !found_cmnd) {
+ (void) fprintf(stderr, "%s: %s: command not found\n", Argv[0],
+ cmnd);
+ exit(1);
+ }
+
log_error(ALL_SYSTEMS_GO);
if (sudo_mode == MODE_VALIDATE)
exit(0);
* load_cmnd()
*
* This function sets the cmnd global variable
+ * Returns 1 on success, 0 on failure.
*/
-static void load_cmnd(sudo_mode)
+static int load_cmnd(sudo_mode)
int sudo_mode;
{
if (strlen(NewArgv[0]) >= MAXPATHLEN) {
* Resolve the path
*/
if ((cmnd = find_path(NewArgv[0])) == NULL) {
- (void) fprintf(stderr, "%s: %s: command not found\n", Argv[0],
- NewArgv[0]);
- exit(1);
- }
+ cmnd = NewArgv[0];
+ return(0);
+ } else
+ return(1);
}