blob: b74dd65a1ca187895723f5e70dbb1f245e9bf3b5 [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
Mark Whitleyf57c9442000-12-07 19:56:48 +000040 * Removed prase_error(), using 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. */
66static int quiet_errors=0; /* 0 is not quiet. */
67static int quiet_output=0; /* 0 is not quiet. */
68static int quote=1; /* 1 is do quote. */
69static int alternative=0; /* 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
95 if (BUFFER != NULL)
96 free(BUFFER);
97
98 if (!quote) { /* Just copy arg */
99 BUFFER=xmalloc(strlen(arg)+1);
100
101 strcpy(BUFFER,arg);
102 return BUFFER;
103 }
104
105 /* Each character in arg may take upto four characters in the result:
106 For a quote we need a closing quote, a backslash, a quote and an
107 opening quote! We need also the global opening and closing quote,
108 and one extra character for '\0'. */
109 BUFFER=xmalloc(strlen(arg)*4+3);
110
111 bufptr=BUFFER;
112 *bufptr++='\'';
113
114 while (*argptr) {
115 if (*argptr == '\'') {
116 /* Quote: replace it with: '\'' */
117 *bufptr++='\'';
118 *bufptr++='\\';
119 *bufptr++='\'';
120 *bufptr++='\'';
121 } else if (shell==TCSH && *argptr=='!') {
122 /* Exclamation mark: replace it with: \! */
123 *bufptr++='\'';
124 *bufptr++='\\';
125 *bufptr++='!';
126 *bufptr++='\'';
127 } else if (shell==TCSH && *argptr=='\n') {
128 /* Newline: replace it with: \n */
129 *bufptr++='\\';
130 *bufptr++='n';
131 } else if (shell==TCSH && isspace(*argptr)) {
132 /* Non-newline whitespace: replace it with \<ws> */
133 *bufptr++='\'';
134 *bufptr++='\\';
135 *bufptr++=*argptr;
136 *bufptr++='\'';
137 } else
138 /* Just copy */
139 *bufptr++=*argptr;
140 argptr++;
141 }
142 *bufptr++='\'';
143 *bufptr++='\0';
144 return BUFFER;
145}
146
147/*
148 * Generate the output. argv[0] is the program name (used for reporting errors).
149 * argv[1..] contains the options to be parsed. argc must be the number of
150 * elements in argv (ie. 1 if there are no options, only the program name),
151 * optstr must contain the short options, and longopts the long options.
152 * Other settings are found in global variables.
153 */
154int generate_output(char * argv[],int argc,const char *optstr,
155 const struct option *longopts)
156{
157 int exit_code = 0; /* We assume everything will be OK */
158 int opt;
159 int longindex;
160 const char *charptr;
161
162 if (quiet_errors) /* No error reporting from getopt(3) */
163 opterr=0;
164 optind=0; /* Reset getopt(3) */
165
166 while ((opt = (alternative?
167 getopt_long_only(argc,argv,optstr,longopts,&longindex):
168 getopt_long(argc,argv,optstr,longopts,&longindex)))
169 != EOF)
170 if (opt == '?' || opt == ':' )
171 exit_code = 1;
172 else if (!quiet_output) {
173 if (opt == LONG_OPT) {
174 printf(" --%s",longopts[longindex].name);
175 if (longopts[longindex].has_arg)
176 printf(" %s",
177 normalize(optarg?optarg:""));
178 } else if (opt == NON_OPT)
179 printf(" %s",normalize(optarg));
180 else {
181 printf(" -%c",opt);
182 charptr = strchr(optstr,opt);
183 if (charptr != NULL && *++charptr == ':')
184 printf(" %s",
185 normalize(optarg?optarg:""));
186 }
187 }
188
189 if (! quiet_output) {
190 printf(" --");
191 while (optind < argc)
192 printf(" %s",normalize(argv[optind++]));
193 printf("\n");
194 }
195 return exit_code;
196}
197
198static struct option *long_options=NULL;
199static int long_options_length=0; /* Length of array */
200static int long_options_nr=0; /* Nr of used elements in array */
Mark Whitley59ab0252001-01-23 22:30:04 +0000201static const int LONG_OPTIONS_INCR = 10;
Eric Andersena1f16bb2000-08-21 22:02:34 +0000202#define init_longopt() add_longopt(NULL,0)
203
204/* Register a long option. The contents of name is copied. */
205void add_longopt(const char *name,int has_arg)
206{
207 char *tmp;
208 if (!name) { /* init */
209 free(long_options);
210 long_options=NULL;
211 long_options_length=0;
212 long_options_nr=0;
213 }
214
215 if (long_options_nr == long_options_length) {
216 long_options_length += LONG_OPTIONS_INCR;
217 long_options=xrealloc(long_options,
218 sizeof(struct option) *
219 long_options_length);
220 }
221
222 long_options[long_options_nr].name=NULL;
223 long_options[long_options_nr].has_arg=0;
224 long_options[long_options_nr].flag=NULL;
225 long_options[long_options_nr].val=0;
226
227 if (long_options_nr) { /* Not for init! */
228 long_options[long_options_nr-1].has_arg=has_arg;
229 long_options[long_options_nr-1].flag=NULL;
230 long_options[long_options_nr-1].val=LONG_OPT;
231 tmp = xmalloc(strlen(name)+1);
232 strcpy(tmp,name);
233 long_options[long_options_nr-1].name=tmp;
234 }
235 long_options_nr++;
236}
237
238
239/*
240 * Register several long options. options is a string of long options,
241 * separated by commas or whitespace.
242 * This nukes options!
243 */
244void add_long_options(char *options)
245{
246 int arg_opt;
247 char *tokptr=strtok(options,", \t\n");
248 while (tokptr) {
249 arg_opt=no_argument;
250 if (strlen(tokptr) > 0) {
251 if (tokptr[strlen(tokptr)-1] == ':') {
252 if (tokptr[strlen(tokptr)-2] == ':') {
253 tokptr[strlen(tokptr)-2]='\0';
254 arg_opt=optional_argument;
255 } else {
256 tokptr[strlen(tokptr)-1]='\0';
257 arg_opt=required_argument;
258 }
259 if (strlen(tokptr) == 0)
Matt Kraaidd19c692001-01-31 19:00:21 +0000260 error_msg("empty long option after -l or --long argument");
Eric Andersena1f16bb2000-08-21 22:02:34 +0000261 }
262 add_longopt(tokptr,arg_opt);
263 }
264 tokptr=strtok(NULL,", \t\n");
265 }
266}
267
268void set_shell(const char *new_shell)
269{
270 if (!strcmp(new_shell,"bash"))
271 shell=BASH;
272 else if (!strcmp(new_shell,"tcsh"))
273 shell=TCSH;
274 else if (!strcmp(new_shell,"sh"))
275 shell=BASH;
276 else if (!strcmp(new_shell,"csh"))
277 shell=TCSH;
278 else
Matt Kraaidd19c692001-01-31 19:00:21 +0000279 error_msg("unknown shell after -s or --shell argument");
Eric Andersena1f16bb2000-08-21 22:02:34 +0000280}
281
282
283/* Exit codes:
284 * 0) No errors, succesful operation.
285 * 1) getopt(3) returned an error.
286 * 2) A problem with parameter parsing for getopt(1).
287 * 3) Internal error, out of memory
288 * 4) Returned for -T
289 */
290
291static struct option longopts[]=
292{
293 {"options",required_argument,NULL,'o'},
294 {"longoptions",required_argument,NULL,'l'},
295 {"quiet",no_argument,NULL,'q'},
296 {"quiet-output",no_argument,NULL,'Q'},
297 {"shell",required_argument,NULL,'s'},
298 {"test",no_argument,NULL,'T'},
299 {"unquoted",no_argument,NULL,'u'},
300 {"alternative",no_argument,NULL,'a'},
301 {"name",required_argument,NULL,'n'},
302 {NULL,0,NULL,0}
303};
304
305/* Stop scanning as soon as a non-option argument is found! */
306static const char *shortopts="+ao:l:n:qQs:Tu";
307
Eric Andersena1f16bb2000-08-21 22:02:34 +0000308
309int getopt_main(int argc, char *argv[])
310{
311 char *optstr=NULL;
312 char *name=NULL;
313 int opt;
314 int compatible=0;
315
316 init_longopt();
317
318 if (getenv("GETOPT_COMPATIBLE"))
319 compatible=1;
320
321 if (argc == 1) {
322 if (compatible) {
323 /* For some reason, the original getopt gave no error
324 when there were no arguments. */
325 printf(" --\n");
326 exit(0);
327 } else
Matt Kraaidd19c692001-01-31 19:00:21 +0000328 error_msg_and_die("missing optstring argument");
Eric Andersena1f16bb2000-08-21 22:02:34 +0000329 }
330
331 if (argv[1][0] != '-' || compatible) {
332 quote=0;
333 optstr=xmalloc(strlen(argv[1])+1);
334 strcpy(optstr,argv[1]+strspn(argv[1],"-+"));
335 argv[1]=argv[0];
336 exit(generate_output(argv+1,argc-1,optstr,long_options));
337 }
338
339 while ((opt=getopt_long(argc,argv,shortopts,longopts,NULL)) != EOF)
340 switch (opt) {
341 case 'a':
342 alternative=1;
343 break;
344 case 'o':
345 if (optstr)
346 free(optstr);
347 optstr=xmalloc(strlen(optarg)+1);
348 strcpy(optstr,optarg);
349 break;
350 case 'l':
351 add_long_options(optarg);
352 break;
353 case 'n':
354 if (name)
355 free(name);
356 name=xmalloc(strlen(optarg)+1);
357 strcpy(name,optarg);
358 break;
359 case 'q':
360 quiet_errors=1;
361 break;
362 case 'Q':
363 quiet_output=1;
364 break;
365 case 's':
366 set_shell(optarg);
367 break;
368 case 'T':
369 exit(4);
370 case 'u':
371 quote=0;
372 break;
373 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000374 show_usage();
Eric Andersena1f16bb2000-08-21 22:02:34 +0000375 }
376
377 if (!optstr) {
378 if (optind >= argc)
Matt Kraaidd19c692001-01-31 19:00:21 +0000379 error_msg_and_die("missing optstring argument");
Eric Andersena1f16bb2000-08-21 22:02:34 +0000380 else {
381 optstr=xmalloc(strlen(argv[optind])+1);
382 strcpy(optstr,argv[optind]);
383 optind++;
384 }
385 }
386 if (name)
387 argv[optind-1]=name;
388 else
389 argv[optind-1]=argv[0];
390 exit(generate_output(argv+optind-1,argc-optind+1,optstr,long_options));
391}
392
393/*
394 Local Variables:
395 c-file-style: "linux"
396 c-basic-offset: 4
397 tab-width: 4
398 End:
399*/