blob: 9071d71de0f8bc00e7f8702432ed96180c9e5402 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* 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
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA.
19*/
20
21/*
22 * 2002-12-24 Nick Fedchik <nick@fedchik.org.ua>
23 * - initial uClibc port
24 */
25
26#define __FORCE_GLIBC
27#include <features.h>
28#include <ctype.h>
29#include <stdio.h>
30#include <stdlib.h>
31#include <netinet/ether.h>
32#include <netinet/if_ether.h>
33
34struct ether_addr *ether_aton_r(const char *asc, struct ether_addr *addr)
35{
36 /* asc is "X:XX:XX:x:xx:xX" */
37 int cnt;
38
39 for (cnt = 0; cnt < 6; ++cnt) {
40 unsigned char number;
41 char ch = *asc++;
42
43 if (ch < 0x20)
44 return NULL;
45 /* | 0x20 is cheap tolower(), valid for letters/numbers only */
46 ch |= 0x20;
47 if ((ch < '0' || ch > '9') && (ch < 'a' || ch > 'f'))
48 return NULL;
49 number = !(ch > '9') ? (ch - '0') : (ch - 'a' + 10);
50
51 ch = *asc++;
52 if ((cnt != 5 && ch != ':') /* not last group */
53 /* What standard says ASCII ether address representation
54 * may also finish with whitespace, not only NUL?
55 * We can get rid of isspace() otherwise */
56 || (cnt == 5 && ch != '\0' /*&& !isspace(ch)*/)
57 ) {
58 ch |= 0x20; /* cheap tolower() */
59 if ((ch < '0' || ch > '9') && (ch < 'a' || ch > 'f'))
60 return NULL;
61 number = (number << 4) + (!(ch > '9') ? (ch - '0') : (ch - 'a' + 10));
62
63 if (cnt != 5) {
64 ch = *asc++;
65 if (ch != ':')
66 return NULL;
67 }
68 }
69
70 /* Store result. */
71 addr->ether_addr_octet[cnt] = number;
72 }
73 /* Looks like we allow garbage after last group?
74 * "1:2:3:4:5:66anything_at_all"? */
75
76 return addr;
77}
78libc_hidden_def(ether_aton_r)
79
80struct ether_addr *ether_aton(const char *asc)
81{
82 static struct ether_addr result;
83
84 return ether_aton_r(asc, &result);
85}
86
87char *ether_ntoa_r(const struct ether_addr *addr, char *buf)
88{
89 sprintf(buf, "%x:%x:%x:%x:%x:%x",
90 addr->ether_addr_octet[0], addr->ether_addr_octet[1],
91 addr->ether_addr_octet[2], addr->ether_addr_octet[3],
92 addr->ether_addr_octet[4], addr->ether_addr_octet[5]);
93 return buf;
94}
95libc_hidden_def(ether_ntoa_r)
96
97char *ether_ntoa(const struct ether_addr *addr)
98{
99 static char asc[18];
100
101 return ether_ntoa_r(addr, asc);
102}