inet_net.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * Copyright (c) 1983, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 4. Neither the name of the University nor the names of its contributors
  14. * may be used to endorse or promote products derived from this software
  15. * without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. */
  29. /* Copyright (C) 2013-2026 Free Software Foundation, Inc.
  30. This file is part of the GNU C Library.
  31. The GNU C Library is free software; you can redistribute it and/or
  32. modify it under the terms of the GNU Lesser General Public
  33. License as published by the Free Software Foundation; either
  34. version 2.1 of the License, or (at your option) any later version.
  35. The GNU C Library is distributed in the hope that it will be useful,
  36. but WITHOUT ANY WARRANTY; without even the implied warranty of
  37. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  38. Lesser General Public License for more details.
  39. You should have received a copy of the GNU Lesser General Public
  40. License along with the GNU C Library; if not, see
  41. <https://www.gnu.org/licenses/>. */
  42. #include <sys/types.h>
  43. #include <netinet/in.h>
  44. #include <arpa/inet.h>
  45. #include <ctype.h>
  46. /*
  47. * Internet network address interpretation routine.
  48. * The library routines call this routine to interpret
  49. * network numbers.
  50. */
  51. uint32_t
  52. __inet_network (const char *cp)
  53. {
  54. uint32_t val, base, n, i;
  55. char c;
  56. uint32_t parts[4], *pp = parts;
  57. int digit;
  58. again:
  59. val = 0; base = 10; digit = 0;
  60. if (*cp == '0')
  61. digit = 1, base = 8, cp++;
  62. if (*cp == 'x' || *cp == 'X')
  63. digit = 0, base = 16, cp++;
  64. while ((c = *cp) != 0) {
  65. if (val > 0xff)
  66. return (INADDR_NONE);
  67. if (isdigit(c)) {
  68. if (base == 8 && (c == '8' || c == '9'))
  69. return (INADDR_NONE);
  70. val = (val * base) + (c - '0');
  71. cp++;
  72. digit = 1;
  73. continue;
  74. }
  75. if (base == 16 && isxdigit(c)) {
  76. val = (val << 4) + (tolower (c) + 10 - 'a');
  77. cp++;
  78. digit = 1;
  79. continue;
  80. }
  81. break;
  82. }
  83. if (!digit)
  84. return (INADDR_NONE);
  85. if (pp >= parts + 4 || val > 0xff)
  86. return (INADDR_NONE);
  87. if (*cp == '.') {
  88. *pp++ = val, cp++;
  89. goto again;
  90. }
  91. while (isspace(*cp))
  92. cp++;
  93. if (*cp)
  94. return (INADDR_NONE);
  95. if (pp >= parts + 4 || val > 0xff)
  96. return (INADDR_NONE);
  97. *pp++ = val;
  98. n = pp - parts;
  99. for (val = 0, i = 0; i < n; i++) {
  100. val <<= 8;
  101. val |= parts[i] & 0xff;
  102. }
  103. return (val);
  104. }
  105. libc_hidden_def (__inet_network)
  106. weak_alias (__inet_network, inet_network)