]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd-network/sd-ndisc.c
sd-ndisc: rename sd_ndisc_init() to sd_ndisc_reset()
[thirdparty/systemd.git] / src / libsystemd-network / sd-ndisc.c
1 /***
2 This file is part of systemd.
3
4 Copyright (C) 2014 Intel Corporation. All rights reserved.
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <netinet/icmp6.h>
21 #include <netinet/in.h>
22 #include <netinet/ip6.h>
23 #include <stdbool.h>
24 #include <string.h>
25 #include <sys/ioctl.h>
26
27 #include "sd-ndisc.h"
28
29 #include "alloc-util.h"
30 #include "async.h"
31 #include "icmp6-util.h"
32 #include "in-addr-util.h"
33 #include "list.h"
34 #include "socket-util.h"
35 #include "string-util.h"
36
37 #define NDISC_ROUTER_SOLICITATION_INTERVAL (4U * USEC_PER_SEC)
38 #define NDISC_MAX_ROUTER_SOLICITATIONS 3U
39
40 enum NDiscState {
41 NDISC_STATE_IDLE,
42 NDISC_STATE_SOLICITATION_SENT,
43 NDISC_STATE_ADVERTISMENT_LISTEN,
44 _NDISC_STATE_MAX,
45 _NDISC_STATE_INVALID = -1,
46 };
47
48 #define IP6_MIN_MTU 1280U
49 #define ICMP6_RECV_SIZE (IP6_MIN_MTU - sizeof(struct ip6_hdr))
50 #define NDISC_OPT_LEN_UNITS 8U
51
52 #define ND_RA_FLAG_PREF 0x18
53 #define ND_RA_FLAG_PREF_LOW 0x03
54 #define ND_RA_FLAG_PREF_MEDIUM 0x0
55 #define ND_RA_FLAG_PREF_HIGH 0x1
56 #define ND_RA_FLAG_PREF_INVALID 0x2
57
58 typedef struct NDiscPrefix NDiscPrefix;
59
60 struct NDiscPrefix {
61 unsigned n_ref;
62
63 sd_ndisc *nd;
64
65 LIST_FIELDS(NDiscPrefix, prefixes);
66
67 uint8_t len;
68 usec_t valid_until;
69 struct in6_addr addr;
70 };
71
72 struct sd_ndisc {
73 unsigned n_ref;
74
75 enum NDiscState state;
76 sd_event *event;
77 int event_priority;
78 int ifindex;
79 struct ether_addr mac_addr;
80 uint32_t mtu;
81 LIST_HEAD(NDiscPrefix, prefixes);
82 int fd;
83 sd_event_source *recv;
84 sd_event_source *timeout;
85 unsigned nd_sent;
86 sd_ndisc_router_callback_t router_callback;
87 sd_ndisc_prefix_autonomous_callback_t prefix_autonomous_callback;
88 sd_ndisc_prefix_onlink_callback_t prefix_onlink_callback;
89 sd_ndisc_callback_t callback;
90 void *userdata;
91 };
92
93 #define log_ndisc(p, fmt, ...) log_internal(LOG_DEBUG, 0, __FILE__, __LINE__, __func__, "NDisc CLIENT: " fmt, ##__VA_ARGS__)
94
95 static NDiscPrefix *ndisc_prefix_unref(NDiscPrefix *prefix) {
96
97 if (!prefix)
98 return NULL;
99
100 assert(prefix->n_ref > 0);
101 prefix->n_ref--;
102
103 if (prefix->n_ref > 0)
104 return NULL;
105
106 if (prefix->nd)
107 LIST_REMOVE(prefixes, prefix->nd->prefixes, prefix);
108
109 free(prefix);
110
111 return NULL;
112 }
113
114 static int ndisc_prefix_new(sd_ndisc *nd, NDiscPrefix **ret) {
115 NDiscPrefix *prefix;
116
117 assert(ret);
118
119 prefix = new0(NDiscPrefix, 1);
120 if (!prefix)
121 return -ENOMEM;
122
123 prefix->n_ref = 1;
124 LIST_INIT(prefixes, prefix);
125 prefix->nd = nd;
126
127 *ret = prefix;
128 return 0;
129 }
130
131 int sd_ndisc_set_callback(sd_ndisc *nd,
132 sd_ndisc_router_callback_t router_callback,
133 sd_ndisc_prefix_onlink_callback_t prefix_onlink_callback,
134 sd_ndisc_prefix_autonomous_callback_t prefix_autonomous_callback,
135 sd_ndisc_callback_t callback,
136 void *userdata) {
137 assert(nd);
138
139 nd->router_callback = router_callback;
140 nd->prefix_onlink_callback = prefix_onlink_callback;
141 nd->prefix_autonomous_callback = prefix_autonomous_callback;
142 nd->callback = callback;
143 nd->userdata = userdata;
144
145 return 0;
146 }
147
148 int sd_ndisc_set_ifindex(sd_ndisc *nd, int ifindex) {
149 assert_return(nd, -EINVAL);
150 assert_return(ifindex > 0, -EINVAL);
151
152 nd->ifindex = ifindex;
153 return 0;
154 }
155
156 int sd_ndisc_set_mac(sd_ndisc *nd, const struct ether_addr *mac_addr) {
157 assert(nd);
158
159 if (mac_addr)
160 memcpy(&nd->mac_addr, mac_addr, sizeof(nd->mac_addr));
161 else
162 zero(nd->mac_addr);
163
164 return 0;
165
166 }
167
168 int sd_ndisc_attach_event(sd_ndisc *nd, sd_event *event, int64_t priority) {
169 int r;
170
171 assert_return(nd, -EINVAL);
172 assert_return(!nd->event, -EBUSY);
173
174 if (event)
175 nd->event = sd_event_ref(event);
176 else {
177 r = sd_event_default(&nd->event);
178 if (r < 0)
179 return 0;
180 }
181
182 nd->event_priority = priority;
183
184 return 0;
185 }
186
187 int sd_ndisc_detach_event(sd_ndisc *nd) {
188 assert_return(nd, -EINVAL);
189
190 nd->event = sd_event_unref(nd->event);
191
192 return 0;
193 }
194
195 sd_event *sd_ndisc_get_event(sd_ndisc *nd) {
196 assert(nd);
197
198 return nd->event;
199 }
200
201 sd_ndisc *sd_ndisc_ref(sd_ndisc *nd) {
202
203 if (!nd)
204 return NULL;
205
206 assert(nd->n_ref > 0);
207 nd->n_ref++;
208
209 return nd;
210 }
211
212 static int ndisc_reset(sd_ndisc *nd) {
213 assert(nd);
214
215 nd->recv = sd_event_source_unref(nd->recv);
216 nd->fd = asynchronous_close(nd->fd);
217 nd->timeout = sd_event_source_unref(nd->timeout);
218
219 return 0;
220 }
221
222 sd_ndisc *sd_ndisc_unref(sd_ndisc *nd) {
223 NDiscPrefix *prefix, *p;
224
225 if (!nd)
226 return NULL;
227
228 assert(nd->n_ref > 0);
229 nd->n_ref--;
230
231 if (nd->n_ref > 0)
232 return NULL;
233
234 ndisc_reset(nd);
235 sd_ndisc_detach_event(nd);
236
237 LIST_FOREACH_SAFE(prefixes, prefix, p, nd->prefixes)
238 prefix = ndisc_prefix_unref(prefix);
239
240 free(nd);
241
242 return NULL;
243 }
244
245 int sd_ndisc_new(sd_ndisc **ret) {
246 _cleanup_(sd_ndisc_unrefp) sd_ndisc *nd = NULL;
247
248 assert(ret);
249
250 nd = new0(sd_ndisc, 1);
251 if (!nd)
252 return -ENOMEM;
253
254 nd->n_ref = 1;
255
256 nd->ifindex = -1;
257 nd->fd = -1;
258
259 LIST_HEAD_INIT(nd->prefixes);
260
261 *ret = nd;
262 nd = NULL;
263
264 return 0;
265 }
266
267 int sd_ndisc_get_mtu(sd_ndisc *nd, uint32_t *mtu) {
268 assert_return(nd, -EINVAL);
269 assert_return(mtu, -EINVAL);
270
271 if (nd->mtu == 0)
272 return -ENOMSG;
273
274 *mtu = nd->mtu;
275
276 return 0;
277 }
278
279 static int prefix_match(const struct in6_addr *prefix, uint8_t prefixlen,
280 const struct in6_addr *addr,
281 uint8_t addr_prefixlen) {
282 uint8_t bytes, mask, len;
283
284 assert_return(prefix, -EINVAL);
285 assert_return(addr, -EINVAL);
286
287 len = MIN(prefixlen, addr_prefixlen);
288
289 bytes = len / 8;
290 mask = 0xff << (8 - len % 8);
291
292 if (memcmp(prefix, addr, bytes) != 0 ||
293 (prefix->s6_addr[bytes] & mask) != (addr->s6_addr[bytes] & mask))
294 return -EADDRNOTAVAIL;
295
296 return 0;
297 }
298
299 static int ndisc_prefix_match(sd_ndisc *nd, const struct in6_addr *addr,
300 uint8_t addr_len, NDiscPrefix **result) {
301 NDiscPrefix *prefix, *p;
302 usec_t time_now;
303 int r;
304
305 assert(nd);
306
307 r = sd_event_now(nd->event, clock_boottime_or_monotonic(), &time_now);
308 if (r < 0)
309 return r;
310
311 LIST_FOREACH_SAFE(prefixes, prefix, p, nd->prefixes) {
312 if (prefix->valid_until < time_now) {
313 prefix = ndisc_prefix_unref(prefix);
314 continue;
315 }
316
317 if (prefix_match(&prefix->addr, prefix->len, addr, addr_len) >= 0) {
318 *result = prefix;
319 return 0;
320 }
321 }
322
323 return -EADDRNOTAVAIL;
324 }
325
326 static int ndisc_prefix_update(sd_ndisc *nd, ssize_t len,
327 const struct nd_opt_prefix_info *prefix_opt) {
328 NDiscPrefix *prefix;
329 uint32_t lifetime_valid, lifetime_preferred;
330 usec_t time_now;
331 char time_string[FORMAT_TIMESPAN_MAX];
332 int r;
333
334 assert(nd);
335 assert(prefix_opt);
336
337 if (len < prefix_opt->nd_opt_pi_len)
338 return -ENOMSG;
339
340 if (!(prefix_opt->nd_opt_pi_flags_reserved & (ND_OPT_PI_FLAG_ONLINK | ND_OPT_PI_FLAG_AUTO)))
341 return 0;
342
343 if (in_addr_is_link_local(AF_INET6, (const union in_addr_union *) &prefix_opt->nd_opt_pi_prefix) > 0)
344 return 0;
345
346 lifetime_valid = be32toh(prefix_opt->nd_opt_pi_valid_time);
347 lifetime_preferred = be32toh(prefix_opt->nd_opt_pi_preferred_time);
348
349 if (lifetime_valid < lifetime_preferred)
350 return 0;
351
352 r = ndisc_prefix_match(nd, &prefix_opt->nd_opt_pi_prefix,
353 prefix_opt->nd_opt_pi_prefix_len, &prefix);
354 if (r < 0) {
355 if (r != -EADDRNOTAVAIL)
356 return r;
357
358 /* if router advertisment prefix valid timeout is zero, the timeout
359 callback will be called immediately to clean up the prefix */
360
361 r = ndisc_prefix_new(nd, &prefix);
362 if (r < 0)
363 return r;
364
365 prefix->len = prefix_opt->nd_opt_pi_prefix_len;
366
367 memcpy(&prefix->addr, &prefix_opt->nd_opt_pi_prefix,
368 sizeof(prefix->addr));
369
370 log_ndisc(nd, "New prefix "SD_NDISC_ADDRESS_FORMAT_STR"/%d lifetime %d expires in %s",
371 SD_NDISC_ADDRESS_FORMAT_VAL(prefix->addr),
372 prefix->len, lifetime_valid,
373 format_timespan(time_string, FORMAT_TIMESPAN_MAX, lifetime_valid * USEC_PER_SEC, USEC_PER_SEC));
374
375 LIST_PREPEND(prefixes, nd->prefixes, prefix);
376
377 } else {
378 if (prefix->len != prefix_opt->nd_opt_pi_prefix_len) {
379 uint8_t prefixlen;
380
381 prefixlen = MIN(prefix->len, prefix_opt->nd_opt_pi_prefix_len);
382
383 log_ndisc(nd, "Prefix length mismatch %d/%d using %d",
384 prefix->len,
385 prefix_opt->nd_opt_pi_prefix_len,
386 prefixlen);
387
388 prefix->len = prefixlen;
389 }
390
391 log_ndisc(nd, "Update prefix "SD_NDISC_ADDRESS_FORMAT_STR"/%d lifetime %d expires in %s",
392 SD_NDISC_ADDRESS_FORMAT_VAL(prefix->addr),
393 prefix->len, lifetime_valid,
394 format_timespan(time_string, FORMAT_TIMESPAN_MAX, lifetime_valid * USEC_PER_SEC, USEC_PER_SEC));
395 }
396
397 r = sd_event_now(nd->event, clock_boottime_or_monotonic(), &time_now);
398 if (r < 0)
399 return r;
400
401 prefix->valid_until = time_now + lifetime_valid * USEC_PER_SEC;
402
403 if ((prefix_opt->nd_opt_pi_flags_reserved & ND_OPT_PI_FLAG_ONLINK) && nd->prefix_onlink_callback)
404 nd->prefix_onlink_callback(nd, &prefix->addr, prefix->len, prefix->valid_until, nd->userdata);
405
406 if ((prefix_opt->nd_opt_pi_flags_reserved & ND_OPT_PI_FLAG_AUTO) && nd->prefix_autonomous_callback)
407 nd->prefix_autonomous_callback(nd, &prefix->addr, prefix->len, lifetime_preferred, lifetime_valid,
408 nd->userdata);
409
410 return 0;
411 }
412
413 static int ndisc_ra_parse(sd_ndisc *nd, struct nd_router_advert *ra, ssize_t len) {
414 void *opt;
415 struct nd_opt_hdr *opt_hdr;
416
417 assert_return(nd, -EINVAL);
418 assert_return(ra, -EINVAL);
419
420 len -= sizeof(*ra);
421 if (len < NDISC_OPT_LEN_UNITS) {
422 log_ndisc(nd, "Router Advertisement below minimum length");
423
424 return -ENOMSG;
425 }
426
427 opt = ra + 1;
428 opt_hdr = opt;
429
430 while (len != 0 && len >= opt_hdr->nd_opt_len * NDISC_OPT_LEN_UNITS) {
431 struct nd_opt_mtu *opt_mtu;
432 uint32_t mtu;
433 struct nd_opt_prefix_info *opt_prefix;
434
435 if (opt_hdr->nd_opt_len == 0)
436 return -ENOMSG;
437
438 switch (opt_hdr->nd_opt_type) {
439 case ND_OPT_MTU:
440 opt_mtu = opt;
441
442 mtu = be32toh(opt_mtu->nd_opt_mtu_mtu);
443
444 if (mtu != nd->mtu) {
445 nd->mtu = MAX(mtu, IP6_MIN_MTU);
446
447 log_ndisc(nd, "Router Advertisement link MTU %d using %d",
448 mtu, nd->mtu);
449 }
450
451 break;
452
453 case ND_OPT_PREFIX_INFORMATION:
454 opt_prefix = opt;
455
456 ndisc_prefix_update(nd, len, opt_prefix);
457
458 break;
459 }
460
461 len -= opt_hdr->nd_opt_len * NDISC_OPT_LEN_UNITS;
462 opt = (void *)((char *)opt +
463 opt_hdr->nd_opt_len * NDISC_OPT_LEN_UNITS);
464 opt_hdr = opt;
465 }
466
467 if (len > 0)
468 log_ndisc(nd, "Router Advertisement contains %zd bytes of trailing garbage", len);
469
470 return 0;
471 }
472
473 static int ndisc_router_advertisment_recv(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
474 _cleanup_free_ struct nd_router_advert *ra = NULL;
475 sd_ndisc *nd = userdata;
476 union {
477 struct cmsghdr cmsghdr;
478 uint8_t buf[CMSG_LEN(sizeof(int))];
479 } control = {};
480 struct iovec iov = {};
481 union sockaddr_union sa = {};
482 struct msghdr msg = {
483 .msg_name = &sa.sa,
484 .msg_namelen = sizeof(sa),
485 .msg_iov = &iov,
486 .msg_iovlen = 1,
487 .msg_control = &control,
488 .msg_controllen = sizeof(control),
489 };
490 struct cmsghdr *cmsg;
491 struct in6_addr *gw;
492 unsigned lifetime;
493 ssize_t len, buflen;
494 int r, pref, stateful;
495
496 assert(s);
497 assert(nd);
498 assert(nd->event);
499
500 buflen = next_datagram_size_fd(fd);
501 if (buflen < 0)
502 return buflen;
503
504 iov.iov_len = buflen;
505
506 ra = malloc(iov.iov_len);
507 if (!ra)
508 return -ENOMEM;
509
510 iov.iov_base = ra;
511
512 len = recvmsg(fd, &msg, 0);
513 if (len < 0) {
514 if (errno == EAGAIN || errno == EINTR)
515 return 0;
516
517 log_ndisc(nd, "Could not receive message from ICMPv6 socket: %m");
518 return -errno;
519 }
520 if ((size_t) len < sizeof(struct nd_router_advert)) {
521 log_ndisc(nd, "Too small to be a router advertisement: ignoring");
522 return 0;
523 }
524
525 if (msg.msg_namelen == 0)
526 gw = NULL; /* only happens when running the test-suite over a socketpair */
527 else if (msg.msg_namelen != sizeof(sa.in6)) {
528 log_ndisc(nd, "Received invalid source address size from ICMPv6 socket: %zu bytes", (size_t)msg.msg_namelen);
529 return 0;
530 } else
531 gw = &sa.in6.sin6_addr;
532
533 assert(!(msg.msg_flags & MSG_CTRUNC));
534 assert(!(msg.msg_flags & MSG_TRUNC));
535
536 CMSG_FOREACH(cmsg, &msg) {
537 if (cmsg->cmsg_level == SOL_IPV6 &&
538 cmsg->cmsg_type == IPV6_HOPLIMIT &&
539 cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
540 int hops = *(int*)CMSG_DATA(cmsg);
541
542 if (hops != 255) {
543 log_ndisc(nd, "Received RA with invalid hop limit %d. Ignoring.", hops);
544 return 0;
545 }
546
547 break;
548 }
549 }
550
551 if (gw && !in_addr_is_link_local(AF_INET6, (const union in_addr_union*) gw)) {
552 _cleanup_free_ char *addr = NULL;
553
554 (void)in_addr_to_string(AF_INET6, (const union in_addr_union*) gw, &addr);
555
556 log_ndisc(nd, "Received RA from non-link-local address %s. Ignoring.", strna(addr));
557 return 0;
558 }
559
560 if (ra->nd_ra_type != ND_ROUTER_ADVERT)
561 return 0;
562
563 if (ra->nd_ra_code != 0)
564 return 0;
565
566 nd->timeout = sd_event_source_unref(nd->timeout);
567
568 nd->state = NDISC_STATE_ADVERTISMENT_LISTEN;
569
570 stateful = ra->nd_ra_flags_reserved & (ND_RA_FLAG_MANAGED | ND_RA_FLAG_OTHER);
571 pref = (ra->nd_ra_flags_reserved & ND_RA_FLAG_PREF) >> 3;
572
573 switch (pref) {
574 case ND_RA_FLAG_PREF_LOW:
575 case ND_RA_FLAG_PREF_HIGH:
576 break;
577 default:
578 pref = ND_RA_FLAG_PREF_MEDIUM;
579 break;
580 }
581
582 lifetime = be16toh(ra->nd_ra_router_lifetime);
583
584 log_ndisc(nd, "Received Router Advertisement: flags %s preference %s lifetime %u sec",
585 stateful & ND_RA_FLAG_MANAGED ? "MANAGED" : stateful & ND_RA_FLAG_OTHER ? "OTHER" : "none",
586 pref == ND_RA_FLAG_PREF_HIGH ? "high" : pref == ND_RA_FLAG_PREF_LOW ? "low" : "medium",
587 lifetime);
588
589 r = ndisc_ra_parse(nd, ra, len);
590 if (r < 0) {
591 log_ndisc(nd, "Could not parse Router Advertisement: %s", strerror(-r));
592 return 0;
593 }
594
595 if (nd->router_callback)
596 nd->router_callback(nd, stateful, gw, lifetime, pref, nd->userdata);
597
598 return 0;
599 }
600
601 static int ndisc_router_solicitation_timeout(sd_event_source *s, uint64_t usec, void *userdata) {
602 sd_ndisc *nd = userdata;
603 uint64_t time_now, next_timeout;
604 int r;
605
606 assert(s);
607 assert(nd);
608 assert(nd->event);
609
610 nd->timeout = sd_event_source_unref(nd->timeout);
611
612 if (nd->nd_sent >= NDISC_MAX_ROUTER_SOLICITATIONS) {
613 if (nd->callback)
614 nd->callback(nd, SD_NDISC_EVENT_TIMEOUT, nd->userdata);
615 nd->state = NDISC_STATE_ADVERTISMENT_LISTEN;
616 } else {
617 r = icmp6_send_router_solicitation(nd->fd, &nd->mac_addr);
618 if (r < 0)
619 log_ndisc(nd, "Error sending Router Solicitation");
620 else {
621 nd->state = NDISC_STATE_SOLICITATION_SENT;
622 log_ndisc(nd, "Sent Router Solicitation");
623 }
624
625 nd->nd_sent++;
626
627 assert_se(sd_event_now(nd->event, clock_boottime_or_monotonic(), &time_now) >= 0);
628
629 next_timeout = time_now + NDISC_ROUTER_SOLICITATION_INTERVAL;
630
631 r = sd_event_add_time(nd->event, &nd->timeout, clock_boottime_or_monotonic(),
632 next_timeout, 0,
633 ndisc_router_solicitation_timeout, nd);
634 if (r < 0) {
635 /* we cannot continue if we are unable to rearm the timer */
636 sd_ndisc_stop(nd);
637 return 0;
638 }
639
640 r = sd_event_source_set_priority(nd->timeout, nd->event_priority);
641 if (r < 0)
642 return 0;
643
644 r = sd_event_source_set_description(nd->timeout, "ndisc-timeout");
645 if (r < 0)
646 return 0;
647 }
648
649 return 0;
650 }
651
652 int sd_ndisc_stop(sd_ndisc *nd) {
653 assert_return(nd, -EINVAL);
654 assert_return(nd->event, -EINVAL);
655
656 log_ndisc(client, "Stop NDisc");
657
658 ndisc_reset(nd);
659
660 nd->state = NDISC_STATE_IDLE;
661
662 if (nd->callback)
663 nd->callback(nd, SD_NDISC_EVENT_STOP, nd->userdata);
664
665 return 0;
666 }
667
668 int sd_ndisc_router_discovery_start(sd_ndisc *nd) {
669 int r;
670
671 assert(nd);
672 assert(nd->event);
673
674 if (nd->state != NDISC_STATE_IDLE)
675 return -EBUSY;
676
677 if (nd->ifindex < 1)
678 return -EINVAL;
679
680 r = icmp6_bind_router_solicitation(nd->ifindex);
681 if (r < 0)
682 return r;
683
684 nd->fd = r;
685
686 r = sd_event_add_io(nd->event, &nd->recv, nd->fd, EPOLLIN, ndisc_router_advertisment_recv, nd);
687 if (r < 0)
688 goto fail;
689
690 r = sd_event_source_set_priority(nd->recv, nd->event_priority);
691 if (r < 0)
692 goto fail;
693
694 (void) sd_event_source_set_description(nd->recv, "ndisc-receive-message");
695
696 r = sd_event_add_time(nd->event, &nd->timeout, clock_boottime_or_monotonic(), 0, 0, ndisc_router_solicitation_timeout, nd);
697 if (r < 0)
698 goto fail;
699
700 r = sd_event_source_set_priority(nd->timeout, nd->event_priority);
701 if (r < 0)
702 goto fail;
703
704 (void) sd_event_source_set_description(nd->timeout, "ndisc-timeout");
705
706 log_ndisc(client, "Started IPv6 Router Solicitation client");
707 return 0;
708
709 fail:
710 ndisc_reset(nd);
711 return r;
712 }