]> git.proxmox.com Git - mirror_frr.git/blame - lib/vrf.c
zebra: flog_warn conversion
[mirror_frr.git] / lib / vrf.c
CommitLineData
b72ede27
FL
1/*
2 * VRF functions.
3 * Copyright (C) 2014 6WIND S.A.
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
b72ede27
FL
20 */
21
22#include <zebra.h>
23
4691b65a
PG
24/* for basename */
25#include <libgen.h>
26
6a69b354 27#include "if.h"
b72ede27 28#include "vrf.h"
7922fc65 29#include "vrf_int.h"
b72ede27
FL
30#include "prefix.h"
31#include "table.h"
32#include "log.h"
33#include "memory.h"
19dc275e 34#include "command.h"
b95c1883 35#include "ns.h"
3bc34908 36#include "privs.h"
98cbbaea 37#include "nexthop_group.h"
b66d022e 38#include "lib_errors.h"
19dc275e 39
ec31f30d
PG
40/* default VRF ID value used when VRF backend is not NETNS */
41#define VRF_DEFAULT_INTERNAL 0
dd114702 42#define VRF_DEFAULT_NAME_INTERNAL "default"
ec31f30d 43
d62a17ae 44DEFINE_MTYPE_STATIC(LIB, VRF, "VRF")
4a1ab8e4
DL
45DEFINE_MTYPE_STATIC(LIB, VRF_BITMAP, "VRF bit-map")
46
e80e7cce
DL
47DEFINE_QOBJ_TYPE(vrf)
48
d62a17ae 49static __inline int vrf_id_compare(const struct vrf *, const struct vrf *);
50static __inline int vrf_name_compare(const struct vrf *, const struct vrf *);
1a1a7065 51
d62a17ae 52RB_GENERATE(vrf_id_head, vrf, id_entry, vrf_id_compare);
53RB_GENERATE(vrf_name_head, vrf, name_entry, vrf_name_compare);
1a1a7065 54
d62a17ae 55struct vrf_id_head vrfs_by_id = RB_INITIALIZER(&vrfs_by_id);
56struct vrf_name_head vrfs_by_name = RB_INITIALIZER(&vrfs_by_name);
1a1a7065 57
78dd30b2 58static int vrf_backend;
3bc34908 59static struct zebra_privs_t *vrf_daemon_privs;
c200f5e1 60static char vrf_default_name[VRF_NAMSIZ] = VRF_DEFAULT_NAME_INTERNAL;
78dd30b2 61
19dc275e
DS
62/*
63 * Turn on/off debug code
64 * for vrf.
65 */
66int debug_vrf = 0;
b72ede27 67
b72ede27 68/* Holding VRF hooks */
d62a17ae 69struct vrf_master {
70 int (*vrf_new_hook)(struct vrf *);
71 int (*vrf_delete_hook)(struct vrf *);
72 int (*vrf_enable_hook)(struct vrf *);
73 int (*vrf_disable_hook)(struct vrf *);
ecbc5a37 74 int (*vrf_update_name_hook)(struct vrf *vrf);
d62a17ae 75} vrf_master = {
76 0,
77};
b72ede27 78
d62a17ae 79static int vrf_is_enabled(struct vrf *vrf);
e5bf3e1e 80
216b18ef 81/* VRF list existance check by name. */
d62a17ae 82struct vrf *vrf_lookup_by_name(const char *name)
216b18ef 83{
d62a17ae 84 struct vrf vrf;
85 strlcpy(vrf.name, name, sizeof(vrf.name));
86 return (RB_FIND(vrf_name_head, &vrfs_by_name, &vrf));
216b18ef 87}
216b18ef 88
d62a17ae 89static __inline int vrf_id_compare(const struct vrf *a, const struct vrf *b)
b72ede27 90{
d62a17ae 91 return (a->vrf_id - b->vrf_id);
216b18ef
DS
92}
93
d62a17ae 94static int vrf_name_compare(const struct vrf *a, const struct vrf *b)
b72ede27 95{
d62a17ae 96 return strcmp(a->name, b->name);
b72ede27
FL
97}
98
e26aedbe
PG
99/* if ns_id is different and not VRF_UNKNOWN,
100 * then update vrf identifier, and enable VRF
101 */
102static void vrf_update_vrf_id(ns_id_t ns_id, void *opaqueptr)
103{
104 ns_id_t vrf_id = (vrf_id_t)ns_id;
105 vrf_id_t old_vrf_id;
106 struct vrf *vrf = (struct vrf *)opaqueptr;
107
108 if (!vrf)
109 return;
110 old_vrf_id = vrf->vrf_id;
111 if (vrf_id == vrf->vrf_id)
112 return;
113 if (vrf->vrf_id != VRF_UNKNOWN)
114 RB_REMOVE(vrf_id_head, &vrfs_by_id, vrf);
115 vrf->vrf_id = vrf_id;
116 RB_INSERT(vrf_id_head, &vrfs_by_id, vrf);
117 if (old_vrf_id == VRF_UNKNOWN)
118 vrf_enable((struct vrf *)vrf);
119}
120
ce1be369
PG
121int vrf_switch_to_netns(vrf_id_t vrf_id)
122{
123 char *name;
124 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
125
ce1be369 126 /* VRF is default VRF. silently ignore */
e26aedbe 127 if (!vrf || vrf->vrf_id == VRF_DEFAULT)
9dff1132 128 return 1; /* 1 = default */
e26aedbe
PG
129 /* VRF has no NETNS backend. silently ignore */
130 if (vrf->data.l.netns_name[0] == '\0')
9dff1132 131 return 2; /* 2 = no netns */
ce1be369
PG
132 name = ns_netns_pathname(NULL, vrf->data.l.netns_name);
133 if (debug_vrf)
134 zlog_debug("VRF_SWITCH: %s(%u)", name, vrf->vrf_id);
135 return ns_switch_to_netns(name);
136}
137
138int vrf_switchback_to_initial(void)
139{
140 int ret = ns_switchback_to_initial();
141
142 if (ret == 0 && debug_vrf)
143 zlog_debug("VRF_SWITCHBACK");
144 return ret;
145}
146
216b18ef 147/* Get a VRF. If not found, create one.
34f8e6af
DS
148 * Arg:
149 * name - The name of the vrf. May be NULL if unknown.
150 * vrf_id - The vrf_id of the vrf. May be VRF_UNKNOWN if unknown
216b18ef 151 * Description: Please note that this routine can be called with just the name
34f8e6af
DS
152 * and 0 vrf-id
153 */
d62a17ae 154struct vrf *vrf_get(vrf_id_t vrf_id, const char *name)
155{
156 struct vrf *vrf = NULL;
157 int new = 0;
158
159 if (debug_vrf)
996c9314
LB
160 zlog_debug("VRF_GET: %s(%u)", name == NULL ? "(NULL)" : name,
161 vrf_id);
d62a17ae 162
163 /* Nothing to see, move along here */
164 if (!name && vrf_id == VRF_UNKNOWN)
165 return NULL;
166
0c2bac38
PG
167 /* attempt to find already available VRF
168 */
169 if (name)
170 vrf = vrf_lookup_by_name(name);
dd114702
PG
171 if (vrf && vrf_id != VRF_UNKNOWN
172 && vrf->vrf_id != VRF_UNKNOWN
173 && vrf->vrf_id != vrf_id) {
174 zlog_debug("VRF_GET: avoid %s creation(%u), same name exists (%u)",
175 name, vrf_id, vrf->vrf_id);
176 return NULL;
177 }
d62a17ae 178 /* Try to find VRF both by ID and name */
0c2bac38 179 if (!vrf && vrf_id != VRF_UNKNOWN)
d62a17ae 180 vrf = vrf_lookup_by_id(vrf_id);
d62a17ae 181
182 if (vrf == NULL) {
183 vrf = XCALLOC(MTYPE_VRF, sizeof(struct vrf));
184 vrf->vrf_id = VRF_UNKNOWN;
d62a17ae 185 QOBJ_REG(vrf, vrf);
186 new = 1;
187
188 if (debug_vrf)
189 zlog_debug("VRF(%u) %s is created.", vrf_id,
190 (name) ? name : "(NULL)");
191 }
192
193 /* Set identifier */
194 if (vrf_id != VRF_UNKNOWN && vrf->vrf_id == VRF_UNKNOWN) {
195 vrf->vrf_id = vrf_id;
196 RB_INSERT(vrf_id_head, &vrfs_by_id, vrf);
197 }
198
199 /* Set name */
200 if (name && vrf->name[0] != '\0' && strcmp(name, vrf->name)) {
201 RB_REMOVE(vrf_name_head, &vrfs_by_name, vrf);
202 strlcpy(vrf->name, name, sizeof(vrf->name));
203 RB_INSERT(vrf_name_head, &vrfs_by_name, vrf);
204 } else if (name && vrf->name[0] == '\0') {
205 strlcpy(vrf->name, name, sizeof(vrf->name));
206 RB_INSERT(vrf_name_head, &vrfs_by_name, vrf);
207 }
d62a17ae 208 if (new &&vrf_master.vrf_new_hook)
209 (*vrf_master.vrf_new_hook)(vrf);
210
211 return vrf;
b72ede27
FL
212}
213
84915b0a 214/* Delete a VRF. This is called when the underlying VRF goes away, a
215 * pre-configured VRF is deleted or when shutting down (vrf_terminate()).
216 */
d62a17ae 217void vrf_delete(struct vrf *vrf)
b72ede27 218{
d62a17ae 219 if (debug_vrf)
220 zlog_debug("VRF %u is to be deleted.", vrf->vrf_id);
b72ede27 221
d62a17ae 222 if (vrf_is_enabled(vrf))
223 vrf_disable(vrf);
e5bf3e1e 224
84915b0a 225 /* If the VRF is user configured, it'll stick around, just remove
226 * the ID mapping. Interfaces assigned to this VRF should've been
227 * removed already as part of the VRF going down.
228 */
229 if (vrf_is_user_cfged(vrf)) {
230 if (vrf->vrf_id != VRF_UNKNOWN) {
231 /* Delete any VRF interfaces - should be only
232 * the VRF itself, other interfaces should've
233 * been moved out of the VRF.
234 */
235 if_terminate(vrf);
236 RB_REMOVE(vrf_id_head, &vrfs_by_id, vrf);
237 vrf->vrf_id = VRF_UNKNOWN;
238 }
239 return;
240 }
241
d62a17ae 242 if (vrf_master.vrf_delete_hook)
243 (*vrf_master.vrf_delete_hook)(vrf);
216b18ef 244
d62a17ae 245 QOBJ_UNREG(vrf);
f4e14fdb 246 if_terminate(vrf);
b72ede27 247
d62a17ae 248 if (vrf->vrf_id != VRF_UNKNOWN)
249 RB_REMOVE(vrf_id_head, &vrfs_by_id, vrf);
250 if (vrf->name[0] != '\0')
251 RB_REMOVE(vrf_name_head, &vrfs_by_name, vrf);
b72ede27 252
d62a17ae 253 XFREE(MTYPE_VRF, vrf);
b72ede27
FL
254}
255
256/* Look up a VRF by identifier. */
d62a17ae 257struct vrf *vrf_lookup_by_id(vrf_id_t vrf_id)
b72ede27 258{
d62a17ae 259 struct vrf vrf;
260 vrf.vrf_id = vrf_id;
261 return (RB_FIND(vrf_id_head, &vrfs_by_id, &vrf));
b72ede27
FL
262}
263
e5bf3e1e
FL
264/*
265 * Enable a VRF - that is, let the VRF be ready to use.
266 * The VRF_ENABLE_HOOK callback will be called to inform
267 * that they can allocate resources in this VRF.
268 *
269 * RETURN: 1 - enabled successfully; otherwise, 0.
270 */
d62a17ae 271int vrf_enable(struct vrf *vrf)
e5bf3e1e 272{
d62a17ae 273 if (vrf_is_enabled(vrf))
274 return 1;
05e8e11e 275
d62a17ae 276 if (debug_vrf)
277 zlog_debug("VRF %u is enabled.", vrf->vrf_id);
e5bf3e1e 278
d62a17ae 279 SET_FLAG(vrf->status, VRF_ACTIVE);
e5bf3e1e 280
d62a17ae 281 if (vrf_master.vrf_enable_hook)
282 (*vrf_master.vrf_enable_hook)(vrf);
e5bf3e1e 283
98cbbaea
DS
284 /*
285 * If we have any nexthop group entries that
286 * are awaiting vrf initialization then
287 * let's let people know about it
288 */
289 nexthop_group_enable_vrf(vrf);
290
d62a17ae 291 return 1;
e5bf3e1e
FL
292}
293
294/*
295 * Disable a VRF - that is, let the VRF be unusable.
296 * The VRF_DELETE_HOOK callback will be called to inform
297 * that they must release the resources in the VRF.
298 */
697d3ec7 299void vrf_disable(struct vrf *vrf)
e5bf3e1e 300{
d62a17ae 301 if (!vrf_is_enabled(vrf))
302 return;
a647bfa8 303
d62a17ae 304 UNSET_FLAG(vrf->status, VRF_ACTIVE);
e5bf3e1e 305
d62a17ae 306 if (debug_vrf)
307 zlog_debug("VRF %u is to be disabled.", vrf->vrf_id);
e5bf3e1e 308
d62a17ae 309 /* Till now, nothing to be done for the default VRF. */
310 // Pending: see why this statement.
e74f14fc 311
d62a17ae 312 if (vrf_master.vrf_disable_hook)
313 (*vrf_master.vrf_disable_hook)(vrf);
e5bf3e1e
FL
314}
315
b7cfce93
MK
316const char *vrf_id_to_name(vrf_id_t vrf_id)
317{
318 struct vrf *vrf;
319
320 vrf = vrf_lookup_by_id(vrf_id);
321 if (vrf)
322 return vrf->name;
323
181c08c6 324 return "n/a";
b7cfce93
MK
325}
326
d62a17ae 327vrf_id_t vrf_name_to_id(const char *name)
216b18ef 328{
d62a17ae 329 struct vrf *vrf;
330 vrf_id_t vrf_id = VRF_DEFAULT; // Pending: need a way to return invalid
331 // id/ routine not used.
216b18ef 332
d62a17ae 333 vrf = vrf_lookup_by_name(name);
334 if (vrf)
335 vrf_id = vrf->vrf_id;
216b18ef 336
d62a17ae 337 return vrf_id;
216b18ef
DS
338}
339
b72ede27 340/* Get the data pointer of the specified VRF. If not found, create one. */
d62a17ae 341void *vrf_info_get(vrf_id_t vrf_id)
b72ede27 342{
d62a17ae 343 struct vrf *vrf = vrf_get(vrf_id, NULL);
344 return vrf->info;
b72ede27
FL
345}
346
347/* Look up the data pointer of the specified VRF. */
d62a17ae 348void *vrf_info_lookup(vrf_id_t vrf_id)
b72ede27 349{
d62a17ae 350 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
351 return vrf ? vrf->info : NULL;
b72ede27
FL
352}
353
7076bb2f 354/*
4a8bf858 355 * VRF hash for storing set or not.
7076bb2f 356 */
4a8bf858
DS
357struct vrf_bit_set {
358 vrf_id_t vrf_id;
359 bool set;
360};
7076bb2f 361
4a8bf858
DS
362static unsigned int vrf_hash_bitmap_key(void *data)
363{
364 struct vrf_bit_set *bit = data;
d62a17ae 365
4a8bf858
DS
366 return bit->vrf_id;
367}
d62a17ae 368
4a8bf858
DS
369static int vrf_hash_bitmap_cmp(const void *a, const void *b)
370{
371 const struct vrf_bit_set *bit1 = a;
372 const struct vrf_bit_set *bit2 = b;
d62a17ae 373
4a8bf858
DS
374 return bit1->vrf_id == bit2->vrf_id;
375}
376
377static void *vrf_hash_bitmap_alloc(void *data)
378{
379 struct vrf_bit_set *copy = data;
380 struct vrf_bit_set *bit;
381
382 bit = XMALLOC(MTYPE_VRF_BITMAP, sizeof(*bit));
383 bit->vrf_id = copy->vrf_id;
384
385 return bit;
386}
387
388static void vrf_hash_bitmap_free(void *data)
389{
390 struct vrf_bit_set *bit = data;
391
392 XFREE(MTYPE_VRF_BITMAP, bit);
393}
7076bb2f 394
d62a17ae 395vrf_bitmap_t vrf_bitmap_init(void)
7076bb2f 396{
4a8bf858
DS
397 return hash_create_size(32, vrf_hash_bitmap_key, vrf_hash_bitmap_cmp,
398 "VRF BIT HASH");
7076bb2f
FL
399}
400
d62a17ae 401void vrf_bitmap_free(vrf_bitmap_t bmap)
7076bb2f 402{
4a8bf858 403 struct hash *vrf_hash = bmap;
7076bb2f 404
4a8bf858 405 if (vrf_hash == NULL)
d62a17ae 406 return;
7076bb2f 407
4a8bf858
DS
408 hash_clean(vrf_hash, vrf_hash_bitmap_free);
409 hash_free(vrf_hash);
7076bb2f
FL
410}
411
d62a17ae 412void vrf_bitmap_set(vrf_bitmap_t bmap, vrf_id_t vrf_id)
7076bb2f 413{
4a8bf858
DS
414 struct vrf_bit_set lookup = { .vrf_id = vrf_id };
415 struct hash *vrf_hash = bmap;
416 struct vrf_bit_set *bit;
7076bb2f 417
4a8bf858 418 if (vrf_hash == NULL || vrf_id == VRF_UNKNOWN)
d62a17ae 419 return;
7076bb2f 420
4a8bf858
DS
421 bit = hash_get(vrf_hash, &lookup, vrf_hash_bitmap_alloc);
422 bit->set = true;
7076bb2f
FL
423}
424
d62a17ae 425void vrf_bitmap_unset(vrf_bitmap_t bmap, vrf_id_t vrf_id)
7076bb2f 426{
4a8bf858
DS
427 struct vrf_bit_set lookup = { .vrf_id = vrf_id };
428 struct hash *vrf_hash = bmap;
429 struct vrf_bit_set *bit;
7076bb2f 430
4a8bf858 431 if (vrf_hash == NULL || vrf_id == VRF_UNKNOWN)
d62a17ae 432 return;
7076bb2f 433
4a8bf858
DS
434 bit = hash_get(vrf_hash, &lookup, vrf_hash_bitmap_alloc);
435 bit->set = false;
7076bb2f
FL
436}
437
d62a17ae 438int vrf_bitmap_check(vrf_bitmap_t bmap, vrf_id_t vrf_id)
7076bb2f 439{
4a8bf858
DS
440 struct vrf_bit_set lookup = { .vrf_id = vrf_id };
441 struct hash *vrf_hash = bmap;
442 struct vrf_bit_set *bit;
7076bb2f 443
4a8bf858 444 if (vrf_hash == NULL || vrf_id == VRF_UNKNOWN)
d62a17ae 445 return 0;
7076bb2f 446
4a8bf858
DS
447 bit = hash_lookup(vrf_hash, &lookup);
448 if (bit)
449 return bit->set;
450
451 return 0;
7076bb2f
FL
452}
453
d62a17ae 454static void vrf_autocomplete(vector comps, struct cmd_token *token)
d617d5fe 455{
d62a17ae 456 struct vrf *vrf = NULL;
d617d5fe 457
723001fc
PG
458 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name)
459 vector_set(comps, XSTRDUP(MTYPE_COMPLETION, vrf->name));
d617d5fe
DS
460}
461
462static const struct cmd_variable_handler vrf_var_handlers[] = {
d62a17ae 463 {
464 .varname = "vrf",
465 .completions = vrf_autocomplete,
466 },
467 {.completions = NULL},
d617d5fe
DS
468};
469
b72ede27 470/* Initialize VRF module. */
d62a17ae 471void vrf_init(int (*create)(struct vrf *), int (*enable)(struct vrf *),
ecbc5a37
PG
472 int (*disable)(struct vrf *), int (*delete)(struct vrf *),
473 int ((*update)(struct vrf *)))
d62a17ae 474{
475 struct vrf *default_vrf;
476
e26aedbe
PG
477 /* initialise NS, in case VRF backend if NETNS */
478 ns_init();
d62a17ae 479 if (debug_vrf)
480 zlog_debug("%s: Initializing VRF subsystem",
481 __PRETTY_FUNCTION__);
482
483 vrf_master.vrf_new_hook = create;
484 vrf_master.vrf_enable_hook = enable;
485 vrf_master.vrf_disable_hook = disable;
486 vrf_master.vrf_delete_hook = delete;
ecbc5a37 487 vrf_master.vrf_update_name_hook = update;
d62a17ae 488
489 /* The default VRF always exists. */
eb6934d5 490 default_vrf = vrf_get(VRF_DEFAULT, VRF_DEFAULT_NAME);
d62a17ae 491 if (!default_vrf) {
af4c2728 492 flog_err(LIB_ERR_VRF_START,
b66d022e 493 "vrf_init: failed to create the default VRF!");
d62a17ae 494 exit(1);
495 }
fdafe17e
PG
496 if (vrf_is_backend_netns())
497 strlcpy(default_vrf->data.l.netns_name,
eb6934d5 498 VRF_DEFAULT_NAME, NS_NAMSIZ);
d62a17ae 499
500 /* Enable the default VRF. */
501 if (!vrf_enable(default_vrf)) {
af4c2728 502 flog_err(LIB_ERR_VRF_START,
b66d022e 503 "vrf_init: failed to enable the default VRF!");
d62a17ae 504 exit(1);
505 }
506
507 cmd_variable_handler_register(vrf_var_handlers);
b72ede27
FL
508}
509
510/* Terminate VRF module. */
d62a17ae 511void vrf_terminate(void)
b72ede27 512{
d62a17ae 513 struct vrf *vrf;
b72ede27 514
d62a17ae 515 if (debug_vrf)
516 zlog_debug("%s: Shutting down vrf subsystem",
517 __PRETTY_FUNCTION__);
19dc275e 518
55cd0f61
DS
519 while (!RB_EMPTY(vrf_id_head, &vrfs_by_id)) {
520 vrf = RB_ROOT(vrf_id_head, &vrfs_by_id);
521
65c3a7c4 522 /* Clear configured flag and invoke delete. */
523 UNSET_FLAG(vrf->status, VRF_CONFIGURED);
d62a17ae 524 vrf_delete(vrf);
65c3a7c4 525 }
55cd0f61
DS
526
527 while (!RB_EMPTY(vrf_name_head, &vrfs_by_name)) {
528 vrf = RB_ROOT(vrf_name_head, &vrfs_by_name);
529
65c3a7c4 530 /* Clear configured flag and invoke delete. */
531 UNSET_FLAG(vrf->status, VRF_CONFIGURED);
d62a17ae 532 vrf_delete(vrf);
65c3a7c4 533 }
b72ede27
FL
534}
535
9dff1132
LB
536static int vrf_default_accepts_vrf(int type)
537{
538 const char *fname = NULL;
539 char buf[32] = {0x0};
540 int ret = 0;
541 FILE *fd = NULL;
542
543 /*
544 * TCP & UDP services running in the default VRF context (ie., not bound
545 * to any VRF device) can work across all VRF domains by enabling the
546 * tcp_l3mdev_accept and udp_l3mdev_accept sysctl options:
547 * sysctl -w net.ipv4.tcp_l3mdev_accept=1
548 * sysctl -w net.ipv4.udp_l3mdev_accept=1
549 */
550 if (type == SOCK_STREAM)
551 fname = "/proc/sys/net/ipv4/tcp_l3mdev_accept";
552 else if (type == SOCK_DGRAM)
553 fname = "/proc/sys/net/ipv4/udp_l3mdev_accept";
554 else
555 return ret;
556 fd = fopen(fname, "r");
557 if (fd == NULL)
558 return ret;
559 fgets(buf, 32, fd);
560 ret = atoi(buf);
561 fclose(fd);
562 return ret;
563}
564
e5bf3e1e 565/* Create a socket for the VRF. */
0f4977c6
PG
566int vrf_socket(int domain, int type, int protocol, vrf_id_t vrf_id,
567 char *interfacename)
e5bf3e1e 568{
2e0d2b3d 569 int ret, save_errno, ret2;
e5bf3e1e 570
2e0d2b3d
PG
571 ret = vrf_switch_to_netns(vrf_id);
572 if (ret < 0)
09c866e3
QY
573 flog_err_sys(LIB_ERR_SOCKET, "%s: Can't switch to VRF %u (%s)",
574 __func__, vrf_id, safe_strerror(errno));
b66d022e 575
9dff1132
LB
576 if (ret > 0 && interfacename && vrf_default_accepts_vrf(type)) {
577 zlog_err("VRF socket not used since net.ipv4.%s_l3mdev_accept != 0",
578 (type == SOCK_STREAM ? "tcp" : "udp"));
579 errno = EEXIST; /* not sure if this is the best error... */
580 return -2;
581 }
b66d022e 582
d62a17ae 583 ret = socket(domain, type, protocol);
2e0d2b3d
PG
584 save_errno = errno;
585 ret2 = vrf_switchback_to_initial();
586 if (ret2 < 0)
09c866e3
QY
587 flog_err_sys(LIB_ERR_SOCKET,
588 "%s: Can't switchback from VRF %u (%s)", __func__,
589 vrf_id, safe_strerror(errno));
2e0d2b3d 590 errno = save_errno;
0f4977c6
PG
591 if (ret <= 0)
592 return ret;
593 ret2 = vrf_bind(vrf_id, ret, interfacename);
594 if (ret2 < 0) {
595 close(ret);
596 ret = ret2;
597 }
d62a17ae 598 return ret;
e5bf3e1e
FL
599}
600
78dd30b2
PG
601int vrf_is_backend_netns(void)
602{
603 return (vrf_backend == VRF_BACKEND_NETNS);
604}
605
606int vrf_get_backend(void)
607{
608 return vrf_backend;
609}
610
611void vrf_configure_backend(int vrf_backend_netns)
612{
613 vrf_backend = vrf_backend_netns;
614}
615
03aff2d8
PG
616int vrf_handler_create(struct vty *vty, const char *vrfname,
617 struct vrf **vrf)
f30c50b9 618{
d62a17ae 619 struct vrf *vrfp;
f30c50b9 620
d62a17ae 621 if (strlen(vrfname) > VRF_NAMSIZ) {
697d3ec7
PG
622 if (vty)
623 vty_out(vty,
996c9314
LB
624 "%% VRF name %s invalid: length exceeds %d bytes\n",
625 vrfname, VRF_NAMSIZ);
697d3ec7 626 else
0351a28f
DS
627 flog_warn(
628 LIB_WARN_VRF_LENGTH,
996c9314
LB
629 "%% VRF name %s invalid: length exceeds %d bytes\n",
630 vrfname, VRF_NAMSIZ);
d62a17ae 631 return CMD_WARNING_CONFIG_FAILED;
632 }
f30c50b9 633
d62a17ae 634 vrfp = vrf_get(VRF_UNKNOWN, vrfname);
f30c50b9 635
697d3ec7
PG
636 if (vty)
637 VTY_PUSH_CONTEXT(VRF_NODE, vrfp);
f30c50b9 638
697d3ec7
PG
639 if (vrf)
640 *vrf = vrfp;
d62a17ae 641 return CMD_SUCCESS;
f30c50b9
RW
642}
643
996c9314 644int vrf_netns_handler_create(struct vty *vty, struct vrf *vrf, char *pathname,
03aff2d8 645 ns_id_t ns_id, ns_id_t internal_ns_id)
e26aedbe
PG
646{
647 struct ns *ns = NULL;
648
649 if (!vrf)
650 return CMD_WARNING_CONFIG_FAILED;
651 if (vrf->vrf_id != VRF_UNKNOWN && vrf->ns_ctxt == NULL) {
652 if (vty)
653 vty_out(vty,
654 "VRF %u is already configured with VRF %s\n",
655 vrf->vrf_id, vrf->name);
656 else
0351a28f 657 zlog_info("VRF %u is already configured with VRF %s\n",
e26aedbe
PG
658 vrf->vrf_id, vrf->name);
659 return CMD_WARNING_CONFIG_FAILED;
660 }
661 if (vrf->ns_ctxt != NULL) {
996c9314 662 ns = (struct ns *)vrf->ns_ctxt;
2e1cc436 663 if (!strcmp(ns->name, pathname)) {
e26aedbe
PG
664 if (vty)
665 vty_out(vty,
996c9314
LB
666 "VRF %u already configured with NETNS %s\n",
667 vrf->vrf_id, ns->name);
e26aedbe 668 else
0351a28f
DS
669 zlog_info(
670 "VRF %u already configured with NETNS %s",
671 vrf->vrf_id, ns->name);
e26aedbe
PG
672 return CMD_WARNING_CONFIG_FAILED;
673 }
674 }
675 ns = ns_lookup_name(pathname);
676 if (ns && ns->vrf_ctxt) {
677 struct vrf *vrf2 = (struct vrf *)ns->vrf_ctxt;
678
679 if (vrf2 == vrf)
680 return CMD_SUCCESS;
681 if (vty)
996c9314
LB
682 vty_out(vty,
683 "NS %s is already configured"
e26aedbe 684 " with VRF %u(%s)\n",
996c9314 685 ns->name, vrf2->vrf_id, vrf2->name);
e26aedbe 686 else
0351a28f 687 zlog_info("NS %s is already configured with VRF %u(%s)",
e26aedbe
PG
688 ns->name, vrf2->vrf_id, vrf2->name);
689 return CMD_WARNING_CONFIG_FAILED;
690 }
691 ns = ns_get_created(ns, pathname, ns_id);
03aff2d8 692 ns->internal_ns_id = internal_ns_id;
e26aedbe
PG
693 ns->vrf_ctxt = (void *)vrf;
694 vrf->ns_ctxt = (void *)ns;
695 /* update VRF netns NAME */
2e1cc436 696 strlcpy(vrf->data.l.netns_name, basename(pathname), NS_NAMSIZ);
e26aedbe
PG
697
698 if (!ns_enable(ns, vrf_update_vrf_id)) {
699 if (vty)
700 vty_out(vty, "Can not associate NS %u with NETNS %s\n",
996c9314 701 ns->ns_id, ns->name);
e26aedbe 702 else
0351a28f 703 zlog_info("Can not associate NS %u with NETNS %s",
e26aedbe
PG
704 ns->ns_id, ns->name);
705 return CMD_WARNING_CONFIG_FAILED;
706 }
707
708 return CMD_SUCCESS;
709}
710
3d4c0b49 711int vrf_is_mapped_on_netns(struct vrf *vrf)
ce1be369 712{
ce1be369
PG
713 if (!vrf || vrf->data.l.netns_name[0] == '\0')
714 return 0;
715 if (vrf->vrf_id == VRF_DEFAULT)
716 return 0;
717 return 1;
718}
719
697d3ec7 720/* vrf CLI commands */
16d6ea59
QY
721DEFUN_NOSH(vrf_exit,
722 vrf_exit_cmd,
723 "exit-vrf",
724 "Exit current mode and down to previous mode\n")
725{
726 /* We have to set vrf context to default vrf */
727 VTY_PUSH_CONTEXT(VRF_NODE, vrf_get(VRF_DEFAULT, VRF_DEFAULT_NAME));
728 vty->node = CONFIG_NODE;
729 return CMD_SUCCESS;
730}
731
697d3ec7
PG
732DEFUN_NOSH (vrf,
733 vrf_cmd,
734 "vrf NAME",
735 "Select a VRF to configure\n"
736 "VRF's name\n")
737{
738 int idx_name = 1;
739 const char *vrfname = argv[idx_name]->arg;
740
741 return vrf_handler_create(vty, vrfname, NULL);
742}
743
34c46274
RW
744DEFUN (no_vrf,
745 no_vrf_cmd,
746 "no vrf NAME",
747 NO_STR
748 "Delete a pseudo VRF's configuration\n"
749 "VRF's name\n")
f30c50b9 750{
d62a17ae 751 const char *vrfname = argv[2]->arg;
53dc2b05 752
d62a17ae 753 struct vrf *vrfp;
f30c50b9 754
d62a17ae 755 vrfp = vrf_lookup_by_name(vrfname);
f30c50b9 756
d62a17ae 757 if (vrfp == NULL) {
758 vty_out(vty, "%% VRF %s does not exist\n", vrfname);
759 return CMD_WARNING_CONFIG_FAILED;
760 }
f30c50b9 761
d62a17ae 762 if (CHECK_FLAG(vrfp->status, VRF_ACTIVE)) {
763 vty_out(vty, "%% Only inactive VRFs can be deleted\n");
764 return CMD_WARNING_CONFIG_FAILED;
765 }
f30c50b9 766
84915b0a 767 /* Clear configured flag and invoke delete. */
768 UNSET_FLAG(vrfp->status, VRF_CONFIGURED);
d62a17ae 769 vrf_delete(vrfp);
f30c50b9 770
d62a17ae 771 return CMD_SUCCESS;
f30c50b9
RW
772}
773
53dc2b05 774
d62a17ae 775struct cmd_node vrf_node = {VRF_NODE, "%s(config-vrf)# ", 1};
7ddcfca4 776
34c46274 777DEFUN_NOSH (vrf_netns,
4a541e8c
PG
778 vrf_netns_cmd,
779 "netns NAME",
780 "Attach VRF to a Namespace\n"
781 "The file name in " NS_RUN_DIR ", or a full pathname\n")
e26aedbe 782{
3bc34908 783 int idx_name = 1, ret;
e26aedbe
PG
784 char *pathname = ns_netns_pathname(vty, argv[idx_name]->arg);
785
786 VTY_DECLVAR_CONTEXT(vrf, vrf);
787
788 if (!pathname)
789 return CMD_WARNING_CONFIG_FAILED;
3bc34908 790
6bb30c2c
DL
791 frr_elevate_privs(vrf_daemon_privs) {
792 ret = vrf_netns_handler_create(vty, vrf, pathname,
793 NS_UNKNOWN, NS_UNKNOWN);
794 }
3bc34908 795 return ret;
e26aedbe
PG
796}
797
34c46274 798DEFUN_NOSH (no_vrf_netns,
e26aedbe
PG
799 no_vrf_netns_cmd,
800 "no netns [NAME]",
801 NO_STR
802 "Detach VRF from a Namespace\n"
803 "The file name in " NS_RUN_DIR ", or a full pathname\n")
804{
805 struct ns *ns = NULL;
806
807 VTY_DECLVAR_CONTEXT(vrf, vrf);
808
809 if (!vrf_is_backend_netns()) {
810 vty_out(vty, "VRF backend is not Netns. Aborting\n");
811 return CMD_WARNING_CONFIG_FAILED;
812 }
813 if (!vrf->ns_ctxt) {
814 vty_out(vty, "VRF %s(%u) is not configured with NetNS\n",
815 vrf->name, vrf->vrf_id);
816 return CMD_WARNING_CONFIG_FAILED;
817 }
818
819 ns = (struct ns *)vrf->ns_ctxt;
820
821 ns->vrf_ctxt = NULL;
822 vrf_disable(vrf);
823 /* vrf ID from VRF is necessary for Zebra
824 * so that propagate to other clients is done
825 */
826 ns_delete(ns);
827 vrf->ns_ctxt = NULL;
828 return CMD_SUCCESS;
829}
830
19dc275e
DS
831/*
832 * Debug CLI for vrf's
833 */
834DEFUN (vrf_debug,
835 vrf_debug_cmd,
836 "debug vrf",
837 DEBUG_STR
838 "VRF Debugging\n")
839{
d62a17ae 840 debug_vrf = 1;
19dc275e 841
d62a17ae 842 return CMD_SUCCESS;
19dc275e
DS
843}
844
845DEFUN (no_vrf_debug,
846 no_vrf_debug_cmd,
847 "no debug vrf",
848 NO_STR
849 DEBUG_STR
850 "VRF Debugging\n")
851{
d62a17ae 852 debug_vrf = 0;
19dc275e 853
d62a17ae 854 return CMD_SUCCESS;
19dc275e
DS
855}
856
d62a17ae 857static int vrf_write_host(struct vty *vty)
19dc275e 858{
d62a17ae 859 if (debug_vrf)
860 vty_out(vty, "debug vrf\n");
19dc275e 861
d62a17ae 862 return 1;
19dc275e
DS
863}
864
d62a17ae 865static struct cmd_node vrf_debug_node = {VRF_DEBUG_NODE, "", 1};
19dc275e 866
d62a17ae 867void vrf_install_commands(void)
19dc275e 868{
d62a17ae 869 install_node(&vrf_debug_node, vrf_write_host);
19dc275e 870
d62a17ae 871 install_element(CONFIG_NODE, &vrf_debug_cmd);
872 install_element(ENABLE_NODE, &vrf_debug_cmd);
873 install_element(CONFIG_NODE, &no_vrf_debug_cmd);
874 install_element(ENABLE_NODE, &no_vrf_debug_cmd);
19dc275e 875}
53dc2b05 876
3bc34908
PG
877void vrf_cmd_init(int (*writefunc)(struct vty *vty),
878 struct zebra_privs_t *daemon_privs)
7ddcfca4 879{
d62a17ae 880 install_element(CONFIG_NODE, &vrf_cmd);
881 install_element(CONFIG_NODE, &no_vrf_cmd);
882 install_node(&vrf_node, writefunc);
883 install_default(VRF_NODE);
16d6ea59 884 install_element(VRF_NODE, &vrf_exit_cmd);
e26aedbe
PG
885 if (vrf_is_backend_netns() && ns_have_netns()) {
886 /* Install NS commands. */
3bc34908 887 vrf_daemon_privs = daemon_privs;
e26aedbe
PG
888 install_element(VRF_NODE, &vrf_netns_cmd);
889 install_element(VRF_NODE, &no_vrf_netns_cmd);
890 }
19dc275e 891}
ec31f30d 892
c200f5e1 893void vrf_set_default_name(const char *default_name)
ec31f30d 894{
c200f5e1 895 struct vrf *def_vrf;
dd114702 896 struct vrf *vrf_with_default_name = NULL;
ec31f30d 897
c200f5e1
PG
898 def_vrf = vrf_lookup_by_id(VRF_DEFAULT);
899 assert(default_name);
900 vrf_with_default_name = vrf_lookup_by_name(default_name);
901 if (vrf_with_default_name && vrf_with_default_name != def_vrf) {
902 /* vrf name already used by an other VRF */
903 zlog_debug("VRF: %s, avoid changing name to %s, same name exists (%u)",
904 vrf_with_default_name->name, default_name,
905 vrf_with_default_name->vrf_id);
906 return;
907 }
908 snprintf(vrf_default_name, VRF_NAMSIZ, "%s", default_name);
909 if (def_vrf) {
910 RB_REMOVE(vrf_name_head, &vrfs_by_name, def_vrf);
911 strlcpy(def_vrf->data.l.netns_name,
912 vrf_default_name, NS_NAMSIZ);
913 strlcpy(def_vrf->name, vrf_default_name, sizeof(def_vrf->name));
914 RB_INSERT(vrf_name_head, &vrfs_by_name, def_vrf);
ecbc5a37
PG
915 if (vrf_master.vrf_update_name_hook)
916 (*vrf_master.vrf_update_name_hook)(def_vrf);
c200f5e1
PG
917 }
918}
919
920const char *vrf_get_default_name(void)
921{
922 return vrf_default_name;
923}
924
925vrf_id_t vrf_get_default_id(void)
926{
03aff2d8
PG
927 /* backend netns is only known by zebra
928 * for other daemons, we return VRF_DEFAULT_INTERNAL
929 */
ec31f30d
PG
930 if (vrf_is_backend_netns())
931 return ns_get_default_id();
932 else
933 return VRF_DEFAULT_INTERNAL;
934}
2e0d2b3d 935
0f4977c6
PG
936int vrf_bind(vrf_id_t vrf_id, int fd, char *name)
937{
938 int ret = 0;
939
940 if (fd < 0 || name == NULL)
941 return fd;
3d4c0b49 942 if (vrf_is_mapped_on_netns(vrf_lookup_by_id(vrf_id)))
0f4977c6
PG
943 return fd;
944#ifdef SO_BINDTODEVICE
c9c70dd1 945 ret = setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, name, strlen(name)+1);
0f4977c6 946 if (ret < 0)
996c9314
LB
947 zlog_debug("bind to interface %s failed, errno=%d", name,
948 errno);
0f4977c6
PG
949#endif /* SO_BINDTODEVICE */
950 return ret;
951}
2e0d2b3d 952int vrf_getaddrinfo(const char *node, const char *service,
996c9314
LB
953 const struct addrinfo *hints, struct addrinfo **res,
954 vrf_id_t vrf_id)
2e0d2b3d
PG
955{
956 int ret, ret2, save_errno;
957
958 ret = vrf_switch_to_netns(vrf_id);
959 if (ret < 0)
09c866e3
QY
960 flog_err_sys(LIB_ERR_SOCKET, "%s: Can't switch to VRF %u (%s)",
961 __func__, vrf_id, safe_strerror(errno));
2e0d2b3d
PG
962 ret = getaddrinfo(node, service, hints, res);
963 save_errno = errno;
964 ret2 = vrf_switchback_to_initial();
965 if (ret2 < 0)
09c866e3
QY
966 flog_err_sys(LIB_ERR_SOCKET,
967 "%s: Can't switchback from VRF %u (%s)", __func__,
968 vrf_id, safe_strerror(errno));
2e0d2b3d
PG
969 errno = save_errno;
970 return ret;
971}
972
516d7591
PG
973int vrf_ioctl(vrf_id_t vrf_id, int d, unsigned long request, char *params)
974{
975 int ret, saved_errno, rc;
976
977 ret = vrf_switch_to_netns(vrf_id);
978 if (ret < 0) {
09c866e3
QY
979 flog_err_sys(LIB_ERR_SOCKET, "%s: Can't switch to VRF %u (%s)",
980 __func__, vrf_id, safe_strerror(errno));
516d7591
PG
981 return 0;
982 }
983 rc = ioctl(d, request, params);
984 saved_errno = errno;
985 ret = vrf_switchback_to_initial();
986 if (ret < 0)
09c866e3
QY
987 flog_err_sys(LIB_ERR_SOCKET,
988 "%s: Can't switchback from VRF %u (%s)", __func__,
989 vrf_id, safe_strerror(errno));
516d7591
PG
990 errno = saved_errno;
991 return rc;
992}
993
0f4977c6
PG
994int vrf_sockunion_socket(const union sockunion *su, vrf_id_t vrf_id,
995 char *interfacename)
2e0d2b3d
PG
996{
997 int ret, save_errno, ret2;
998
999 ret = vrf_switch_to_netns(vrf_id);
1000 if (ret < 0)
09c866e3
QY
1001 flog_err_sys(LIB_ERR_SOCKET, "%s: Can't switch to VRF %u (%s)",
1002 __func__, vrf_id, safe_strerror(errno));
2e0d2b3d
PG
1003 ret = sockunion_socket(su);
1004 save_errno = errno;
1005 ret2 = vrf_switchback_to_initial();
1006 if (ret2 < 0)
09c866e3
QY
1007 flog_err_sys(LIB_ERR_SOCKET,
1008 "%s: Can't switchback from VRF %u (%s)", __func__,
1009 vrf_id, safe_strerror(errno));
2e0d2b3d 1010 errno = save_errno;
0f4977c6
PG
1011
1012 if (ret <= 0)
1013 return ret;
1014 ret2 = vrf_bind(vrf_id, ret, interfacename);
1015 if (ret2 < 0) {
1016 close(ret);
1017 ret = ret2;
1018 }
2e0d2b3d
PG
1019 return ret;
1020}