]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/ether-addr-util.c
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / basic / ether-addr-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
81a56d6f 2
dccca82b 3#include <errno.h>
11c3a366 4#include <net/ethernet.h>
81a56d6f 5#include <stdio.h>
11c3a366 6#include <sys/types.h>
81a56d6f
LP
7
8#include "ether-addr-util.h"
9#include "macro.h"
dd4d201a 10#include "string-util.h"
81a56d6f
LP
11
12char* ether_addr_to_string(const struct ether_addr *addr, char buffer[ETHER_ADDR_TO_STRING_MAX]) {
13 assert(addr);
14 assert(buffer);
15
16 /* Like ether_ntoa() but uses %02x instead of %x to print
17 * ethernet addresses, which makes them look less funny. Also,
18 * doesn't use a static buffer. */
19
20 sprintf(buffer, "%02x:%02x:%02x:%02x:%02x:%02x",
21 addr->ether_addr_octet[0],
22 addr->ether_addr_octet[1],
23 addr->ether_addr_octet[2],
24 addr->ether_addr_octet[3],
25 addr->ether_addr_octet[4],
26 addr->ether_addr_octet[5]);
27
28 return buffer;
29}
b553a6b1 30
7a08d314 31int ether_addr_compare(const struct ether_addr *a, const struct ether_addr *b) {
583706ab 32 return memcmp(a, b, ETH_ALEN);
b553a6b1 33}
dd4d201a 34
7a08d314 35static void ether_addr_hash_func(const struct ether_addr *p, struct siphash *state) {
583706ab
YW
36 siphash24_compress(p, sizeof(struct ether_addr), state);
37}
38
7a08d314 39DEFINE_HASH_OPS(ether_addr_hash_ops, struct ether_addr, ether_addr_hash_func, ether_addr_compare);
583706ab 40
e5c1be89 41int ether_addr_from_string(const char *s, struct ether_addr *ret) {
dd4d201a
DKG
42 size_t pos = 0, n, field;
43 char sep = '\0';
44 const char *hex = HEXDIGITS, *hexoff;
45 size_t x;
46 bool touched;
47
48#define parse_fields(v) \
49 for (field = 0; field < ELEMENTSOF(v); field++) { \
50 touched = false; \
51 for (n = 0; n < (2 * sizeof(v[0])); n++) { \
52 if (s[pos] == '\0') \
53 break; \
54 hexoff = strchr(hex, s[pos]); \
234519ae 55 if (!hexoff) \
dd4d201a
DKG
56 break; \
57 assert(hexoff >= hex); \
58 x = hexoff - hex; \
59 if (x >= 16) \
60 x -= 6; /* A-F */ \
61 assert(x < 16); \
62 touched = true; \
63 v[field] <<= 4; \
64 v[field] += x; \
65 pos++; \
66 } \
67 if (!touched) \
68 return -EINVAL; \
69 if (field < (ELEMENTSOF(v)-1)) { \
70 if (s[pos] != sep) \
71 return -EINVAL; \
72 else \
73 pos++; \
74 } \
75 }
76
77 assert(s);
78 assert(ret);
79
e5c1be89 80 s += strspn(s, WHITESPACE);
dd4d201a 81 sep = s[strspn(s, hex)];
dd4d201a
DKG
82
83 if (sep == '.') {
84 uint16_t shorts[3] = { 0 };
85
86 parse_fields(shorts);
87
e5c1be89
YW
88 if (s[pos] != '\0')
89 return -EINVAL;
90
dd4d201a
DKG
91 for (n = 0; n < ELEMENTSOF(shorts); n++) {
92 ret->ether_addr_octet[2*n] = ((shorts[n] & (uint16_t)0xff00) >> 8);
93 ret->ether_addr_octet[2*n + 1] = (shorts[n] & (uint16_t)0x00ff);
94 }
e5c1be89
YW
95
96 } else if (IN_SET(sep, ':', '-')) {
97 struct ether_addr out = ETHER_ADDR_NULL;
dd4d201a
DKG
98
99 parse_fields(out.ether_addr_octet);
100
e5c1be89
YW
101 if (s[pos] != '\0')
102 return -EINVAL;
103
dd4d201a
DKG
104 for (n = 0; n < ELEMENTSOF(out.ether_addr_octet); n++)
105 ret->ether_addr_octet[n] = out.ether_addr_octet[n];
dd4d201a 106
e5c1be89
YW
107 } else
108 return -EINVAL;
109
dd4d201a
DKG
110 return 0;
111}