]> git.proxmox.com Git - mirror_frr.git/blame - ospfd/ospf_route.h
Merge pull request #7155 from donaldsharp/TRAP
[mirror_frr.git] / ospfd / ospf_route.h
CommitLineData
718e3744 1/*
2 * OSPF routing table.
3 * Copyright (C) 1999, 2000 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * 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
718e3744 20 */
21
22#ifndef _ZEBRA_OSPF_ROUTE_H
23#define _ZEBRA_OSPF_ROUTE_H
24
25#define OSPF_DESTINATION_ROUTER 1
26#define OSPF_DESTINATION_NETWORK 2
27#define OSPF_DESTINATION_DISCARD 3
28
29#define OSPF_PATH_MIN 0
30#define OSPF_PATH_INTRA_AREA 1
31#define OSPF_PATH_INTER_AREA 2
32#define OSPF_PATH_TYPE1_EXTERNAL 3
33#define OSPF_PATH_TYPE2_EXTERNAL 4
34#define OSPF_PATH_MAX 5
35
b37eb79c
OD
36/* Segment Routing information to complement ospf_path structure */
37struct sr_nexthop_info {
38 /* Output label associated to this route */
39 mpls_label_t label_out;
40 /*
41 * Pointer to SR Node which is the next hop for this route
42 * or NULL if next hop is the destination of the prefix
43 */
44 struct sr_node *nexthop;
45};
46
718e3744 47/* OSPF Path. */
d62a17ae 48struct ospf_path {
49 struct in_addr nexthop;
50 struct in_addr adv_router;
51 ifindex_t ifindex;
52 unsigned char unnumbered;
b37eb79c 53 struct sr_nexthop_info srni;
718e3744 54};
55
56/* Below is the structure linked to every
57 route node. Note that for Network routing
58 entries a single ospf_route is kept, while
59 for ABRs and ASBRs (Router routing entries),
60 we link an instance of ospf_router_route
61 where a list of paths is maintained, so
62
63 nr->info is a (struct ospf_route *) for OSPF_DESTINATION_NETWORK
64 but
65 nr->info is a (struct ospf_router_route *) for OSPF_DESTINATION_ROUTER
66*/
67
d62a17ae 68struct route_standard {
69 /* Link Sate Origin. */
70 struct lsa_header *origin;
718e3744 71
d62a17ae 72 /* Associated Area. */
73 struct in_addr area_id; /* The area the route belongs to */
718e3744 74
d62a17ae 75 /* Area Type */
76 int external_routing;
718e3744 77
d62a17ae 78 /* Optional Capability. */
d7c0a89a 79 uint8_t options; /* Get from LSA header. */
718e3744 80
d62a17ae 81 /* */
d7c0a89a 82 uint8_t flags; /* From router-LSA */
718e3744 83};
84
d62a17ae 85struct route_external {
86 /* Link State Origin. */
87 struct ospf_lsa *origin;
718e3744 88
d62a17ae 89 /* Link State Cost Type2. */
d7c0a89a 90 uint32_t type2_cost;
718e3744 91
d62a17ae 92 /* Tag value. */
d7c0a89a 93 uint32_t tag;
718e3744 94
d62a17ae 95 /* ASBR route. */
96 struct ospf_route *asbr;
718e3744 97};
98
d62a17ae 99struct ospf_route {
100 /* Destination Type. */
d7c0a89a 101 uint8_t type;
718e3744 102
d62a17ae 103 /* Destination ID. */ /* i.e. Link State ID. */
104 struct in_addr id;
718e3744 105
d62a17ae 106 /* Address Mask. */
107 struct in_addr mask; /* Only valid for networks. */
718e3744 108
d62a17ae 109 /* Path Type. */
d7c0a89a 110 uint8_t path_type;
718e3744 111
d62a17ae 112 /* List of Paths. */
113 struct list *paths;
718e3744 114
d62a17ae 115 /* Link State Cost. */
d7c0a89a 116 uint32_t cost; /* i.e. metric. */
718e3744 117
d62a17ae 118 /* Route specific info. */
119 union {
120 struct route_standard std;
121 struct route_external ext;
122 } u;
718e3744 123};
124
d62a17ae 125extern struct ospf_path *ospf_path_new(void);
126extern void ospf_path_free(struct ospf_path *);
127extern struct ospf_path *ospf_path_lookup(struct list *, struct ospf_path *);
128extern struct ospf_route *ospf_route_new(void);
129extern void ospf_route_free(struct ospf_route *);
b5a8894d 130extern void ospf_route_delete(struct ospf *, struct route_table *);
d62a17ae 131extern void ospf_route_table_free(struct route_table *);
4dadc291 132
d62a17ae 133extern void ospf_route_install(struct ospf *, struct route_table *);
134extern void ospf_route_table_dump(struct route_table *);
3a76b1be 135extern void ospf_route_table_print(struct vty *vty, struct route_table *rt);
4dadc291 136
d62a17ae 137extern void ospf_intra_add_router(struct route_table *, struct vertex *,
138 struct ospf_area *);
139
140extern void ospf_intra_add_transit(struct route_table *, struct vertex *,
4dadc291 141 struct ospf_area *);
142
d62a17ae 143extern void ospf_intra_add_stub(struct route_table *, struct router_lsa_link *,
144 struct vertex *, struct ospf_area *,
145 int parent_is_root, int);
146
147extern int ospf_route_cmp(struct ospf *, struct ospf_route *,
148 struct ospf_route *);
149extern void ospf_route_copy_nexthops(struct ospf_route *, struct list *);
1d376ff5
G
150extern void ospf_route_copy_nexthops_from_vertex(struct ospf_area *area,
151 struct ospf_route *,
d62a17ae 152 struct vertex *);
153
154extern void ospf_route_subst(struct route_node *, struct ospf_route *,
155 struct ospf_route *);
156extern void ospf_route_add(struct route_table *, struct prefix_ipv4 *,
157 struct ospf_route *, struct ospf_route *);
158
159extern void ospf_route_subst_nexthops(struct ospf_route *, struct list *);
160extern void ospf_prune_unreachable_networks(struct route_table *);
161extern void ospf_prune_unreachable_routers(struct route_table *);
b5a8894d
CS
162extern int ospf_add_discard_route(struct ospf *, struct route_table *,
163 struct ospf_area *, struct prefix_ipv4 *);
164extern void ospf_delete_discard_route(struct ospf *, struct route_table *,
d62a17ae 165 struct prefix_ipv4 *);
166extern int ospf_route_match_same(struct route_table *, struct prefix_ipv4 *,
167 struct ospf_route *);
718e3744 168
169#endif /* _ZEBRA_OSPF_ROUTE_H */