blob: b2af5a8ea637d2875ce79f6f0261805703be6679 [file] [log] [blame]
Erik Andersen330fd2b2000-05-19 05:35:19 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Which implementation for busybox
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Erik Andersen330fd2b2000-05-19 05:35:19 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Eric Andersen8d4c3972001-03-09 21:28:09 +000024/* getopt not needed */
Eric Andersened3ef502001-01-27 08:24:39 +000025#include <string.h>
Erik Andersen330fd2b2000-05-19 05:35:19 +000026#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000027#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000028#include "busybox.h"
Erik Andersen330fd2b2000-05-19 05:35:19 +000029
Erik Andersen330fd2b2000-05-19 05:35:19 +000030extern int which_main(int argc, char **argv)
31{
Glenn L McGrath63dde9d2000-09-18 09:37:40 +000032 char *path_list, *path_n;
Pavel Roskinc389d912000-06-05 23:41:27 +000033 struct stat filestat;
Matt Kraai768a2342000-11-18 01:16:43 +000034 int i, count=1, found, status = EXIT_SUCCESS;
Erik Andersen330fd2b2000-05-19 05:35:19 +000035
Matt Kraai3bd8bd82000-07-14 23:28:47 +000036 if (argc <= 1 || **(argv + 1) == '-')
Eric Andersen67991cf2001-02-14 21:23:06 +000037 show_usage();
Erik Andersen330fd2b2000-05-19 05:35:19 +000038 argc--;
39
40 path_list = getenv("PATH");
Matt Kraaia3181dd2002-01-14 18:30:10 +000041 if (path_list != NULL) {
42 for(i=strlen(path_list); i > 0; i--)
43 if (path_list[i]==':') {
44 path_list[i]=0;
45 count++;
46 }
47 } else {
48 path_list = "/bin\0/sbin\0/usr/bin\0/usr/sbin\0/usr/local/bin";
49 count = 5;
50 }
Pavel Roskinc389d912000-06-05 23:41:27 +000051
52 while(argc-- > 0) {
Glenn L McGrath63dde9d2000-09-18 09:37:40 +000053 path_n = path_list;
Pavel Roskinc389d912000-06-05 23:41:27 +000054 argv++;
Matt Kraai768a2342000-11-18 01:16:43 +000055 found = 0;
Pavel Roskinc389d912000-06-05 23:41:27 +000056 for (i = 0; i < count; i++) {
Eric Andersen044a72d2001-05-04 22:04:24 +000057 char *buf;
Eric Andersen8d351342001-05-07 22:45:06 +000058 buf = concat_path_file(path_n, *argv);
Pavel Roskinc389d912000-06-05 23:41:27 +000059 if (stat (buf, &filestat) == 0
60 && filestat.st_mode & S_IXUSR)
61 {
Matt Kraai59df6f72001-05-16 14:21:09 +000062 puts(buf);
Matt Kraai768a2342000-11-18 01:16:43 +000063 found = 1;
Pavel Roskinc389d912000-06-05 23:41:27 +000064 break;
Erik Andersen330fd2b2000-05-19 05:35:19 +000065 }
Eric Andersen8d351342001-05-07 22:45:06 +000066 free(buf);
Glenn L McGrath63dde9d2000-09-18 09:37:40 +000067 path_n += (strlen(path_n) + 1);
Erik Andersen330fd2b2000-05-19 05:35:19 +000068 }
Matt Kraai768a2342000-11-18 01:16:43 +000069 if (!found)
70 status = EXIT_FAILURE;
Erik Andersen330fd2b2000-05-19 05:35:19 +000071 }
Matt Kraai768a2342000-11-18 01:16:43 +000072 return status;
Erik Andersen330fd2b2000-05-19 05:35:19 +000073}
74
75/*
76Local Variables:
77c-file-style: "linux"
78c-basic-offset: 4
79tab-width: 4
80End:
81*/