ether_addr.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA.
  16. */
  17. /*
  18. * 2002-12-24 Nick Fedchik <nick@fedchik.org.ua>
  19. * - initial uClibc port
  20. */
  21. #define __FORCE_GLIBC
  22. #include <features.h>
  23. #include <ctype.h>
  24. #include <stdio.h>
  25. #include <stdlib.h>
  26. #include <netinet/ether.h>
  27. #include <netinet/if_ether.h>
  28. struct ether_addr *ether_aton(const char *asc)
  29. {
  30. static struct ether_addr result;
  31. return ether_aton_r(asc, &result);
  32. }
  33. struct ether_addr *ether_aton_r(const char *asc, struct ether_addr *addr)
  34. {
  35. size_t cnt;
  36. for (cnt = 0; cnt < 6; ++cnt) {
  37. unsigned int number;
  38. char ch;
  39. ch = _tolower(*asc++);
  40. if ((ch < '0' || ch > '9') && (ch < 'a' || ch > 'f'))
  41. return NULL;
  42. number = isdigit(ch) ? (ch - '0') : (ch - 'a' + 10);
  43. ch = _tolower(*asc);
  44. if ((cnt < 5 && ch != ':')
  45. || (cnt == 5 && ch != '\0' && !isspace(ch))) {
  46. ++asc;
  47. if ((ch < '0' || ch > '9') && (ch < 'a' || ch > 'f'))
  48. return NULL;
  49. number <<= 4;
  50. number += isdigit(ch) ? (ch - '0') : (ch - 'a' + 10);
  51. ch = *asc;
  52. if (cnt < 5 && ch != ':')
  53. return NULL;
  54. }
  55. /* Store result. */
  56. addr->ether_addr_octet[cnt] = (unsigned char) number;
  57. /* Skip ':'. */
  58. ++asc;
  59. }
  60. return addr;
  61. }
  62. char *ether_ntoa(const struct ether_addr *addr)
  63. {
  64. static char asc[18];
  65. return ether_ntoa_r(addr, asc);
  66. }
  67. char *ether_ntoa_r(const struct ether_addr *addr, char *buf)
  68. {
  69. sprintf(buf, "%x:%x:%x:%x:%x:%x",
  70. addr->ether_addr_octet[0], addr->ether_addr_octet[1],
  71. addr->ether_addr_octet[2], addr->ether_addr_octet[3],
  72. addr->ether_addr_octet[4], addr->ether_addr_octet[5]);
  73. return buf;
  74. }