2 * This is an implementation of Segment Routing
3 * as per draft draft-ietf-ospf-segment-routing-extensions-24
5 * Module name: Segment Routing
7 * Author: Olivier Dugeon <olivier.dugeon@orange.com>
8 * Author: Anselme Sawadogo <anselmesawadogo@gmail.com>
10 * Copyright (C) 2016 - 2018 Orange Labs http://www.orange.com
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
17 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
22 * You should have received a copy of the GNU General Public License along
23 * with this program; see the file COPYING; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
41 #include "libospf.h" /* for ospf interface types */
48 #include "sockunion.h" /* for inet_aton() */
55 #include "ospf_errors.h"
57 #include "ospfd/ospfd.h"
58 #include "ospfd/ospf_interface.h"
59 #include "ospfd/ospf_ism.h"
60 #include "ospfd/ospf_asbr.h"
61 #include "ospfd/ospf_lsa.h"
62 #include "ospfd/ospf_lsdb.h"
63 #include "ospfd/ospf_neighbor.h"
64 #include "ospfd/ospf_nsm.h"
65 #include "ospfd/ospf_flood.h"
66 #include "ospfd/ospf_packet.h"
67 #include "ospfd/ospf_spf.h"
68 #include "ospfd/ospf_dump.h"
69 #include "ospfd/ospf_route.h"
70 #include "ospfd/ospf_ase.h"
71 #include "ospfd/ospf_sr.h"
72 #include "ospfd/ospf_ri.h"
73 #include "ospfd/ospf_ext.h"
74 #include "ospfd/ospf_zebra.h"
77 * Global variable to manage Segment Routing on this node.
78 * Note that all parameter values are stored in network byte order.
80 static struct ospf_sr_db OspfSR
;
81 static void ospf_sr_register_vty(void);
82 static inline void del_sid_nhlfe(struct sr_nhlfe nhlfe
);
85 * Segment Routing Data Base functions
88 /* Hash function for Segment Routing entry */
89 static unsigned int sr_hash(const void *p
)
91 const struct in_addr
*rid
= p
;
93 return jhash_1word(rid
->s_addr
, 0);
96 /* Compare 2 Router ID hash entries based on SR Node */
97 static bool sr_cmp(const void *p1
, const void *p2
)
99 const struct sr_node
*srn
= p1
;
100 const struct in_addr
*rid
= p2
;
102 return IPV4_ADDR_SAME(&srn
->adv_router
, rid
);
105 /* Functions to remove an SR Link */
106 static void del_sr_link(void *val
)
108 struct sr_link
*srl
= (struct sr_link
*)val
;
110 del_sid_nhlfe(srl
->nhlfe
[0]);
111 del_sid_nhlfe(srl
->nhlfe
[1]);
112 XFREE(MTYPE_OSPF_SR_PARAMS
, val
);
115 /* Functions to remove an SR Prefix */
116 static void del_sr_pref(void *val
)
118 struct sr_prefix
*srp
= (struct sr_prefix
*)val
;
120 del_sid_nhlfe(srp
->nhlfe
);
121 XFREE(MTYPE_OSPF_SR_PARAMS
, val
);
124 /* Allocate new Segment Routine node */
125 static struct sr_node
*sr_node_new(struct in_addr
*rid
)
133 /* Allocate Segment Routing node memory */
134 new = XCALLOC(MTYPE_OSPF_SR_PARAMS
, sizeof(struct sr_node
));
136 /* Default Algorithm, SRGB and MSD */
137 for (int i
= 0; i
< ALGORITHM_COUNT
; i
++)
138 new->algo
[i
] = SR_ALGORITHM_UNSET
;
140 new->srgb
.range_size
= 0;
141 new->srgb
.lower_bound
= 0;
144 /* Create Link, Prefix and Range TLVs list */
145 new->ext_link
= list_new();
146 new->ext_prefix
= list_new();
147 new->ext_link
->del
= del_sr_link
;
148 new->ext_prefix
->del
= del_sr_pref
;
150 IPV4_ADDR_COPY(&new->adv_router
, rid
);
151 new->neighbor
= NULL
;
154 if (IS_DEBUG_OSPF_SR
)
155 zlog_debug(" |- Created new SR node for %s",
156 inet_ntoa(new->adv_router
));
160 /* Delete Segment Routing node */
161 static void sr_node_del(struct sr_node
*srn
)
167 /* Clean Extended Link */
168 list_delete(&srn
->ext_link
);
170 /* Clean Prefix List */
171 list_delete(&srn
->ext_prefix
);
173 XFREE(MTYPE_OSPF_SR_PARAMS
, srn
);
176 /* Get SR Node for a given nexthop */
177 static struct sr_node
*get_sr_node_by_nexthop(struct ospf
*ospf
,
178 struct in_addr nexthop
)
180 struct ospf_interface
*oi
= NULL
;
181 struct ospf_neighbor
*nbr
= NULL
;
182 struct listnode
*node
;
183 struct route_node
*rn
;
188 if (OspfSR
.neighbors
== NULL
)
191 if (IS_DEBUG_OSPF_SR
)
192 zlog_debug(" |- Search SR-Node for nexthop %s",
195 /* First, search neighbor Router ID for this nexthop */
197 for (ALL_LIST_ELEMENTS_RO(ospf
->oiflist
, node
, oi
)) {
198 for (rn
= route_top(oi
->nbrs
); rn
; rn
= route_next(rn
)) {
200 if ((nbr
) && (IPV4_ADDR_SAME(&nexthop
, &nbr
->src
))) {
212 if (IS_DEBUG_OSPF_SR
)
213 zlog_debug(" |- Found nexthop Router ID %s",
214 inet_ntoa(nbr
->router_id
));
215 /* Then, search SR Node */
216 srn
= (struct sr_node
*)hash_lookup(OspfSR
.neighbors
, &nbr
->router_id
);
222 * Segment Routing Initialization functions
225 /* Segment Routing starter function */
226 static int ospf_sr_start(struct ospf
*ospf
)
228 struct route_node
*rn
;
229 struct ospf_lsa
*lsa
;
233 if (IS_DEBUG_OSPF_SR
)
234 zlog_debug("SR (%s): Start Segment Routing", __func__
);
236 /* Initialize self SR Node */
237 srn
= hash_get(OspfSR
.neighbors
, (void *)&(ospf
->router_id
),
238 (void *)sr_node_new
);
240 /* Complete & Store self SR Node */
241 srn
->srgb
.range_size
= OspfSR
.srgb
.range_size
;
242 srn
->srgb
.lower_bound
= OspfSR
.srgb
.lower_bound
;
243 srn
->algo
[0] = OspfSR
.algo
[0];
244 srn
->msd
= OspfSR
.msd
;
247 if (IS_DEBUG_OSPF_EVENT
)
248 zlog_debug("SR (%s): Update SR-DB from LSDB", __func__
);
250 /* Start by looking to Router Info & Extended LSA in lsdb */
251 if ((ospf
!= NULL
) && (ospf
->backbone
!= NULL
)) {
252 LSDB_LOOP (OPAQUE_AREA_LSDB(ospf
->backbone
), rn
, lsa
) {
253 if (IS_LSA_MAXAGE(lsa
) || IS_LSA_SELF(lsa
))
256 GET_OPAQUE_TYPE(ntohl(lsa
->data
->id
.s_addr
));
258 case OPAQUE_TYPE_ROUTER_INFORMATION_LSA
:
259 ospf_sr_ri_lsa_update(lsa
);
261 case OPAQUE_TYPE_EXTENDED_PREFIX_LSA
:
262 ospf_sr_ext_prefix_lsa_update(lsa
);
264 case OPAQUE_TYPE_EXTENDED_LINK_LSA
:
265 ospf_sr_ext_link_lsa_update(lsa
);
277 /* Stop Segment Routing */
278 static void ospf_sr_stop(void)
281 if (IS_DEBUG_OSPF_SR
)
282 zlog_debug("SR (%s): Stop Segment Routing", __func__
);
285 * Remove all SR Nodes from the Hash table. Prefix and Link SID will
286 * be remove though list_delete() call. See sr_node_del()
288 hash_clean(OspfSR
.neighbors
, (void *)sr_node_del
);
292 * Segment Routing initialize function
296 * @return 0 if OK, -1 otherwise
298 int ospf_sr_init(void)
302 if (IS_DEBUG_OSPF_SR
)
303 zlog_info("SR (%s): Initialize SR Data Base", __func__
);
305 memset(&OspfSR
, 0, sizeof(struct ospf_sr_db
));
306 OspfSR
.enabled
= false;
307 /* Only AREA flooding is supported in this release */
308 OspfSR
.scope
= OSPF_OPAQUE_AREA_LSA
;
310 /* Initialize SRGB, Algorithms and MSD TLVs */
311 /* Only Algorithm SPF is supported */
312 OspfSR
.algo
[0] = SR_ALGORITHM_SPF
;
313 for (int i
= 1; i
< ALGORITHM_COUNT
; i
++)
314 OspfSR
.algo
[i
] = SR_ALGORITHM_UNSET
;
316 OspfSR
.srgb
.range_size
= MPLS_DEFAULT_MAX_SRGB_SIZE
;
317 OspfSR
.srgb
.lower_bound
= MPLS_DEFAULT_MIN_SRGB_LABEL
;
320 /* Initialize Hash table for neighbor SR nodes */
321 OspfSR
.neighbors
= hash_create(sr_hash
, sr_cmp
, "OSPF_SR");
322 if (OspfSR
.neighbors
== NULL
)
325 /* Initialize Route Table for prefix */
326 OspfSR
.prefix
= route_table_init();
327 if (OspfSR
.prefix
== NULL
)
330 /* Register Segment Routing VTY command */
331 ospf_sr_register_vty();
338 * Segment Routing termination function
343 void ospf_sr_term(void)
346 /* Stop Segment Routing */
349 /* Clear SR Node Table */
350 if (OspfSR
.neighbors
)
351 hash_free(OspfSR
.neighbors
);
353 /* Clear Prefix Table */
355 route_table_finish(OspfSR
.prefix
);
357 OspfSR
.enabled
= false;
362 * Segment Routing finish function
367 void ospf_sr_finish(void)
369 /* Stop Segment Routing */
372 OspfSR
.enabled
= false;
376 * Following functions are used to manipulate the
377 * Next Hop Label Forwarding entry (NHLFE)
380 /* Compute label from index */
381 static mpls_label_t
index2label(uint32_t index
, struct sr_srgb srgb
)
385 label
= srgb
.lower_bound
+ index
;
386 if (label
> (srgb
.lower_bound
+ srgb
.range_size
))
387 return MPLS_INVALID_LABEL
;
392 /* Get neighbor full structure from address */
393 static struct ospf_neighbor
*get_neighbor_by_addr(struct ospf
*top
,
396 struct ospf_neighbor
*nbr
;
397 struct ospf_interface
*oi
;
398 struct listnode
*node
;
399 struct route_node
*rn
;
405 for (ALL_LIST_ELEMENTS_RO(top
->oiflist
, node
, oi
))
406 for (rn
= route_top(oi
->nbrs
); rn
; rn
= route_next(rn
)) {
409 if (IPV4_ADDR_SAME(&nbr
->address
.u
.prefix4
,
411 || IPV4_ADDR_SAME(&nbr
->router_id
, &addr
)) {
412 route_unlock_node(rn
);
419 /* Get OSPF Path from address */
420 static struct ospf_path
*get_nexthop_by_addr(struct ospf
*top
,
421 struct prefix_ipv4 p
)
423 struct ospf_route
* or ;
424 struct ospf_path
*path
;
425 struct listnode
*node
;
426 struct route_node
*rn
;
432 if (IS_DEBUG_OSPF_SR
)
433 zlog_debug(" |- Search Nexthop for prefix %s/%u",
434 inet_ntoa(p
.prefix
), p
.prefixlen
);
436 rn
= route_node_lookup(top
->new_table
, (struct prefix
*)&p
);
439 * Check if we found an OSPF route. May be NULL if SPF has not
440 * yet populate routing table for this prefix.
445 route_unlock_node(rn
);
450 /* Then search path from this route */
451 for (ALL_LIST_ELEMENTS_RO(or->paths
, node
, path
))
452 if (path
->nexthop
.s_addr
!= INADDR_ANY
|| path
->ifindex
!= 0)
458 /* Compute NHLFE entry for Extended Link */
459 static int compute_link_nhlfe(struct sr_link
*srl
)
461 struct ospf
*top
= ospf_lookup_by_vrf_id(VRF_DEFAULT
);
462 struct ospf_neighbor
*nh
;
465 if (IS_DEBUG_OSPF_SR
)
466 zlog_debug(" |- Compute NHLFE for link %s/%u",
467 inet_ntoa(srl
->nhlfe
[0].prefv4
.prefix
),
468 srl
->nhlfe
[0].prefv4
.prefixlen
);
470 /* First determine the OSPF Neighbor */
471 nh
= get_neighbor_by_addr(top
, srl
->nhlfe
[0].nexthop
);
473 /* Neighbor could be not found when OSPF Adjacency just fire up
474 * because SPF don't yet populate routing table. This NHLFE will
475 * be fixed later when SR SPF schedule will be called.
480 if (IS_DEBUG_OSPF_SR
)
481 zlog_debug(" |- Found nexthop NHLFE %s",
482 inet_ntoa(nh
->router_id
));
484 /* Set ifindex for this neighbor */
485 srl
->nhlfe
[0].ifindex
= nh
->oi
->ifp
->ifindex
;
486 srl
->nhlfe
[1].ifindex
= nh
->oi
->ifp
->ifindex
;
488 /* Update neighbor address for LAN_ADJ_SID */
489 if (srl
->type
== LAN_ADJ_SID
) {
490 IPV4_ADDR_COPY(&srl
->nhlfe
[0].nexthop
, &nh
->src
);
491 IPV4_ADDR_COPY(&srl
->nhlfe
[1].nexthop
, &nh
->src
);
494 /* Set Input & Output Label */
495 if (CHECK_FLAG(srl
->flags
[0], EXT_SUBTLV_LINK_ADJ_SID_VFLG
))
496 srl
->nhlfe
[0].label_in
= srl
->sid
[0];
498 srl
->nhlfe
[0].label_in
=
499 index2label(srl
->sid
[0], srl
->srn
->srgb
);
500 if (CHECK_FLAG(srl
->flags
[1], EXT_SUBTLV_LINK_ADJ_SID_VFLG
))
501 srl
->nhlfe
[1].label_in
= srl
->sid
[1];
503 srl
->nhlfe
[1].label_in
=
504 index2label(srl
->sid
[1], srl
->srn
->srgb
);
506 srl
->nhlfe
[0].label_out
= MPLS_LABEL_IMPLICIT_NULL
;
507 srl
->nhlfe
[1].label_out
= MPLS_LABEL_IMPLICIT_NULL
;
514 * Compute NHLFE entry for Extended Prefix
516 * @param srp - Segment Routing Prefix
518 * @return -1 if next hop is not found, 0 if nexthop has not changed
521 static int compute_prefix_nhlfe(struct sr_prefix
*srp
)
523 struct ospf
*top
= ospf_lookup_by_vrf_id(VRF_DEFAULT
);
524 struct ospf_path
*nh
= NULL
;
525 struct sr_node
*srnext
;
528 if (IS_DEBUG_OSPF_SR
)
529 zlog_debug(" |- Compute NHLFE for prefix %s/%u",
530 inet_ntoa(srp
->nhlfe
.prefv4
.prefix
),
531 srp
->nhlfe
.prefv4
.prefixlen
);
533 /* First determine the nexthop */
534 nh
= get_nexthop_by_addr(top
, srp
->nhlfe
.prefv4
);
536 /* Nexthop could be not found when OSPF Adjacency just fire up
537 * because SPF don't yet populate routing table. This NHLFE will
538 * be fixed later when SR SPF schedule will be called.
543 /* Check if NextHop has changed when call after running a new SPF */
544 if (IPV4_ADDR_SAME(&nh
->nexthop
, &srp
->nhlfe
.nexthop
)
545 && (nh
->ifindex
== srp
->nhlfe
.ifindex
))
548 if (IS_DEBUG_OSPF_SR
)
549 zlog_debug(" |- Found new next hop for this NHLFE: %s",
550 inet_ntoa(nh
->nexthop
));
553 * Get SR-Node for this nexthop. Could be not yet available
554 * as Extende Link / Prefix and Router Information are flooded
555 * after LSA Type 1 & 2 which populate the OSPF Route Table
557 srnext
= get_sr_node_by_nexthop(top
, nh
->nexthop
);
561 /* And store this information for later update if SR Node is found */
562 srnext
->neighbor
= OspfSR
.self
;
563 if (IPV4_ADDR_SAME(&srnext
->adv_router
, &srp
->adv_router
))
566 srp
->nexthop
= srnext
;
569 * SR Node could be known, but SRGB could be not initialize
570 * This is due to the fact that Extended Link / Prefix could
571 * be received before corresponding Router Information LSA
573 if ((srnext
== NULL
) || (srnext
->srgb
.lower_bound
== 0)
574 || (srnext
->srgb
.range_size
== 0))
577 if (IS_DEBUG_OSPF_SR
)
578 zlog_debug(" |- Found SRGB %u/%u for next hop SR-Node %s",
579 srnext
->srgb
.range_size
, srnext
->srgb
.lower_bound
,
580 inet_ntoa(srnext
->adv_router
));
582 /* Set ip addr & ifindex for this neighbor */
583 IPV4_ADDR_COPY(&srp
->nhlfe
.nexthop
, &nh
->nexthop
);
584 srp
->nhlfe
.ifindex
= nh
->ifindex
;
586 /* Compute Input Label with self SRGB */
587 srp
->nhlfe
.label_in
= index2label(srp
->sid
, OspfSR
.srgb
);
589 * and Output Label with Next hop SR Node SRGB or Implicit Null label
590 * if next hop is the destination and request PHP
592 if ((srp
->nexthop
== NULL
)
593 && (!CHECK_FLAG(srp
->flags
, EXT_SUBTLV_PREFIX_SID_NPFLG
)))
594 srp
->nhlfe
.label_out
= MPLS_LABEL_IMPLICIT_NULL
;
595 else if (CHECK_FLAG(srp
->flags
, EXT_SUBTLV_PREFIX_SID_VFLG
))
596 srp
->nhlfe
.label_out
= srp
->sid
;
598 srp
->nhlfe
.label_out
= index2label(srp
->sid
, srnext
->srgb
);
600 if (IS_DEBUG_OSPF_SR
)
601 zlog_debug(" |- Computed new labels in: %u out: %u",
602 srp
->nhlfe
.label_in
, srp
->nhlfe
.label_out
);
608 /* Send MPLS Label entry to Zebra for installation or deletion */
609 static int ospf_zebra_send_mpls_labels(int cmd
, struct sr_nhlfe nhlfe
)
611 struct zapi_labels zl
= {};
612 struct zapi_nexthop_label
*znh
;
614 if (IS_DEBUG_OSPF_SR
)
615 zlog_debug(" |- %s LSP %u/%u for %s/%u via %u",
616 cmd
== ZEBRA_MPLS_LABELS_ADD
? "Add" : "Delete",
617 nhlfe
.label_in
, nhlfe
.label_out
,
618 inet_ntoa(nhlfe
.prefv4
.prefix
),
619 nhlfe
.prefv4
.prefixlen
, nhlfe
.ifindex
);
621 zl
.type
= ZEBRA_LSP_OSPF_SR
;
622 zl
.local_label
= nhlfe
.label_in
;
624 SET_FLAG(zl
.message
, ZAPI_LABELS_FTN
);
625 zl
.route
.prefix
.family
= nhlfe
.prefv4
.family
;
626 zl
.route
.prefix
.prefixlen
= nhlfe
.prefv4
.prefixlen
;
627 zl
.route
.prefix
.u
.prefix4
= nhlfe
.prefv4
.prefix
;
628 zl
.route
.type
= ZEBRA_ROUTE_OSPF
;
629 zl
.route
.instance
= 0;
632 znh
= &zl
.nexthops
[0];
633 znh
->type
= NEXTHOP_TYPE_IPV4_IFINDEX
;
634 znh
->family
= AF_INET
;
635 znh
->address
.ipv4
= nhlfe
.nexthop
;
636 znh
->ifindex
= nhlfe
.ifindex
;
637 znh
->label
= nhlfe
.label_out
;
639 return zebra_send_mpls_labels(zclient
, cmd
, &zl
);
642 /* Add new NHLFE entry for SID */
643 static inline void add_sid_nhlfe(struct sr_nhlfe nhlfe
)
645 if ((nhlfe
.label_in
!= 0) && (nhlfe
.label_out
!= 0))
646 ospf_zebra_send_mpls_labels(ZEBRA_MPLS_LABELS_ADD
, nhlfe
);
649 /* Remove NHLFE entry for SID */
650 static inline void del_sid_nhlfe(struct sr_nhlfe nhlfe
)
652 if ((nhlfe
.label_in
!= 0) && (nhlfe
.label_out
!= 0))
653 ospf_zebra_send_mpls_labels(ZEBRA_MPLS_LABELS_DELETE
, nhlfe
);
656 /* Update NHLFE entry for SID */
657 static inline void update_sid_nhlfe(struct sr_nhlfe n1
, struct sr_nhlfe n2
)
665 * Functions to parse and get Extended Link / Prefix
669 /* Extended Link SubTLVs Getter */
670 static struct sr_link
*get_ext_link_sid(struct tlv_header
*tlvh
)
674 struct ext_tlv_link
*link
= (struct ext_tlv_link
*)tlvh
;
675 struct ext_subtlv_adj_sid
*adj_sid
;
676 struct ext_subtlv_lan_adj_sid
*lan_sid
;
677 struct ext_subtlv_rmt_itf_addr
*rmt_itf
;
679 struct tlv_header
*sub_tlvh
;
680 uint16_t length
= 0, sum
= 0, i
= 0;
682 srl
= XCALLOC(MTYPE_OSPF_SR_PARAMS
, sizeof(struct sr_link
));
684 /* Initialize TLV browsing */
685 length
= ntohs(tlvh
->length
) - EXT_TLV_LINK_SIZE
;
686 sub_tlvh
= (struct tlv_header
*)((char *)(tlvh
) + TLV_HDR_SIZE
687 + EXT_TLV_LINK_SIZE
);
688 for (; sum
< length
; sub_tlvh
= TLV_HDR_NEXT(sub_tlvh
)) {
689 switch (ntohs(sub_tlvh
->type
)) {
690 case EXT_SUBTLV_ADJ_SID
:
691 adj_sid
= (struct ext_subtlv_adj_sid
*)sub_tlvh
;
693 i
= CHECK_FLAG(adj_sid
->flags
,
694 EXT_SUBTLV_LINK_ADJ_SID_BFLG
)
697 srl
->flags
[i
] = adj_sid
->flags
;
698 if (CHECK_FLAG(adj_sid
->flags
,
699 EXT_SUBTLV_LINK_ADJ_SID_VFLG
))
700 srl
->sid
[i
] = GET_LABEL(ntohl(adj_sid
->value
));
702 srl
->sid
[i
] = ntohl(adj_sid
->value
);
703 IPV4_ADDR_COPY(&srl
->nhlfe
[i
].nexthop
, &link
->link_id
);
705 case EXT_SUBTLV_LAN_ADJ_SID
:
706 lan_sid
= (struct ext_subtlv_lan_adj_sid
*)sub_tlvh
;
707 srl
->type
= LAN_ADJ_SID
;
708 i
= CHECK_FLAG(lan_sid
->flags
,
709 EXT_SUBTLV_LINK_ADJ_SID_BFLG
)
712 srl
->flags
[i
] = lan_sid
->flags
;
713 if (CHECK_FLAG(lan_sid
->flags
,
714 EXT_SUBTLV_LINK_ADJ_SID_VFLG
))
715 srl
->sid
[i
] = GET_LABEL(ntohl(lan_sid
->value
));
717 srl
->sid
[i
] = ntohl(lan_sid
->value
);
718 IPV4_ADDR_COPY(&srl
->nhlfe
[i
].nexthop
,
719 &lan_sid
->neighbor_id
);
721 case EXT_SUBTLV_RMT_ITF_ADDR
:
722 rmt_itf
= (struct ext_subtlv_rmt_itf_addr
*)sub_tlvh
;
723 IPV4_ADDR_COPY(&srl
->nhlfe
[0].nexthop
, &rmt_itf
->value
);
724 IPV4_ADDR_COPY(&srl
->nhlfe
[1].nexthop
, &rmt_itf
->value
);
729 sum
+= TLV_SIZE(sub_tlvh
);
732 IPV4_ADDR_COPY(&srl
->nhlfe
[0].prefv4
.prefix
, &link
->link_data
);
733 srl
->nhlfe
[0].prefv4
.prefixlen
= IPV4_MAX_PREFIXLEN
;
734 srl
->nhlfe
[0].prefv4
.family
= AF_INET
;
735 apply_mask_ipv4(&srl
->nhlfe
[0].prefv4
);
736 IPV4_ADDR_COPY(&srl
->nhlfe
[1].prefv4
.prefix
, &link
->link_data
);
737 srl
->nhlfe
[1].prefv4
.prefixlen
= IPV4_MAX_PREFIXLEN
;
738 srl
->nhlfe
[1].prefv4
.family
= AF_INET
;
739 apply_mask_ipv4(&srl
->nhlfe
[1].prefv4
);
741 if (IS_DEBUG_OSPF_SR
) {
742 zlog_debug(" |- Found primary Adj/Lan Sid %u for %s/%u",
743 srl
->sid
[0], inet_ntoa(srl
->nhlfe
[0].prefv4
.prefix
),
744 srl
->nhlfe
[0].prefv4
.prefixlen
);
745 zlog_debug(" |- Found backup Adj/Lan Sid %u for %s/%u",
746 srl
->sid
[1], inet_ntoa(srl
->nhlfe
[1].prefv4
.prefix
),
747 srl
->nhlfe
[1].prefv4
.prefixlen
);
753 /* Extended Prefix SubTLVs Getter */
754 static struct sr_prefix
*get_ext_prefix_sid(struct tlv_header
*tlvh
)
757 struct sr_prefix
*srp
;
758 struct ext_tlv_prefix
*pref
= (struct ext_tlv_prefix
*)tlvh
;
759 struct ext_subtlv_prefix_sid
*psid
;
761 struct tlv_header
*sub_tlvh
;
762 uint16_t length
= 0, sum
= 0;
764 srp
= XCALLOC(MTYPE_OSPF_SR_PARAMS
, sizeof(struct sr_prefix
));
766 /* Initialize TLV browsing */
767 length
= ntohs(tlvh
->length
) - EXT_TLV_PREFIX_SIZE
;
768 sub_tlvh
= (struct tlv_header
*)((char *)(tlvh
) + TLV_HDR_SIZE
769 + EXT_TLV_PREFIX_SIZE
);
770 for (; sum
< length
; sub_tlvh
= TLV_HDR_NEXT(sub_tlvh
)) {
771 switch (ntohs(sub_tlvh
->type
)) {
772 case EXT_SUBTLV_PREFIX_SID
:
773 psid
= (struct ext_subtlv_prefix_sid
*)sub_tlvh
;
774 if (psid
->algorithm
!= SR_ALGORITHM_SPF
) {
775 flog_err(EC_OSPF_INVALID_ALGORITHM
,
776 "SR (%s): Unsupported Algorithm",
778 XFREE(MTYPE_OSPF_SR_PARAMS
, srp
);
781 srp
->type
= PREF_SID
;
782 srp
->flags
= psid
->flags
;
783 if (CHECK_FLAG(psid
->flags
, EXT_SUBTLV_PREFIX_SID_VFLG
))
784 srp
->sid
= GET_LABEL(ntohl(psid
->value
));
786 srp
->sid
= ntohl(psid
->value
);
787 IPV4_ADDR_COPY(&srp
->nhlfe
.prefv4
.prefix
,
789 srp
->nhlfe
.prefv4
.prefixlen
= pref
->pref_length
;
790 srp
->nhlfe
.prefv4
.family
= AF_INET
;
791 apply_mask_ipv4(&srp
->nhlfe
.prefv4
);
796 sum
+= TLV_SIZE(sub_tlvh
);
799 if (IS_DEBUG_OSPF_SR
)
800 zlog_debug(" |- Found SID %u for prefix %s/%u", srp
->sid
,
801 inet_ntoa(srp
->nhlfe
.prefv4
.prefix
),
802 srp
->nhlfe
.prefv4
.prefixlen
);
807 * Functions to manipulate Segment Routing Link & Prefix structures
810 /* Compare two Segment Link: return 0 if equal, 1 otherwise */
811 static inline int sr_link_cmp(struct sr_link
*srl1
, struct sr_link
*srl2
)
813 if ((srl1
->sid
[0] == srl2
->sid
[0]) && (srl1
->sid
[1] == srl2
->sid
[1])
814 && (srl1
->type
== srl2
->type
) && (srl1
->flags
[0] == srl2
->flags
[0])
815 && (srl1
->flags
[1] == srl2
->flags
[1]))
821 /* Compare two Segment Prefix: return 0 if equal, 1 otherwise */
822 static inline int sr_prefix_cmp(struct sr_prefix
*srp1
, struct sr_prefix
*srp2
)
824 if ((srp1
->sid
== srp2
->sid
) && (srp1
->flags
== srp2
->flags
))
830 /* Update Segment Link of given Segment Routing Node */
831 static void update_ext_link_sid(struct sr_node
*srn
, struct sr_link
*srl
,
834 struct listnode
*node
;
839 if ((srn
== NULL
) || (srl
== NULL
))
842 if (IS_DEBUG_OSPF_SR
)
843 zlog_debug(" |- Process Extended Link Adj/Lan-SID");
845 /* Process only Local Adj/Lan_Adj SID coming from LSA SELF */
846 if (!CHECK_FLAG(srl
->flags
[0], EXT_SUBTLV_LINK_ADJ_SID_LFLG
)
847 || !CHECK_FLAG(srl
->flags
[1], EXT_SUBTLV_LINK_ADJ_SID_LFLG
)
848 || !CHECK_FLAG(lsa_flags
, OSPF_LSA_SELF
))
851 /* Search for existing Segment Link */
852 for (ALL_LIST_ELEMENTS_RO(srn
->ext_link
, node
, lk
))
853 if (lk
->instance
== srl
->instance
) {
858 if (IS_DEBUG_OSPF_SR
)
859 zlog_debug(" |- %s SR Link 8.0.0.%u for SR node %s",
860 found
? "Update" : "Add",
861 GET_OPAQUE_ID(srl
->instance
),
862 inet_ntoa(srn
->adv_router
));
864 /* if not found, add new Segment Link and install NHLFE */
866 /* Complete SR-Link and add it to SR-Node list */
868 IPV4_ADDR_COPY(&srl
->adv_router
, &srn
->adv_router
);
869 listnode_add(srn
->ext_link
, srl
);
870 /* Try to set MPLS table */
871 if (compute_link_nhlfe(srl
)) {
872 add_sid_nhlfe(srl
->nhlfe
[0]);
873 add_sid_nhlfe(srl
->nhlfe
[1]);
876 if (sr_link_cmp(lk
, srl
)) {
877 if (compute_link_nhlfe(srl
)) {
878 update_sid_nhlfe(lk
->nhlfe
[0], srl
->nhlfe
[0]);
879 update_sid_nhlfe(lk
->nhlfe
[1], srl
->nhlfe
[1]);
880 /* Replace Segment List */
881 listnode_delete(srn
->ext_link
, lk
);
882 XFREE(MTYPE_OSPF_SR_PARAMS
, lk
);
884 IPV4_ADDR_COPY(&srl
->adv_router
,
886 listnode_add(srn
->ext_link
, srl
);
888 /* New NHLFE was not found.
889 * Just free the SR Link
891 XFREE(MTYPE_OSPF_SR_PARAMS
, srl
);
895 * This is just an LSA refresh.
896 * Stop processing and free SR Link
898 XFREE(MTYPE_OSPF_SR_PARAMS
, srl
);
903 /* Update Segment Prefix of given Segment Routing Node */
904 static void update_ext_prefix_sid(struct sr_node
*srn
, struct sr_prefix
*srp
)
907 struct listnode
*node
;
908 struct sr_prefix
*pref
;
912 if (srn
== NULL
|| srp
== NULL
)
915 if (IS_DEBUG_OSPF_SR
)
916 zlog_debug(" |- Process Extended Prefix SID %u", srp
->sid
);
918 /* Process only Global Prefix SID */
919 if (CHECK_FLAG(srp
->flags
, EXT_SUBTLV_PREFIX_SID_LFLG
))
922 /* Search for existing Segment Prefix */
923 for (ALL_LIST_ELEMENTS_RO(srn
->ext_prefix
, node
, pref
))
924 if (pref
->instance
== srp
->instance
) {
929 if (IS_DEBUG_OSPF_SR
)
930 zlog_debug(" |- %s SR LSA ID 7.0.0.%u for SR node %s",
931 found
? "Update" : "Add",
932 GET_OPAQUE_ID(srp
->instance
),
933 inet_ntoa(srn
->adv_router
));
935 /* if not found, add new Segment Prefix and install NHLFE */
937 /* Complete SR-Prefix and add it to SR-Node list */
939 IPV4_ADDR_COPY(&srp
->adv_router
, &srn
->adv_router
);
940 listnode_add(srn
->ext_prefix
, srp
);
941 /* Try to set MPLS table */
942 if (compute_prefix_nhlfe(srp
) == 1)
943 add_sid_nhlfe(srp
->nhlfe
);
945 if (sr_prefix_cmp(pref
, srp
)) {
946 if (compute_prefix_nhlfe(srp
) == 1) {
947 update_sid_nhlfe(pref
->nhlfe
, srp
->nhlfe
);
948 /* Replace Segment Prefix */
949 listnode_delete(srn
->ext_prefix
, pref
);
950 XFREE(MTYPE_OSPF_SR_PARAMS
, pref
);
952 IPV4_ADDR_COPY(&srp
->adv_router
,
954 listnode_add(srn
->ext_prefix
, srp
);
956 /* New NHLFE was not found.
957 * Just free the SR Prefix
959 XFREE(MTYPE_OSPF_SR_PARAMS
, srp
);
962 /* This is just an LSA refresh.
963 * Stop processing and free SR Prefix
965 XFREE(MTYPE_OSPF_SR_PARAMS
, srp
);
971 * When change the FRR Self SRGB, update the NHLFE Input Label
972 * for all Extended Prefix with SID index through hash_iterate()
974 static void update_in_nhlfe(struct hash_bucket
*bucket
, void *args
)
976 struct listnode
*node
;
977 struct sr_node
*srn
= (struct sr_node
*)bucket
->data
;
978 struct sr_prefix
*srp
;
981 /* Process Every Extended Prefix for this SR-Node */
982 for (ALL_LIST_ELEMENTS_RO(srn
->ext_prefix
, node
, srp
)) {
983 /* Process Self SRN only if NO-PHP is requested */
984 if ((srn
== OspfSR
.self
)
985 && !CHECK_FLAG(srp
->flags
, EXT_SUBTLV_PREFIX_SID_NPFLG
))
988 /* Process only SID Index */
989 if (CHECK_FLAG(srp
->flags
, EXT_SUBTLV_PREFIX_SID_VFLG
))
992 /* OK. Compute new NHLFE */
993 memcpy(&new, &srp
->nhlfe
, sizeof(struct sr_nhlfe
));
994 new.label_in
= index2label(srp
->sid
, OspfSR
.srgb
);
995 /* Update MPLS LFIB */
996 update_sid_nhlfe(srp
->nhlfe
, new);
997 /* Finally update Input Label */
998 srp
->nhlfe
.label_in
= new.label_in
;
1003 * When SRGB has changed, update NHLFE Output Label for all Extended Prefix
1004 * with SID index which use the given SR-Node as nexthop though hash_iterate()
1006 static void update_out_nhlfe(struct hash_bucket
*bucket
, void *args
)
1008 struct listnode
*node
;
1009 struct sr_node
*srn
= (struct sr_node
*)bucket
->data
;
1010 struct sr_node
*srnext
= (struct sr_node
*)args
;
1011 struct sr_prefix
*srp
;
1012 struct sr_nhlfe
new;
1014 for (ALL_LIST_ELEMENTS_RO(srn
->ext_prefix
, node
, srp
)) {
1015 /* Process only SID Index for next hop without PHP */
1016 if ((srp
->nexthop
== NULL
)
1017 && (!CHECK_FLAG(srp
->flags
, EXT_SUBTLV_PREFIX_SID_NPFLG
)))
1019 memcpy(&new, &srp
->nhlfe
, sizeof(struct sr_nhlfe
));
1020 new.label_out
= index2label(srp
->sid
, srnext
->srgb
);
1021 update_sid_nhlfe(srp
->nhlfe
, new);
1022 srp
->nhlfe
.label_out
= new.label_out
;
1027 * Following functions are call when new Segment Routing LSA are received
1028 * - Router Information: ospf_sr_ri_lsa_update() & ospf_sr_ri_lsa_delete()
1029 * - Extended Link: ospf_sr_ext_link_update() & ospf_sr_ext_link_delete()
1030 * - Extended Prefix: ospf_ext_prefix_update() & ospf_sr_ext_prefix_delete()
1033 /* Update Segment Routing from Router Information LSA */
1034 void ospf_sr_ri_lsa_update(struct ospf_lsa
*lsa
)
1036 struct sr_node
*srn
;
1037 struct tlv_header
*tlvh
;
1038 struct lsa_header
*lsah
= (struct lsa_header
*)lsa
->data
;
1039 struct ri_sr_tlv_sid_label_range
*ri_srgb
;
1040 struct ri_sr_tlv_sr_algorithm
*algo
;
1041 struct sr_srgb srgb
;
1042 uint16_t length
= 0, sum
= 0;
1044 if (IS_DEBUG_OSPF_SR
)
1046 "SR (%s): Process Router "
1047 "Information LSA 4.0.0.%u from %s",
1048 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1049 inet_ntoa(lsah
->adv_router
));
1052 if (IS_LSA_SELF(lsa
))
1055 if (OspfSR
.neighbors
== NULL
) {
1056 flog_err(EC_OSPF_SR_INVALID_DB
,
1057 "SR (%s): Abort! no valid SR DataBase", __func__
);
1061 /* Get SR Node in hash table from Router ID */
1062 srn
= hash_get(OspfSR
.neighbors
, (void *)&(lsah
->adv_router
),
1063 (void *)sr_node_new
);
1067 flog_err(EC_OSPF_SR_NODE_CREATE
,
1068 "SR (%s): Abort! can't create SR node in hash table",
1073 if ((srn
->instance
!= 0) && (srn
->instance
!= ntohl(lsah
->id
.s_addr
))) {
1074 flog_err(EC_OSPF_SR_INVALID_LSA_ID
,
1075 "SR (%s): Abort! Wrong "
1076 "LSA ID 4.0.0.%u for SR node %s/%u",
1077 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1078 inet_ntoa(lsah
->adv_router
), srn
->instance
);
1082 /* Collect Router Information Sub TLVs */
1083 /* Initialize TLV browsing */
1084 length
= ntohs(lsah
->length
) - OSPF_LSA_HEADER_SIZE
;
1085 srgb
.range_size
= 0;
1086 srgb
.lower_bound
= 0;
1088 for (tlvh
= TLV_HDR_TOP(lsah
); (sum
< length
) && (tlvh
!= NULL
);
1089 tlvh
= TLV_HDR_NEXT(tlvh
)) {
1090 switch (ntohs(tlvh
->type
)) {
1091 case RI_SR_TLV_SR_ALGORITHM
:
1092 algo
= (struct ri_sr_tlv_sr_algorithm
*)tlvh
;
1095 for (i
= 0; i
< ntohs(algo
->header
.length
); i
++)
1096 srn
->algo
[i
] = algo
->value
[0];
1097 for (; i
< ALGORITHM_COUNT
; i
++)
1098 srn
->algo
[i
] = SR_ALGORITHM_UNSET
;
1099 sum
+= TLV_SIZE(tlvh
);
1101 case RI_SR_TLV_SID_LABEL_RANGE
:
1102 ri_srgb
= (struct ri_sr_tlv_sid_label_range
*)tlvh
;
1103 srgb
.range_size
= GET_RANGE_SIZE(ntohl(ri_srgb
->size
));
1105 GET_LABEL(ntohl(ri_srgb
->lower
.value
));
1106 sum
+= TLV_SIZE(tlvh
);
1108 case RI_SR_TLV_NODE_MSD
:
1109 srn
->msd
= ((struct ri_sr_tlv_node_msd
*)(tlvh
))->value
;
1110 sum
+= TLV_SIZE(tlvh
);
1113 sum
+= TLV_SIZE(tlvh
);
1118 /* Check that we collect mandatory parameters */
1119 if (srn
->algo
[0] == SR_ALGORITHM_UNSET
|| srgb
.range_size
== 0
1120 || srgb
.lower_bound
== 0) {
1121 flog_err(EC_OSPF_SR_NODE_CREATE
,
1122 "SR (%s): Missing mandatory parameters. Abort!",
1124 hash_release(OspfSR
.neighbors
, &(srn
->adv_router
));
1125 XFREE(MTYPE_OSPF_SR_PARAMS
, srn
);
1129 /* Check if it is a new SR Node or not */
1130 if (srn
->instance
== 0) {
1132 srn
->instance
= ntohl(lsah
->id
.s_addr
);
1134 srn
->srgb
.range_size
= srgb
.range_size
;
1135 srn
->srgb
.lower_bound
= srgb
.lower_bound
;
1138 /* Check if SRGB has changed */
1139 if ((srn
->srgb
.range_size
!= srgb
.range_size
)
1140 || (srn
->srgb
.lower_bound
!= srgb
.lower_bound
)) {
1141 srn
->srgb
.range_size
= srgb
.range_size
;
1142 srn
->srgb
.lower_bound
= srgb
.lower_bound
;
1143 /* Update NHLFE if it is a neighbor SR node */
1144 if (srn
->neighbor
== OspfSR
.self
)
1145 hash_iterate(OspfSR
.neighbors
,
1146 (void (*)(struct hash_bucket
*,
1147 void *))update_out_nhlfe
,
1153 * Delete SR Node entry in hash table information corresponding to an expired
1154 * Router Information LSA
1156 void ospf_sr_ri_lsa_delete(struct ospf_lsa
*lsa
)
1158 struct sr_node
*srn
;
1159 struct lsa_header
*lsah
= (struct lsa_header
*)lsa
->data
;
1161 if (IS_DEBUG_OSPF_SR
)
1162 zlog_debug("SR (%s): Remove SR node %s from lsa_id 4.0.0.%u",
1163 __func__
, inet_ntoa(lsah
->adv_router
),
1164 GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)));
1167 if (OspfSR
.neighbors
== NULL
) {
1168 flog_err(EC_OSPF_SR_INVALID_DB
,
1169 "SR (%s): Abort! no valid SR Data Base", __func__
);
1173 /* Release Router ID entry in SRDB hash table */
1174 srn
= hash_release(OspfSR
.neighbors
, &(lsah
->adv_router
));
1178 flog_err(EC_OSPF_SR_NODE_CREATE
,
1179 "SR (%s): Abort! no entry in SRDB for SR Node %s",
1180 __func__
, inet_ntoa(lsah
->adv_router
));
1184 if ((srn
->instance
!= 0) && (srn
->instance
!= ntohl(lsah
->id
.s_addr
))) {
1185 flog_err(EC_OSPF_SR_INVALID_LSA_ID
,
1186 "SR (%s): Abort! Wrong LSA ID 4.0.0.%u for SR node %s",
1187 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1188 inet_ntoa(lsah
->adv_router
));
1192 /* Remove SR node */
1196 /* Update Segment Routing from Extended Link LSA */
1197 void ospf_sr_ext_link_lsa_update(struct ospf_lsa
*lsa
)
1199 struct sr_node
*srn
;
1200 struct tlv_header
*tlvh
;
1201 struct lsa_header
*lsah
= (struct lsa_header
*)lsa
->data
;
1202 struct sr_link
*srl
;
1204 uint16_t length
, sum
;
1206 if (IS_DEBUG_OSPF_SR
)
1208 "SR (%s): Process Extended Link LSA 8.0.0.%u from %s",
1209 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1210 inet_ntoa(lsah
->adv_router
));
1213 if (OspfSR
.neighbors
== NULL
) {
1214 flog_err(EC_OSPF_SR_INVALID_DB
,
1215 "SR (%s): Abort! no valid SR DataBase", __func__
);
1219 /* Get SR Node in hash table from Router ID */
1220 srn
= (struct sr_node
*)hash_get(OspfSR
.neighbors
,
1221 (void *)&(lsah
->adv_router
),
1222 (void *)sr_node_new
);
1226 flog_err(EC_OSPF_SR_NODE_CREATE
,
1227 "SR (%s): Abort! can't create SR node in hash table",
1232 /* Initialize TLV browsing */
1233 length
= ntohs(lsah
->length
) - OSPF_LSA_HEADER_SIZE
;
1235 for (tlvh
= TLV_HDR_TOP(lsah
); (sum
< length
) && (tlvh
!= NULL
);
1236 tlvh
= TLV_HDR_NEXT(tlvh
)) {
1237 if (ntohs(tlvh
->type
) == EXT_TLV_LINK
) {
1238 /* Got Extended Link information */
1239 srl
= get_ext_link_sid(tlvh
);
1240 /* Update SID if not null */
1242 srl
->instance
= ntohl(lsah
->id
.s_addr
);
1243 update_ext_link_sid(srn
, srl
, lsa
->flags
);
1246 sum
+= TLV_SIZE(tlvh
);
1250 /* Delete Segment Routing from Extended Link LSA */
1251 void ospf_sr_ext_link_lsa_delete(struct ospf_lsa
*lsa
)
1253 struct listnode
*node
;
1254 struct sr_link
*srl
;
1255 struct sr_node
*srn
;
1256 struct lsa_header
*lsah
= (struct lsa_header
*)lsa
->data
;
1257 uint32_t instance
= ntohl(lsah
->id
.s_addr
);
1259 if (IS_DEBUG_OSPF_SR
)
1260 zlog_debug("SR (%s): Remove Extended Link LSA 8.0.0.%u from %s",
1261 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1262 inet_ntoa(lsah
->adv_router
));
1265 if (OspfSR
.neighbors
== NULL
) {
1266 flog_err(EC_OSPF_SR_INVALID_DB
,
1267 "SR (%s): Abort! no valid SR DataBase", __func__
);
1271 /* Search SR Node in hash table from Router ID */
1272 srn
= (struct sr_node
*)hash_lookup(OspfSR
.neighbors
,
1273 (void *)&(lsah
->adv_router
));
1276 * SR-Node may be NULL if it has been remove previously when
1277 * processing Router Information LSA deletion
1280 flog_err(EC_OSPF_SR_INVALID_DB
,
1281 "SR (%s): Stop! no entry in SRDB for SR Node %s",
1282 __func__
, inet_ntoa(lsah
->adv_router
));
1286 /* Search for corresponding Segment Link */
1287 for (ALL_LIST_ELEMENTS_RO(srn
->ext_link
, node
, srl
))
1288 if (srl
->instance
== instance
)
1291 /* Remove Segment Link if found */
1292 if ((srl
!= NULL
) && (srl
->instance
== instance
)) {
1293 del_sid_nhlfe(srl
->nhlfe
[0]);
1294 del_sid_nhlfe(srl
->nhlfe
[1]);
1295 listnode_delete(srn
->ext_link
, srl
);
1296 XFREE(MTYPE_OSPF_SR_PARAMS
, srl
);
1298 flog_err(EC_OSPF_SR_INVALID_DB
,
1299 "SR (%s): Didn't found corresponding SR Link 8.0.0.%u "
1301 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1302 inet_ntoa(lsah
->adv_router
));
1306 /* Update Segment Routing from Extended Prefix LSA */
1307 void ospf_sr_ext_prefix_lsa_update(struct ospf_lsa
*lsa
)
1309 struct sr_node
*srn
;
1310 struct tlv_header
*tlvh
;
1311 struct lsa_header
*lsah
= (struct lsa_header
*)lsa
->data
;
1312 struct sr_prefix
*srp
;
1314 uint16_t length
, sum
;
1316 if (IS_DEBUG_OSPF_SR
)
1318 "SR (%s): Process Extended Prefix LSA "
1320 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1321 inet_ntoa(lsah
->adv_router
));
1324 if (OspfSR
.neighbors
== NULL
) {
1325 flog_err(EC_OSPF_SR_INVALID_DB
,
1326 "SR (%s): Abort! no valid SR DataBase", __func__
);
1330 /* Get SR Node in hash table from Router ID */
1331 srn
= (struct sr_node
*)hash_get(OspfSR
.neighbors
,
1332 (void *)&(lsah
->adv_router
),
1333 (void *)sr_node_new
);
1337 flog_err(EC_OSPF_SR_NODE_CREATE
,
1338 "SR (%s): Abort! can't create SR node in hash table",
1343 /* Initialize TLV browsing */
1344 length
= ntohs(lsah
->length
) - OSPF_LSA_HEADER_SIZE
;
1346 for (tlvh
= TLV_HDR_TOP(lsah
); sum
< length
;
1347 tlvh
= TLV_HDR_NEXT(tlvh
)) {
1348 if (ntohs(tlvh
->type
) == EXT_TLV_LINK
) {
1349 /* Got Extended Link information */
1350 srp
= get_ext_prefix_sid(tlvh
);
1351 /* Update SID if not null */
1353 srp
->instance
= ntohl(lsah
->id
.s_addr
);
1354 update_ext_prefix_sid(srn
, srp
);
1357 sum
+= TLV_SIZE(tlvh
);
1361 /* Delete Segment Routing from Extended Prefix LSA */
1362 void ospf_sr_ext_prefix_lsa_delete(struct ospf_lsa
*lsa
)
1364 struct listnode
*node
;
1365 struct sr_prefix
*srp
;
1366 struct sr_node
*srn
;
1367 struct lsa_header
*lsah
= (struct lsa_header
*)lsa
->data
;
1368 uint32_t instance
= ntohl(lsah
->id
.s_addr
);
1370 if (IS_DEBUG_OSPF_SR
)
1372 "SR (%s): Remove Extended Prefix LSA 7.0.0.%u from %s",
1373 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1374 inet_ntoa(lsah
->adv_router
));
1377 if (OspfSR
.neighbors
== NULL
) {
1378 flog_err(EC_OSPF_SR_INVALID_DB
,
1379 "SR (%s): Abort! no valid SR DataBase", __func__
);
1383 /* Search SR Node in hash table from Router ID */
1384 srn
= (struct sr_node
*)hash_lookup(OspfSR
.neighbors
,
1385 (void *)&(lsah
->adv_router
));
1388 * SR-Node may be NULL if it has been remove previously when
1389 * processing Router Information LSA deletion
1392 flog_err(EC_OSPF_SR_INVALID_DB
,
1393 "SR (%s): Stop! no entry in SRDB for SR Node %s",
1394 __func__
, inet_ntoa(lsah
->adv_router
));
1398 /* Search for corresponding Segment Link */
1399 for (ALL_LIST_ELEMENTS_RO(srn
->ext_prefix
, node
, srp
))
1400 if (srp
->instance
== instance
)
1403 /* Remove Segment Link if found */
1404 if ((srp
!= NULL
) && (srp
->instance
== instance
)) {
1405 del_sid_nhlfe(srp
->nhlfe
);
1406 listnode_delete(srn
->ext_link
, srp
);
1407 XFREE(MTYPE_OSPF_SR_PARAMS
, srp
);
1410 EC_OSPF_SR_INVALID_DB
,
1411 "SR (%s): Didn't found corresponding SR Prefix 7.0.0.%u for SR Node %s",
1412 __func__
, GET_OPAQUE_ID(ntohl(lsah
->id
.s_addr
)),
1413 inet_ntoa(lsah
->adv_router
));
1417 /* Get Label for Extended Link SID */
1418 /* TODO: To be replace by Zebra Label Manager */
1419 uint32_t get_ext_link_label_value(void)
1421 static uint32_t label
= ADJ_SID_MIN
- 1;
1423 if (label
< ADJ_SID_MAX
)
1430 * Update Prefix SID. Call by ospf_ext_pref_ism_change to
1431 * complete initial CLI command at startutp.
1433 * @param ifp - Loopback interface
1434 * @param pref - Prefix address of this interface
1438 void ospf_sr_update_prefix(struct interface
*ifp
, struct prefix
*p
)
1440 struct listnode
*node
;
1441 struct sr_prefix
*srp
;
1444 if ((ifp
== NULL
) || (p
== NULL
))
1448 * Search if there is a Segment Prefix that correspond to this
1449 * interface or prefix, and update it if found
1451 for (ALL_LIST_ELEMENTS_RO(OspfSR
.self
->ext_prefix
, node
, srp
)) {
1452 if ((srp
->nhlfe
.ifindex
== ifp
->ifindex
)
1453 || ((IPV4_ADDR_SAME(&srp
->nhlfe
.prefv4
.prefix
,
1455 && (srp
->nhlfe
.prefv4
.prefixlen
== p
->prefixlen
))) {
1457 /* Update Interface & Prefix info */
1458 srp
->nhlfe
.ifindex
= ifp
->ifindex
;
1459 IPV4_ADDR_COPY(&srp
->nhlfe
.prefv4
.prefix
,
1461 srp
->nhlfe
.prefv4
.prefixlen
= p
->prefixlen
;
1462 srp
->nhlfe
.prefv4
.family
= p
->family
;
1463 IPV4_ADDR_COPY(&srp
->nhlfe
.nexthop
, &p
->u
.prefix4
);
1465 /* OK. Let's Schedule Extended Prefix LSA */
1466 srp
->instance
= ospf_ext_schedule_prefix_index(
1467 ifp
, srp
->sid
, &srp
->nhlfe
.prefv4
, srp
->flags
);
1469 /* Install NHLFE if NO-PHP is requested */
1470 if (CHECK_FLAG(srp
->flags
,
1471 EXT_SUBTLV_PREFIX_SID_NPFLG
)) {
1472 srp
->nhlfe
.label_in
= index2label(
1473 srp
->sid
, OspfSR
.self
->srgb
);
1474 srp
->nhlfe
.label_out
= MPLS_LABEL_IMPLICIT_NULL
;
1475 add_sid_nhlfe(srp
->nhlfe
);
1482 * Following functions are used to update MPLS LFIB after a SPF run
1485 static void ospf_sr_nhlfe_update(struct hash_bucket
*bucket
, void *args
)
1488 struct sr_node
*srn
= (struct sr_node
*)bucket
->data
;
1489 struct listnode
*node
;
1490 struct sr_prefix
*srp
;
1491 struct sr_nhlfe old
;
1494 if (IS_DEBUG_OSPF_SR
)
1495 zlog_debug(" |- Update Prefix for SR Node %s",
1496 inet_ntoa(srn
->adv_router
));
1498 /* Skip Self SR Node */
1499 if (srn
== OspfSR
.self
)
1502 /* Update Extended Prefix */
1503 for (ALL_LIST_ELEMENTS_RO(srn
->ext_prefix
, node
, srp
)) {
1505 /* Backup current NHLFE */
1506 memcpy(&old
, &srp
->nhlfe
, sizeof(struct sr_nhlfe
));
1508 /* Compute the new NHLFE */
1509 rc
= compute_prefix_nhlfe(srp
);
1511 /* Check computation result */
1513 /* next hop is not know, remove old NHLFE to avoid loop */
1515 del_sid_nhlfe(srp
->nhlfe
);
1517 /* next hop has not changed, skip it */
1520 /* there is a new next hop, update NHLFE */
1522 update_sid_nhlfe(old
, srp
->nhlfe
);
1530 static int ospf_sr_update_schedule(struct thread
*t
)
1534 struct timeval start_time
, stop_time
;
1536 ospf
= THREAD_ARG(t
);
1537 ospf
->t_sr_update
= NULL
;
1542 monotime(&start_time
);
1544 if (IS_DEBUG_OSPF_SR
)
1545 zlog_debug("SR (%s): Start SPF update", __func__
);
1547 hash_iterate(OspfSR
.neighbors
, (void (*)(struct hash_bucket
*,
1548 void *))ospf_sr_nhlfe_update
,
1551 monotime(&stop_time
);
1553 if (IS_DEBUG_OSPF_SR
)
1554 zlog_debug("SR (%s): SPF Processing Time(usecs): %lld",
1556 (stop_time
.tv_sec
- start_time
.tv_sec
) * 1000000LL
1557 + (stop_time
.tv_usec
- start_time
.tv_usec
));
1559 OspfSR
.update
= false;
1563 #define OSPF_SR_UPDATE_INTERVAL 1
1565 void ospf_sr_update_timer_add(struct ospf
*ospf
)
1571 /* Check if an update is not alreday engage */
1575 OspfSR
.update
= true;
1577 thread_add_timer(master
, ospf_sr_update_schedule
, ospf
,
1578 OSPF_SR_UPDATE_INTERVAL
, &ospf
->t_sr_update
);
1582 * --------------------------------------
1583 * Followings are vty command functions.
1584 * --------------------------------------
1588 * Segment Routing Router configuration
1590 * Must be centralize as it concerns both Extended Link/Prefix LSA
1591 * and Router Information LSA. Choose to call it from Extended Prefix
1592 * write_config() call back.
1594 * @param vty VTY output
1598 void ospf_sr_config_write_router(struct vty
*vty
)
1600 struct listnode
*node
;
1601 struct sr_prefix
*srp
;
1603 if (OspfSR
.enabled
) {
1604 vty_out(vty
, " segment-routing on\n");
1606 if ((OspfSR
.srgb
.lower_bound
!= MPLS_DEFAULT_MIN_SRGB_LABEL
)
1607 || (OspfSR
.srgb
.range_size
!= MPLS_DEFAULT_MAX_SRGB_SIZE
)) {
1608 vty_out(vty
, " segment-routing global-block %u %u\n",
1609 OspfSR
.srgb
.lower_bound
,
1610 OspfSR
.srgb
.lower_bound
+ OspfSR
.srgb
.range_size
1613 if (OspfSR
.msd
!= 0)
1614 vty_out(vty
, " segment-routing node-msd %u\n",
1617 if (OspfSR
.self
!= NULL
) {
1618 for (ALL_LIST_ELEMENTS_RO(OspfSR
.self
->ext_prefix
, node
,
1621 " segment-routing prefix %s/%u "
1623 inet_ntoa(srp
->nhlfe
.prefv4
.prefix
),
1624 srp
->nhlfe
.prefv4
.prefixlen
, srp
->sid
,
1625 CHECK_FLAG(srp
->flags
,
1626 EXT_SUBTLV_PREFIX_SID_NPFLG
)
1634 DEFUN(ospf_sr_enable
,
1636 "segment-routing on",
1638 "Enable Segment Routing\n")
1641 VTY_DECLVAR_INSTANCE_CONTEXT(ospf
, ospf
);
1646 if (ospf
->vrf_id
!= VRF_DEFAULT
) {
1648 "Segment Routing is only supported in default "
1650 return CMD_WARNING_CONFIG_FAILED
;
1653 if (IS_DEBUG_OSPF_EVENT
)
1654 zlog_debug("SR: Segment Routing: OFF -> ON");
1656 /* Start Segment Routing */
1657 OspfSR
.enabled
= true;
1658 ospf_sr_start(ospf
);
1660 /* Set Router Information SR parameters */
1661 if (IS_DEBUG_OSPF_EVENT
)
1662 zlog_debug("SR: Activate SR for Router Information LSA");
1664 ospf_router_info_update_sr(true, OspfSR
.srgb
, OspfSR
.msd
);
1666 /* Update Ext LSA */
1667 if (IS_DEBUG_OSPF_EVENT
)
1668 zlog_debug("SR: Activate SR for Extended Link/Prefix LSA");
1670 ospf_ext_update_sr(true);
1675 DEFUN (no_ospf_sr_enable
,
1676 no_ospf_sr_enable_cmd
,
1677 "no segment-routing [on]",
1680 "Disable Segment Routing\n")
1683 if (!OspfSR
.enabled
)
1686 if (IS_DEBUG_OSPF_EVENT
)
1687 zlog_debug("SR: Segment Routing: ON -> OFF");
1689 /* Start by Disabling Extended Link & Prefix LSA */
1690 ospf_ext_update_sr(false);
1692 /* then, disable Router Information SR parameters */
1693 ospf_router_info_update_sr(false, OspfSR
.srgb
, OspfSR
.msd
);
1695 /* Finally, stop Segment Routing */
1697 OspfSR
.enabled
= false;
1702 static int ospf_sr_enabled(struct vty
*vty
)
1708 vty_out(vty
, "%% OSPF SR is not turned on\n");
1713 DEFUN (sr_sid_label_range
,
1714 sr_sid_label_range_cmd
,
1715 "segment-routing global-block (0-1048575) (0-1048575)",
1717 "Segment Routing Global Block label range\n"
1718 "Lower-bound range in decimal (0-1048575)\n"
1719 "Upper-bound range in decimal (0-1048575)\n")
1727 if (!ospf_sr_enabled(vty
))
1728 return CMD_WARNING_CONFIG_FAILED
;
1730 /* Get lower and upper bound */
1731 lower
= strtoul(argv
[idx_low
]->arg
, NULL
, 10);
1732 upper
= strtoul(argv
[idx_up
]->arg
, NULL
, 10);
1733 size
= upper
- lower
+ 1;
1735 if (size
> MPLS_DEFAULT_MAX_SRGB_SIZE
|| size
<= 0) {
1737 "Range size cannot be less than 0 or more than %u\n",
1738 MPLS_DEFAULT_MAX_SRGB_SIZE
);
1739 return CMD_WARNING_CONFIG_FAILED
;
1742 if (upper
> MPLS_DEFAULT_MAX_SRGB_LABEL
) {
1743 vty_out(vty
, "Upper-bound cannot exceed %u\n",
1744 MPLS_DEFAULT_MAX_SRGB_LABEL
);
1745 return CMD_WARNING_CONFIG_FAILED
;
1748 if (upper
< MPLS_DEFAULT_MIN_SRGB_LABEL
) {
1749 vty_out(vty
, "Upper-bound cannot be lower than %u\n",
1750 MPLS_DEFAULT_MIN_SRGB_LABEL
);
1751 return CMD_WARNING_CONFIG_FAILED
;
1754 /* Check if values have changed */
1755 if ((OspfSR
.srgb
.range_size
== size
)
1756 && (OspfSR
.srgb
.lower_bound
== lower
))
1759 /* Set SID/Label range SRGB */
1760 OspfSR
.srgb
.range_size
= size
;
1761 OspfSR
.srgb
.lower_bound
= lower
;
1762 if (OspfSR
.self
!= NULL
) {
1763 OspfSR
.self
->srgb
.range_size
= size
;
1764 OspfSR
.self
->srgb
.lower_bound
= lower
;
1767 /* Set Router Information SR parameters */
1768 ospf_router_info_update_sr(true, OspfSR
.srgb
, OspfSR
.msd
);
1770 /* Update NHLFE entries */
1771 hash_iterate(OspfSR
.neighbors
,
1772 (void (*)(struct hash_bucket
*, void *))update_in_nhlfe
,
1778 DEFUN (no_sr_sid_label_range
,
1779 no_sr_sid_label_range_cmd
,
1780 "no segment-routing global-block [(0-1048575) (0-1048575)]",
1783 "Segment Routing Global Block label range\n"
1784 "Lower-bound range in decimal (0-1048575)\n"
1785 "Upper-bound range in decimal (0-1048575)\n")
1788 if (!ospf_sr_enabled(vty
))
1789 return CMD_WARNING_CONFIG_FAILED
;
1791 /* Revert to default SRGB value */
1792 OspfSR
.srgb
.range_size
= MPLS_DEFAULT_MIN_SRGB_SIZE
;
1793 OspfSR
.srgb
.lower_bound
= MPLS_DEFAULT_MIN_SRGB_LABEL
;
1794 if (OspfSR
.self
!= NULL
) {
1795 OspfSR
.self
->srgb
.range_size
= OspfSR
.srgb
.range_size
;
1796 OspfSR
.self
->srgb
.lower_bound
= OspfSR
.srgb
.lower_bound
;
1799 /* Set Router Information SR parameters */
1800 ospf_router_info_update_sr(true, OspfSR
.srgb
, OspfSR
.msd
);
1802 /* Update NHLFE entries */
1803 hash_iterate(OspfSR
.neighbors
,
1804 (void (*)(struct hash_bucket
*, void *))update_in_nhlfe
,
1812 "segment-routing node-msd (1-16)",
1814 "Maximum Stack Depth for this router\n"
1815 "Maximum number of label that could be stack (1-16)\n")
1820 if (!ospf_sr_enabled(vty
))
1821 return CMD_WARNING_CONFIG_FAILED
;
1824 argv_find(argv
, argc
, "(1-16)", &idx
);
1825 msd
= strtoul(argv
[idx
]->arg
, NULL
, 10);
1826 if (msd
< 1 || msd
> MPLS_MAX_LABELS
) {
1827 vty_out(vty
, "MSD must be comprise between 1 and %u\n",
1829 return CMD_WARNING_CONFIG_FAILED
;
1832 /* Check if value has changed */
1833 if (OspfSR
.msd
== msd
)
1836 /* Set this router MSD */
1838 if (OspfSR
.self
!= NULL
)
1839 OspfSR
.self
->msd
= msd
;
1841 /* Set Router Information SR parameters */
1842 ospf_router_info_update_sr(true, OspfSR
.srgb
, OspfSR
.msd
);
1847 DEFUN (no_sr_node_msd
,
1849 "no segment-routing node-msd [(1-16)]",
1852 "Maximum Stack Depth for this router\n"
1853 "Maximum number of label that could be stack (1-16)\n")
1856 if (!ospf_sr_enabled(vty
))
1857 return CMD_WARNING_CONFIG_FAILED
;
1859 /* unset this router MSD */
1861 if (OspfSR
.self
!= NULL
)
1862 OspfSR
.self
->msd
= 0;
1864 /* Set Router Information SR parameters */
1865 ospf_router_info_update_sr(true, OspfSR
.srgb
, 0);
1870 DEFUN (sr_prefix_sid
,
1872 "segment-routing prefix A.B.C.D/M index (0-65535) [no-php-flag]",
1875 "IPv4 Prefix as A.B.C.D/M\n"
1876 "SID index for this prefix in decimal (0-65535)\n"
1877 "Index value inside SRGB (lower_bound < index < upper_bound)\n"
1878 "Don't request Penultimate Hop Popping (PHP)\n")
1883 struct listnode
*node
;
1884 struct sr_prefix
*srp
, *new;
1885 struct interface
*ifp
;
1887 if (!ospf_sr_enabled(vty
))
1888 return CMD_WARNING_CONFIG_FAILED
;
1890 /* Get network prefix */
1891 argv_find(argv
, argc
, "A.B.C.D/M", &idx
);
1892 if (!str2prefix(argv
[idx
]->arg
, &p
)) {
1893 vty_out(vty
, "Invalid prefix format %s\n", argv
[idx
]->arg
);
1894 return CMD_WARNING_CONFIG_FAILED
;
1897 /* Get & verify index value */
1898 argv_find(argv
, argc
, "(0-65535)", &idx
);
1899 index
= strtoul(argv
[idx
]->arg
, NULL
, 10);
1900 if (index
> OspfSR
.srgb
.range_size
- 1) {
1901 vty_out(vty
, "Index %u must be lower than range size %u\n",
1902 index
, OspfSR
.srgb
.range_size
);
1903 return CMD_WARNING_CONFIG_FAILED
;
1906 /* check that the index is not already used */
1907 for (ALL_LIST_ELEMENTS_RO(OspfSR
.self
->ext_prefix
, node
, srp
)) {
1908 if (srp
->sid
== index
) {
1909 vty_out(vty
, "Index %u is already used\n", index
);
1910 return CMD_WARNING_CONFIG_FAILED
;
1914 /* Create new Extended Prefix to SRDB if not found */
1915 new = XCALLOC(MTYPE_OSPF_SR_PARAMS
, sizeof(struct sr_prefix
));
1916 IPV4_ADDR_COPY(&new->nhlfe
.prefv4
.prefix
, &p
.u
.prefix4
);
1917 IPV4_ADDR_COPY(&new->nhlfe
.nexthop
, &p
.u
.prefix4
);
1918 new->nhlfe
.prefv4
.prefixlen
= p
.prefixlen
;
1919 new->nhlfe
.prefv4
.family
= p
.family
;
1921 /* Set NO PHP flag if present and compute NHLFE */
1922 if (argv_find(argv
, argc
, "no-php-flag", &idx
)) {
1923 SET_FLAG(new->flags
, EXT_SUBTLV_PREFIX_SID_NPFLG
);
1924 new->nhlfe
.label_in
= index2label(new->sid
, OspfSR
.self
->srgb
);
1925 new->nhlfe
.label_out
= MPLS_LABEL_IMPLICIT_NULL
;
1928 if (IS_DEBUG_OSPF_SR
)
1929 zlog_debug("SR (%s): Add new index %u to Prefix %s/%u",
1930 __func__
, index
, inet_ntoa(new->nhlfe
.prefv4
.prefix
),
1931 new->nhlfe
.prefv4
.prefixlen
);
1933 /* Get Interface and check if it is a Loopback */
1934 ifp
= if_lookup_prefix(&p
, VRF_DEFAULT
);
1937 * Interface could be not yet available i.e. when this
1938 * command is in the configuration file, OSPF is not yet
1939 * ready. In this case, store the prefix SID for latter
1940 * update of this Extended Prefix
1942 listnode_add(OspfSR
.self
->ext_prefix
, new);
1944 "Interface for prefix %s/%u not found. Deferred LSA "
1946 inet_ntoa(p
.u
.prefix4
), p
.prefixlen
);
1950 if (!if_is_loopback(ifp
)) {
1951 vty_out(vty
, "interface %s is not a Loopback\n", ifp
->name
);
1952 XFREE(MTYPE_OSPF_SR_PARAMS
, new);
1953 return CMD_WARNING_CONFIG_FAILED
;
1955 new->nhlfe
.ifindex
= ifp
->ifindex
;
1957 /* Search if this prefix already exist */
1958 for (ALL_LIST_ELEMENTS_RO(OspfSR
.self
->ext_prefix
, node
, srp
)) {
1959 if ((IPV4_ADDR_SAME(&srp
->nhlfe
.prefv4
.prefix
, &p
.u
.prefix4
)
1960 && srp
->nhlfe
.prefv4
.prefixlen
== p
.prefixlen
))
1966 /* Update or Add this new SR Prefix */
1968 update_sid_nhlfe(srp
->nhlfe
, new->nhlfe
);
1969 listnode_delete(OspfSR
.self
->ext_prefix
, srp
);
1970 listnode_add(OspfSR
.self
->ext_prefix
, new);
1972 listnode_add(OspfSR
.self
->ext_prefix
, new);
1973 add_sid_nhlfe(new->nhlfe
);
1976 /* Finally, update Extended Prefix LSA */
1977 new->instance
= ospf_ext_schedule_prefix_index(
1978 ifp
, new->sid
, &new->nhlfe
.prefv4
, new->flags
);
1979 if (new->instance
== 0) {
1980 vty_out(vty
, "Unable to set index %u for prefix %s/%u\n", index
,
1981 inet_ntoa(p
.u
.prefix4
), p
.prefixlen
);
1988 DEFUN (no_sr_prefix_sid
,
1989 no_sr_prefix_sid_cmd
,
1990 "no segment-routing prefix A.B.C.D/M [index (0-65535) no-php-flag]",
1994 "IPv4 Prefix as A.B.C.D/M\n"
1995 "SID index for this prefix in decimal (0-65535)\n"
1996 "Index value inside SRGB (lower_bound < index < upper_bound)\n"
1997 "Don't request Penultimate Hop Popping (PHP)\n")
2001 struct listnode
*node
;
2002 struct sr_prefix
*srp
;
2003 struct interface
*ifp
;
2007 if (!ospf_sr_enabled(vty
))
2008 return CMD_WARNING_CONFIG_FAILED
;
2010 /* Get network prefix */
2011 argv_find(argv
, argc
, "A.B.C.D/M", &idx
);
2012 rc
= str2prefix(argv
[idx
]->arg
, &p
);
2014 vty_out(vty
, "Invalid prefix format %s\n", argv
[idx
]->arg
);
2015 return CMD_WARNING_CONFIG_FAILED
;
2018 /* check that the prefix is already set */
2019 for (ALL_LIST_ELEMENTS_RO(OspfSR
.self
->ext_prefix
, node
, srp
))
2020 if (IPV4_ADDR_SAME(&srp
->nhlfe
.prefv4
.prefix
, &p
.u
.prefix4
)
2021 && (srp
->nhlfe
.prefv4
.prefixlen
== p
.prefixlen
)) {
2027 vty_out(vty
, "Prefix %s is not found. Abort!\n",
2029 return CMD_WARNING_CONFIG_FAILED
;
2033 ifp
= if_lookup_by_index(srp
->nhlfe
.ifindex
, VRF_DEFAULT
);
2035 vty_out(vty
, "interface for prefix %s not found.\n",
2037 return CMD_WARNING_CONFIG_FAILED
;
2040 /* Update Extended Prefix LSA */
2041 if (!ospf_ext_schedule_prefix_index(ifp
, 0, NULL
, 0)) {
2042 vty_out(vty
, "No corresponding loopback interface. Abort!\n");
2046 if (IS_DEBUG_OSPF_SR
)
2047 zlog_debug("SR (%s): Remove Prefix %s/%u with index %u",
2048 __func__
, inet_ntoa(srp
->nhlfe
.prefv4
.prefix
),
2049 srp
->nhlfe
.prefv4
.prefixlen
, srp
->sid
);
2051 /* Delete NHLFE is NO-PHP is set */
2052 if (CHECK_FLAG(srp
->flags
, EXT_SUBTLV_PREFIX_SID_NPFLG
))
2053 del_sid_nhlfe(srp
->nhlfe
);
2055 /* OK, all is clean, remove SRP from SRDB */
2056 listnode_delete(OspfSR
.self
->ext_prefix
, srp
);
2057 XFREE(MTYPE_OSPF_SR_PARAMS
, srp
);
2063 static void show_sr_node(struct vty
*vty
, struct json_object
*json
,
2064 struct sr_node
*srn
)
2067 struct listnode
*node
;
2068 struct sr_link
*srl
;
2069 struct sr_prefix
*srp
;
2070 struct interface
*itf
;
2074 json_object
*json_node
= NULL
, *json_algo
, *json_obj
;
2075 json_object
*json_prefix
= NULL
, *json_link
= NULL
;
2082 json_node
= json_object_new_object();
2083 json_object_string_add(json_node
, "routerID",
2084 inet_ntoa(srn
->adv_router
));
2085 json_object_int_add(json_node
, "srgbSize",
2086 srn
->srgb
.range_size
);
2087 json_object_int_add(json_node
, "srgbLabel",
2088 srn
->srgb
.lower_bound
);
2089 json_algo
= json_object_new_array();
2090 json_object_object_add(json_node
, "algorithms", json_algo
);
2091 for (int i
= 0; i
< ALGORITHM_COUNT
; i
++) {
2092 if (srn
->algo
[i
] == SR_ALGORITHM_UNSET
)
2094 json_obj
= json_object_new_object();
2097 snprintf(tmp
, 2, "%u", i
);
2098 json_object_string_add(json_obj
, tmp
,
2099 srn
->algo
[i
] == SR_ALGORITHM_SPF
2102 json_object_array_add(json_algo
, json_obj
);
2105 json_object_int_add(json_node
, "nodeMsd", srn
->msd
);
2107 vty_out(vty
, "SR-Node: %s", inet_ntoa(srn
->adv_router
));
2108 vty_out(vty
, "\tSRGB (Size/Label): %u/%u", srn
->srgb
.range_size
,
2109 srn
->srgb
.lower_bound
);
2110 vty_out(vty
, "\tAlgorithm(s): %s",
2111 srn
->algo
[0] == SR_ALGORITHM_SPF
? "SPF" : "S-SPF");
2112 for (int i
= 1; i
< ALGORITHM_COUNT
; i
++) {
2113 if (srn
->algo
[i
] == SR_ALGORITHM_UNSET
)
2116 srn
->algo
[i
] == SR_ALGORITHM_SPF
? "SPF"
2120 vty_out(vty
, "\tMSD: %u", srn
->msd
);
2125 "\n\n Prefix or Link Label In Label Out "
2126 "Node or Adj. SID Interface Nexthop\n");
2128 "------------------ -------- --------- "
2129 "--------------------- --------- ---------------\n");
2131 for (ALL_LIST_ELEMENTS_RO(srn
->ext_prefix
, node
, srp
)) {
2132 snprintf(pref
, 19, "%s/%u", inet_ntoa(srp
->nhlfe
.prefv4
.prefix
),
2133 srp
->nhlfe
.prefv4
.prefixlen
);
2134 snprintf(sid
, 22, "SR Pfx (idx %u)", srp
->sid
);
2135 if (srp
->nhlfe
.label_out
== MPLS_LABEL_IMPLICIT_NULL
)
2136 sprintf(label
, "pop");
2138 sprintf(label
, "%u", srp
->nhlfe
.label_out
);
2139 itf
= if_lookup_by_index(srp
->nhlfe
.ifindex
, VRF_DEFAULT
);
2142 json_prefix
= json_object_new_array();
2143 json_object_object_add(json_node
,
2147 json_obj
= json_object_new_object();
2148 json_object_string_add(json_obj
, "prefix", pref
);
2149 json_object_int_add(json_obj
, "sid", srp
->sid
);
2150 json_object_int_add(json_obj
, "inputLabel",
2151 srp
->nhlfe
.label_in
);
2152 json_object_string_add(json_obj
, "outputLabel", label
);
2153 json_object_string_add(json_obj
, "interface",
2154 itf
? itf
->name
: "-");
2155 json_object_string_add(json_obj
, "nexthop",
2156 inet_ntoa(srp
->nhlfe
.nexthop
));
2157 json_object_array_add(json_prefix
, json_obj
);
2159 vty_out(vty
, "%18s %8u %9s %21s %9s %15s\n", pref
,
2160 srp
->nhlfe
.label_in
, label
, sid
,
2161 itf
? itf
->name
: "-",
2162 inet_ntoa(srp
->nhlfe
.nexthop
));
2166 for (ALL_LIST_ELEMENTS_RO(srn
->ext_link
, node
, srl
)) {
2167 snprintf(pref
, 19, "%s/%u",
2168 inet_ntoa(srl
->nhlfe
[0].prefv4
.prefix
),
2169 srl
->nhlfe
[0].prefv4
.prefixlen
);
2170 snprintf(sid
, 22, "SR Adj. (lbl %u)", srl
->sid
[0]);
2171 if (srl
->nhlfe
[0].label_out
== MPLS_LABEL_IMPLICIT_NULL
)
2172 sprintf(label
, "pop");
2174 sprintf(label
, "%u", srl
->nhlfe
[0].label_out
);
2175 itf
= if_lookup_by_index(srl
->nhlfe
[0].ifindex
, VRF_DEFAULT
);
2178 json_link
= json_object_new_array();
2179 json_object_object_add(
2180 json_node
, "extendedLink", json_link
);
2183 json_obj
= json_object_new_object();
2184 json_object_string_add(json_obj
, "prefix", pref
);
2185 json_object_int_add(json_obj
, "sid", srl
->sid
[0]);
2186 json_object_int_add(json_obj
, "inputLabel",
2187 srl
->nhlfe
[0].label_in
);
2188 json_object_string_add(json_obj
, "outputLabel", label
);
2189 json_object_string_add(json_obj
, "interface",
2190 itf
? itf
->name
: "-");
2191 json_object_string_add(
2192 json_obj
, "nexthop",
2193 inet_ntoa(srl
->nhlfe
[0].nexthop
));
2194 json_object_array_add(json_link
, json_obj
);
2196 json_obj
= json_object_new_object();
2197 snprintf(sid
, 22, "SR Adj. (lbl %u)", srl
->sid
[1]);
2198 if (srl
->nhlfe
[1].label_out
== MPLS_LABEL_IMPLICIT_NULL
)
2199 sprintf(label
, "pop");
2201 sprintf(label
, "%u", srl
->nhlfe
[0].label_out
);
2202 json_object_string_add(json_obj
, "prefix", pref
);
2203 json_object_int_add(json_obj
, "sid", srl
->sid
[1]);
2204 json_object_int_add(json_obj
, "inputLabel",
2205 srl
->nhlfe
[1].label_in
);
2206 json_object_string_add(json_obj
, "outputLabel", label
);
2207 json_object_string_add(json_obj
, "interface",
2208 itf
? itf
->name
: "-");
2209 json_object_string_add(
2210 json_obj
, "nexthop",
2211 inet_ntoa(srl
->nhlfe
[1].nexthop
));
2212 json_object_array_add(json_link
, json_obj
);
2214 vty_out(vty
, "%18s %8u %9s %21s %9s %15s\n", pref
,
2215 srl
->nhlfe
[0].label_in
, label
, sid
,
2216 itf
? itf
->name
: "-",
2217 inet_ntoa(srl
->nhlfe
[0].nexthop
));
2218 snprintf(sid
, 22, "SR Adj. (lbl %u)", srl
->sid
[1]);
2219 if (srl
->nhlfe
[1].label_out
== MPLS_LABEL_IMPLICIT_NULL
)
2220 sprintf(label
, "pop");
2222 sprintf(label
, "%u", srl
->nhlfe
[1].label_out
);
2223 vty_out(vty
, "%18s %8u %9s %21s %9s %15s\n", pref
,
2224 srl
->nhlfe
[1].label_in
, label
, sid
,
2225 itf
? itf
->name
: "-",
2226 inet_ntoa(srl
->nhlfe
[1].nexthop
));
2230 json_object_array_add(json
, json_node
);
2235 static void show_vty_srdb(struct hash_bucket
*bucket
, void *args
)
2237 struct vty
*vty
= (struct vty
*)args
;
2238 struct sr_node
*srn
= (struct sr_node
*)bucket
->data
;
2240 show_sr_node(vty
, NULL
, srn
);
2243 static void show_json_srdb(struct hash_bucket
*bucket
, void *args
)
2245 struct json_object
*json
= (struct json_object
*)args
;
2246 struct sr_node
*srn
= (struct sr_node
*)bucket
->data
;
2248 show_sr_node(NULL
, json
, srn
);
2251 DEFUN (show_ip_opsf_srdb
,
2252 show_ip_ospf_srdb_cmd
,
2253 "show ip ospf database segment-routing [adv-router A.B.C.D|self-originate] [json]",
2257 "Database summary\n"
2258 "Show Segment Routing Data Base\n"
2259 "Advertising SR node\n"
2260 "Advertising SR node ID (as an IP address)\n"
2261 "Self-originated SR node\n"
2266 struct sr_node
*srn
;
2267 bool uj
= use_json(argc
, argv
);
2268 json_object
*json
= NULL
, *json_node_array
= NULL
;
2270 if (!OspfSR
.enabled
) {
2271 vty_out(vty
, "Segment Routing is disabled on this router\n");
2276 json
= json_object_new_object();
2277 json_node_array
= json_object_new_array();
2278 json_object_string_add(json
, "srdbID",
2279 inet_ntoa(OspfSR
.self
->adv_router
));
2280 json_object_object_add(json
, "srNodes", json_node_array
);
2283 "\n\t\tOSPF Segment Routing database for ID %s\n\n",
2284 inet_ntoa(OspfSR
.self
->adv_router
));
2287 if (argv_find(argv
, argc
, "self-originate", &idx
)) {
2289 show_sr_node(vty
, json_node_array
, srn
);
2291 vty_out(vty
, "%s\n",
2292 json_object_to_json_string_ext(
2293 json
, JSON_C_TO_STRING_PRETTY
));
2294 json_object_free(json
);
2299 if (argv_find(argv
, argc
, "A.B.C.D", &idx
)) {
2300 if (!inet_aton(argv
[idx
]->arg
, &rid
)) {
2301 vty_out(vty
, "Specified Router ID %s is invalid\n",
2303 return CMD_WARNING_CONFIG_FAILED
;
2305 /* Get the SR Node from the SRDB */
2306 srn
= (struct sr_node
*)hash_lookup(OspfSR
.neighbors
,
2308 show_sr_node(vty
, json_node_array
, srn
);
2310 vty_out(vty
, "%s\n",
2311 json_object_to_json_string_ext(
2312 json
, JSON_C_TO_STRING_PRETTY
));
2313 json_object_free(json
);
2318 /* No parameters have been provided, Iterate through all the SRDB */
2320 hash_iterate(OspfSR
.neighbors
, (void (*)(struct hash_bucket
*,
2321 void *))show_json_srdb
,
2322 (void *)json_node_array
);
2323 vty_out(vty
, "%s\n", json_object_to_json_string_ext(
2324 json
, JSON_C_TO_STRING_PRETTY
));
2325 json_object_free(json
);
2327 hash_iterate(OspfSR
.neighbors
, (void (*)(struct hash_bucket
*,
2328 void *))show_vty_srdb
,
2334 /* Install new CLI commands */
2335 void ospf_sr_register_vty(void)
2337 install_element(VIEW_NODE
, &show_ip_ospf_srdb_cmd
);
2339 install_element(OSPF_NODE
, &ospf_sr_enable_cmd
);
2340 install_element(OSPF_NODE
, &no_ospf_sr_enable_cmd
);
2341 install_element(OSPF_NODE
, &sr_sid_label_range_cmd
);
2342 install_element(OSPF_NODE
, &no_sr_sid_label_range_cmd
);
2343 install_element(OSPF_NODE
, &sr_node_msd_cmd
);
2344 install_element(OSPF_NODE
, &no_sr_node_msd_cmd
);
2345 install_element(OSPF_NODE
, &sr_prefix_sid_cmd
);
2346 install_element(OSPF_NODE
, &no_sr_prefix_sid_cmd
);