b8a295faeb47211bee5b018bd3b973df3eee9e3f
[oweals/gnunet.git] / src / util / getopt.c
1 /* Getopt for GNU.
2    NOTE: getopt is now part of the C library, so if you don't know what
3    "Keep this file name-space clean" means, talk to roland@gnu.ai.mit.edu
4    before changing it!
5
6    Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97
7      Free Software Foundation, Inc.
8
9 NOTE: The canonical source of this file is maintained with the GNU C Library.
10 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
11
12 This program is free software; you can redistribute it and/or modify it
13 under the terms of the GNU General Public License as published by the
14 Free Software Foundation; either version 2, or (at your option) any
15 later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25 USA.
26
27
28 This code was heavily modified for GNUnet.
29 Copyright (C) 2006 Christian Grothoff
30 */
31
32 /**
33  * @file util/getopt.c
34  * @brief GNU style option parsing
35  *
36  * TODO: get rid of statics (make reentrant) and
37  * replace main GNU getopt parser with one that
38  * actually fits our API.
39  */
40
41 #include "platform.h"
42 #include "gnunet_common.h"
43 #include "gnunet_getopt_lib.h"
44
45 #ifdef VMS
46 # include <unixlib.h>
47 # if HAVE_STRING_H - 0
48 #  include <string.h>
49 # endif
50 #endif
51
52 #if defined (WIN32) && !defined (__CYGWIN32__)
53 /* It's not Unix, really.  See?  Capital letters.  */
54 # include <windows.h>
55 # define getpid() GetCurrentProcessId()
56 #endif
57
58 #ifndef _
59 /* This is for other GNU distributions with internationalized messages.
60    When compiling libc, the _ macro is predefined.  */
61 # ifdef HAVE_LIBINTL_H
62 #  include <libintl.h>
63 #  define _(msgid)  gettext (msgid)
64 # else
65 #  define _(msgid)  (msgid)
66 # endif
67 #endif
68
69 /* Describe the long-named options requested by the application.
70    The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
71    of `struct GNoption' terminated by an element containing a name which is
72    zero.
73
74    The field `has_arg' is:
75    no_argument          (or 0) if the option does not take an argument,
76    required_argument  (or 1) if the option requires an argument,
77    optional_argument   (or 2) if the option takes an optional argument.
78
79    If the field `flag' is not NULL, it points to a variable that is set
80    to the value given in the field `val' when the option is found, but
81    left unchanged if the option is not found.
82
83    To have a long-named option do something other than set an `int' to
84    a compiled-in constant, such as set a value from `GNoptarg', set the
85    option's `flag' field to zero and its `val' field to a nonzero
86    value (the equivalent single-letter option character, if there is
87    one).  For long options that have a zero `flag' field, `getopt'
88    returns the contents of the `val' field.  */
89
90 struct GNoption
91 {
92   const char *name;
93   /* has_arg can't be an enum because some compilers complain about
94      type mismatches in all the code that assumes it is an int.  */
95   int has_arg;
96   int *flag;
97   int val;
98 };
99
100
101 /* This version of `getopt' appears to the caller like standard Unix `getopt'
102    but it behaves differently for the user, since it allows the user
103    to intersperse the options with the other arguments.
104
105    As `getopt' works, it permutes the elements of ARGV so that,
106    when it is done, all the options precede everything else.  Thus
107    all application programs are extended to handle flexible argument order.
108
109    Setting the environment variable POSIXLY_CORRECT disables permutation.
110    Then the behavior is completely standard.
111
112    GNU application programs can use a third alternative mode in which
113    they can distinguish the relative order of options and other arguments.  */
114
115 /* For communication from `getopt' to the caller.
116    When `getopt' finds an option that takes an argument,
117    the argument value is returned here.
118    Also, when `ordering' is RETURN_IN_ORDER,
119    each non-option ARGV-element is returned here.  */
120
121 static char *GNoptarg = NULL;
122
123 /* Index in ARGV of the next element to be scanned.
124    This is used for communication to and from the caller
125    and for communication between successive calls to `getopt'.
126
127    On entry to `getopt', zero means this is the first call; initialize.
128
129    When `getopt' returns -1, this is the index of the first of the
130    non-option elements that the caller should itself scan.
131
132    Otherwise, `GNoptind' communicates from one call to the next
133    how much of ARGV has been scanned so far.  */
134
135 /* 1003.2 says this must be 1 before any call.  */
136 static int GNoptind = 1;
137
138 /* The next char to be scanned in the option-element
139    in which the last option character we returned was found.
140    This allows us to pick up the scan where we left off.
141
142    If this is zero, or a null string, it means resume the scan
143    by advancing to the next ARGV-element.  */
144
145 static char *nextchar;
146
147
148 /* Describe how to deal with options that follow non-option ARGV-elements.
149
150    If the caller did not specify anything,
151    the default is REQUIRE_ORDER if the environment variable
152    POSIXLY_CORRECT is defined, PERMUTE otherwise.
153
154    REQUIRE_ORDER means don't recognize them as options;
155    stop option processing when the first non-option is seen.
156    This is what Unix does.
157    This mode of operation is selected by either setting the environment
158    variable POSIXLY_CORRECT, or using `+' as the first character
159    of the list of option characters.
160
161    PERMUTE is the default.  We GNUNET_CRYPTO_random_permute the contents of ARGV as we scan,
162    so that eventually all the non-options are at the end.  This allows options
163    to be given in any order, even with programs that were not written to
164    expect this.
165
166    RETURN_IN_ORDER is an option available to programs that were written
167    to expect GNoptions and other ARGV-elements in any order and that care about
168    the ordering of the two.  We describe each non-option ARGV-element
169    as if it were the argument of an option with character code 1.
170    Using `-' as the first character of the list of option characters
171    selects this mode of operation.
172
173    The special argument `--' forces an end of option-scanning regardless
174    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
175    `--' can cause `getopt' to return -1 with `GNoptind' != ARGC.  */
176
177 static enum
178 {
179   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
180 } ordering;
181
182 /* Value of POSIXLY_CORRECT environment variable.  */
183 static char *posixly_correct;
184
185 #ifdef  __GNU_LIBRARY__
186 /* We want to avoid inclusion of string.h with non-GNU libraries
187    because there are many ways it can cause trouble.
188    On some systems, it contains special magic macros that don't work
189    in GCC.  */
190 #include <string.h>
191 #define  my_index       strchr
192 #else
193
194 /* Avoid depending on library functions or files
195    whose names are inconsistent.  */
196
197 char *getenv ();
198
199 static char *
200 my_index (str, chr)
201      const char *str;
202      int chr;
203 {
204   while (*str)
205     {
206       if (*str == chr)
207         return (char *) str;
208       str++;
209     }
210   return 0;
211 }
212
213 /* If using GCC, we can safely declare strlen this way.
214    If not using GCC, it is ok not to declare it.  */
215 #ifdef __GNUC__
216 /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
217    That was relevant to code that was here before.  */
218 #if !defined (__STDC__) || !__STDC__
219 /* gcc with -traditional declares the built-in strlen to return int,
220    and has done so at least since version 2.4.5. -- rms.  */
221 extern int strlen (const char *);
222 #endif /* not __STDC__ */
223 #endif /* __GNUC__ */
224
225 #endif /* not __GNU_LIBRARY__ */
226
227 /* Handle permutation of arguments.  */
228
229 /* Describe the part of ARGV that contains non-options that have
230    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
231    `last_nonopt' is the index after the last of them.  */
232
233 static int first_nonopt;
234 static int last_nonopt;
235
236 #ifdef _LIBC
237 /* Bash 2.0 gives us an environment variable containing flags
238    indicating ARGV elements that should not be considered arguments.  */
239
240 /* Defined in getopt_init.c  */
241 extern char *__getopt_nonoption_flags;
242
243 static int nonoption_flags_max_len;
244 static int nonoption_flags_len;
245
246 static int original_argc;
247 static char *const *original_argv;
248
249 extern pid_t __libc_pid;
250
251 /* Make sure the environment variable bash 2.0 puts in the environment
252    is valid for the getopt call we must make sure that the ARGV passed
253    to getopt is that one passed to the process.  */
254 static void
255   __attribute__ ((unused)) store_args_and_env (int argc, char *const *argv)
256 {
257   /* XXX This is no good solution.  We should rather copy the args so
258      that we can compare them later.  But we must not use malloc(3).  */
259   original_argc = argc;
260   original_argv = argv;
261 }
262
263 text_set_element (__libc_subinit, store_args_and_env);
264
265 # define SWAP_FLAGS(ch1, ch2) \
266   if (nonoption_flags_len > 0)                                                \
267     {                                                                 \
268       char __tmp = __getopt_nonoption_flags[ch1];                     \
269       __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2];        \
270       __getopt_nonoption_flags[ch2] = __tmp;                          \
271     }
272 #else /* !_LIBC */
273 # define SWAP_FLAGS(ch1, ch2)
274 #endif /* _LIBC */
275
276 /* Exchange two adjacent subsequences of ARGV.
277    One subsequence is elements [first_nonopt,last_nonopt)
278    which contains all the non-options that have been skipped so far.
279    The other is elements [last_nonopt,GNoptind), which contains all
280    the options processed since those non-options were skipped.
281
282    `first_nonopt' and `last_nonopt' are relocated so that they describe
283    the new indices of the non-options in ARGV after they are moved.  */
284
285 #if defined (__STDC__) && __STDC__
286 static void exchange (char **);
287 #endif
288
289 static void
290 exchange (argv)
291      char **argv;
292 {
293   int bottom = first_nonopt;
294   int middle = last_nonopt;
295   int top = GNoptind;
296   char *tem;
297
298   /* Exchange the shorter segment with the far end of the longer segment.
299      That puts the shorter segment into the right place.
300      It leaves the longer segment in the right place overall,
301      but it consists of two parts that need to be swapped next.  */
302
303 #ifdef _LIBC
304   /* First make sure the handling of the `__getopt_nonoption_flags'
305      string can work normally.  Our top argument must be in the range
306      of the string.  */
307   if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len)
308     {
309       /* We must extend the array.  The user plays games with us and
310          presents new arguments.  */
311       char *new_str = malloc (top + 1);
312       if (new_str == NULL)
313         nonoption_flags_len = nonoption_flags_max_len = 0;
314       else
315         {
316           memcpy (new_str, __getopt_nonoption_flags, nonoption_flags_max_len);
317           memset (&new_str[nonoption_flags_max_len], '\0',
318                   top + 1 - nonoption_flags_max_len);
319           nonoption_flags_max_len = top + 1;
320           __getopt_nonoption_flags = new_str;
321         }
322     }
323 #endif
324
325   while (top > middle && middle > bottom)
326     {
327       if (top - middle > middle - bottom)
328         {
329           /* Bottom segment is the short one.  */
330           int len = middle - bottom;
331           register int i;
332
333           /* Swap it with the top part of the top segment.  */
334           for (i = 0; i < len; i++)
335             {
336               tem = argv[bottom + i];
337               argv[bottom + i] = argv[top - (middle - bottom) + i];
338               argv[top - (middle - bottom) + i] = tem;
339               SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
340             }
341           /* Exclude the moved bottom segment from further swapping.  */
342           top -= len;
343         }
344       else
345         {
346           /* Top segment is the short one.  */
347           int len = top - middle;
348           register int i;
349
350           /* Swap it with the bottom part of the bottom segment.  */
351           for (i = 0; i < len; i++)
352             {
353               tem = argv[bottom + i];
354               argv[bottom + i] = argv[middle + i];
355               argv[middle + i] = tem;
356               SWAP_FLAGS (bottom + i, middle + i);
357             }
358           /* Exclude the moved top segment from further swapping.  */
359           bottom += len;
360         }
361     }
362
363   /* Update records for the slots the non-options now occupy.  */
364
365   first_nonopt += (GNoptind - last_nonopt);
366   last_nonopt = GNoptind;
367 }
368
369 /* Initialize the internal data when the first call is made.  */
370
371 #if defined (__STDC__) && __STDC__
372 static const char *_getopt_initialize (int, char *const *, const char *);
373 #endif
374 static const char *
375 _getopt_initialize (argc, argv, optstring)
376      int argc;
377      char *const *argv;
378      const char *optstring;
379 {
380   /* Start processing options with ARGV-element 1 (since ARGV-element 0
381      is the program name); the sequence of previously skipped
382      non-option ARGV-elements is empty.  */
383
384   first_nonopt = last_nonopt = GNoptind;
385
386   nextchar = NULL;
387
388   posixly_correct = getenv ("POSIXLY_CORRECT");
389
390   /* Determine how to handle the ordering of options and nonoptions.  */
391
392   if (optstring[0] == '-')
393     {
394       ordering = RETURN_IN_ORDER;
395       ++optstring;
396     }
397   else if (optstring[0] == '+')
398     {
399       ordering = REQUIRE_ORDER;
400       ++optstring;
401     }
402   else if (posixly_correct != NULL)
403     ordering = REQUIRE_ORDER;
404   else
405     ordering = PERMUTE;
406
407 #ifdef _LIBC
408   if (posixly_correct == NULL
409       && argc == original_argc && argv == original_argv)
410     {
411       if (nonoption_flags_max_len == 0)
412         {
413           if (__getopt_nonoption_flags == NULL
414               || __getopt_nonoption_flags[0] == '\0')
415             nonoption_flags_max_len = -1;
416           else
417             {
418               const char *orig_str = __getopt_nonoption_flags;
419               int len = nonoption_flags_max_len = strlen (orig_str);
420               if (nonoption_flags_max_len < argc)
421                 nonoption_flags_max_len = argc;
422               __getopt_nonoption_flags =
423                 (char *) malloc (nonoption_flags_max_len);
424               if (__getopt_nonoption_flags == NULL)
425                 nonoption_flags_max_len = -1;
426               else
427                 {
428                   memcpy (__getopt_nonoption_flags, orig_str, len);
429                   memset (&__getopt_nonoption_flags[len], '\0',
430                           nonoption_flags_max_len - len);
431                 }
432             }
433         }
434       nonoption_flags_len = nonoption_flags_max_len;
435     }
436   else
437     nonoption_flags_len = 0;
438 #endif
439
440   return optstring;
441 }
442 \f
443 /* Scan elements of ARGV (whose length is ARGC) for option characters
444    given in OPTSTRING.
445
446    If an element of ARGV starts with '-', and is not exactly "-" or "--",
447    then it is an option element.  The characters of this element
448    (aside from the initial '-') are option characters.  If `getopt'
449    is called repeatedly, it returns successively each of the option characters
450    from each of the option elements.
451
452    If `getopt' finds another option character, it returns that character,
453    updating `GNoptind' and `nextchar' so that the next call to `getopt' can
454    resume the scan with the following option character or ARGV-element.
455
456    If there are no more option characters, `getopt' returns -1.
457    Then `GNoptind' is the index in ARGV of the first ARGV-element
458    that is not an option.  (The ARGV-elements have been permuted
459    so that those that are not options now come last.)
460
461    OPTSTRING is a string containing the legitimate option characters.
462    If an option character is seen that is not listed in OPTSTRING,
463    return '?' after printing an error message.  If you set `GNopterr' to
464    zero, the error message is suppressed but we still return '?'.
465
466    If a char in OPTSTRING is followed by a colon, that means it wants an arg,
467    so the following text in the same ARGV-element, or the text of the following
468    ARGV-element, is returned in `GNoptarg'.  Two colons mean an option that
469    wants an optional arg; if there is text in the current ARGV-element,
470    it is returned in `GNoptarg', otherwise `GNoptarg' is set to zero.
471
472    If OPTSTRING starts with `-' or `+', it requests different methods of
473    handling the non-option ARGV-elements.
474    See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
475
476    Long-named options begin with `--' instead of `-'.
477    Their names may be abbreviated as long as the abbreviation is unique
478    or is an exact match for some defined option.  If they have an
479    argument, it follows the option name in the same ARGV-element, separated
480    from the option name by a `=', or else the in next ARGV-element.
481    When `getopt' finds a long-named option, it returns 0 if that option's
482    `flag' field is nonzero, the value of the option's `val' field
483    if the `flag' field is zero.
484
485    The elements of ARGV aren't really const, because we GNUNET_CRYPTO_random_permute them.
486    But we pretend they're const in the prototype to be compatible
487    with other systems.
488
489    LONGOPTS is a vector of `struct GNoption' terminated by an
490    element containing a name which is zero.
491
492    LONGIND returns the index in LONGOPT of the long-named option found.
493    It is only valid when a long-named option has been found by the most
494    recent call.
495
496    If LONG_ONLY is nonzero, '-' as well as '--' can introduce
497    long-named options.  */
498
499 static int
500 GN_getopt_internal (int argc,
501                     char *const *argv,
502                     const char *optstring,
503                     const struct GNoption *longopts,
504                     int *longind,
505                     int long_only)
506 {
507   static int __getopt_initialized = 0;
508   static int GNopterr = 1;
509
510   GNoptarg = NULL;
511
512   if (GNoptind == 0 || !__getopt_initialized)
513     {
514       if (GNoptind == 0)
515         GNoptind = 1;           /* Don't scan ARGV[0], the program name.  */
516       optstring = _getopt_initialize (argc, argv, optstring);
517       __getopt_initialized = 1;
518     }
519
520   /* Test whether ARGV[GNoptind] points to a non-option argument.
521      Either it does not have option syntax, or there is an environment flag
522      from the shell indicating it is not an option.  The later information
523      is only used when the used in the GNU libc.  */
524 #ifdef _LIBC
525 #define NONOPTION_P (argv[GNoptind][0] != '-' || argv[GNoptind][1] == '\0'        \
526              || (GNoptind < nonoption_flags_len                       \
527                  && __getopt_nonoption_flags[GNoptind] == '1'))
528 #else
529 #define NONOPTION_P (argv[GNoptind][0] != '-' || argv[GNoptind][1] == '\0')
530 #endif
531
532   if (nextchar == NULL || *nextchar == '\0')
533     {
534       /* Advance to the next ARGV-element.  */
535
536       /* Give FIRST_NONOPT & LAST_NONOPT rational values if GNoptind has been
537          moved back by the user (who may also have changed the arguments).  */
538       if (last_nonopt > GNoptind)
539         last_nonopt = GNoptind;
540       if (first_nonopt > GNoptind)
541         first_nonopt = GNoptind;
542
543       if (ordering == PERMUTE)
544         {
545           /* If we have just processed some options following some non-options,
546              exchange them so that the options come first.  */
547
548           if (first_nonopt != last_nonopt && last_nonopt != GNoptind)
549             exchange ((char **) argv);
550           else if (last_nonopt != GNoptind)
551             first_nonopt = GNoptind;
552
553           /* Skip any additional non-options
554              and extend the range of non-options previously skipped.  */
555
556           while (GNoptind < argc && NONOPTION_P)
557             GNoptind++;
558           last_nonopt = GNoptind;
559         }
560
561       /* The special ARGV-element `--' means premature end of options.
562          Skip it like a null option,
563          then exchange with previous non-options as if it were an option,
564          then skip everything else like a non-option.  */
565       if (GNoptind != argc && !strcmp (argv[GNoptind], "--"))
566         {
567           GNoptind++;
568
569           if (first_nonopt != last_nonopt && last_nonopt != GNoptind)
570             exchange ((char **) argv);
571           else if (first_nonopt == last_nonopt)
572             first_nonopt = GNoptind;
573           last_nonopt = argc;
574
575           GNoptind = argc;
576         }
577
578       /* If we have done all the ARGV-elements, stop the scan
579          and back over any non-options that we skipped and permuted.  */
580
581       if (GNoptind == argc)
582         {
583           /* Set the next-arg-index to point at the non-options
584              that we previously skipped, so the caller will digest them.  */
585           if (first_nonopt != last_nonopt)
586             GNoptind = first_nonopt;
587           return -1;
588         }
589
590       /* If we have come to a non-option and did not permute it,
591          either stop the scan or describe it to the caller and pass it by.  */
592
593       if (NONOPTION_P)
594         {
595           if (ordering == REQUIRE_ORDER)
596             return -1;
597           GNoptarg = argv[GNoptind++];
598           return 1;
599         }
600
601       /* We have found another option-ARGV-element.
602          Skip the initial punctuation.  */
603
604       nextchar = (argv[GNoptind] + 1
605                   + (longopts != NULL && argv[GNoptind][1] == '-'));
606     }
607
608   /* Decode the current option-ARGV-element.  */
609
610   /* Check whether the ARGV-element is a long option.
611
612      If long_only and the ARGV-element has the form "-f", where f is
613      a valid short option, don't consider it an abbreviated form of
614      a long option that starts with f.  Otherwise there would be no
615      way to give the -f short option.
616
617      On the other hand, if there's a long option "fubar" and
618      the ARGV-element is "-fu", do consider that an abbreviation of
619      the long option, just like "--fu", and not "-f" with arg "u".
620
621      This distinction seems to be the most useful approach.  */
622
623   if (longopts != NULL
624       && (argv[GNoptind][1] == '-'
625           || (long_only
626               && (argv[GNoptind][2]
627                   || !my_index (optstring, argv[GNoptind][1])))))
628     {
629       char *nameend;
630       const struct GNoption *p;
631       const struct GNoption *pfound = NULL;
632       int exact = 0;
633       int ambig = 0;
634       int indfound = -1;
635       int option_index;
636
637       for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
638         /* Do nothing.  */ ;
639
640       /* Test all long options for either exact match
641          or abbreviated matches.  */
642       for (p = longopts, option_index = 0; p->name; p++, option_index++)
643         if (!strncmp (p->name, nextchar, nameend - nextchar))
644           {
645             if ((unsigned int) (nameend - nextchar)
646                 == (unsigned int) strlen (p->name))
647               {
648                 /* Exact match found.  */
649                 pfound = p;
650                 indfound = option_index;
651                 exact = 1;
652                 break;
653               }
654             else if (pfound == NULL)
655               {
656                 /* First nonexact match found.  */
657                 pfound = p;
658                 indfound = option_index;
659               }
660             else
661               /* Second or later nonexact match found.  */
662               ambig = 1;
663           }
664
665       if (ambig && !exact)
666         {
667           if (GNopterr)
668             fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
669                      argv[0], argv[GNoptind]);
670           nextchar += strlen (nextchar);
671           GNoptind++;
672           return '?';
673         }
674
675       if (pfound != NULL)
676         {
677           option_index = indfound;
678           GNoptind++;
679           if (*nameend)
680             {
681               /* Don't test has_arg with >, because some C compilers don't
682                  allow it to be used on enums.  */
683               if (pfound->has_arg)
684                 GNoptarg = nameend + 1;
685               else
686                 {
687                   if (GNopterr)
688                     {
689                       if (argv[GNoptind - 1][1] == '-')
690                         /* --option */
691                         fprintf (stderr,
692                                  _
693                                  ("%s: option `--%s' does not allow an argument\n"),
694                                  argv[0], pfound->name);
695                       else
696                         /* +option or -option */
697                         fprintf (stderr,
698                                  _
699                                  ("%s: option `%c%s' does not allow an argument\n"),
700                                  argv[0], argv[GNoptind - 1][0],
701                                  pfound->name);
702                     }
703                   nextchar += strlen (nextchar);
704                   return '?';
705                 }
706             }
707           else if (pfound->has_arg == 1)
708             {
709               if (GNoptind < argc)
710                 {
711                   GNoptarg = argv[GNoptind++];
712                 }
713               else
714                 {
715                   if (GNopterr)
716                     {
717                       fprintf (stderr,
718                                _("%s: option `%s' requires an argument\n"),
719                                argv[0], argv[GNoptind - 1]);
720                     }
721                   nextchar += strlen (nextchar);
722                   return (optstring[0] == ':') ? ':' : '?';
723                 }
724             }
725           nextchar += strlen (nextchar);
726           if (longind != NULL)
727             *longind = option_index;
728           if (pfound->flag)
729             {
730               *(pfound->flag) = pfound->val;
731               return 0;
732             }
733           return pfound->val;
734         }
735
736       /* Can't find it as a long option.  If this is not getopt_long_only,
737          or the option starts with '--' or is not a valid short
738          option, then it's an error.
739          Otherwise interpret it as a short option.  */
740       if (!long_only || argv[GNoptind][1] == '-'
741           || my_index (optstring, *nextchar) == NULL)
742         {
743           if (GNopterr)
744             {
745               if (argv[GNoptind][1] == '-')
746                 /* --option */
747                 fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
748                          argv[0], nextchar);
749               else
750                 /* +option or -option */
751                 fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
752                          argv[0], argv[GNoptind][0], nextchar);
753             }
754           nextchar = (char *) "";
755           GNoptind++;
756           return '?';
757         }
758     }
759
760   /* Look at and handle the next short option-character.  */
761
762   {
763     char c = *nextchar++;
764     char *temp = my_index (optstring, c);
765
766     /* Increment `GNoptind' when we start to process its last character.  */
767     if (*nextchar == '\0')
768       ++GNoptind;
769
770     if (temp == NULL || c == ':')
771       {
772         if (GNopterr)
773           {
774             if (posixly_correct)
775               /* 1003.2 specifies the format of this message.  */
776               fprintf (stderr, _("%s: illegal option -- %c\n"), argv[0], c);
777             else
778               fprintf (stderr, _("%s: invalid option -- %c\n"), argv[0], c);
779           }
780         return '?';
781       }
782     /* Convenience. Treat POSIX -W foo same as long option --foo */
783     if (temp[0] == 'W' && temp[1] == ';')
784       {
785         char *nameend;
786         const struct GNoption *p;
787         const struct GNoption *pfound = NULL;
788         int exact = 0;
789         int ambig = 0;
790         int indfound = 0;
791         int option_index;
792
793         /* This is an option that requires an argument.  */
794         if (*nextchar != '\0')
795           {
796             GNoptarg = nextchar;
797             /* If we end this ARGV-element by taking the rest as an arg,
798                we must advance to the next element now.  */
799             GNoptind++;
800           }
801         else if (GNoptind == argc)
802           {
803             if (GNopterr)
804               {
805                 /* 1003.2 specifies the format of this message.  */
806                 fprintf (stderr, _("%s: option requires an argument -- %c\n"),
807                          argv[0], c);
808               }
809             if (optstring[0] == ':')
810               c = ':';
811             else
812               c = '?';
813             return c;
814           }
815         else
816           /* We already incremented `GNoptind' once;
817              increment it again when taking next ARGV-elt as argument.  */
818           GNoptarg = argv[GNoptind++];
819
820         /* GNoptarg is now the argument, see if it's in the
821            table of longopts.  */
822
823         for (nextchar = nameend = GNoptarg; *nameend && *nameend != '=';
824              nameend++)
825           /* Do nothing.  */ ;
826
827         /* Test all long options for either exact match
828            or abbreviated matches.  */
829         if (longopts != NULL)
830         for (p = longopts, option_index = 0; p->name; p++, option_index++)
831           if (!strncmp (p->name, nextchar, nameend - nextchar))
832             {
833               if ((unsigned int) (nameend - nextchar) == strlen (p->name))
834                 {
835                   /* Exact match found.  */
836                   pfound = p;
837                   indfound = option_index;
838                   exact = 1;
839                   break;
840                 }
841               else if (pfound == NULL)
842                 {
843                   /* First nonexact match found.  */
844                   pfound = p;
845                   indfound = option_index;
846                 }
847               else
848                 /* Second or later nonexact match found.  */
849                 ambig = 1;
850             }
851         if (ambig && !exact)
852           {
853             if (GNopterr)
854               fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
855                        argv[0], argv[GNoptind]);
856             nextchar += strlen (nextchar);
857             GNoptind++;
858             return '?';
859           }
860         if (pfound != NULL)
861           {
862             option_index = indfound;
863             if (*nameend)
864               {
865                 /* Don't test has_arg with >, because some C compilers don't
866                    allow it to be used on enums.  */
867                 if (pfound->has_arg)
868                   GNoptarg = nameend + 1;
869                 else
870                   {
871                     if (GNopterr)
872                       fprintf (stderr, _("\
873 %s: option `-W %s' does not allow an argument\n"), argv[0], pfound->name);
874
875                     nextchar += strlen (nextchar);
876                     return '?';
877                   }
878               }
879             else if (pfound->has_arg == 1)
880               {
881                 if (GNoptind < argc)
882                   GNoptarg = argv[GNoptind++];
883                 else
884                   {
885                     if (GNopterr)
886                       fprintf (stderr,
887                                _("%s: option `%s' requires an argument\n"),
888                                argv[0], argv[GNoptind - 1]);
889                     nextchar += strlen (nextchar);
890                     return optstring[0] == ':' ? ':' : '?';
891                   }
892               }
893             nextchar += strlen (nextchar);
894             if (longind != NULL)
895               *longind = option_index;
896             if (pfound->flag)
897               {
898                 *(pfound->flag) = pfound->val;
899                 return 0;
900               }
901             return pfound->val;
902           }
903         nextchar = NULL;
904         return 'W';             /* Let the application handle it.   */
905       }
906     if (temp[1] == ':')
907       {
908         if (temp[2] == ':')
909           {
910             /* This is an option that accepts an argument optionally.  */
911             if (*nextchar != '\0')
912               {
913                 GNoptarg = nextchar;
914                 GNoptind++;
915               }
916             else
917               GNoptarg = NULL;
918             nextchar = NULL;
919           }
920         else
921           {
922             /* This is an option that requires an argument.  */
923             if (*nextchar != '\0')
924               {
925                 GNoptarg = nextchar;
926                 /* If we end this ARGV-element by taking the rest as an arg,
927                    we must advance to the next element now.  */
928                 GNoptind++;
929               }
930             else if (GNoptind == argc)
931               {
932                 if (GNopterr)
933                   {
934                     /* 1003.2 specifies the format of this message.  */
935                     fprintf (stderr,
936                              _("%s: option requires an argument -- %c\n"),
937                              argv[0], c);
938                   }
939                 if (optstring[0] == ':')
940                   c = ':';
941                 else
942                   c = '?';
943               }
944             else
945               /* We already incremented `GNoptind' once;
946                  increment it again when taking next ARGV-elt as argument.  */
947               GNoptarg = argv[GNoptind++];
948             nextchar = NULL;
949           }
950       }
951     return c;
952   }
953 }
954
955 static int
956 GNgetopt_long (int argc,
957                char *const *argv,
958                const char *options,
959                const struct GNoption *long_options, int *opt_index)
960 {
961   return GN_getopt_internal (argc, argv, options, long_options, opt_index, 0);
962 }
963
964 /* ******************** now the GNUnet specific modifications... ********************* */
965
966 /**
967  * Parse the command line.
968  *
969  * @param binaryOptions Name of application with option summary
970  * @param allOptions defined options and handlers
971  * @param argc number of arguments
972  * @param argv actual arguments
973  * @return index into argv with first non-option
974  *   argument, or -1 on error
975  */
976 int
977 GNUNET_GETOPT_run (const char *binaryOptions,
978                    const struct GNUNET_GETOPT_CommandLineOption *allOptions,
979                    unsigned int argc, char *const *argv)
980 {
981   struct GNoption *long_options;
982   struct GNUNET_GETOPT_CommandLineProcessorContext clpc;
983   int count;
984   int i;
985   char *shorts;
986   int spos;
987   int cont;
988   int c;
989
990   GNUNET_assert (argc > 0);
991   GNoptind = 0;
992   clpc.binaryName = argv[0];
993   clpc.binaryOptions = binaryOptions;
994   clpc.allOptions = allOptions;
995   clpc.argv = argv;
996   clpc.argc = argc;
997   count = 0;
998   while (allOptions[count].name != NULL)
999     count++;
1000   long_options = GNUNET_malloc (sizeof (struct GNoption) * (count + 1));
1001   shorts = GNUNET_malloc (count * 2 + 1);
1002   spos = 0;
1003   for (i = 0; i < count; i++)
1004     {
1005       long_options[i].name = allOptions[i].name;
1006       long_options[i].has_arg = allOptions[i].require_argument;
1007       long_options[i].flag = NULL;
1008       long_options[i].val = allOptions[i].shortName;
1009       shorts[spos++] = allOptions[i].shortName;
1010       if (allOptions[i].require_argument != 0)
1011         shorts[spos++] = ':';
1012     }
1013   long_options[count].name = NULL;
1014   long_options[count].has_arg = 0;
1015   long_options[count].flag = NULL;
1016   long_options[count].val = '\0';
1017   shorts[spos] = '\0';
1018   cont = GNUNET_OK;
1019   /* main getopt loop */
1020   while (cont == GNUNET_OK)
1021     {
1022       int option_index = 0;
1023       c = GNgetopt_long (argc, argv, shorts, long_options, &option_index);
1024
1025       if (c == GNUNET_SYSERR)
1026         break;                  /* No more flags to process */
1027
1028       for (i = 0; i < count; i++)
1029         {
1030           clpc.currentArgument = GNoptind - 1;
1031           if ((char) c == allOptions[i].shortName)
1032             {
1033               cont = allOptions[i].processor (&clpc,
1034                                               allOptions[i].scls,
1035                                               allOptions[i].name, GNoptarg);
1036               break;
1037             }
1038         }
1039       if (i == count)
1040         {
1041           fprintf (stderr, _("Use --help to get a list of options.\n"));
1042           cont = GNUNET_SYSERR;
1043         }
1044     }
1045
1046   GNUNET_free (shorts);
1047   GNUNET_free (long_options);
1048   if (cont == GNUNET_SYSERR)
1049     return GNUNET_SYSERR;
1050   return GNoptind;
1051 }
1052
1053 /* end of getopt.c */