blob: fc3b9f97e3ea7e9ba3a6c35952761f10de4c0a96 [file] [log] [blame]
Eric Andersena1f16bb2000-08-21 22:02:34 +00001/*
2 * getopt.c - Enhanced implementation of BSD getopt(1)
3 * Copyright (c) 1997, 1998, 1999, 2000 Frodo Looijaard <frodol@dds.nl>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20/*
21 * Version 1.0-b4: Tue Sep 23 1997. First public release.
22 * Version 1.0: Wed Nov 19 1997.
23 * Bumped up the version number to 1.0
24 * Fixed minor typo (CSH instead of TCSH)
25 * Version 1.0.1: Tue Jun 3 1998
26 * Fixed sizeof instead of strlen bug
27 * Bumped up the version number to 1.0.1
28 * Version 1.0.2: Thu Jun 11 1998 (not present)
29 * Fixed gcc-2.8.1 warnings
30 * Fixed --version/-V option (not present)
31 * Version 1.0.5: Tue Jun 22 1999
32 * Make -u option work (not present)
33 * Version 1.0.6: Tue Jun 27 2000
34 * No important changes
35 * Version 1.1.0: Tue Jun 30 2000
36 * Added NLS support (partly written by Arkadiusz Mi<B6>kiewicz
37 * <misiek@misiek.eu.org>)
38 * Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org>
39 * Removed --version/-V and --help/-h in
Eric Andersenaff114c2004-04-14 17:51:38 +000040 * Removed parse_error(), using bb_error_msg() from Busybox instead
Eric Andersena1f16bb2000-08-21 22:02:34 +000041 * Replaced our_malloc with xmalloc and our_realloc with xrealloc
42 *
43 */
44
45#include <stdio.h>
46#include <stdlib.h>
47#include <string.h>
48#include <unistd.h>
49#include <ctype.h>
50#include <getopt.h>
51
Eric Andersen3570a342000-09-25 21:45:58 +000052#include "busybox.h"
Eric Andersena1f16bb2000-08-21 22:02:34 +000053
54/* NON_OPT is the code that is returned when a non-option is found in '+'
55 mode */
Mark Whitley59ab0252001-01-23 22:30:04 +000056static const int NON_OPT = 1;
Eric Andersena1f16bb2000-08-21 22:02:34 +000057/* LONG_OPT is the code that is returned when a long option is found. */
Mark Whitley59ab0252001-01-23 22:30:04 +000058static const int LONG_OPT = 2;
Eric Andersena1f16bb2000-08-21 22:02:34 +000059
60/* The shells recognized. */
61typedef enum {BASH,TCSH} shell_t;
62
63
64/* Some global variables that tells us how to parse. */
Eric Andersen3e6ff902001-03-09 21:24:12 +000065static shell_t shell=BASH; /* The shell we generate output for. */
"Vladimir N. Oleynik"5cf9a032005-10-19 09:21:51 +000066static int quiet_errors; /* 0 is not quiet. */
67static int quiet_output; /* 0 is not quiet. */
Eric Andersen3e6ff902001-03-09 21:24:12 +000068static int quote=1; /* 1 is do quote. */
"Vladimir N. Oleynik"5cf9a032005-10-19 09:21:51 +000069static int alternative; /* 0 is getopt_long, 1 is getopt_long_only */
Eric Andersena1f16bb2000-08-21 22:02:34 +000070
71/* Function prototypes */
Eric Andersen3e6ff902001-03-09 21:24:12 +000072static const char *normalize(const char *arg);
73static int generate_output(char * argv[],int argc,const char *optstr,
Eric Andersena1f16bb2000-08-21 22:02:34 +000074 const struct option *longopts);
Eric Andersen3e6ff902001-03-09 21:24:12 +000075static void add_long_options(char *options);
76static void add_longopt(const char *name,int has_arg);
77static void set_shell(const char *new_shell);
Eric Andersena1f16bb2000-08-21 22:02:34 +000078
79
80/*
81 * This function 'normalizes' a single argument: it puts single quotes around
82 * it and escapes other special characters. If quote is false, it just
83 * returns its argument.
84 * Bash only needs special treatment for single quotes; tcsh also recognizes
85 * exclamation marks within single quotes, and nukes whitespace.
86 * This function returns a pointer to a buffer that is overwritten by
87 * each call.
88 */
89const char *normalize(const char *arg)
90{
91 static char *BUFFER=NULL;
92 const char *argptr=arg;
93 char *bufptr;
94
Aaron Lehmanna170e1c2002-11-28 11:27:31 +000095 free(BUFFER);
Eric Andersena1f16bb2000-08-21 22:02:34 +000096
97 if (!quote) { /* Just copy arg */
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 BUFFER=bb_xstrdup(arg);
Eric Andersena1f16bb2000-08-21 22:02:34 +000099 return BUFFER;
100 }
101
Eric Andersenaff114c2004-04-14 17:51:38 +0000102 /* Each character in arg may take up to four characters in the result:
Eric Andersena1f16bb2000-08-21 22:02:34 +0000103 For a quote we need a closing quote, a backslash, a quote and an
104 opening quote! We need also the global opening and closing quote,
105 and one extra character for '\0'. */
106 BUFFER=xmalloc(strlen(arg)*4+3);
107
108 bufptr=BUFFER;
109 *bufptr++='\'';
110
111 while (*argptr) {
112 if (*argptr == '\'') {
113 /* Quote: replace it with: '\'' */
114 *bufptr++='\'';
115 *bufptr++='\\';
116 *bufptr++='\'';
117 *bufptr++='\'';
118 } else if (shell==TCSH && *argptr=='!') {
119 /* Exclamation mark: replace it with: \! */
120 *bufptr++='\'';
121 *bufptr++='\\';
122 *bufptr++='!';
123 *bufptr++='\'';
124 } else if (shell==TCSH && *argptr=='\n') {
125 /* Newline: replace it with: \n */
126 *bufptr++='\\';
127 *bufptr++='n';
128 } else if (shell==TCSH && isspace(*argptr)) {
129 /* Non-newline whitespace: replace it with \<ws> */
130 *bufptr++='\'';
131 *bufptr++='\\';
132 *bufptr++=*argptr;
133 *bufptr++='\'';
134 } else
135 /* Just copy */
136 *bufptr++=*argptr;
137 argptr++;
138 }
139 *bufptr++='\'';
140 *bufptr++='\0';
141 return BUFFER;
142}
143
144/*
145 * Generate the output. argv[0] is the program name (used for reporting errors).
146 * argv[1..] contains the options to be parsed. argc must be the number of
147 * elements in argv (ie. 1 if there are no options, only the program name),
148 * optstr must contain the short options, and longopts the long options.
149 * Other settings are found in global variables.
150 */
151int generate_output(char * argv[],int argc,const char *optstr,
152 const struct option *longopts)
153{
154 int exit_code = 0; /* We assume everything will be OK */
155 int opt;
156 int longindex;
157 const char *charptr;
158
159 if (quiet_errors) /* No error reporting from getopt(3) */
160 opterr=0;
161 optind=0; /* Reset getopt(3) */
162
163 while ((opt = (alternative?
164 getopt_long_only(argc,argv,optstr,longopts,&longindex):
165 getopt_long(argc,argv,optstr,longopts,&longindex)))
166 != EOF)
167 if (opt == '?' || opt == ':' )
168 exit_code = 1;
169 else if (!quiet_output) {
170 if (opt == LONG_OPT) {
171 printf(" --%s",longopts[longindex].name);
172 if (longopts[longindex].has_arg)
173 printf(" %s",
174 normalize(optarg?optarg:""));
175 } else if (opt == NON_OPT)
176 printf(" %s",normalize(optarg));
177 else {
178 printf(" -%c",opt);
179 charptr = strchr(optstr,opt);
180 if (charptr != NULL && *++charptr == ':')
181 printf(" %s",
182 normalize(optarg?optarg:""));
183 }
184 }
185
186 if (! quiet_output) {
187 printf(" --");
188 while (optind < argc)
189 printf(" %s",normalize(argv[optind++]));
190 printf("\n");
191 }
192 return exit_code;
193}
194
"Vladimir N. Oleynik"5cf9a032005-10-19 09:21:51 +0000195static struct option *long_options;
196static int long_options_length; /* Length of array */
197static int long_options_nr; /* Nr of used elements in array */
Mark Whitley59ab0252001-01-23 22:30:04 +0000198static const int LONG_OPTIONS_INCR = 10;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000199#define init_longopt() add_longopt(NULL,0)
200
201/* Register a long option. The contents of name is copied. */
202void add_longopt(const char *name,int has_arg)
203{
Eric Andersena1f16bb2000-08-21 22:02:34 +0000204 if (!name) { /* init */
205 free(long_options);
206 long_options=NULL;
207 long_options_length=0;
208 long_options_nr=0;
209 }
210
211 if (long_options_nr == long_options_length) {
212 long_options_length += LONG_OPTIONS_INCR;
213 long_options=xrealloc(long_options,
214 sizeof(struct option) *
215 long_options_length);
216 }
217
218 long_options[long_options_nr].name=NULL;
219 long_options[long_options_nr].has_arg=0;
220 long_options[long_options_nr].flag=NULL;
221 long_options[long_options_nr].val=0;
222
223 if (long_options_nr) { /* Not for init! */
224 long_options[long_options_nr-1].has_arg=has_arg;
225 long_options[long_options_nr-1].flag=NULL;
226 long_options[long_options_nr-1].val=LONG_OPT;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000227 long_options[long_options_nr-1].name=bb_xstrdup(name);
Eric Andersena1f16bb2000-08-21 22:02:34 +0000228 }
229 long_options_nr++;
230}
231
232
233/*
234 * Register several long options. options is a string of long options,
235 * separated by commas or whitespace.
236 * This nukes options!
237 */
238void add_long_options(char *options)
239{
Mark Whitleyaf030492001-04-23 23:16:20 +0000240 int arg_opt, tlen;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000241 char *tokptr=strtok(options,", \t\n");
242 while (tokptr) {
243 arg_opt=no_argument;
Mark Whitleyaf030492001-04-23 23:16:20 +0000244 tlen=strlen(tokptr);
245 if (tlen > 0) {
246 if (tokptr[tlen-1] == ':') {
247 if (tlen > 1 && tokptr[tlen-2] == ':') {
248 tokptr[tlen-2]='\0';
249 tlen -= 2;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000250 arg_opt=optional_argument;
251 } else {
Mark Whitleyaf030492001-04-23 23:16:20 +0000252 tokptr[tlen-1]='\0';
253 tlen -= 1;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000254 arg_opt=required_argument;
255 }
Mark Whitleyaf030492001-04-23 23:16:20 +0000256 if (tlen == 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000257 bb_error_msg("empty long option after -l or --long argument");
Eric Andersena1f16bb2000-08-21 22:02:34 +0000258 }
259 add_longopt(tokptr,arg_opt);
260 }
261 tokptr=strtok(NULL,", \t\n");
262 }
263}
264
265void set_shell(const char *new_shell)
266{
267 if (!strcmp(new_shell,"bash"))
268 shell=BASH;
269 else if (!strcmp(new_shell,"tcsh"))
270 shell=TCSH;
271 else if (!strcmp(new_shell,"sh"))
272 shell=BASH;
273 else if (!strcmp(new_shell,"csh"))
274 shell=TCSH;
275 else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000276 bb_error_msg("unknown shell after -s or --shell argument");
Eric Andersena1f16bb2000-08-21 22:02:34 +0000277}
278
279
280/* Exit codes:
Eric Andersenaff114c2004-04-14 17:51:38 +0000281 * 0) No errors, successful operation.
Eric Andersena1f16bb2000-08-21 22:02:34 +0000282 * 1) getopt(3) returned an error.
283 * 2) A problem with parameter parsing for getopt(1).
284 * 3) Internal error, out of memory
285 * 4) Returned for -T
286 */
287
"Vladimir N. Oleynik"5cf9a032005-10-19 09:21:51 +0000288static const struct option longopts[]=
Eric Andersena1f16bb2000-08-21 22:02:34 +0000289{
290 {"options",required_argument,NULL,'o'},
291 {"longoptions",required_argument,NULL,'l'},
292 {"quiet",no_argument,NULL,'q'},
293 {"quiet-output",no_argument,NULL,'Q'},
294 {"shell",required_argument,NULL,'s'},
295 {"test",no_argument,NULL,'T'},
296 {"unquoted",no_argument,NULL,'u'},
297 {"alternative",no_argument,NULL,'a'},
298 {"name",required_argument,NULL,'n'},
299 {NULL,0,NULL,0}
300};
301
302/* Stop scanning as soon as a non-option argument is found! */
"Vladimir N. Oleynik"5cf9a032005-10-19 09:21:51 +0000303static const char shortopts[]="+ao:l:n:qQs:Tu";
Eric Andersena1f16bb2000-08-21 22:02:34 +0000304
Eric Andersena1f16bb2000-08-21 22:02:34 +0000305
306int getopt_main(int argc, char *argv[])
307{
Glenn L McGrathd4004ee2004-09-14 17:24:59 +0000308 const char *optstr = NULL;
Rob Landleydbaf97e2005-09-05 06:16:53 +0000309 char *name = NULL;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000310 int opt;
311 int compatible=0;
312
313 init_longopt();
314
315 if (getenv("GETOPT_COMPATIBLE"))
316 compatible=1;
317
318 if (argc == 1) {
319 if (compatible) {
320 /* For some reason, the original getopt gave no error
321 when there were no arguments. */
322 printf(" --\n");
Robert Griebld378c312002-07-19 00:05:54 +0000323 return 0;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000324 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000325 bb_error_msg_and_die("missing optstring argument");
Eric Andersena1f16bb2000-08-21 22:02:34 +0000326 }
327
328 if (argv[1][0] != '-' || compatible) {
Rob Landleydbaf97e2005-09-05 06:16:53 +0000329 char *s;
330
Eric Andersena1f16bb2000-08-21 22:02:34 +0000331 quote=0;
Rob Landleydbaf97e2005-09-05 06:16:53 +0000332 s=xmalloc(strlen(argv[1])+1);
333 strcpy(s,argv[1]+strspn(argv[1],"-+"));
Eric Andersena1f16bb2000-08-21 22:02:34 +0000334 argv[1]=argv[0];
Rob Landleydbaf97e2005-09-05 06:16:53 +0000335 return (generate_output(argv+1,argc-1,s,long_options));
Eric Andersena1f16bb2000-08-21 22:02:34 +0000336 }
337
338 while ((opt=getopt_long(argc,argv,shortopts,longopts,NULL)) != EOF)
339 switch (opt) {
340 case 'a':
341 alternative=1;
342 break;
343 case 'o':
Glenn L McGrathd4004ee2004-09-14 17:24:59 +0000344 optstr = optarg;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000345 break;
346 case 'l':
347 add_long_options(optarg);
348 break;
349 case 'n':
Glenn L McGrathd4004ee2004-09-14 17:24:59 +0000350 name = optarg;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000351 break;
352 case 'q':
353 quiet_errors=1;
354 break;
355 case 'Q':
356 quiet_output=1;
357 break;
358 case 's':
359 set_shell(optarg);
360 break;
361 case 'T':
Robert Griebld378c312002-07-19 00:05:54 +0000362 return 4;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000363 case 'u':
364 quote=0;
365 break;
366 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000367 bb_show_usage();
Eric Andersena1f16bb2000-08-21 22:02:34 +0000368 }
369
370 if (!optstr) {
371 if (optind >= argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000372 bb_error_msg_and_die("missing optstring argument");
Rob Landleydbaf97e2005-09-05 06:16:53 +0000373 else optstr=argv[optind++];
Eric Andersena1f16bb2000-08-21 22:02:34 +0000374 }
375 if (name)
376 argv[optind-1]=name;
377 else
378 argv[optind-1]=argv[0];
Robert Griebld378c312002-07-19 00:05:54 +0000379 return (generate_output(argv+optind-1,argc-optind+1,optstr,long_options));
Eric Andersena1f16bb2000-08-21 22:02:34 +0000380}
381
382/*
383 Local Variables:
384 c-file-style: "linux"
385 c-basic-offset: 4
386 tab-width: 4
387 End:
388*/