]> git.proxmox.com Git - mirror_frr.git/blob - zebra/rtread_getmsg.c
Merge branch 'stable/3.0' into tmp-3.0-master-merge
[mirror_frr.git] / zebra / rtread_getmsg.c
1 /*
2 * Kernel routing table readup by getmsg(2)
3 * Copyright (C) 1999 Michael Handler
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 *
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
20 */
21
22 #include <zebra.h>
23
24 #ifdef SUNOS_5
25
26 #include "prefix.h"
27 #include "log.h"
28 #include "if.h"
29 #include "vrf.h"
30 #include "vty.h"
31
32 #include "zebra/rib.h"
33 #include "zebra/zserv.h"
34
35 /* Thank you, Solaris, for polluting application symbol namespace. */
36 #undef hook_register
37 #undef hook_unregister
38
39 #include <sys/stream.h>
40 #include <sys/tihdr.h>
41
42 /* Solaris defines these in both <netinet/in.h> and <inet/in.h>, sigh */
43 #ifdef SUNOS_5
44 #include <sys/tiuser.h>
45 #ifndef T_CURRENT
46 #define T_CURRENT MI_T_CURRENT
47 #endif /* T_CURRENT */
48 #ifndef IRE_CACHE
49 #define IRE_CACHE 0x0020 /* Cached Route entry */
50 #endif /* IRE_CACHE */
51 #ifndef IRE_HOST_REDIRECT
52 #define IRE_HOST_REDIRECT 0x0200 /* Host route entry from redirects */
53 #endif /* IRE_HOST_REDIRECT */
54 #ifndef IRE_CACHETABLE
55 #define IRE_CACHETABLE (IRE_CACHE | IRE_BROADCAST | IRE_LOCAL | IRE_LOOPBACK)
56 #endif /* IRE_CACHETABLE */
57 #undef IPOPT_EOL
58 #undef IPOPT_NOP
59 #undef IPOPT_LSRR
60 #undef IPOPT_RR
61 #undef IPOPT_SSRR
62 #endif /* SUNOS_5 */
63
64 #include <inet/common.h>
65 #include <inet/ip.h>
66 #include <inet/mib2.h>
67
68 /* device to read IP routing table from */
69 #ifndef _PATH_GETMSG_ROUTE
70 #define _PATH_GETMSG_ROUTE "/dev/ip"
71 #endif /* _PATH_GETMSG_ROUTE */
72
73 #define RT_BUFSIZ 8192
74
75 static void handle_route_entry(mib2_ipRouteEntry_t *routeEntry)
76 {
77 struct prefix prefix;
78 struct in_addr tmpaddr, gateway;
79 union g_addr *ggateway;
80 u_char zebra_flags = 0;
81
82 if (routeEntry->ipRouteInfo.re_ire_type & IRE_CACHETABLE)
83 return;
84
85 if (routeEntry->ipRouteInfo.re_ire_type & IRE_HOST_REDIRECT)
86 zebra_flags |= ZEBRA_FLAG_SELFROUTE;
87
88 prefix.family = AF_INET;
89
90 tmpaddr.s_addr = routeEntry->ipRouteDest;
91 prefix.u.prefix4 = tmpaddr;
92
93 tmpaddr.s_addr = routeEntry->ipRouteMask;
94 prefix.prefixlen = ip_masklen(tmpaddr);
95
96 gateway.s_addr = routeEntry->ipRouteNextHop;
97 ggateway = (union g_addr *)&gateway;
98
99 rib_add(AFI_IP, SAFI_UNICAST, VRF_DEFAULT, ZEBRA_ROUTE_KERNEL, 0,
100 zebra_flags, &prefix, NULL, ggateway, NULL, 0, 0, 0, 0, 0);
101 }
102
103 void route_read(struct zebra_ns *zns)
104 {
105 char storage[RT_BUFSIZ];
106
107 struct T_optmgmt_req *TLIreq = (struct T_optmgmt_req *)storage;
108 struct T_optmgmt_ack *TLIack = (struct T_optmgmt_ack *)storage;
109 struct T_error_ack *TLIerr = (struct T_error_ack *)storage;
110
111 struct opthdr *MIB2hdr;
112
113 mib2_ipRouteEntry_t *routeEntry, *lastRouteEntry;
114
115 struct strbuf msgdata;
116 int flags, dev, retval, process;
117
118 if ((dev = open(_PATH_GETMSG_ROUTE, O_RDWR)) == -1) {
119 zlog_warn("can't open %s: %s", _PATH_GETMSG_ROUTE,
120 safe_strerror(errno));
121 return;
122 }
123
124 TLIreq->PRIM_type = T_OPTMGMT_REQ;
125 TLIreq->OPT_offset = sizeof(struct T_optmgmt_req);
126 TLIreq->OPT_length = sizeof(struct opthdr);
127 TLIreq->MGMT_flags = T_CURRENT;
128
129 MIB2hdr = (struct opthdr *)&TLIreq[1];
130
131 MIB2hdr->level = MIB2_IP;
132 MIB2hdr->name = 0;
133 MIB2hdr->len = 0;
134
135 msgdata.buf = storage;
136 msgdata.len = sizeof(struct T_optmgmt_req) + sizeof(struct opthdr);
137
138 flags = 0;
139
140 if (putmsg(dev, &msgdata, NULL, flags) == -1) {
141 zlog_warn("putmsg failed: %s", safe_strerror(errno));
142 goto exit;
143 }
144
145 MIB2hdr = (struct opthdr *)&TLIack[1];
146 msgdata.maxlen = sizeof(storage);
147
148 while (1) {
149 flags = 0;
150 retval = getmsg(dev, &msgdata, NULL, &flags);
151
152 if (retval == -1) {
153 zlog_warn("getmsg(ctl) failed: %s",
154 safe_strerror(errno));
155 goto exit;
156 }
157
158 /* This is normal loop termination */
159 if (retval == 0
160 && (size_t)msgdata.len >= sizeof(struct T_optmgmt_ack)
161 && TLIack->PRIM_type == T_OPTMGMT_ACK
162 && TLIack->MGMT_flags == T_SUCCESS && MIB2hdr->len == 0)
163 break;
164
165 if ((size_t)msgdata.len >= sizeof(struct T_error_ack)
166 && TLIerr->PRIM_type == T_ERROR_ACK) {
167 zlog_warn("getmsg(ctl) returned T_ERROR_ACK: %s",
168 safe_strerror((TLIerr->TLI_error == TSYSERR)
169 ? TLIerr->UNIX_error
170 : EPROTO));
171 break;
172 }
173
174 /* should dump more debugging info to the log statement,
175 like what GateD does in this instance, but not
176 critical yet. */
177 if (retval != MOREDATA
178 || (size_t)msgdata.len < sizeof(struct T_optmgmt_ack)
179 || TLIack->PRIM_type != T_OPTMGMT_ACK
180 || TLIack->MGMT_flags != T_SUCCESS) {
181 errno = ENOMSG;
182 zlog_warn("getmsg(ctl) returned bizarreness");
183 break;
184 }
185
186 /* MIB2_IP_21 is the the pseudo-MIB2 ipRouteTable
187 entry, see <inet/mib2.h>. "This isn't the MIB data
188 you're looking for." */
189 process = (MIB2hdr->level == MIB2_IP
190 && MIB2hdr->name == MIB2_IP_21)
191 ? 1
192 : 0;
193
194 /* getmsg writes the data buffer out completely, not
195 to the closest smaller multiple. Unless reassembling
196 data structures across buffer boundaries is your idea
197 of a good time, set maxlen to the closest smaller
198 multiple of the size of the datastructure you're
199 retrieving. */
200 msgdata.maxlen =
201 sizeof(storage)
202 - (sizeof(storage) % sizeof(mib2_ipRouteEntry_t));
203
204 msgdata.len = 0;
205 flags = 0;
206
207 do {
208 retval = getmsg(dev, NULL, &msgdata, &flags);
209
210 if (retval == -1) {
211 zlog_warn("getmsg(data) failed: %s",
212 safe_strerror(errno));
213 goto exit;
214 }
215
216 if (!(retval == 0 || retval == MOREDATA)) {
217 zlog_warn("getmsg(data) returned %d", retval);
218 goto exit;
219 }
220
221 if (process) {
222 if (msgdata.len % sizeof(mib2_ipRouteEntry_t)
223 != 0) {
224 zlog_warn(
225 "getmsg(data) returned "
226 "msgdata.len = %d (%% sizeof (mib2_ipRouteEntry_t) != 0)",
227 msgdata.len);
228 goto exit;
229 }
230
231 routeEntry = (mib2_ipRouteEntry_t *)msgdata.buf;
232 lastRouteEntry =
233 (mib2_ipRouteEntry_t *)(msgdata.buf
234 + msgdata.len);
235 do {
236 handle_route_entry(routeEntry);
237 } while (++routeEntry < lastRouteEntry);
238 }
239 } while (retval == MOREDATA);
240 }
241
242 exit:
243 close(dev);
244 }
245
246 /* Only implemented for netlink method */
247 void macfdb_read(struct zebra_ns *zns)
248 {
249 }
250
251 void macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
252 struct interface *br_if)
253 {
254 }
255
256 void neigh_read(struct zebra_ns *zns)
257 {
258 }
259
260 void neigh_read_for_vlan(struct zebra_ns *zns, struct interface *vlan_if)
261 {
262 }
263
264 #endif /* SUNOS_5 */