getopt.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* $NetBSD: getopt.c,v 1.26 2003/08/07 16:43:40 agc Exp $ */
  2. /* SPDX-License-Identifier: BSD-3-Clause */
  3. /*
  4. * Copyright (c) 1987, 1993, 1994
  5. * The Regents of the University of California. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the University nor the names of its contributors
  16. * may be used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  20. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  23. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. * SUCH DAMAGE.
  30. */
  31. #include <string.h>
  32. #include "getopt.h"
  33. #include <logging/log.h>
  34. LOG_MODULE_REGISTER(getopt);
  35. #define BADCH ((int)'?')
  36. #define BADARG ((int)':')
  37. #define EMSG ""
  38. void getopt_init(struct getopt_state *state)
  39. {
  40. state->opterr = 1;
  41. state->optind = 1;
  42. state->optopt = 0;
  43. state->optreset = 0;
  44. state->optarg = NULL;
  45. state->place = ""; /* EMSG */
  46. }
  47. /*
  48. * getopt --
  49. * Parse argc/argv argument vector.
  50. */
  51. int
  52. getopt(state, nargc, nargv, ostr)
  53. struct getopt_state *state;
  54. int nargc;
  55. char *const nargv[];
  56. const char *ostr;
  57. {
  58. char *oli; /* option letter list index */
  59. if (state->optreset || *state->place == 0) { /* update scanning pointer */
  60. state->optreset = 0;
  61. state->place = nargv[state->optind];
  62. if (state->optind >= nargc || *state->place++ != '-') {
  63. /* Argument is absent or is not an option */
  64. state->place = EMSG;
  65. return -1;
  66. }
  67. state->optopt = *state->place++;
  68. if (state->optopt == '-' && *state->place == 0) {
  69. /* "--" => end of options */
  70. ++state->optind;
  71. state->place = EMSG;
  72. return -1;
  73. }
  74. if (state->optopt == 0) {
  75. /* Solitary '-', treat as a '-' option
  76. * if the program (eg su) is looking for it.
  77. */
  78. state->place = EMSG;
  79. if (strchr(ostr, '-') == NULL) {
  80. return -1;
  81. }
  82. state->optopt = '-';
  83. }
  84. } else {
  85. state->optopt = *state->place++;
  86. }
  87. /* See if option letter is one the caller wanted... */
  88. oli = strchr(ostr, state->optopt);
  89. if (state->optopt == ':' || oli == NULL) {
  90. if (*state->place == 0) {
  91. ++state->optind;
  92. }
  93. if (state->opterr && *ostr != ':') {
  94. LOG_ERR("illegal option -- %c", state->optopt);
  95. }
  96. return BADCH;
  97. }
  98. /* Does this option need an argument? */
  99. if (oli[1] != ':') {
  100. /* don't need argument */
  101. state->optarg = NULL;
  102. if (*state->place == 0) {
  103. ++state->optind;
  104. }
  105. } else {
  106. /* Option-argument is either the rest of this argument or the
  107. * entire next argument.
  108. */
  109. if (*state->place) {
  110. state->optarg = state->place;
  111. } else if (nargc > ++state->optind) {
  112. state->optarg = nargv[state->optind];
  113. } else {
  114. /* option-argument absent */
  115. state->place = EMSG;
  116. if (*ostr == ':') {
  117. return BADARG;
  118. }
  119. if (state->opterr) {
  120. LOG_ERR("option requires an argument -- %c",
  121. state->optopt);
  122. }
  123. return BADCH;
  124. }
  125. state->place = EMSG;
  126. ++state->optind;
  127. }
  128. return state->optopt; /* return option letter */
  129. }