]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/networkctl.c
dhcp: move sd_dhcp_client_id_to_string() to sd-dhcp-client-id.[ch]
[thirdparty/systemd.git] / src / network / networkctl.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <arpa/inet.h>
4 #include <getopt.h>
5 #include <linux/if_addrlabel.h>
6 #include <net/if.h>
7 #include <stdbool.h>
8 #include <sys/stat.h>
9 #include <sys/types.h>
10 #include <unistd.h>
11 #include <linux/if_bridge.h>
12 #include <linux/if_tunnel.h>
13
14 #include "sd-bus.h"
15 #include "sd-device.h"
16 #include "sd-dhcp-client.h"
17 #include "sd-hwdb.h"
18 #include "sd-lldp-rx.h"
19 #include "sd-netlink.h"
20 #include "sd-network.h"
21
22 #include "alloc-util.h"
23 #include "bond-util.h"
24 #include "bridge-util.h"
25 #include "build.h"
26 #include "bus-common-errors.h"
27 #include "bus-error.h"
28 #include "bus-locator.h"
29 #include "device-util.h"
30 #include "escape.h"
31 #include "ether-addr-util.h"
32 #include "ethtool-util.h"
33 #include "fd-util.h"
34 #include "format-table.h"
35 #include "format-util.h"
36 #include "fs-util.h"
37 #include "geneve-util.h"
38 #include "glob-util.h"
39 #include "hwdb-util.h"
40 #include "ipvlan-util.h"
41 #include "local-addresses.h"
42 #include "locale-util.h"
43 #include "logs-show.h"
44 #include "macro.h"
45 #include "macvlan-util.h"
46 #include "main-func.h"
47 #include "netif-util.h"
48 #include "netlink-util.h"
49 #include "network-internal.h"
50 #include "network-util.h"
51 #include "networkctl.h"
52 #include "networkctl-config-file.h"
53 #include "pager.h"
54 #include "parse-argument.h"
55 #include "parse-util.h"
56 #include "path-lookup.h"
57 #include "path-util.h"
58 #include "pretty-print.h"
59 #include "set.h"
60 #include "sigbus.h"
61 #include "socket-netlink.h"
62 #include "socket-util.h"
63 #include "sort-util.h"
64 #include "sparse-endian.h"
65 #include "stdio-util.h"
66 #include "string-table.h"
67 #include "string-util.h"
68 #include "strv.h"
69 #include "strxcpyx.h"
70 #include "terminal-util.h"
71 #include "udev-util.h"
72 #include "unit-def.h"
73 #include "varlink.h"
74 #include "verbs.h"
75 #include "wifi-util.h"
76
77 /* Kernel defines MODULE_NAME_LEN as 64 - sizeof(unsigned long). So, 64 is enough. */
78 #define NETDEV_KIND_MAX 64
79
80 /* use 128 kB for receive socket kernel queue, we shouldn't need more here */
81 #define RCVBUF_SIZE (128*1024)
82
83 PagerFlags arg_pager_flags = 0;
84 bool arg_legend = true;
85 bool arg_no_reload = false;
86 bool arg_all = false;
87 bool arg_stats = false;
88 bool arg_full = false;
89 bool arg_runtime = false;
90 unsigned arg_lines = 10;
91 char *arg_drop_in = NULL;
92 JsonFormatFlags arg_json_format_flags = JSON_FORMAT_OFF;
93
94 STATIC_DESTRUCTOR_REGISTER(arg_drop_in, freep);
95
96 static int check_netns_match(void) {
97 struct stat st;
98 uint64_t id;
99 JsonVariant *reply = NULL;
100 _cleanup_(varlink_unrefp) Varlink *vl = NULL;
101 int r;
102
103 r = varlink_connect_address(&vl, "/run/systemd/netif/io.systemd.Network");
104 if (r < 0)
105 return log_error_errno(r, "Failed to connect to network service /run/systemd/netif/io.systemd.Network: %m");
106
107 r = varlink_call(vl, "io.systemd.Network.GetNamespaceId", NULL, &reply, NULL, 0);
108 if (r < 0)
109 return log_error_errno(r, "Failed to issue GetNamespaceId() varlink call: %m");
110
111 static const JsonDispatch dispatch_table[] = {
112 { "NamespaceId", JSON_VARIANT_UNSIGNED, json_dispatch_uint64, 0, JSON_MANDATORY },
113 {},
114 };
115
116 r = json_dispatch(reply, dispatch_table, JSON_LOG, &id);
117 if (r < 0)
118 return r;
119
120 if (id == 0) {
121 log_debug("systemd-networkd.service not running in a network namespace (?), skipping netns check.");
122 return 0;
123 }
124
125 if (stat("/proc/self/ns/net", &st) < 0)
126 return log_error_errno(errno, "Failed to determine our own network namespace ID: %m");
127
128 if (id != st.st_ino)
129 return log_error_errno(SYNTHETIC_ERRNO(EREMOTE),
130 "networkctl must be invoked in same network namespace as systemd-networkd.service.");
131
132 return 0;
133 }
134
135 bool networkd_is_running(void) {
136 static int cached = -1;
137 int r;
138
139 if (cached < 0) {
140 r = access("/run/systemd/netif/state", F_OK);
141 if (r < 0) {
142 if (errno != ENOENT)
143 log_debug_errno(errno,
144 "Failed to determine whether networkd is running, assuming it's not: %m");
145
146 cached = false;
147 } else
148 cached = true;
149 }
150
151 return cached;
152 }
153
154 int acquire_bus(sd_bus **ret) {
155 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
156 int r;
157
158 assert(ret);
159
160 r = sd_bus_open_system(&bus);
161 if (r < 0)
162 return log_error_errno(r, "Failed to connect to system bus: %m");
163
164 if (networkd_is_running()) {
165 r = check_netns_match();
166 if (r < 0)
167 return r;
168 } else
169 log_warning("systemd-networkd is not running, output might be incomplete.");
170
171 *ret = TAKE_PTR(bus);
172 return 0;
173 }
174
175 static int get_description(sd_bus *bus, JsonVariant **ret) {
176 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
177 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
178 const char *text;
179 int r;
180
181 assert(bus);
182 assert(ret);
183
184 r = bus_call_method(bus, bus_network_mgr, "Describe", &error, &reply, NULL);
185 if (r < 0)
186 return log_error_errno(r, "Failed to get description: %s", bus_error_message(&error, r));
187
188 r = sd_bus_message_read(reply, "s", &text);
189 if (r < 0)
190 return bus_log_parse_error(r);
191
192 r = json_parse(text, 0, ret, NULL, NULL);
193 if (r < 0)
194 return log_error_errno(r, "Failed to parse JSON: %m");
195
196 return 0;
197 }
198
199 static int dump_manager_description(sd_bus *bus) {
200 _cleanup_(json_variant_unrefp) JsonVariant *v = NULL;
201 int r;
202
203 assert(bus);
204
205 r = get_description(bus, &v);
206 if (r < 0)
207 return r;
208
209 json_variant_dump(v, arg_json_format_flags, NULL, NULL);
210 return 0;
211 }
212
213 static int dump_link_description(sd_bus *bus, char * const *patterns) {
214 _cleanup_(json_variant_unrefp) JsonVariant *v = NULL;
215 _cleanup_free_ bool *matched_patterns = NULL;
216 JsonVariant *i;
217 size_t c = 0;
218 int r;
219
220 assert(bus);
221 assert(patterns);
222
223 r = get_description(bus, &v);
224 if (r < 0)
225 return r;
226
227 matched_patterns = new0(bool, strv_length(patterns));
228 if (!matched_patterns)
229 return log_oom();
230
231 JSON_VARIANT_ARRAY_FOREACH(i, json_variant_by_key(v, "Interfaces")) {
232 char ifindex_str[DECIMAL_STR_MAX(int64_t)];
233 const char *name;
234 int64_t index;
235 size_t pos;
236
237 name = json_variant_string(json_variant_by_key(i, "Name"));
238 index = json_variant_integer(json_variant_by_key(i, "Index"));
239 xsprintf(ifindex_str, "%" PRIi64, index);
240
241 if (!strv_fnmatch_full(patterns, ifindex_str, 0, &pos) &&
242 !strv_fnmatch_full(patterns, name, 0, &pos)) {
243 bool match = false;
244 JsonVariant *a;
245
246 JSON_VARIANT_ARRAY_FOREACH(a, json_variant_by_key(i, "AlternativeNames"))
247 if (strv_fnmatch_full(patterns, json_variant_string(a), 0, &pos)) {
248 match = true;
249 break;
250 }
251
252 if (!match)
253 continue;
254 }
255
256 matched_patterns[pos] = true;
257 json_variant_dump(i, arg_json_format_flags, NULL, NULL);
258 c++;
259 }
260
261 /* Look if we matched all our arguments that are not globs. It is OK for a glob to match
262 * nothing, but not for an exact argument. */
263 for (size_t pos = 0; pos < strv_length(patterns); pos++) {
264 if (matched_patterns[pos])
265 continue;
266
267 if (string_is_glob(patterns[pos]))
268 log_debug("Pattern \"%s\" doesn't match any interface, ignoring.",
269 patterns[pos]);
270 else
271 return log_error_errno(SYNTHETIC_ERRNO(ENODEV),
272 "Interface \"%s\" not found.", patterns[pos]);
273 }
274
275 if (c == 0)
276 log_warning("No interfaces matched.");
277
278 return 0;
279 }
280
281 static void operational_state_to_color(
282 const char *name,
283 const char *state,
284 const char **on,
285 const char **off) {
286
287 if (STRPTR_IN_SET(state, "routable", "enslaved") ||
288 (streq_ptr(name, "lo") && streq_ptr(state, "carrier"))) {
289 if (on)
290 *on = ansi_highlight_green();
291 if (off)
292 *off = ansi_normal();
293 } else if (streq_ptr(state, "degraded")) {
294 if (on)
295 *on = ansi_highlight_yellow();
296 if (off)
297 *off = ansi_normal();
298 } else {
299 if (on)
300 *on = "";
301 if (off)
302 *off = "";
303 }
304 }
305
306 static void setup_state_to_color(const char *state, const char **on, const char **off) {
307 if (streq_ptr(state, "configured")) {
308 if (on)
309 *on = ansi_highlight_green();
310 if (off)
311 *off = ansi_normal();
312 } else if (streq_ptr(state, "configuring")) {
313 if (on)
314 *on = ansi_highlight_yellow();
315 if (off)
316 *off = ansi_normal();
317 } else if (STRPTR_IN_SET(state, "failed", "linger")) {
318 if (on)
319 *on = ansi_highlight_red();
320 if (off)
321 *off = ansi_normal();
322 } else {
323 if (on)
324 *on = "";
325 if (off)
326 *off = "";
327 }
328 }
329
330 static void online_state_to_color(const char *state, const char **on, const char **off) {
331 if (streq_ptr(state, "online")) {
332 if (on)
333 *on = ansi_highlight_green();
334 if (off)
335 *off = ansi_normal();
336 } else if (streq_ptr(state, "partial")) {
337 if (on)
338 *on = ansi_highlight_yellow();
339 if (off)
340 *off = ansi_normal();
341 } else {
342 if (on)
343 *on = "";
344 if (off)
345 *off = "";
346 }
347 }
348
349 typedef struct VxLanInfo {
350 uint32_t vni;
351 uint32_t link;
352
353 int local_family;
354 int group_family;
355
356 union in_addr_union local;
357 union in_addr_union group;
358
359 uint16_t dest_port;
360
361 uint8_t proxy;
362 uint8_t learning;
363 uint8_t rsc;
364 uint8_t l2miss;
365 uint8_t l3miss;
366 uint8_t tos;
367 uint8_t ttl;
368 } VxLanInfo;
369
370 typedef struct LinkInfo {
371 char name[IFNAMSIZ+1];
372 char *netdev_kind;
373 sd_device *sd_device;
374 int ifindex;
375 unsigned short iftype;
376 struct hw_addr_data hw_address;
377 struct hw_addr_data permanent_hw_address;
378 uint32_t master;
379 uint32_t mtu;
380 uint32_t min_mtu;
381 uint32_t max_mtu;
382 uint32_t tx_queues;
383 uint32_t rx_queues;
384 uint8_t addr_gen_mode;
385 char *qdisc;
386 char **alternative_names;
387
388 union {
389 struct rtnl_link_stats64 stats64;
390 struct rtnl_link_stats stats;
391 };
392
393 uint64_t tx_bitrate;
394 uint64_t rx_bitrate;
395
396 /* bridge info */
397 uint32_t forward_delay;
398 uint32_t hello_time;
399 uint32_t max_age;
400 uint32_t ageing_time;
401 uint32_t stp_state;
402 uint32_t cost;
403 uint16_t priority;
404 uint8_t mcast_igmp_version;
405 uint8_t port_state;
406
407 /* vxlan info */
408 VxLanInfo vxlan_info;
409
410 /* vlan info */
411 uint16_t vlan_id;
412
413 /* tunnel info */
414 uint8_t ttl;
415 uint8_t tos;
416 uint8_t inherit;
417 uint8_t df;
418 uint8_t csum;
419 uint8_t csum6_tx;
420 uint8_t csum6_rx;
421 uint16_t tunnel_port;
422 uint32_t vni;
423 uint32_t label;
424 union in_addr_union local;
425 union in_addr_union remote;
426
427 /* bonding info */
428 uint8_t mode;
429 uint32_t miimon;
430 uint32_t updelay;
431 uint32_t downdelay;
432
433 /* macvlan and macvtap info */
434 uint32_t macvlan_mode;
435
436 /* ipvlan info */
437 uint16_t ipvlan_mode;
438 uint16_t ipvlan_flags;
439
440 /* ethtool info */
441 int autonegotiation;
442 uint64_t speed;
443 Duplex duplex;
444 NetDevPort port;
445
446 /* wlan info */
447 enum nl80211_iftype wlan_iftype;
448 char *ssid;
449 struct ether_addr bssid;
450
451 bool has_hw_address:1;
452 bool has_permanent_hw_address:1;
453 bool has_tx_queues:1;
454 bool has_rx_queues:1;
455 bool has_stats64:1;
456 bool has_stats:1;
457 bool has_bitrates:1;
458 bool has_ethtool_link_info:1;
459 bool has_wlan_link_info:1;
460 bool has_tunnel_ipv4:1;
461 bool has_ipv6_address_generation_mode:1;
462
463 bool needs_freeing:1;
464 } LinkInfo;
465
466 static int link_info_compare(const LinkInfo *a, const LinkInfo *b) {
467 return CMP(a->ifindex, b->ifindex);
468 }
469
470 static LinkInfo* link_info_array_free(LinkInfo *array) {
471 for (unsigned i = 0; array && array[i].needs_freeing; i++) {
472 sd_device_unref(array[i].sd_device);
473 free(array[i].netdev_kind);
474 free(array[i].ssid);
475 free(array[i].qdisc);
476 strv_free(array[i].alternative_names);
477 }
478
479 return mfree(array);
480 }
481 DEFINE_TRIVIAL_CLEANUP_FUNC(LinkInfo*, link_info_array_free);
482
483 static int decode_netdev(sd_netlink_message *m, LinkInfo *info) {
484 int r;
485
486 assert(m);
487 assert(info);
488
489 r = sd_netlink_message_enter_container(m, IFLA_LINKINFO);
490 if (r < 0)
491 return r;
492
493 r = sd_netlink_message_read_string_strdup(m, IFLA_INFO_KIND, &info->netdev_kind);
494 if (r < 0) {
495 (void) sd_netlink_message_exit_container(m);
496 return r;
497 }
498
499 r = sd_netlink_message_enter_container(m, IFLA_INFO_DATA);
500 if (r < 0)
501 return r;
502
503 if (streq(info->netdev_kind, "bridge")) {
504 (void) sd_netlink_message_read_u32(m, IFLA_BR_FORWARD_DELAY, &info->forward_delay);
505 (void) sd_netlink_message_read_u32(m, IFLA_BR_HELLO_TIME, &info->hello_time);
506 (void) sd_netlink_message_read_u32(m, IFLA_BR_MAX_AGE, &info->max_age);
507 (void) sd_netlink_message_read_u32(m, IFLA_BR_AGEING_TIME, &info->ageing_time);
508 (void) sd_netlink_message_read_u32(m, IFLA_BR_STP_STATE, &info->stp_state);
509 (void) sd_netlink_message_read_u32(m, IFLA_BRPORT_COST, &info->cost);
510 (void) sd_netlink_message_read_u16(m, IFLA_BR_PRIORITY, &info->priority);
511 (void) sd_netlink_message_read_u8(m, IFLA_BR_MCAST_IGMP_VERSION, &info->mcast_igmp_version);
512 (void) sd_netlink_message_read_u8(m, IFLA_BRPORT_STATE, &info->port_state);
513 } if (streq(info->netdev_kind, "bond")) {
514 (void) sd_netlink_message_read_u8(m, IFLA_BOND_MODE, &info->mode);
515 (void) sd_netlink_message_read_u32(m, IFLA_BOND_MIIMON, &info->miimon);
516 (void) sd_netlink_message_read_u32(m, IFLA_BOND_DOWNDELAY, &info->downdelay);
517 (void) sd_netlink_message_read_u32(m, IFLA_BOND_UPDELAY, &info->updelay);
518 } else if (streq(info->netdev_kind, "vxlan")) {
519 (void) sd_netlink_message_read_u32(m, IFLA_VXLAN_ID, &info->vxlan_info.vni);
520
521 r = sd_netlink_message_read_in_addr(m, IFLA_VXLAN_GROUP, &info->vxlan_info.group.in);
522 if (r >= 0)
523 info->vxlan_info.group_family = AF_INET;
524 else {
525 r = sd_netlink_message_read_in6_addr(m, IFLA_VXLAN_GROUP6, &info->vxlan_info.group.in6);
526 if (r >= 0)
527 info->vxlan_info.group_family = AF_INET6;
528 }
529
530 r = sd_netlink_message_read_in_addr(m, IFLA_VXLAN_LOCAL, &info->vxlan_info.local.in);
531 if (r >= 0)
532 info->vxlan_info.local_family = AF_INET;
533 else {
534 r = sd_netlink_message_read_in6_addr(m, IFLA_VXLAN_LOCAL6, &info->vxlan_info.local.in6);
535 if (r >= 0)
536 info->vxlan_info.local_family = AF_INET6;
537 }
538
539 (void) sd_netlink_message_read_u32(m, IFLA_VXLAN_LINK, &info->vxlan_info.link);
540 (void) sd_netlink_message_read_u16(m, IFLA_VXLAN_PORT, &info->vxlan_info.dest_port);
541 (void) sd_netlink_message_read_u8(m, IFLA_VXLAN_PROXY, &info->vxlan_info.proxy);
542 (void) sd_netlink_message_read_u8(m, IFLA_VXLAN_LEARNING, &info->vxlan_info.learning);
543 (void) sd_netlink_message_read_u8(m, IFLA_VXLAN_RSC, &info->vxlan_info.rsc);
544 (void) sd_netlink_message_read_u8(m, IFLA_VXLAN_L3MISS, &info->vxlan_info.l3miss);
545 (void) sd_netlink_message_read_u8(m, IFLA_VXLAN_L2MISS, &info->vxlan_info.l2miss);
546 (void) sd_netlink_message_read_u8(m, IFLA_VXLAN_TOS, &info->vxlan_info.tos);
547 (void) sd_netlink_message_read_u8(m, IFLA_VXLAN_TTL, &info->vxlan_info.ttl);
548 } else if (streq(info->netdev_kind, "vlan"))
549 (void) sd_netlink_message_read_u16(m, IFLA_VLAN_ID, &info->vlan_id);
550 else if (STR_IN_SET(info->netdev_kind, "ipip", "sit")) {
551 (void) sd_netlink_message_read_in_addr(m, IFLA_IPTUN_LOCAL, &info->local.in);
552 (void) sd_netlink_message_read_in_addr(m, IFLA_IPTUN_REMOTE, &info->remote.in);
553 } else if (streq(info->netdev_kind, "geneve")) {
554 (void) sd_netlink_message_read_u32(m, IFLA_GENEVE_ID, &info->vni);
555
556 r = sd_netlink_message_read_in_addr(m, IFLA_GENEVE_REMOTE, &info->remote.in);
557 if (r >= 0)
558 info->has_tunnel_ipv4 = true;
559 else
560 (void) sd_netlink_message_read_in6_addr(m, IFLA_GENEVE_REMOTE6, &info->remote.in6);
561
562 (void) sd_netlink_message_read_u8(m, IFLA_GENEVE_TTL, &info->ttl);
563 (void) sd_netlink_message_read_u8(m, IFLA_GENEVE_TTL_INHERIT, &info->inherit);
564 (void) sd_netlink_message_read_u8(m, IFLA_GENEVE_TOS, &info->tos);
565 (void) sd_netlink_message_read_u8(m, IFLA_GENEVE_DF, &info->df);
566 (void) sd_netlink_message_read_u8(m, IFLA_GENEVE_UDP_CSUM, &info->csum);
567 (void) sd_netlink_message_read_u8(m, IFLA_GENEVE_UDP_ZERO_CSUM6_TX, &info->csum6_tx);
568 (void) sd_netlink_message_read_u8(m, IFLA_GENEVE_UDP_ZERO_CSUM6_RX, &info->csum6_rx);
569 (void) sd_netlink_message_read_u16(m, IFLA_GENEVE_PORT, &info->tunnel_port);
570 (void) sd_netlink_message_read_u32(m, IFLA_GENEVE_LABEL, &info->label);
571 } else if (STR_IN_SET(info->netdev_kind, "gre", "gretap", "erspan")) {
572 (void) sd_netlink_message_read_in_addr(m, IFLA_GRE_LOCAL, &info->local.in);
573 (void) sd_netlink_message_read_in_addr(m, IFLA_GRE_REMOTE, &info->remote.in);
574 } else if (STR_IN_SET(info->netdev_kind, "ip6gre", "ip6gretap", "ip6erspan")) {
575 (void) sd_netlink_message_read_in6_addr(m, IFLA_GRE_LOCAL, &info->local.in6);
576 (void) sd_netlink_message_read_in6_addr(m, IFLA_GRE_REMOTE, &info->remote.in6);
577 } else if (streq(info->netdev_kind, "vti")) {
578 (void) sd_netlink_message_read_in_addr(m, IFLA_VTI_LOCAL, &info->local.in);
579 (void) sd_netlink_message_read_in_addr(m, IFLA_VTI_REMOTE, &info->remote.in);
580 } else if (streq(info->netdev_kind, "vti6")) {
581 (void) sd_netlink_message_read_in6_addr(m, IFLA_VTI_LOCAL, &info->local.in6);
582 (void) sd_netlink_message_read_in6_addr(m, IFLA_VTI_REMOTE, &info->remote.in6);
583 } else if (STR_IN_SET(info->netdev_kind, "macvlan", "macvtap"))
584 (void) sd_netlink_message_read_u32(m, IFLA_MACVLAN_MODE, &info->macvlan_mode);
585 else if (streq(info->netdev_kind, "ipvlan")) {
586 (void) sd_netlink_message_read_u16(m, IFLA_IPVLAN_MODE, &info->ipvlan_mode);
587 (void) sd_netlink_message_read_u16(m, IFLA_IPVLAN_FLAGS, &info->ipvlan_flags);
588 }
589
590 (void) sd_netlink_message_exit_container(m);
591 (void) sd_netlink_message_exit_container(m);
592
593 return 0;
594 }
595
596 static int decode_link(
597 sd_netlink_message *m,
598 LinkInfo *info,
599 char * const *patterns,
600 bool matched_patterns[]) {
601
602 _cleanup_strv_free_ char **altnames = NULL;
603 const char *name, *qdisc;
604 int ifindex, r;
605 uint16_t type;
606
607 assert(m);
608 assert(info);
609
610 r = sd_netlink_message_get_type(m, &type);
611 if (r < 0)
612 return r;
613
614 if (type != RTM_NEWLINK)
615 return 0;
616
617 r = sd_rtnl_message_link_get_ifindex(m, &ifindex);
618 if (r < 0)
619 return r;
620
621 r = sd_netlink_message_read_string(m, IFLA_IFNAME, &name);
622 if (r < 0)
623 return r;
624
625 r = sd_netlink_message_read_strv(m, IFLA_PROP_LIST, IFLA_ALT_IFNAME, &altnames);
626 if (r < 0 && r != -ENODATA)
627 return r;
628
629 if (patterns) {
630 char str[DECIMAL_STR_MAX(int)];
631 size_t pos;
632
633 assert(matched_patterns);
634
635 xsprintf(str, "%i", ifindex);
636 if (!strv_fnmatch_full(patterns, str, 0, &pos) &&
637 !strv_fnmatch_full(patterns, name, 0, &pos)) {
638 bool match = false;
639
640 STRV_FOREACH(p, altnames)
641 if (strv_fnmatch_full(patterns, *p, 0, &pos)) {
642 match = true;
643 break;
644 }
645 if (!match)
646 return 0;
647 }
648
649 matched_patterns[pos] = true;
650 }
651
652 r = sd_rtnl_message_link_get_type(m, &info->iftype);
653 if (r < 0)
654 return r;
655
656 strscpy(info->name, sizeof info->name, name);
657 info->ifindex = ifindex;
658 info->alternative_names = TAKE_PTR(altnames);
659
660 info->has_hw_address =
661 netlink_message_read_hw_addr(m, IFLA_ADDRESS, &info->hw_address) >= 0 &&
662 info->hw_address.length > 0;
663
664 info->has_permanent_hw_address =
665 (netlink_message_read_hw_addr(m, IFLA_PERM_ADDRESS, &info->permanent_hw_address) >= 0 ||
666 ethtool_get_permanent_hw_addr(NULL, info->name, &info->permanent_hw_address) >= 0) &&
667 !hw_addr_is_null(&info->permanent_hw_address) &&
668 !hw_addr_equal(&info->permanent_hw_address, &info->hw_address);
669
670 (void) sd_netlink_message_read_u32(m, IFLA_MTU, &info->mtu);
671 (void) sd_netlink_message_read_u32(m, IFLA_MIN_MTU, &info->min_mtu);
672 (void) sd_netlink_message_read_u32(m, IFLA_MAX_MTU, &info->max_mtu);
673
674 info->has_rx_queues =
675 sd_netlink_message_read_u32(m, IFLA_NUM_RX_QUEUES, &info->rx_queues) >= 0 &&
676 info->rx_queues > 0;
677
678 info->has_tx_queues =
679 sd_netlink_message_read_u32(m, IFLA_NUM_TX_QUEUES, &info->tx_queues) >= 0 &&
680 info->tx_queues > 0;
681
682 if (sd_netlink_message_read(m, IFLA_STATS64, sizeof info->stats64, &info->stats64) >= 0)
683 info->has_stats64 = true;
684 else if (sd_netlink_message_read(m, IFLA_STATS, sizeof info->stats, &info->stats) >= 0)
685 info->has_stats = true;
686
687 r = sd_netlink_message_read_string(m, IFLA_QDISC, &qdisc);
688 if (r >= 0) {
689 info->qdisc = strdup(qdisc);
690 if (!info->qdisc)
691 return log_oom();
692 }
693
694 (void) sd_netlink_message_read_u32(m, IFLA_MASTER, &info->master);
695
696 r = sd_netlink_message_enter_container(m, IFLA_AF_SPEC);
697 if (r >= 0) {
698 r = sd_netlink_message_enter_container(m, AF_INET6);
699 if (r >= 0) {
700 r = sd_netlink_message_read_u8(m, IFLA_INET6_ADDR_GEN_MODE, &info->addr_gen_mode);
701 if (r >= 0 && IN_SET(info->addr_gen_mode,
702 IN6_ADDR_GEN_MODE_EUI64,
703 IN6_ADDR_GEN_MODE_NONE,
704 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
705 IN6_ADDR_GEN_MODE_RANDOM))
706 info->has_ipv6_address_generation_mode = true;
707
708 (void) sd_netlink_message_exit_container(m);
709 }
710 (void) sd_netlink_message_exit_container(m);
711 }
712
713 /* fill kind info */
714 (void) decode_netdev(m, info);
715
716 return 1;
717 }
718
719 static int link_get_property(
720 sd_bus *bus,
721 const LinkInfo *link,
722 sd_bus_error *error,
723 sd_bus_message **reply,
724 const char *iface,
725 const char *propname,
726 const char *type) {
727
728 _cleanup_free_ char *path = NULL;
729 char ifindex_str[DECIMAL_STR_MAX(int)];
730 int r;
731
732 assert(bus);
733 assert(link);
734 assert(link->ifindex >= 0);
735 assert(error);
736 assert(reply);
737 assert(iface);
738 assert(propname);
739 assert(type);
740
741 xsprintf(ifindex_str, "%i", link->ifindex);
742
743 r = sd_bus_path_encode("/org/freedesktop/network1/link", ifindex_str, &path);
744 if (r < 0)
745 return r;
746
747 return sd_bus_get_property(bus, "org.freedesktop.network1", path, iface, propname, error, reply, type);
748 }
749
750 static int acquire_link_bitrates(sd_bus *bus, LinkInfo *link) {
751 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
752 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
753 int r;
754
755 assert(bus);
756 assert(link);
757
758 r = link_get_property(bus, link, &error, &reply, "org.freedesktop.network1.Link", "BitRates", "(tt)");
759 if (r < 0) {
760 bool quiet = sd_bus_error_has_names(&error, SD_BUS_ERROR_UNKNOWN_PROPERTY,
761 BUS_ERROR_SPEED_METER_INACTIVE);
762
763 return log_full_errno(quiet ? LOG_DEBUG : LOG_WARNING,
764 r, "Failed to query link bit rates: %s", bus_error_message(&error, r));
765 }
766
767 r = sd_bus_message_read(reply, "(tt)", &link->tx_bitrate, &link->rx_bitrate);
768 if (r < 0)
769 return bus_log_parse_error(r);
770
771 r = sd_bus_message_exit_container(reply);
772 if (r < 0)
773 return bus_log_parse_error(r);
774
775 link->has_bitrates = link->tx_bitrate != UINT64_MAX && link->rx_bitrate != UINT64_MAX;
776
777 return 0;
778 }
779
780 static void acquire_ether_link_info(int *fd, LinkInfo *link) {
781 assert(fd);
782 assert(link);
783
784 if (ethtool_get_link_info(fd,
785 link->name,
786 &link->autonegotiation,
787 &link->speed,
788 &link->duplex,
789 &link->port) >= 0)
790 link->has_ethtool_link_info = true;
791 }
792
793 static void acquire_wlan_link_info(LinkInfo *link) {
794 _cleanup_(sd_netlink_unrefp) sd_netlink *genl = NULL;
795 int r, k = 0;
796
797 assert(link);
798
799 if (!link->sd_device)
800 return;
801
802 if (!device_is_devtype(link->sd_device, "wlan"))
803 return;
804
805 r = sd_genl_socket_open(&genl);
806 if (r < 0) {
807 log_debug_errno(r, "Failed to open generic netlink socket: %m");
808 return;
809 }
810
811 (void) sd_netlink_increase_rxbuf(genl, RCVBUF_SIZE);
812
813 r = wifi_get_interface(genl, link->ifindex, &link->wlan_iftype, &link->ssid);
814 if (r < 0)
815 log_debug_errno(r, "%s: failed to query ssid: %m", link->name);
816
817 if (link->wlan_iftype == NL80211_IFTYPE_STATION) {
818 k = wifi_get_station(genl, link->ifindex, &link->bssid);
819 if (k < 0)
820 log_debug_errno(k, "%s: failed to query bssid: %m", link->name);
821 }
822
823 link->has_wlan_link_info = r > 0 || k > 0;
824 }
825
826 static int acquire_link_info(sd_bus *bus, sd_netlink *rtnl, char * const *patterns, LinkInfo **ret) {
827 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL, *reply = NULL;
828 _cleanup_(link_info_array_freep) LinkInfo *links = NULL;
829 _cleanup_free_ bool *matched_patterns = NULL;
830 _cleanup_close_ int fd = -EBADF;
831 size_t c = 0;
832 int r;
833
834 assert(rtnl);
835 assert(ret);
836
837 r = sd_rtnl_message_new_link(rtnl, &req, RTM_GETLINK, 0);
838 if (r < 0)
839 return rtnl_log_create_error(r);
840
841 r = sd_netlink_message_set_request_dump(req, true);
842 if (r < 0)
843 return rtnl_log_create_error(r);
844
845 r = sd_netlink_call(rtnl, req, 0, &reply);
846 if (r < 0)
847 return log_error_errno(r, "Failed to enumerate links: %m");
848
849 if (patterns) {
850 matched_patterns = new0(bool, strv_length(patterns));
851 if (!matched_patterns)
852 return log_oom();
853 }
854
855 for (sd_netlink_message *i = reply; i; i = sd_netlink_message_next(i)) {
856 if (!GREEDY_REALLOC0(links, c + 2)) /* We keep one trailing one as marker */
857 return -ENOMEM;
858
859 r = decode_link(i, links + c, patterns, matched_patterns);
860 if (r < 0)
861 return r;
862 if (r == 0)
863 continue;
864
865 links[c].needs_freeing = true;
866
867 (void) sd_device_new_from_ifindex(&links[c].sd_device, links[c].ifindex);
868
869 acquire_ether_link_info(&fd, &links[c]);
870 acquire_wlan_link_info(&links[c]);
871
872 c++;
873 }
874
875 /* Look if we matched all our arguments that are not globs. It
876 * is OK for a glob to match nothing, but not for an exact argument. */
877 for (size_t pos = 0; pos < strv_length(patterns); pos++) {
878 if (matched_patterns[pos])
879 continue;
880
881 if (string_is_glob(patterns[pos]))
882 log_debug("Pattern \"%s\" doesn't match any interface, ignoring.",
883 patterns[pos]);
884 else
885 return log_error_errno(SYNTHETIC_ERRNO(ENODEV),
886 "Interface \"%s\" not found.", patterns[pos]);
887 }
888
889 typesafe_qsort(links, c, link_info_compare);
890
891 if (bus)
892 FOREACH_ARRAY(link, links, c)
893 (void) acquire_link_bitrates(bus, link);
894
895 *ret = TAKE_PTR(links);
896
897 if (patterns && c == 0)
898 log_warning("No interfaces matched.");
899
900 return (int) c;
901 }
902
903 static int list_links(int argc, char *argv[], void *userdata) {
904 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
905 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
906 _cleanup_(link_info_array_freep) LinkInfo *links = NULL;
907 _cleanup_(table_unrefp) Table *table = NULL;
908 TableCell *cell;
909 int c, r;
910
911 r = acquire_bus(&bus);
912 if (r < 0)
913 return r;
914
915 if (arg_json_format_flags != JSON_FORMAT_OFF) {
916 if (arg_all || argc <= 1)
917 return dump_manager_description(bus);
918 else
919 return dump_link_description(bus, strv_skip(argv, 1));
920 }
921
922 r = sd_netlink_open(&rtnl);
923 if (r < 0)
924 return log_error_errno(r, "Failed to connect to netlink: %m");
925
926 c = acquire_link_info(NULL, rtnl, argc > 1 ? argv + 1 : NULL, &links);
927 if (c < 0)
928 return c;
929
930 pager_open(arg_pager_flags);
931
932 table = table_new("idx", "link", "type", "operational", "setup");
933 if (!table)
934 return log_oom();
935
936 if (arg_full)
937 table_set_width(table, 0);
938
939 table_set_header(table, arg_legend);
940 table_set_ersatz_string(table, TABLE_ERSATZ_DASH);
941
942 assert_se(cell = table_get_cell(table, 0, 0));
943 (void) table_set_minimum_width(table, cell, 3);
944 (void) table_set_weight(table, cell, 0);
945 (void) table_set_ellipsize_percent(table, cell, 100);
946 (void) table_set_align_percent(table, cell, 100);
947
948 assert_se(cell = table_get_cell(table, 0, 1));
949 (void) table_set_ellipsize_percent(table, cell, 100);
950
951 FOREACH_ARRAY(link, links, c) {
952 _cleanup_free_ char *setup_state = NULL, *operational_state = NULL;
953 _cleanup_free_ char *t = NULL;
954 const char *on_color_operational, *on_color_setup;
955
956 (void) sd_network_link_get_operational_state(link->ifindex, &operational_state);
957 operational_state_to_color(link->name, operational_state, &on_color_operational, NULL);
958
959 (void) sd_network_link_get_setup_state(link->ifindex, &setup_state);
960 setup_state_to_color(setup_state, &on_color_setup, NULL);
961
962 r = net_get_type_string(link->sd_device, link->iftype, &t);
963 if (r == -ENOMEM)
964 return log_oom();
965
966 r = table_add_many(table,
967 TABLE_INT, link->ifindex,
968 TABLE_STRING, link->name,
969 TABLE_STRING, t,
970 TABLE_STRING, operational_state,
971 TABLE_SET_COLOR, on_color_operational,
972 TABLE_STRING, setup_state ?: "unmanaged",
973 TABLE_SET_COLOR, on_color_setup);
974 if (r < 0)
975 return table_log_add_error(r);
976 }
977
978 r = table_print(table, NULL);
979 if (r < 0)
980 return table_log_print_error(r);
981
982 if (arg_legend)
983 printf("\n%i links listed.\n", c);
984
985 return 0;
986 }
987
988 /* IEEE Organizationally Unique Identifier vendor string */
989 static int ieee_oui(sd_hwdb *hwdb, const struct ether_addr *mac, char **ret) {
990 _cleanup_free_ char *desc = NULL;
991 const char *description;
992 char modalias[STRLEN("OUI:XXYYXXYYXXYY") + 1];
993 int r;
994
995 assert(ret);
996
997 if (!hwdb || !mac)
998 return -EINVAL;
999
1000 /* skip commonly misused 00:00:00 (Xerox) prefix */
1001 if (memcmp(mac, "\0\0\0", 3) == 0)
1002 return -EINVAL;
1003
1004 xsprintf(modalias, "OUI:" ETHER_ADDR_FORMAT_STR, ETHER_ADDR_FORMAT_VAL(*mac));
1005
1006 r = sd_hwdb_get(hwdb, modalias, "ID_OUI_FROM_DATABASE", &description);
1007 if (r < 0)
1008 return r;
1009
1010 desc = strdup(description);
1011 if (!desc)
1012 return -ENOMEM;
1013
1014 *ret = TAKE_PTR(desc);
1015
1016 return 0;
1017 }
1018
1019 static int get_gateway_description(
1020 sd_netlink *rtnl,
1021 sd_hwdb *hwdb,
1022 int ifindex,
1023 int family,
1024 union in_addr_union *gateway,
1025 char **ret) {
1026
1027 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL, *reply = NULL;
1028 int r;
1029
1030 assert(rtnl);
1031 assert(ifindex >= 0);
1032 assert(IN_SET(family, AF_INET, AF_INET6));
1033 assert(gateway);
1034 assert(ret);
1035
1036 r = sd_rtnl_message_new_neigh(rtnl, &req, RTM_GETNEIGH, ifindex, family);
1037 if (r < 0)
1038 return r;
1039
1040 r = sd_netlink_message_set_request_dump(req, true);
1041 if (r < 0)
1042 return r;
1043
1044 r = sd_netlink_call(rtnl, req, 0, &reply);
1045 if (r < 0)
1046 return r;
1047
1048 for (sd_netlink_message *m = reply; m; m = sd_netlink_message_next(m)) {
1049 union in_addr_union gw = IN_ADDR_NULL;
1050 struct ether_addr mac = ETHER_ADDR_NULL;
1051 uint16_t type;
1052 int ifi, fam;
1053
1054 r = sd_netlink_message_get_errno(m);
1055 if (r < 0) {
1056 log_error_errno(r, "Failed to get netlink message, ignoring: %m");
1057 continue;
1058 }
1059
1060 r = sd_netlink_message_get_type(m, &type);
1061 if (r < 0) {
1062 log_error_errno(r, "Failed to get netlink message type, ignoring: %m");
1063 continue;
1064 }
1065
1066 if (type != RTM_NEWNEIGH) {
1067 log_error_errno(SYNTHETIC_ERRNO(EINVAL),
1068 "Got unexpected netlink message type %u, ignoring",
1069 type);
1070 continue;
1071 }
1072
1073 r = sd_rtnl_message_neigh_get_family(m, &fam);
1074 if (r < 0) {
1075 log_error_errno(r, "Failed to get rtnl family, ignoring: %m");
1076 continue;
1077 }
1078
1079 if (fam != family) {
1080 log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Got invalid rtnl family %d, ignoring", fam);
1081 continue;
1082 }
1083
1084 r = sd_rtnl_message_neigh_get_ifindex(m, &ifi);
1085 if (r < 0) {
1086 log_error_errno(r, "Failed to get rtnl ifindex, ignoring: %m");
1087 continue;
1088 }
1089
1090 if (ifindex > 0 && ifi != ifindex)
1091 continue;
1092
1093 switch (fam) {
1094
1095 case AF_INET:
1096 r = sd_netlink_message_read_in_addr(m, NDA_DST, &gw.in);
1097 if (r < 0)
1098 continue;
1099
1100 break;
1101
1102 case AF_INET6:
1103 r = sd_netlink_message_read_in6_addr(m, NDA_DST, &gw.in6);
1104 if (r < 0)
1105 continue;
1106
1107 break;
1108
1109 default:
1110 continue;
1111 }
1112
1113 if (!in_addr_equal(fam, &gw, gateway))
1114 continue;
1115
1116 r = sd_netlink_message_read(m, NDA_LLADDR, sizeof(mac), &mac);
1117 if (r < 0)
1118 continue;
1119
1120 r = ieee_oui(hwdb, &mac, ret);
1121 if (r < 0)
1122 continue;
1123
1124 return 0;
1125 }
1126
1127 return -ENODATA;
1128 }
1129
1130 static int dump_list(Table *table, const char *key, char * const *l) {
1131 int r;
1132
1133 assert(table);
1134 assert(key);
1135
1136 if (strv_isempty(l))
1137 return 0;
1138
1139 r = table_add_many(table,
1140 TABLE_FIELD, key,
1141 TABLE_STRV, l);
1142 if (r < 0)
1143 return table_log_add_error(r);
1144
1145 return 0;
1146 }
1147
1148 static int dump_gateways(sd_netlink *rtnl, sd_hwdb *hwdb, Table *table, int ifindex) {
1149 _cleanup_free_ struct local_address *local_addrs = NULL;
1150 _cleanup_strv_free_ char **buf = NULL;
1151 int r, n;
1152
1153 assert(rtnl);
1154 assert(table);
1155
1156 n = local_gateways(rtnl, ifindex, AF_UNSPEC, &local_addrs);
1157 if (n <= 0)
1158 return n;
1159
1160 FOREACH_ARRAY(local, local_addrs, n) {
1161 _cleanup_free_ char *description = NULL;
1162
1163 r = get_gateway_description(rtnl, hwdb, local->ifindex, local->family, &local->address, &description);
1164 if (r < 0)
1165 log_debug_errno(r, "Could not get description of gateway, ignoring: %m");
1166
1167 /* Show interface name for the entry if we show entries for all interfaces */
1168 r = strv_extendf(&buf, "%s%s%s%s%s%s",
1169 IN_ADDR_TO_STRING(local->family, &local->address),
1170 description ? " (" : "",
1171 strempty(description),
1172 description ? ")" : "",
1173 ifindex <= 0 ? " on " : "",
1174 ifindex <= 0 ? FORMAT_IFNAME_FULL(local->ifindex, FORMAT_IFNAME_IFINDEX_WITH_PERCENT) : "");
1175 if (r < 0)
1176 return log_oom();
1177 }
1178
1179 return dump_list(table, "Gateway", buf);
1180 }
1181
1182 static int dump_addresses(
1183 sd_netlink *rtnl,
1184 sd_dhcp_lease *lease,
1185 Table *table,
1186 int ifindex) {
1187
1188 _cleanup_free_ struct local_address *local_addrs = NULL;
1189 _cleanup_strv_free_ char **buf = NULL;
1190 struct in_addr dhcp4_address = {};
1191 int r, n;
1192
1193 assert(rtnl);
1194 assert(table);
1195
1196 n = local_addresses(rtnl, ifindex, AF_UNSPEC, &local_addrs);
1197 if (n <= 0)
1198 return n;
1199
1200 if (lease)
1201 (void) sd_dhcp_lease_get_address(lease, &dhcp4_address);
1202
1203 FOREACH_ARRAY(local, local_addrs, n) {
1204 struct in_addr server_address;
1205 bool dhcp4 = false;
1206
1207 if (local->family == AF_INET && in4_addr_equal(&local->address.in, &dhcp4_address))
1208 dhcp4 = sd_dhcp_lease_get_server_identifier(lease, &server_address) >= 0;
1209
1210 r = strv_extendf(&buf, "%s%s%s%s%s%s",
1211 IN_ADDR_TO_STRING(local->family, &local->address),
1212 dhcp4 ? " (DHCP4 via " : "",
1213 dhcp4 ? IN4_ADDR_TO_STRING(&server_address) : "",
1214 dhcp4 ? ")" : "",
1215 ifindex <= 0 ? " on " : "",
1216 ifindex <= 0 ? FORMAT_IFNAME_FULL(local->ifindex, FORMAT_IFNAME_IFINDEX_WITH_PERCENT) : "");
1217 if (r < 0)
1218 return log_oom();
1219 }
1220
1221 return dump_list(table, "Address", buf);
1222 }
1223
1224 static int dump_address_labels(sd_netlink *rtnl) {
1225 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL, *reply = NULL;
1226 _cleanup_(table_unrefp) Table *table = NULL;
1227 TableCell *cell;
1228 int r;
1229
1230 assert(rtnl);
1231
1232 r = sd_rtnl_message_new_addrlabel(rtnl, &req, RTM_GETADDRLABEL, 0, AF_INET6);
1233 if (r < 0)
1234 return log_error_errno(r, "Could not allocate RTM_GETADDRLABEL message: %m");
1235
1236 r = sd_netlink_message_set_request_dump(req, true);
1237 if (r < 0)
1238 return r;
1239
1240 r = sd_netlink_call(rtnl, req, 0, &reply);
1241 if (r < 0)
1242 return r;
1243
1244 table = table_new("label", "prefix/prefixlen");
1245 if (!table)
1246 return log_oom();
1247
1248 if (arg_full)
1249 table_set_width(table, 0);
1250
1251 r = table_set_sort(table, (size_t) 0);
1252 if (r < 0)
1253 return r;
1254
1255 assert_se(cell = table_get_cell(table, 0, 0));
1256 (void) table_set_align_percent(table, cell, 100);
1257 (void) table_set_ellipsize_percent(table, cell, 100);
1258
1259 assert_se(cell = table_get_cell(table, 0, 1));
1260 (void) table_set_align_percent(table, cell, 100);
1261
1262 for (sd_netlink_message *m = reply; m; m = sd_netlink_message_next(m)) {
1263 struct in6_addr prefix;
1264 uint8_t prefixlen;
1265 uint32_t label;
1266
1267 r = sd_netlink_message_get_errno(m);
1268 if (r < 0) {
1269 log_error_errno(r, "Failed to get netlink message, ignoring: %m");
1270 continue;
1271 }
1272
1273 r = sd_netlink_message_read_u32(m, IFAL_LABEL, &label);
1274 if (r < 0 && r != -ENODATA) {
1275 log_error_errno(r, "Could not read IFAL_LABEL, ignoring: %m");
1276 continue;
1277 }
1278
1279 r = sd_netlink_message_read_in6_addr(m, IFAL_ADDRESS, &prefix);
1280 if (r < 0)
1281 continue;
1282
1283 r = sd_rtnl_message_addrlabel_get_prefixlen(m, &prefixlen);
1284 if (r < 0)
1285 continue;
1286
1287 r = table_add_cell(table, NULL, TABLE_UINT32, &label);
1288 if (r < 0)
1289 return table_log_add_error(r);
1290
1291 r = table_add_cell_stringf(table, NULL, "%s/%u", IN6_ADDR_TO_STRING(&prefix), prefixlen);
1292 if (r < 0)
1293 return table_log_add_error(r);
1294 }
1295
1296 r = table_print(table, NULL);
1297 if (r < 0)
1298 return table_log_print_error(r);
1299
1300 return 0;
1301 }
1302
1303 static int list_address_labels(int argc, char *argv[], void *userdata) {
1304 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
1305 int r;
1306
1307 r = sd_netlink_open(&rtnl);
1308 if (r < 0)
1309 return log_error_errno(r, "Failed to connect to netlink: %m");
1310
1311 return dump_address_labels(rtnl);
1312 }
1313
1314 static int open_lldp_neighbors(int ifindex, FILE **ret) {
1315 _cleanup_fclose_ FILE *f = NULL;
1316 char p[STRLEN("/run/systemd/netif/lldp/") + DECIMAL_STR_MAX(int)];
1317
1318 assert(ifindex >= 0);
1319 assert(ret);
1320
1321 xsprintf(p, "/run/systemd/netif/lldp/%i", ifindex);
1322
1323 f = fopen(p, "re");
1324 if (!f)
1325 return -errno;
1326
1327 *ret = TAKE_PTR(f);
1328 return 0;
1329 }
1330
1331 static int next_lldp_neighbor(FILE *f, sd_lldp_neighbor **ret) {
1332 _cleanup_free_ void *raw = NULL;
1333 size_t l;
1334 le64_t u;
1335 int r;
1336
1337 assert(f);
1338 assert(ret);
1339
1340 l = fread(&u, 1, sizeof(u), f);
1341 if (l == 0 && feof(f))
1342 return 0;
1343 if (l != sizeof(u))
1344 return -EBADMSG;
1345
1346 /* each LLDP packet is at most MTU size, but let's allow up to 4KiB just in case */
1347 if (le64toh(u) >= 4096)
1348 return -EBADMSG;
1349
1350 raw = new(uint8_t, le64toh(u));
1351 if (!raw)
1352 return -ENOMEM;
1353
1354 if (fread(raw, 1, le64toh(u), f) != le64toh(u))
1355 return -EBADMSG;
1356
1357 r = sd_lldp_neighbor_from_raw(ret, raw, le64toh(u));
1358 if (r < 0)
1359 return r;
1360
1361 return 1;
1362 }
1363
1364 static int dump_lldp_neighbors(Table *table, const char *prefix, int ifindex) {
1365 _cleanup_strv_free_ char **buf = NULL;
1366 _cleanup_fclose_ FILE *f = NULL;
1367 int r;
1368
1369 assert(table);
1370 assert(prefix);
1371 assert(ifindex > 0);
1372
1373 r = open_lldp_neighbors(ifindex, &f);
1374 if (r == -ENOENT)
1375 return 0;
1376 if (r < 0)
1377 return r;
1378
1379 for (;;) {
1380 const char *system_name = NULL, *port_id = NULL, *port_description = NULL;
1381 _cleanup_(sd_lldp_neighbor_unrefp) sd_lldp_neighbor *n = NULL;
1382
1383 r = next_lldp_neighbor(f, &n);
1384 if (r < 0)
1385 return r;
1386 if (r == 0)
1387 break;
1388
1389 (void) sd_lldp_neighbor_get_system_name(n, &system_name);
1390 (void) sd_lldp_neighbor_get_port_id_as_string(n, &port_id);
1391 (void) sd_lldp_neighbor_get_port_description(n, &port_description);
1392
1393 r = strv_extendf(&buf, "%s on port %s%s%s%s",
1394 strna(system_name),
1395 strna(port_id),
1396 isempty(port_description) ? "" : " (",
1397 strempty(port_description),
1398 isempty(port_description) ? "" : ")");
1399 if (r < 0)
1400 return log_oom();
1401 }
1402
1403 return dump_list(table, prefix, buf);
1404 }
1405
1406 static int dump_dhcp_leases(Table *table, const char *prefix, sd_bus *bus, const LinkInfo *link) {
1407 _cleanup_strv_free_ char **buf = NULL;
1408 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1409 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1410 int r;
1411
1412 assert(table);
1413 assert(prefix);
1414 assert(bus);
1415 assert(link);
1416
1417 r = link_get_property(bus, link, &error, &reply, "org.freedesktop.network1.DHCPServer", "Leases", "a(uayayayayt)");
1418 if (r < 0) {
1419 bool quiet = sd_bus_error_has_name(&error, SD_BUS_ERROR_UNKNOWN_PROPERTY);
1420
1421 log_full_errno(quiet ? LOG_DEBUG : LOG_WARNING,
1422 r, "Failed to query link DHCP leases: %s", bus_error_message(&error, r));
1423 return 0;
1424 }
1425
1426 r = sd_bus_message_enter_container(reply, 'a', "(uayayayayt)");
1427 if (r < 0)
1428 return bus_log_parse_error(r);
1429
1430 while ((r = sd_bus_message_enter_container(reply, 'r', "uayayayayt")) > 0) {
1431 _cleanup_free_ char *id = NULL, *ip = NULL;
1432 const void *client_id, *addr, *gtw, *hwaddr;
1433 size_t client_id_sz, sz;
1434 uint64_t expiration;
1435 uint32_t family;
1436
1437 r = sd_bus_message_read(reply, "u", &family);
1438 if (r < 0)
1439 return bus_log_parse_error(r);
1440
1441 r = sd_bus_message_read_array(reply, 'y', &client_id, &client_id_sz);
1442 if (r < 0)
1443 return bus_log_parse_error(r);
1444
1445 r = sd_bus_message_read_array(reply, 'y', &addr, &sz);
1446 if (r < 0 || sz != 4)
1447 return bus_log_parse_error(r);
1448
1449 r = sd_bus_message_read_array(reply, 'y', &gtw, &sz);
1450 if (r < 0 || sz != 4)
1451 return bus_log_parse_error(r);
1452
1453 r = sd_bus_message_read_array(reply, 'y', &hwaddr, &sz);
1454 if (r < 0)
1455 return bus_log_parse_error(r);
1456
1457 r = sd_bus_message_read_basic(reply, 't', &expiration);
1458 if (r < 0)
1459 return bus_log_parse_error(r);
1460
1461 r = sd_dhcp_client_id_to_string_from_raw(client_id, client_id_sz, &id);
1462 if (r < 0)
1463 return bus_log_parse_error(r);
1464
1465 r = in_addr_to_string(family, addr, &ip);
1466 if (r < 0)
1467 return bus_log_parse_error(r);
1468
1469 r = strv_extendf(&buf, "%s (to %s)", ip, id);
1470 if (r < 0)
1471 return log_oom();
1472
1473 r = sd_bus_message_exit_container(reply);
1474 if (r < 0)
1475 return bus_log_parse_error(r);
1476 }
1477 if (r < 0)
1478 return bus_log_parse_error(r);
1479
1480 r = sd_bus_message_exit_container(reply);
1481 if (r < 0)
1482 return bus_log_parse_error(r);
1483
1484 r = sd_bus_message_exit_container(reply);
1485 if (r < 0)
1486 return bus_log_parse_error(r);
1487
1488 if (strv_isempty(buf)) {
1489 r = strv_extendf(&buf, "none");
1490 if (r < 0)
1491 return log_oom();
1492 }
1493
1494 return dump_list(table, prefix, buf);
1495 }
1496
1497 static int dump_ifindexes(Table *table, const char *prefix, const int *ifindexes) {
1498 int r;
1499
1500 assert(table);
1501 assert(prefix);
1502
1503 if (!ifindexes)
1504 return 0;
1505
1506 for (unsigned c = 0; ifindexes[c] > 0; c++) {
1507 if (c == 0)
1508 r = table_add_cell(table, NULL, TABLE_FIELD, prefix);
1509 else
1510 r = table_add_cell(table, NULL, TABLE_EMPTY, NULL);
1511 if (r < 0)
1512 return table_log_add_error(r);
1513
1514 r = table_add_cell(table, NULL, TABLE_IFINDEX, &ifindexes[c]);
1515 if (r < 0)
1516 return table_log_add_error(r);
1517 }
1518
1519 return 0;
1520 }
1521
1522 #define DUMP_STATS_ONE(name, val_name) \
1523 ({ \
1524 r = table_add_cell(table, NULL, TABLE_FIELD, name); \
1525 if (r < 0) \
1526 return table_log_add_error(r); \
1527 r = table_add_cell(table, NULL, \
1528 info->has_stats64 ? TABLE_UINT64 : TABLE_UINT32, \
1529 info->has_stats64 ? (void*) &info->stats64.val_name : (void*) &info->stats.val_name); \
1530 if (r < 0) \
1531 return table_log_add_error(r); \
1532 })
1533
1534 static int dump_statistics(Table *table, const LinkInfo *info) {
1535 int r;
1536
1537 assert(table);
1538 assert(info);
1539
1540 if (!arg_stats)
1541 return 0;
1542
1543 if (!info->has_stats64 && !info->has_stats)
1544 return 0;
1545
1546 DUMP_STATS_ONE("Rx Packets", rx_packets);
1547 DUMP_STATS_ONE("Tx Packets", tx_packets);
1548 DUMP_STATS_ONE("Rx Bytes", rx_bytes);
1549 DUMP_STATS_ONE("Tx Bytes", tx_bytes);
1550 DUMP_STATS_ONE("Rx Errors", rx_errors);
1551 DUMP_STATS_ONE("Tx Errors", tx_errors);
1552 DUMP_STATS_ONE("Rx Dropped", rx_dropped);
1553 DUMP_STATS_ONE("Tx Dropped", tx_dropped);
1554 DUMP_STATS_ONE("Multicast Packets", multicast);
1555 DUMP_STATS_ONE("Collisions", collisions);
1556
1557 return 0;
1558 }
1559
1560 static int dump_hw_address(Table *table, sd_hwdb *hwdb, const char *field, const struct hw_addr_data *addr) {
1561 _cleanup_free_ char *description = NULL;
1562 int r;
1563
1564 assert(table);
1565 assert(field);
1566 assert(addr);
1567
1568 if (addr->length == ETH_ALEN)
1569 (void) ieee_oui(hwdb, &addr->ether, &description);
1570
1571 r = table_add_cell(table, NULL, TABLE_FIELD, field);
1572 if (r < 0)
1573 return table_log_add_error(r);
1574
1575 r = table_add_cell_stringf(table, NULL, "%s%s%s%s",
1576 HW_ADDR_TO_STR(addr),
1577 description ? " (" : "",
1578 strempty(description),
1579 description ? ")" : "");
1580 if (r < 0)
1581 return table_log_add_error(r);
1582
1583 return 0;
1584 }
1585
1586 static OutputFlags get_output_flags(void) {
1587 return
1588 arg_all * OUTPUT_SHOW_ALL |
1589 (arg_full || !on_tty() || pager_have()) * OUTPUT_FULL_WIDTH |
1590 colors_enabled() * OUTPUT_COLOR;
1591 }
1592
1593 static int show_logs(const LinkInfo *info) {
1594 _cleanup_(sd_journal_closep) sd_journal *j = NULL;
1595 int r;
1596
1597 if (arg_lines == 0)
1598 return 0;
1599
1600 r = sd_journal_open(&j, SD_JOURNAL_LOCAL_ONLY);
1601 if (r < 0)
1602 return log_error_errno(r, "Failed to open journal: %m");
1603
1604 r = add_match_this_boot(j, NULL);
1605 if (r < 0)
1606 return log_error_errno(r, "Failed to add boot matches: %m");
1607
1608 if (info) {
1609 char m1[STRLEN("_KERNEL_DEVICE=n") + DECIMAL_STR_MAX(int)];
1610 const char *m2, *m3;
1611
1612 /* kernel */
1613 xsprintf(m1, "_KERNEL_DEVICE=n%i", info->ifindex);
1614 /* networkd */
1615 m2 = strjoina("INTERFACE=", info->name);
1616 /* udevd */
1617 m3 = strjoina("DEVICE=", info->name);
1618
1619 (void)(
1620 (r = sd_journal_add_match(j, m1, 0)) ||
1621 (r = sd_journal_add_disjunction(j)) ||
1622 (r = sd_journal_add_match(j, m2, 0)) ||
1623 (r = sd_journal_add_disjunction(j)) ||
1624 (r = sd_journal_add_match(j, m3, 0))
1625 );
1626 if (r < 0)
1627 return log_error_errno(r, "Failed to add link matches: %m");
1628 } else {
1629 r = add_matches_for_unit(j, "systemd-networkd.service");
1630 if (r < 0)
1631 return log_error_errno(r, "Failed to add unit matches: %m");
1632
1633 r = add_matches_for_unit(j, "systemd-networkd-wait-online.service");
1634 if (r < 0)
1635 return log_error_errno(r, "Failed to add unit matches: %m");
1636 }
1637
1638 return show_journal(
1639 stdout,
1640 j,
1641 OUTPUT_SHORT,
1642 0,
1643 0,
1644 arg_lines,
1645 get_output_flags() | OUTPUT_BEGIN_NEWLINE,
1646 NULL);
1647 }
1648
1649 static int table_add_string_line(Table *table, const char *key, const char *value) {
1650 int r;
1651
1652 assert(table);
1653 assert(key);
1654
1655 if (isempty(value))
1656 return 0;
1657
1658 r = table_add_many(table,
1659 TABLE_FIELD, key,
1660 TABLE_STRING, value);
1661 if (r < 0)
1662 return table_log_add_error(r);
1663
1664 return 0;
1665 }
1666
1667 static int format_dropins(char **dropins) {
1668 STRV_FOREACH(d, dropins) {
1669 _cleanup_free_ char *s = NULL;
1670 int glyph = *(d + 1) == NULL ? SPECIAL_GLYPH_TREE_RIGHT : SPECIAL_GLYPH_TREE_BRANCH;
1671
1672 s = strjoin(special_glyph(glyph), *d);
1673 if (!s)
1674 return log_oom();
1675
1676 free_and_replace(*d, s);
1677 }
1678
1679 return 0;
1680 }
1681
1682 static int link_status_one(
1683 sd_bus *bus,
1684 sd_netlink *rtnl,
1685 sd_hwdb *hwdb,
1686 const LinkInfo *info) {
1687
1688 _cleanup_strv_free_ char **dns = NULL, **ntp = NULL, **sip = NULL, **search_domains = NULL,
1689 **route_domains = NULL, **link_dropins = NULL, **network_dropins = NULL;
1690 _cleanup_free_ char *t = NULL, *network = NULL, *iaid = NULL, *duid = NULL, *captive_portal = NULL,
1691 *setup_state = NULL, *operational_state = NULL, *online_state = NULL, *activation_policy = NULL;
1692 const char *driver = NULL, *path = NULL, *vendor = NULL, *model = NULL, *link = NULL,
1693 *on_color_operational, *off_color_operational, *on_color_setup, *off_color_setup, *on_color_online;
1694 _cleanup_free_ int *carrier_bound_to = NULL, *carrier_bound_by = NULL;
1695 _cleanup_(sd_dhcp_lease_unrefp) sd_dhcp_lease *lease = NULL;
1696 _cleanup_(table_unrefp) Table *table = NULL;
1697 int r;
1698
1699 assert(bus);
1700 assert(rtnl);
1701 assert(info);
1702
1703 (void) sd_network_link_get_operational_state(info->ifindex, &operational_state);
1704 operational_state_to_color(info->name, operational_state, &on_color_operational, &off_color_operational);
1705
1706 (void) sd_network_link_get_online_state(info->ifindex, &online_state);
1707 online_state_to_color(online_state, &on_color_online, NULL);
1708
1709 (void) sd_network_link_get_setup_state(info->ifindex, &setup_state);
1710 setup_state_to_color(setup_state, &on_color_setup, &off_color_setup);
1711
1712 (void) sd_network_link_get_dns(info->ifindex, &dns);
1713 (void) sd_network_link_get_search_domains(info->ifindex, &search_domains);
1714 (void) sd_network_link_get_route_domains(info->ifindex, &route_domains);
1715 (void) sd_network_link_get_ntp(info->ifindex, &ntp);
1716 (void) sd_network_link_get_sip(info->ifindex, &sip);
1717 (void) sd_network_link_get_captive_portal(info->ifindex, &captive_portal);
1718 (void) sd_network_link_get_network_file(info->ifindex, &network);
1719 (void) sd_network_link_get_network_file_dropins(info->ifindex, &network_dropins);
1720 (void) sd_network_link_get_carrier_bound_to(info->ifindex, &carrier_bound_to);
1721 (void) sd_network_link_get_carrier_bound_by(info->ifindex, &carrier_bound_by);
1722 (void) sd_network_link_get_activation_policy(info->ifindex, &activation_policy);
1723
1724 if (info->sd_device) {
1725 const char *joined;
1726
1727 (void) sd_device_get_property_value(info->sd_device, "ID_NET_LINK_FILE", &link);
1728
1729 if (sd_device_get_property_value(info->sd_device, "ID_NET_LINK_FILE_DROPINS", &joined) >= 0) {
1730 r = strv_split_full(&link_dropins, joined, ":", EXTRACT_CUNESCAPE);
1731 if (r < 0)
1732 return r;
1733 }
1734
1735 (void) sd_device_get_property_value(info->sd_device, "ID_NET_DRIVER", &driver);
1736 (void) sd_device_get_property_value(info->sd_device, "ID_PATH", &path);
1737 (void) device_get_vendor_string(info->sd_device, &vendor);
1738 (void) device_get_model_string(info->sd_device, &model);
1739 }
1740
1741 r = net_get_type_string(info->sd_device, info->iftype, &t);
1742 if (r == -ENOMEM)
1743 return log_oom();
1744
1745 char lease_file[STRLEN("/run/systemd/netif/leases/") + DECIMAL_STR_MAX(int)];
1746 xsprintf(lease_file, "/run/systemd/netif/leases/%i", info->ifindex);
1747
1748 (void) dhcp_lease_load(&lease, lease_file);
1749
1750 r = format_dropins(network_dropins);
1751 if (r < 0)
1752 return r;
1753
1754 if (strv_prepend(&network_dropins, network) < 0)
1755 return log_oom();
1756
1757 r = format_dropins(link_dropins);
1758 if (r < 0)
1759 return r;
1760
1761 if (strv_prepend(&link_dropins, link) < 0)
1762 return log_oom();
1763
1764 table = table_new_vertical();
1765 if (!table)
1766 return log_oom();
1767
1768 if (arg_full)
1769 table_set_width(table, 0);
1770
1771 /* unit files and basic states. */
1772 r = table_add_many(table,
1773 TABLE_FIELD, "Link File",
1774 TABLE_STRV, link_dropins ?: STRV_MAKE("n/a"),
1775 TABLE_FIELD, "Network File",
1776 TABLE_STRV, network_dropins ?: STRV_MAKE("n/a"),
1777 TABLE_FIELD, "State");
1778 if (r < 0)
1779 return table_log_add_error(r);
1780
1781 r = table_add_cell_stringf(table, NULL, "%s%s%s (%s%s%s)",
1782 on_color_operational, strna(operational_state), off_color_operational,
1783 on_color_setup, setup_state ?: "unmanaged", off_color_setup);
1784 if (r < 0)
1785 return table_log_add_error(r);
1786
1787 r = table_add_many(table,
1788 TABLE_FIELD, "Online state",
1789 TABLE_STRING, online_state ?: "unknown",
1790 TABLE_SET_COLOR, on_color_online);
1791 if (r < 0)
1792 return table_log_add_error(r);
1793
1794 r = table_add_string_line(table, "Type", t);
1795 if (r < 0)
1796 return r;
1797
1798 r = table_add_string_line(table, "Kind", info->netdev_kind);
1799 if (r < 0)
1800 return r;
1801
1802 r = table_add_string_line(table, "Path", path);
1803 if (r < 0)
1804 return r;
1805
1806 r = table_add_string_line(table, "Driver", driver);
1807 if (r < 0)
1808 return r;
1809
1810 r = table_add_string_line(table, "Vendor", vendor);
1811 if (r < 0)
1812 return r;
1813
1814 r = table_add_string_line(table, "Model", model);
1815 if (r < 0)
1816 return r;
1817
1818 strv_sort(info->alternative_names);
1819 r = dump_list(table, "Alternative Names", info->alternative_names);
1820 if (r < 0)
1821 return r;
1822
1823 if (info->has_hw_address) {
1824 r = dump_hw_address(table, hwdb, "Hardware Address", &info->hw_address);
1825 if (r < 0)
1826 return r;
1827 }
1828
1829 if (info->has_permanent_hw_address) {
1830 r = dump_hw_address(table, hwdb, "Permanent Hardware Address", &info->permanent_hw_address);
1831 if (r < 0)
1832 return r;
1833 }
1834
1835 if (info->mtu > 0) {
1836 char min_str[DECIMAL_STR_MAX(uint32_t)], max_str[DECIMAL_STR_MAX(uint32_t)];
1837
1838 xsprintf(min_str, "%" PRIu32, info->min_mtu);
1839 xsprintf(max_str, "%" PRIu32, info->max_mtu);
1840
1841 r = table_add_cell(table, NULL, TABLE_FIELD, "MTU");
1842 if (r < 0)
1843 return table_log_add_error(r);
1844
1845 r = table_add_cell_stringf(table, NULL, "%" PRIu32 "%s%s%s%s%s%s%s",
1846 info->mtu,
1847 info->min_mtu > 0 || info->max_mtu > 0 ? " (" : "",
1848 info->min_mtu > 0 ? "min: " : "",
1849 info->min_mtu > 0 ? min_str : "",
1850 info->min_mtu > 0 && info->max_mtu > 0 ? ", " : "",
1851 info->max_mtu > 0 ? "max: " : "",
1852 info->max_mtu > 0 ? max_str : "",
1853 info->min_mtu > 0 || info->max_mtu > 0 ? ")" : "");
1854 if (r < 0)
1855 return table_log_add_error(r);
1856 }
1857
1858 r = table_add_string_line(table, "QDisc", info->qdisc);
1859 if (r < 0)
1860 return r;
1861
1862 if (info->master > 0) {
1863 r = table_add_many(table,
1864 TABLE_FIELD, "Master",
1865 TABLE_IFINDEX, info->master);
1866 if (r < 0)
1867 return table_log_add_error(r);
1868 }
1869
1870 if (info->has_ipv6_address_generation_mode) {
1871 static const struct {
1872 const char *mode;
1873 } mode_table[] = {
1874 { "eui64" },
1875 { "none" },
1876 { "stable-privacy" },
1877 { "random" },
1878 };
1879
1880 r = table_add_many(table,
1881 TABLE_FIELD, "IPv6 Address Generation Mode",
1882 TABLE_STRING, mode_table[info->addr_gen_mode]);
1883 if (r < 0)
1884 return table_log_add_error(r);
1885 }
1886
1887 if (streq_ptr(info->netdev_kind, "bridge")) {
1888 r = table_add_many(table,
1889 TABLE_FIELD, "Forward Delay",
1890 TABLE_TIMESPAN_MSEC, jiffies_to_usec(info->forward_delay),
1891 TABLE_FIELD, "Hello Time",
1892 TABLE_TIMESPAN_MSEC, jiffies_to_usec(info->hello_time),
1893 TABLE_FIELD, "Max Age",
1894 TABLE_TIMESPAN_MSEC, jiffies_to_usec(info->max_age),
1895 TABLE_FIELD, "Ageing Time",
1896 TABLE_TIMESPAN_MSEC, jiffies_to_usec(info->ageing_time),
1897 TABLE_FIELD, "Priority",
1898 TABLE_UINT16, info->priority,
1899 TABLE_FIELD, "STP",
1900 TABLE_BOOLEAN, info->stp_state > 0,
1901 TABLE_FIELD, "Multicast IGMP Version",
1902 TABLE_UINT8, info->mcast_igmp_version,
1903 TABLE_FIELD, "Cost",
1904 TABLE_UINT32, info->cost);
1905 if (r < 0)
1906 return table_log_add_error(r);
1907
1908 if (info->port_state <= BR_STATE_BLOCKING) {
1909 r = table_add_many(table,
1910 TABLE_FIELD, "Port State",
1911 TABLE_STRING, bridge_state_to_string(info->port_state));
1912 if (r < 0)
1913 return table_log_add_error(r);
1914 }
1915
1916 } else if (streq_ptr(info->netdev_kind, "bond")) {
1917 r = table_add_many(table,
1918 TABLE_FIELD, "Mode",
1919 TABLE_STRING, bond_mode_to_string(info->mode),
1920 TABLE_FIELD, "Miimon",
1921 TABLE_TIMESPAN_MSEC, info->miimon * USEC_PER_MSEC,
1922 TABLE_FIELD, "Updelay",
1923 TABLE_TIMESPAN_MSEC, info->updelay * USEC_PER_MSEC,
1924 TABLE_FIELD, "Downdelay",
1925 TABLE_TIMESPAN_MSEC, info->downdelay * USEC_PER_MSEC);
1926 if (r < 0)
1927 return table_log_add_error(r);
1928
1929 } else if (streq_ptr(info->netdev_kind, "vxlan")) {
1930 char ttl[CONST_MAX(STRLEN("auto") + 1, DECIMAL_STR_MAX(uint8_t))];
1931
1932 if (info->vxlan_info.vni > 0) {
1933 r = table_add_many(table,
1934 TABLE_FIELD, "VNI",
1935 TABLE_UINT32, info->vxlan_info.vni);
1936 if (r < 0)
1937 return table_log_add_error(r);
1938 }
1939
1940 if (IN_SET(info->vxlan_info.group_family, AF_INET, AF_INET6)) {
1941 const char *p;
1942
1943 r = in_addr_is_multicast(info->vxlan_info.group_family, &info->vxlan_info.group);
1944 if (r <= 0)
1945 p = "Remote";
1946 else
1947 p = "Group";
1948
1949 r = table_add_many(table,
1950 TABLE_FIELD, p,
1951 info->vxlan_info.group_family == AF_INET ? TABLE_IN_ADDR : TABLE_IN6_ADDR, &info->vxlan_info.group);
1952 if (r < 0)
1953 return table_log_add_error(r);
1954 }
1955
1956 if (IN_SET(info->vxlan_info.local_family, AF_INET, AF_INET6)) {
1957 r = table_add_many(table,
1958 TABLE_FIELD, "Local",
1959 info->vxlan_info.local_family == AF_INET ? TABLE_IN_ADDR : TABLE_IN6_ADDR, &info->vxlan_info.local);
1960 if (r < 0)
1961 return table_log_add_error(r);
1962 }
1963
1964 if (info->vxlan_info.dest_port > 0) {
1965 r = table_add_many(table,
1966 TABLE_FIELD, "Destination Port",
1967 TABLE_UINT16, be16toh(info->vxlan_info.dest_port));
1968 if (r < 0)
1969 return table_log_add_error(r);
1970 }
1971
1972 if (info->vxlan_info.link > 0) {
1973 r = table_add_many(table,
1974 TABLE_FIELD, "Underlying Device",
1975 TABLE_IFINDEX, info->vxlan_info.link);
1976 if (r < 0)
1977 return table_log_add_error(r);
1978 }
1979
1980 r = table_add_many(table,
1981 TABLE_FIELD, "Learning",
1982 TABLE_BOOLEAN, info->vxlan_info.learning,
1983 TABLE_FIELD, "RSC",
1984 TABLE_BOOLEAN, info->vxlan_info.rsc,
1985 TABLE_FIELD, "L3MISS",
1986 TABLE_BOOLEAN, info->vxlan_info.l3miss,
1987 TABLE_FIELD, "L2MISS",
1988 TABLE_BOOLEAN, info->vxlan_info.l2miss);
1989 if (r < 0)
1990 return table_log_add_error(r);
1991
1992 if (info->vxlan_info.tos > 1) {
1993 r = table_add_many(table,
1994 TABLE_FIELD, "TOS",
1995 TABLE_UINT8, info->vxlan_info.tos);
1996 if (r < 0)
1997 return table_log_add_error(r);
1998 }
1999
2000 if (info->vxlan_info.ttl > 0)
2001 xsprintf(ttl, "%" PRIu8, info->vxlan_info.ttl);
2002 else
2003 strcpy(ttl, "auto");
2004
2005 r = table_add_many(table,
2006 TABLE_FIELD, "TTL",
2007 TABLE_STRING, ttl);
2008 if (r < 0)
2009 return table_log_add_error(r);
2010
2011 } else if (streq_ptr(info->netdev_kind, "vlan") && info->vlan_id > 0) {
2012 r = table_add_many(table,
2013 TABLE_FIELD, "VLan Id",
2014 TABLE_UINT16, info->vlan_id);
2015 if (r < 0)
2016 return table_log_add_error(r);
2017
2018 } else if (STRPTR_IN_SET(info->netdev_kind, "ipip", "sit", "gre", "gretap", "erspan", "vti")) {
2019 if (in_addr_is_set(AF_INET, &info->local)) {
2020 r = table_add_many(table,
2021 TABLE_FIELD, "Local",
2022 TABLE_IN_ADDR, &info->local);
2023 if (r < 0)
2024 return table_log_add_error(r);
2025 }
2026
2027 if (in_addr_is_set(AF_INET, &info->remote)) {
2028 r = table_add_many(table,
2029 TABLE_FIELD, "Remote",
2030 TABLE_IN_ADDR, &info->remote);
2031 if (r < 0)
2032 return table_log_add_error(r);
2033 }
2034
2035 } else if (STRPTR_IN_SET(info->netdev_kind, "ip6gre", "ip6gretap", "ip6erspan", "vti6")) {
2036 if (in_addr_is_set(AF_INET6, &info->local)) {
2037 r = table_add_many(table,
2038 TABLE_FIELD, "Local",
2039 TABLE_IN6_ADDR, &info->local);
2040 if (r < 0)
2041 return table_log_add_error(r);
2042 }
2043
2044 if (in_addr_is_set(AF_INET6, &info->remote)) {
2045 r = table_add_many(table,
2046 TABLE_FIELD, "Remote",
2047 TABLE_IN6_ADDR, &info->remote);
2048 if (r < 0)
2049 return table_log_add_error(r);
2050 }
2051
2052 } else if (streq_ptr(info->netdev_kind, "geneve")) {
2053 r = table_add_many(table,
2054 TABLE_FIELD, "VNI",
2055 TABLE_UINT32, info->vni);
2056 if (r < 0)
2057 return table_log_add_error(r);
2058
2059 if (info->has_tunnel_ipv4 && in_addr_is_set(AF_INET, &info->remote)) {
2060 r = table_add_many(table,
2061 TABLE_FIELD, "Remote",
2062 TABLE_IN_ADDR, &info->remote);
2063 if (r < 0)
2064 return table_log_add_error(r);
2065 } else if (in_addr_is_set(AF_INET6, &info->remote)) {
2066 r = table_add_many(table,
2067 TABLE_FIELD, "Remote",
2068 TABLE_IN6_ADDR, &info->remote);
2069 if (r < 0)
2070 return table_log_add_error(r);
2071 }
2072
2073 if (info->ttl > 0) {
2074 r = table_add_many(table,
2075 TABLE_FIELD, "TTL",
2076 TABLE_UINT8, info->ttl);
2077 if (r < 0)
2078 return table_log_add_error(r);
2079 }
2080
2081 if (info->tos > 0) {
2082 r = table_add_many(table,
2083 TABLE_FIELD, "TOS",
2084 TABLE_UINT8, info->tos);
2085 if (r < 0)
2086 return table_log_add_error(r);
2087 }
2088
2089 r = table_add_many(table,
2090 TABLE_FIELD, "Port",
2091 TABLE_UINT16, info->tunnel_port,
2092 TABLE_FIELD, "Inherit",
2093 TABLE_STRING, geneve_df_to_string(info->inherit));
2094 if (r < 0)
2095 return table_log_add_error(r);
2096
2097 if (info->df > 0) {
2098 r = table_add_many(table,
2099 TABLE_FIELD, "IPDoNotFragment",
2100 TABLE_UINT8, info->df);
2101 if (r < 0)
2102 return table_log_add_error(r);
2103 }
2104
2105 r = table_add_many(table,
2106 TABLE_FIELD, "UDPChecksum",
2107 TABLE_BOOLEAN, info->csum,
2108 TABLE_FIELD, "UDP6ZeroChecksumTx",
2109 TABLE_BOOLEAN, info->csum6_tx,
2110 TABLE_FIELD, "UDP6ZeroChecksumRx",
2111 TABLE_BOOLEAN, info->csum6_rx);
2112 if (r < 0)
2113 return table_log_add_error(r);
2114
2115 if (info->label > 0) {
2116 r = table_add_many(table,
2117 TABLE_FIELD, "FlowLabel",
2118 TABLE_UINT32, info->label);
2119 if (r < 0)
2120 return table_log_add_error(r);
2121 }
2122
2123 } else if (STRPTR_IN_SET(info->netdev_kind, "macvlan", "macvtap")) {
2124 r = table_add_many(table,
2125 TABLE_FIELD, "Mode",
2126 TABLE_STRING, macvlan_mode_to_string(info->macvlan_mode));
2127 if (r < 0)
2128 return table_log_add_error(r);
2129
2130 } else if (streq_ptr(info->netdev_kind, "ipvlan")) {
2131 const char *p;
2132
2133 if (info->ipvlan_flags & IPVLAN_F_PRIVATE)
2134 p = "private";
2135 else if (info->ipvlan_flags & IPVLAN_F_VEPA)
2136 p = "vepa";
2137 else
2138 p = "bridge";
2139
2140 r = table_add_cell(table, NULL, TABLE_FIELD, "Mode");
2141 if (r < 0)
2142 return table_log_add_error(r);
2143
2144 r = table_add_cell_stringf(table, NULL, "%s (%s)",
2145 ipvlan_mode_to_string(info->ipvlan_mode), p);
2146 if (r < 0)
2147 return table_log_add_error(r);
2148 }
2149
2150 if (info->has_wlan_link_info) {
2151 _cleanup_free_ char *esc = NULL;
2152
2153 r = table_add_cell(table, NULL, TABLE_FIELD, "Wi-Fi access point");
2154 if (r < 0)
2155 return table_log_add_error(r);
2156
2157 if (info->ssid)
2158 esc = cescape(info->ssid);
2159
2160 r = table_add_cell_stringf(table, NULL, "%s (%s)",
2161 strnull(esc),
2162 ETHER_ADDR_TO_STR(&info->bssid));
2163 if (r < 0)
2164 return table_log_add_error(r);
2165 }
2166
2167 if (info->has_bitrates) {
2168 r = table_add_cell(table, NULL, TABLE_FIELD, "Bit Rate (Tx/Rx)");
2169 if (r < 0)
2170 return table_log_add_error(r);
2171
2172 r = table_add_cell_stringf(table, NULL, "%sbps/%sbps",
2173 FORMAT_BYTES_FULL(info->tx_bitrate, 0),
2174 FORMAT_BYTES_FULL(info->rx_bitrate, 0));
2175 if (r < 0)
2176 return table_log_add_error(r);
2177 }
2178
2179 if (info->has_tx_queues || info->has_rx_queues) {
2180 r = table_add_cell(table, NULL, TABLE_FIELD, "Number of Queues (Tx/Rx)");
2181 if (r < 0)
2182 return table_log_add_error(r);
2183
2184 r = table_add_cell_stringf(table, NULL, "%" PRIu32 "/%" PRIu32, info->tx_queues, info->rx_queues);
2185 if (r < 0)
2186 return table_log_add_error(r);
2187 }
2188
2189 if (info->has_ethtool_link_info) {
2190 if (IN_SET(info->autonegotiation, AUTONEG_DISABLE, AUTONEG_ENABLE)) {
2191 r = table_add_many(table,
2192 TABLE_FIELD, "Auto negotiation",
2193 TABLE_BOOLEAN, info->autonegotiation == AUTONEG_ENABLE);
2194 if (r < 0)
2195 return table_log_add_error(r);
2196 }
2197
2198 if (info->speed > 0 && info->speed != UINT64_MAX) {
2199 r = table_add_many(table,
2200 TABLE_FIELD, "Speed",
2201 TABLE_BPS, info->speed);
2202 if (r < 0)
2203 return table_log_add_error(r);
2204 }
2205
2206 r = table_add_string_line(table, "Duplex", duplex_to_string(info->duplex));
2207 if (r < 0)
2208 return r;
2209
2210 r = table_add_string_line(table, "Port", port_to_string(info->port));
2211 if (r < 0)
2212 return r;
2213 }
2214
2215 r = dump_addresses(rtnl, lease, table, info->ifindex);
2216 if (r < 0)
2217 return r;
2218
2219 r = dump_gateways(rtnl, hwdb, table, info->ifindex);
2220 if (r < 0)
2221 return r;
2222
2223 r = dump_list(table, "DNS", dns);
2224 if (r < 0)
2225 return r;
2226
2227 r = dump_list(table, "Search Domains", search_domains);
2228 if (r < 0)
2229 return r;
2230
2231 r = dump_list(table, "Route Domains", route_domains);
2232 if (r < 0)
2233 return r;
2234
2235 r = dump_list(table, "NTP", ntp);
2236 if (r < 0)
2237 return r;
2238
2239 r = dump_list(table, "SIP", sip);
2240 if (r < 0)
2241 return r;
2242
2243 r = dump_ifindexes(table, "Carrier Bound To", carrier_bound_to);
2244 if (r < 0)
2245 return r;
2246
2247 r = dump_ifindexes(table, "Carrier Bound By", carrier_bound_by);
2248 if (r < 0)
2249 return r;
2250
2251 r = table_add_string_line(table, "Activation Policy", activation_policy);
2252 if (r < 0)
2253 return r;
2254
2255 r = sd_network_link_get_required_for_online(info->ifindex);
2256 if (r >= 0) {
2257 r = table_add_many(table,
2258 TABLE_FIELD, "Required For Online",
2259 TABLE_BOOLEAN, r);
2260 if (r < 0)
2261 return table_log_add_error(r);
2262 }
2263
2264 if (captive_portal) {
2265 r = table_add_many(table,
2266 TABLE_FIELD, "Captive Portal",
2267 TABLE_STRING, captive_portal,
2268 TABLE_SET_URL, captive_portal);
2269 if (r < 0)
2270 return table_log_add_error(r);
2271 }
2272
2273 if (lease) {
2274 const void *client_id;
2275 size_t client_id_len;
2276 const char *tz;
2277
2278 r = sd_dhcp_lease_get_timezone(lease, &tz);
2279 if (r >= 0) {
2280 r = table_add_many(table,
2281 TABLE_FIELD, "Time Zone",
2282 TABLE_STRING, tz);
2283 if (r < 0)
2284 return table_log_add_error(r);
2285 }
2286
2287 r = sd_dhcp_lease_get_client_id(lease, &client_id, &client_id_len);
2288 if (r >= 0) {
2289 _cleanup_free_ char *id = NULL;
2290
2291 r = sd_dhcp_client_id_to_string_from_raw(client_id, client_id_len, &id);
2292 if (r >= 0) {
2293 r = table_add_many(table,
2294 TABLE_FIELD, "DHCP4 Client ID",
2295 TABLE_STRING, id);
2296 if (r < 0)
2297 return table_log_add_error(r);
2298 }
2299 }
2300 }
2301
2302 r = sd_network_link_get_dhcp6_client_iaid_string(info->ifindex, &iaid);
2303 if (r >= 0) {
2304 r = table_add_many(table,
2305 TABLE_FIELD, "DHCP6 Client IAID",
2306 TABLE_STRING, iaid);
2307 if (r < 0)
2308 return table_log_add_error(r);
2309 }
2310
2311 r = sd_network_link_get_dhcp6_client_duid_string(info->ifindex, &duid);
2312 if (r >= 0) {
2313 r = table_add_many(table,
2314 TABLE_FIELD, "DHCP6 Client DUID",
2315 TABLE_STRING, duid);
2316 if (r < 0)
2317 return table_log_add_error(r);
2318 }
2319
2320 r = dump_lldp_neighbors(table, "Connected To", info->ifindex);
2321 if (r < 0)
2322 return r;
2323
2324 r = dump_dhcp_leases(table, "Offered DHCP leases", bus, info);
2325 if (r < 0)
2326 return r;
2327
2328 r = dump_statistics(table, info);
2329 if (r < 0)
2330 return r;
2331
2332 /* First line: circle, ifindex, ifname. */
2333 printf("%s%s%s %d: %s\n",
2334 on_color_operational, special_glyph(SPECIAL_GLYPH_BLACK_CIRCLE), off_color_operational,
2335 info->ifindex, info->name);
2336
2337 r = table_print(table, NULL);
2338 if (r < 0)
2339 return table_log_print_error(r);
2340
2341 return show_logs(info);
2342 }
2343
2344 static int system_status(sd_netlink *rtnl, sd_hwdb *hwdb) {
2345 _cleanup_free_ char *operational_state = NULL, *online_state = NULL, *netifs_joined = NULL;
2346 _cleanup_strv_free_ char **netifs = NULL, **dns = NULL, **ntp = NULL, **search_domains = NULL, **route_domains = NULL;
2347 const char *on_color_operational, *off_color_operational, *on_color_online;
2348 _cleanup_(table_unrefp) Table *table = NULL;
2349 int r;
2350
2351 assert(rtnl);
2352
2353 (void) sd_network_get_operational_state(&operational_state);
2354 operational_state_to_color(NULL, operational_state, &on_color_operational, &off_color_operational);
2355
2356 (void) sd_network_get_online_state(&online_state);
2357 online_state_to_color(online_state, &on_color_online, NULL);
2358
2359 table = table_new_vertical();
2360 if (!table)
2361 return log_oom();
2362
2363 if (arg_full)
2364 table_set_width(table, 0);
2365
2366 r = get_files_in_directory("/run/systemd/netif/links/", &netifs);
2367 if (r < 0 && r != -ENOENT)
2368 return log_error_errno(r, "Failed to list network interfaces: %m");
2369 else if (r > 0) {
2370 netifs_joined = strv_join(netifs, ", ");
2371 if (!netifs_joined)
2372 return log_oom();
2373 }
2374
2375 r = table_add_many(table,
2376 TABLE_FIELD, "State",
2377 TABLE_STRING, strna(operational_state),
2378 TABLE_SET_COLOR, on_color_operational,
2379 TABLE_FIELD, "Online state",
2380 TABLE_STRING, online_state ?: "unknown",
2381 TABLE_SET_COLOR, on_color_online);
2382 if (r < 0)
2383 return table_log_add_error(r);
2384
2385 r = dump_addresses(rtnl, NULL, table, 0);
2386 if (r < 0)
2387 return r;
2388
2389 r = dump_gateways(rtnl, hwdb, table, 0);
2390 if (r < 0)
2391 return r;
2392
2393 (void) sd_network_get_dns(&dns);
2394 r = dump_list(table, "DNS", dns);
2395 if (r < 0)
2396 return r;
2397
2398 (void) sd_network_get_search_domains(&search_domains);
2399 r = dump_list(table, "Search Domains", search_domains);
2400 if (r < 0)
2401 return r;
2402
2403 (void) sd_network_get_route_domains(&route_domains);
2404 r = dump_list(table, "Route Domains", route_domains);
2405 if (r < 0)
2406 return r;
2407
2408 (void) sd_network_get_ntp(&ntp);
2409 r = dump_list(table, "NTP", ntp);
2410 if (r < 0)
2411 return r;
2412
2413 printf("%s%s%s Interfaces: %s\n",
2414 on_color_operational, special_glyph(SPECIAL_GLYPH_BLACK_CIRCLE), off_color_operational,
2415 strna(netifs_joined));
2416
2417 r = table_print(table, NULL);
2418 if (r < 0)
2419 return table_log_print_error(r);
2420
2421 return show_logs(NULL);
2422 }
2423
2424 static int link_status(int argc, char *argv[], void *userdata) {
2425 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2426 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
2427 _cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb = NULL;
2428 _cleanup_(link_info_array_freep) LinkInfo *links = NULL;
2429 int r, c;
2430
2431 r = acquire_bus(&bus);
2432 if (r < 0)
2433 return r;
2434
2435 if (arg_json_format_flags != JSON_FORMAT_OFF) {
2436 if (arg_all || argc <= 1)
2437 return dump_manager_description(bus);
2438 else
2439 return dump_link_description(bus, strv_skip(argv, 1));
2440 }
2441
2442 pager_open(arg_pager_flags);
2443
2444 r = sd_netlink_open(&rtnl);
2445 if (r < 0)
2446 return log_error_errno(r, "Failed to connect to netlink: %m");
2447
2448 r = sd_hwdb_new(&hwdb);
2449 if (r < 0)
2450 log_debug_errno(r, "Failed to open hardware database: %m");
2451
2452 if (arg_all)
2453 c = acquire_link_info(bus, rtnl, NULL, &links);
2454 else if (argc <= 1)
2455 return system_status(rtnl, hwdb);
2456 else
2457 c = acquire_link_info(bus, rtnl, argv + 1, &links);
2458 if (c < 0)
2459 return c;
2460
2461 r = 0;
2462
2463 bool first = true;
2464 FOREACH_ARRAY(i, links, c) {
2465 if (!first)
2466 putchar('\n');
2467
2468 RET_GATHER(r, link_status_one(bus, rtnl, hwdb, i));
2469
2470 first = false;
2471 }
2472
2473 return r;
2474 }
2475
2476 static char *lldp_capabilities_to_string(uint16_t x) {
2477 static const char characters[] = {
2478 'o', 'p', 'b', 'w', 'r', 't', 'd', 'a', 'c', 's', 'm',
2479 };
2480 char *ret;
2481 unsigned i;
2482
2483 ret = new(char, ELEMENTSOF(characters) + 1);
2484 if (!ret)
2485 return NULL;
2486
2487 for (i = 0; i < ELEMENTSOF(characters); i++)
2488 ret[i] = (x & (1U << i)) ? characters[i] : '.';
2489
2490 ret[i] = 0;
2491 return ret;
2492 }
2493
2494 static void lldp_capabilities_legend(uint16_t x) {
2495 unsigned cols = columns();
2496 static const char* const table[] = {
2497 "o - Other",
2498 "p - Repeater",
2499 "b - Bridge",
2500 "w - WLAN Access Point",
2501 "r - Router",
2502 "t - Telephone",
2503 "d - DOCSIS cable device",
2504 "a - Station",
2505 "c - Customer VLAN",
2506 "s - Service VLAN",
2507 "m - Two-port MAC Relay (TPMR)",
2508 };
2509
2510 if (x == 0)
2511 return;
2512
2513 printf("\nCapability Flags:\n");
2514 for (unsigned w = 0, i = 0; i < ELEMENTSOF(table); i++)
2515 if (x & (1U << i) || arg_all) {
2516 bool newline;
2517
2518 newline = w + strlen(table[i]) + (w == 0 ? 0 : 2) > cols;
2519 if (newline)
2520 w = 0;
2521 w += printf("%s%s%s", newline ? "\n" : "", w == 0 ? "" : "; ", table[i]);
2522 }
2523 puts("");
2524 }
2525
2526 static int link_lldp_status(int argc, char *argv[], void *userdata) {
2527 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
2528 _cleanup_(link_info_array_freep) LinkInfo *links = NULL;
2529 _cleanup_(table_unrefp) Table *table = NULL;
2530 int r, c, m = 0;
2531 uint16_t all = 0;
2532 TableCell *cell;
2533
2534 r = sd_netlink_open(&rtnl);
2535 if (r < 0)
2536 return log_error_errno(r, "Failed to connect to netlink: %m");
2537
2538 c = acquire_link_info(NULL, rtnl, argc > 1 ? argv + 1 : NULL, &links);
2539 if (c < 0)
2540 return c;
2541
2542 pager_open(arg_pager_flags);
2543
2544 table = table_new("link",
2545 "chassis-id",
2546 "system-name",
2547 "caps",
2548 "port-id",
2549 "port-description");
2550 if (!table)
2551 return log_oom();
2552
2553 if (arg_full)
2554 table_set_width(table, 0);
2555
2556 table_set_header(table, arg_legend);
2557
2558 assert_se(cell = table_get_cell(table, 0, 3));
2559 table_set_minimum_width(table, cell, 11);
2560 table_set_ersatz_string(table, TABLE_ERSATZ_DASH);
2561
2562 FOREACH_ARRAY(link, links, c) {
2563 _cleanup_fclose_ FILE *f = NULL;
2564
2565 r = open_lldp_neighbors(link->ifindex, &f);
2566 if (r == -ENOENT)
2567 continue;
2568 if (r < 0) {
2569 log_warning_errno(r, "Failed to open LLDP data for %i, ignoring: %m", link->ifindex);
2570 continue;
2571 }
2572
2573 for (;;) {
2574 const char *chassis_id = NULL, *port_id = NULL, *system_name = NULL, *port_description = NULL;
2575 _cleanup_(sd_lldp_neighbor_unrefp) sd_lldp_neighbor *n = NULL;
2576 _cleanup_free_ char *capabilities = NULL;
2577 uint16_t cc;
2578
2579 r = next_lldp_neighbor(f, &n);
2580 if (r < 0) {
2581 log_warning_errno(r, "Failed to read neighbor data: %m");
2582 break;
2583 }
2584 if (r == 0)
2585 break;
2586
2587 (void) sd_lldp_neighbor_get_chassis_id_as_string(n, &chassis_id);
2588 (void) sd_lldp_neighbor_get_port_id_as_string(n, &port_id);
2589 (void) sd_lldp_neighbor_get_system_name(n, &system_name);
2590 (void) sd_lldp_neighbor_get_port_description(n, &port_description);
2591
2592 if (sd_lldp_neighbor_get_enabled_capabilities(n, &cc) >= 0) {
2593 capabilities = lldp_capabilities_to_string(cc);
2594 all |= cc;
2595 }
2596
2597 r = table_add_many(table,
2598 TABLE_STRING, link->name,
2599 TABLE_STRING, chassis_id,
2600 TABLE_STRING, system_name,
2601 TABLE_STRING, capabilities,
2602 TABLE_STRING, port_id,
2603 TABLE_STRING, port_description);
2604 if (r < 0)
2605 return table_log_add_error(r);
2606
2607 m++;
2608 }
2609 }
2610
2611 r = table_print(table, NULL);
2612 if (r < 0)
2613 return table_log_print_error(r);
2614
2615 if (arg_legend) {
2616 lldp_capabilities_legend(all);
2617 printf("\n%i neighbors listed.\n", m);
2618 }
2619
2620 return 0;
2621 }
2622
2623 static int link_delete_send_message(sd_netlink *rtnl, int index) {
2624 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL;
2625 int r;
2626
2627 assert(rtnl);
2628 assert(index >= 0);
2629
2630 r = sd_rtnl_message_new_link(rtnl, &req, RTM_DELLINK, index);
2631 if (r < 0)
2632 return rtnl_log_create_error(r);
2633
2634 r = sd_netlink_call(rtnl, req, 0, NULL);
2635 if (r < 0)
2636 return r;
2637
2638 return 0;
2639 }
2640
2641 static int link_up_down_send_message(sd_netlink *rtnl, char *command, int index) {
2642 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL;
2643 int r;
2644
2645 assert(rtnl);
2646 assert(index >= 0);
2647
2648 r = sd_rtnl_message_new_link(rtnl, &req, RTM_SETLINK, index);
2649 if (r < 0)
2650 return rtnl_log_create_error(r);
2651
2652 if (streq(command, "up"))
2653 r = sd_rtnl_message_link_set_flags(req, IFF_UP, IFF_UP);
2654 else
2655 r = sd_rtnl_message_link_set_flags(req, 0, IFF_UP);
2656 if (r < 0)
2657 return log_error_errno(r, "Could not set link flags: %m");
2658
2659 r = sd_netlink_call(rtnl, req, 0, NULL);
2660 if (r < 0)
2661 return r;
2662
2663 return 0;
2664 }
2665
2666 static int link_up_down(int argc, char *argv[], void *userdata) {
2667 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
2668 _cleanup_set_free_ Set *indexes = NULL;
2669 int index, r;
2670 void *p;
2671
2672 r = sd_netlink_open(&rtnl);
2673 if (r < 0)
2674 return log_error_errno(r, "Failed to connect to netlink: %m");
2675
2676 indexes = set_new(NULL);
2677 if (!indexes)
2678 return log_oom();
2679
2680 for (int i = 1; i < argc; i++) {
2681 index = rtnl_resolve_interface_or_warn(&rtnl, argv[i]);
2682 if (index < 0)
2683 return index;
2684
2685 r = set_put(indexes, INT_TO_PTR(index));
2686 if (r < 0)
2687 return log_oom();
2688 }
2689
2690 SET_FOREACH(p, indexes) {
2691 index = PTR_TO_INT(p);
2692 r = link_up_down_send_message(rtnl, argv[0], index);
2693 if (r < 0)
2694 return log_error_errno(r, "Failed to bring %s interface %s: %m",
2695 argv[0], FORMAT_IFNAME_FULL(index, FORMAT_IFNAME_IFINDEX));
2696 }
2697
2698 return r;
2699 }
2700
2701 static int link_delete(int argc, char *argv[], void *userdata) {
2702 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
2703 _cleanup_set_free_ Set *indexes = NULL;
2704 int index, r;
2705 void *p;
2706
2707 r = sd_netlink_open(&rtnl);
2708 if (r < 0)
2709 return log_error_errno(r, "Failed to connect to netlink: %m");
2710
2711 indexes = set_new(NULL);
2712 if (!indexes)
2713 return log_oom();
2714
2715 for (int i = 1; i < argc; i++) {
2716 index = rtnl_resolve_interface_or_warn(&rtnl, argv[i]);
2717 if (index < 0)
2718 return index;
2719
2720 r = set_put(indexes, INT_TO_PTR(index));
2721 if (r < 0)
2722 return log_oom();
2723 }
2724
2725 SET_FOREACH(p, indexes) {
2726 index = PTR_TO_INT(p);
2727 r = link_delete_send_message(rtnl, index);
2728 if (r < 0)
2729 return log_error_errno(r, "Failed to delete interface %s: %m",
2730 FORMAT_IFNAME_FULL(index, FORMAT_IFNAME_IFINDEX));
2731 }
2732
2733 return r;
2734 }
2735
2736 static int link_renew_one(sd_bus *bus, int index, const char *name) {
2737 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2738 int r;
2739
2740 assert(bus);
2741 assert(index >= 0);
2742 assert(name);
2743
2744 r = bus_call_method(bus, bus_network_mgr, "RenewLink", &error, NULL, "i", index);
2745 if (r < 0)
2746 return log_error_errno(r, "Failed to renew dynamic configuration of interface %s: %s",
2747 name, bus_error_message(&error, r));
2748
2749 return 0;
2750 }
2751
2752 static int link_renew(int argc, char *argv[], void *userdata) {
2753 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2754 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
2755 int r;
2756
2757 r = acquire_bus(&bus);
2758 if (r < 0)
2759 return r;
2760
2761 r = 0;
2762
2763 for (int i = 1; i < argc; i++) {
2764 int index;
2765
2766 index = rtnl_resolve_interface_or_warn(&rtnl, argv[i]);
2767 if (index < 0)
2768 return index;
2769
2770 RET_GATHER(r, link_renew_one(bus, index, argv[i]));
2771 }
2772
2773 return r;
2774 }
2775
2776 static int link_force_renew_one(sd_bus *bus, int index, const char *name) {
2777 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2778 int r;
2779
2780 assert(bus);
2781 assert(index >= 0);
2782 assert(name);
2783
2784 r = bus_call_method(bus, bus_network_mgr, "ForceRenewLink", &error, NULL, "i", index);
2785 if (r < 0)
2786 return log_error_errno(r, "Failed to force renew dynamic configuration of interface %s: %s",
2787 name, bus_error_message(&error, r));
2788
2789 return 0;
2790 }
2791
2792 static int link_force_renew(int argc, char *argv[], void *userdata) {
2793 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2794 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
2795 int k = 0, r;
2796
2797 r = acquire_bus(&bus);
2798 if (r < 0)
2799 return r;
2800
2801 for (int i = 1; i < argc; i++) {
2802 int index = rtnl_resolve_interface_or_warn(&rtnl, argv[i]);
2803 if (index < 0)
2804 return index;
2805
2806 r = link_force_renew_one(bus, index, argv[i]);
2807 if (r < 0 && k >= 0)
2808 k = r;
2809 }
2810
2811 return k;
2812 }
2813
2814 static int verb_reload(int argc, char *argv[], void *userdata) {
2815 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2816 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2817 int r;
2818
2819 r = acquire_bus(&bus);
2820 if (r < 0)
2821 return r;
2822
2823 r = bus_call_method(bus, bus_network_mgr, "Reload", &error, NULL, NULL);
2824 if (r < 0)
2825 return log_error_errno(r, "Failed to reload network settings: %s", bus_error_message(&error, r));
2826
2827 return 0;
2828 }
2829
2830 static int verb_reconfigure(int argc, char *argv[], void *userdata) {
2831 _cleanup_(sd_bus_flush_close_unrefp) sd_bus *bus = NULL;
2832 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2833 _cleanup_(sd_netlink_unrefp) sd_netlink *rtnl = NULL;
2834 _cleanup_set_free_ Set *indexes = NULL;
2835 int index, r;
2836 void *p;
2837
2838 r = acquire_bus(&bus);
2839 if (r < 0)
2840 return r;
2841
2842 indexes = set_new(NULL);
2843 if (!indexes)
2844 return log_oom();
2845
2846 for (int i = 1; i < argc; i++) {
2847 index = rtnl_resolve_interface_or_warn(&rtnl, argv[i]);
2848 if (index < 0)
2849 return index;
2850
2851 r = set_put(indexes, INT_TO_PTR(index));
2852 if (r < 0)
2853 return log_oom();
2854 }
2855
2856 SET_FOREACH(p, indexes) {
2857 index = PTR_TO_INT(p);
2858 r = bus_call_method(bus, bus_network_mgr, "ReconfigureLink", &error, NULL, "i", index);
2859 if (r < 0)
2860 return log_error_errno(r, "Failed to reconfigure network interface %s: %s",
2861 FORMAT_IFNAME_FULL(index, FORMAT_IFNAME_IFINDEX),
2862 bus_error_message(&error, r));
2863 }
2864
2865 return 0;
2866 }
2867
2868 static int help(void) {
2869 _cleanup_free_ char *link = NULL;
2870 int r;
2871
2872 r = terminal_urlify_man("networkctl", "1", &link);
2873 if (r < 0)
2874 return log_oom();
2875
2876 printf("%s [OPTIONS...] COMMAND\n\n"
2877 "%sQuery and control the networking subsystem.%s\n"
2878 "\nCommands:\n"
2879 " list [PATTERN...] List links\n"
2880 " status [PATTERN...] Show link status\n"
2881 " lldp [PATTERN...] Show LLDP neighbors\n"
2882 " label Show current address label entries in the kernel\n"
2883 " delete DEVICES... Delete virtual netdevs\n"
2884 " up DEVICES... Bring devices up\n"
2885 " down DEVICES... Bring devices down\n"
2886 " renew DEVICES... Renew dynamic configurations\n"
2887 " forcerenew DEVICES... Trigger DHCP reconfiguration of all connected clients\n"
2888 " reconfigure DEVICES... Reconfigure interfaces\n"
2889 " reload Reload .network and .netdev files\n"
2890 " edit FILES|DEVICES... Edit network configuration files\n"
2891 " cat FILES|DEVICES... Show network configuration files\n"
2892 " mask FILES... Mask network configuration files\n"
2893 " unmask FILES... Unmask network configuration files\n"
2894 "\nOptions:\n"
2895 " -h --help Show this help\n"
2896 " --version Show package version\n"
2897 " --no-pager Do not pipe output into a pager\n"
2898 " --no-legend Do not show the headers and footers\n"
2899 " -a --all Show status for all links\n"
2900 " -s --stats Show detailed link statistics\n"
2901 " -l --full Do not ellipsize output\n"
2902 " -n --lines=INTEGER Number of journal entries to show\n"
2903 " --json=pretty|short|off\n"
2904 " Generate JSON output\n"
2905 " --no-reload Do not reload systemd-networkd or systemd-udevd\n"
2906 " after editing network config\n"
2907 " --drop-in=NAME Edit specified drop-in instead of main config file\n"
2908 " --runtime Edit runtime config files\n"
2909 "\nSee the %s for details.\n",
2910 program_invocation_short_name,
2911 ansi_highlight(),
2912 ansi_normal(),
2913 link);
2914
2915 return 0;
2916 }
2917
2918 static int parse_argv(int argc, char *argv[]) {
2919 enum {
2920 ARG_VERSION = 0x100,
2921 ARG_NO_PAGER,
2922 ARG_NO_LEGEND,
2923 ARG_JSON,
2924 ARG_NO_RELOAD,
2925 ARG_DROP_IN,
2926 ARG_RUNTIME,
2927 };
2928
2929 static const struct option options[] = {
2930 { "help", no_argument, NULL, 'h' },
2931 { "version", no_argument, NULL, ARG_VERSION },
2932 { "no-pager", no_argument, NULL, ARG_NO_PAGER },
2933 { "no-legend", no_argument, NULL, ARG_NO_LEGEND },
2934 { "all", no_argument, NULL, 'a' },
2935 { "stats", no_argument, NULL, 's' },
2936 { "full", no_argument, NULL, 'l' },
2937 { "lines", required_argument, NULL, 'n' },
2938 { "json", required_argument, NULL, ARG_JSON },
2939 { "no-reload", no_argument, NULL, ARG_NO_RELOAD },
2940 { "drop-in", required_argument, NULL, ARG_DROP_IN },
2941 { "runtime", no_argument, NULL, ARG_RUNTIME },
2942 {}
2943 };
2944
2945 int c, r;
2946
2947 assert(argc >= 0);
2948 assert(argv);
2949
2950 while ((c = getopt_long(argc, argv, "hasln:", options, NULL)) >= 0) {
2951
2952 switch (c) {
2953
2954 case 'h':
2955 return help();
2956
2957 case ARG_VERSION:
2958 return version();
2959
2960 case ARG_NO_PAGER:
2961 arg_pager_flags |= PAGER_DISABLE;
2962 break;
2963
2964 case ARG_NO_LEGEND:
2965 arg_legend = false;
2966 break;
2967
2968 case ARG_NO_RELOAD:
2969 arg_no_reload = true;
2970 break;
2971
2972 case ARG_RUNTIME:
2973 arg_runtime = true;
2974 break;
2975
2976 case ARG_DROP_IN:
2977 if (isempty(optarg))
2978 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Empty drop-in file name.");
2979
2980 if (!endswith(optarg, ".conf")) {
2981 char *conf;
2982
2983 conf = strjoin(optarg, ".conf");
2984 if (!conf)
2985 return log_oom();
2986
2987 free_and_replace(arg_drop_in, conf);
2988 } else {
2989 r = free_and_strdup(&arg_drop_in, optarg);
2990 if (r < 0)
2991 return log_oom();
2992 }
2993
2994 if (!filename_is_valid(arg_drop_in))
2995 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
2996 "Invalid drop-in file name '%s'.", arg_drop_in);
2997
2998 break;
2999
3000 case 'a':
3001 arg_all = true;
3002 break;
3003
3004 case 's':
3005 arg_stats = true;
3006 break;
3007
3008 case 'l':
3009 arg_full = true;
3010 break;
3011
3012 case 'n':
3013 if (safe_atou(optarg, &arg_lines) < 0)
3014 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
3015 "Failed to parse lines '%s'", optarg);
3016 break;
3017
3018 case ARG_JSON:
3019 r = parse_json_argument(optarg, &arg_json_format_flags);
3020 if (r <= 0)
3021 return r;
3022 break;
3023
3024 case '?':
3025 return -EINVAL;
3026
3027 default:
3028 assert_not_reached();
3029 }
3030 }
3031
3032 return 1;
3033 }
3034
3035 static int networkctl_main(int argc, char *argv[]) {
3036 static const Verb verbs[] = {
3037 { "list", VERB_ANY, VERB_ANY, VERB_DEFAULT|VERB_ONLINE_ONLY, list_links },
3038 { "status", VERB_ANY, VERB_ANY, VERB_ONLINE_ONLY, link_status },
3039 { "lldp", VERB_ANY, VERB_ANY, 0, link_lldp_status },
3040 { "label", 1, 1, 0, list_address_labels },
3041 { "delete", 2, VERB_ANY, 0, link_delete },
3042 { "up", 2, VERB_ANY, 0, link_up_down },
3043 { "down", 2, VERB_ANY, 0, link_up_down },
3044 { "renew", 2, VERB_ANY, VERB_ONLINE_ONLY, link_renew },
3045 { "forcerenew", 2, VERB_ANY, VERB_ONLINE_ONLY, link_force_renew },
3046 { "reconfigure", 2, VERB_ANY, VERB_ONLINE_ONLY, verb_reconfigure },
3047 { "reload", 1, 1, VERB_ONLINE_ONLY, verb_reload },
3048 { "edit", 2, VERB_ANY, 0, verb_edit },
3049 { "cat", 2, VERB_ANY, 0, verb_cat },
3050 { "mask", 2, VERB_ANY, 0, verb_mask },
3051 { "unmask", 2, VERB_ANY, 0, verb_unmask },
3052 {}
3053 };
3054
3055 return dispatch_verb(argc, argv, verbs, NULL);
3056 }
3057
3058 static int run(int argc, char* argv[]) {
3059 int r;
3060
3061 log_setup();
3062
3063 sigbus_install();
3064
3065 r = parse_argv(argc, argv);
3066 if (r <= 0)
3067 return r;
3068
3069 return networkctl_main(argc, argv);
3070 }
3071
3072 DEFINE_MAIN_FUNCTION(run);