1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright (C) 2013 Tom Gundersen <teg@jklm.no>
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 #include <netinet/ether.h>
24 #include <arpa/inet.h>
31 #include "conf-parser.h"
32 #include "condition.h"
34 bool net_match_config(const struct ether_addr *match_mac,
35 const char *match_path,
36 const char *match_driver,
37 const char *match_type,
38 const char *match_name,
39 Condition *match_host,
40 Condition *match_virt,
41 Condition *match_kernel,
42 Condition *match_arch,
45 const char *dev_parent_driver,
46 const char *dev_driver,
48 const char *dev_name) {
50 if (match_host && !condition_test_host(match_host))
53 if (match_virt && !condition_test_virtualization(match_virt))
56 if (match_kernel && !condition_test_kernel_command_line(match_kernel))
59 if (match_arch && !condition_test_architecture(match_arch))
62 if (match_mac && (!dev_mac || memcmp(match_mac, ether_aton(dev_mac), ETH_ALEN)))
65 if (match_path && (!dev_path || fnmatch(match_path, dev_path, 0)))
69 if (dev_parent_driver && !streq(match_driver, dev_parent_driver))
71 else if (!streq_ptr(match_driver, dev_driver))
75 if (match_type && !streq_ptr(match_type, dev_type))
78 if (match_name && (!dev_name || fnmatch(match_name, dev_name, 0)))
84 unsigned net_netmask_to_prefixlen(const struct in_addr *addr) {
87 return 32 - u32ctz(be32toh(addr->s_addr));
90 int config_parse_net_condition(const char *unit,
94 unsigned section_line,
101 ConditionType cond = ltype;
102 Condition **ret = data;
105 _cleanup_free_ char *s = NULL;
112 negate = rvalue[0] == '!';
120 c = condition_new(cond, s, false, negate);
125 condition_free(*ret);
131 int config_parse_ifname(const char *unit,
132 const char *filename,
135 unsigned section_line,
154 if (!ascii_is_valid(n) || strlen(n) >= IFNAMSIZ) {
155 log_syntax(unit, LOG_ERR, filename, line, EINVAL,
156 "Interface name is not ASCII clean or is too long, ignoring assignment: %s", rvalue);
172 int config_parse_ifalias(const char *unit,
173 const char *filename,
176 unsigned section_line,
195 if (!ascii_is_valid(n) || strlen(n) >= IFALIASZ) {
196 log_syntax(unit, LOG_ERR, filename, line, EINVAL,
197 "Interface alias is not ASCII clean or is too long, ignoring assignment: %s", rvalue);
213 int config_parse_hwaddr(const char *unit,
214 const char *filename,
217 unsigned section_line,
223 struct ether_addr **hwaddr = data;
224 struct ether_addr *n;
232 n = new0(struct ether_addr, 1);
236 r = sscanf(rvalue, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
237 &n->ether_addr_octet[0],
238 &n->ether_addr_octet[1],
239 &n->ether_addr_octet[2],
240 &n->ether_addr_octet[3],
241 &n->ether_addr_octet[4],
242 &n->ether_addr_octet[5]);
244 log_syntax(unit, LOG_ERR, filename, line, EINVAL,
245 "Not a valid MAC address, ignoring assignment: %s", rvalue);
256 int net_parse_inaddr(const char *address, unsigned char *family, void *dst) {
264 r = inet_pton(AF_INET, address, dst);
266 /* succsefully parsed IPv4 address */
267 if (*family == AF_UNSPEC)
269 else if (*family != AF_INET)
274 /* not an IPv4 address, so let's try IPv6 */
275 r = inet_pton(AF_INET6, address, dst);
277 /* successfully parsed IPv6 address */
278 if (*family == AF_UNSPEC)
280 else if (*family != AF_INET6)