1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
|
/* $OpenBSD: if_mpe.c,v 1.76 2019/01/30 01:09:36 dlg Exp $ */
/*
* Copyright (c) 2008 Pierre-Yves Ritschard <pyr@spootnik.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "mpe.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_var.h>
#include <net/if_types.h>
#include <net/netisr.h>
#include <net/route.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#ifdef INET6
#include <netinet/ip6.h>
#endif /* INET6 */
#include "bpfilter.h"
#if NBPFILTER > 0
#include <net/bpf.h>
#endif
#include <netmpls/mpls.h>
#ifdef MPLS_DEBUG
#define DPRINTF(x) do { if (mpedebug) printf x ; } while (0)
#else
#define DPRINTF(x)
#endif
struct mpe_softc {
struct ifnet sc_if; /* the interface */
struct ifaddr sc_ifa;
struct sockaddr_mpls sc_smpls;
LIST_ENTRY(mpe_softc) sc_list;
};
#define MPE_HDRLEN sizeof(struct shim_hdr)
#define MPE_MTU 1500
#define MPE_MTU_MIN 256
#define MPE_MTU_MAX 8192
void mpeattach(int);
int mpe_output(struct ifnet *, struct mbuf *, struct sockaddr *,
struct rtentry *);
int mpe_ioctl(struct ifnet *, u_long, caddr_t);
void mpe_start(struct ifnet *);
int mpe_clone_create(struct if_clone *, int);
int mpe_clone_destroy(struct ifnet *);
void mpe_input(struct ifnet *, struct mbuf *);
LIST_HEAD(, mpe_softc) mpeif_list;
struct if_clone mpe_cloner =
IF_CLONE_INITIALIZER("mpe", mpe_clone_create, mpe_clone_destroy);
extern int mpls_mapttl_ip;
#ifdef INET6
extern int mpls_mapttl_ip6;
#endif
void
mpeattach(int nmpe)
{
LIST_INIT(&mpeif_list);
if_clone_attach(&mpe_cloner);
}
int
mpe_clone_create(struct if_clone *ifc, int unit)
{
struct mpe_softc *sc;
struct ifnet *ifp;
sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK|M_ZERO);
ifp = &sc->sc_if;
snprintf(ifp->if_xname, sizeof ifp->if_xname, "mpe%d", unit);
ifp->if_flags = IFF_POINTOPOINT;
ifp->if_xflags = IFXF_CLONED;
ifp->if_softc = sc;
ifp->if_mtu = MPE_MTU;
ifp->if_ioctl = mpe_ioctl;
ifp->if_output = mpe_output;
ifp->if_start = mpe_start;
ifp->if_type = IFT_MPLS;
ifp->if_hdrlen = MPE_HDRLEN;
IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
if_attach(ifp);
if_alloc_sadl(ifp);
#if NBPFILTER > 0
bpfattach(&ifp->if_bpf, ifp, DLT_LOOP, sizeof(u_int32_t));
#endif
sc->sc_ifa.ifa_ifp = ifp;
sc->sc_ifa.ifa_addr = sdltosa(ifp->if_sadl);
sc->sc_smpls.smpls_len = sizeof(sc->sc_smpls);
sc->sc_smpls.smpls_family = AF_MPLS;
LIST_INSERT_HEAD(&mpeif_list, sc, sc_list);
return (0);
}
int
mpe_clone_destroy(struct ifnet *ifp)
{
struct mpe_softc *sc = ifp->if_softc;
LIST_REMOVE(sc, sc_list);
if (sc->sc_smpls.smpls_label) {
rt_ifa_del(&sc->sc_ifa, RTF_MPLS,
smplstosa(&sc->sc_smpls));
}
if_detach(ifp);
free(sc, M_DEVBUF, sizeof *sc);
return (0);
}
/*
* Start output on the mpe interface.
*/
void
mpe_start(struct ifnet *ifp)
{
struct mbuf *m;
struct sockaddr *sa;
struct sockaddr smpls = { .sa_family = AF_MPLS };
struct rtentry *rt;
struct ifnet *ifp0;
while ((m = ifq_dequeue(&ifp->if_snd)) != NULL) {
sa = mtod(m, struct sockaddr *);
rt = rtalloc(sa, RT_RESOLVE, 0);
if (!rtisvalid(rt)) {
m_freem(m);
rtfree(rt);
continue;
}
ifp0 = if_get(rt->rt_ifidx);
if (ifp0 == NULL) {
m_freem(m);
rtfree(rt);
continue;
}
m_adj(m, sa->sa_len);
#if NBPFILTER > 0
if (ifp->if_bpf) {
/* remove MPLS label before passing packet to bpf */
m->m_data += sizeof(struct shim_hdr);
m->m_len -= sizeof(struct shim_hdr);
m->m_pkthdr.len -= sizeof(struct shim_hdr);
bpf_mtap_af(ifp->if_bpf, m->m_pkthdr.ph_family,
m, BPF_DIRECTION_OUT);
m->m_data -= sizeof(struct shim_hdr);
m->m_len += sizeof(struct shim_hdr);
m->m_pkthdr.len += sizeof(struct shim_hdr);
}
#endif
mpls_output(ifp0, m, &smpls, rt);
if_put(ifp0);
rtfree(rt);
}
}
int
mpe_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *dst,
struct rtentry *rt)
{
struct rt_mpls *rtmpls;
struct shim_hdr shim;
int error;
uint8_t ttl = mpls_defttl;
size_t ttloff;
socklen_t slen;
if (!rtisvalid(rt) || !ISSET(rt->rt_flags, RTF_MPLS)) {
m_freem(m);
return (ENETUNREACH);
}
if (dst->sa_family == AF_LINK && ISSET(rt->rt_flags, RTF_LOCAL)) {
mpe_input(ifp, m);
return (0);
}
#ifdef DIAGNOSTIC
if (ifp->if_rdomain != rtable_l2(m->m_pkthdr.ph_rtableid)) {
printf("%s: trying to send packet on wrong domain. "
"if %d vs. mbuf %d\n", ifp->if_xname,
ifp->if_rdomain, rtable_l2(m->m_pkthdr.ph_rtableid));
}
#endif
rtmpls = (struct rt_mpls *)rt->rt_llinfo;
if (rtmpls->mpls_operation != MPLS_OP_PUSH) {
m_freem(m);
return (ENETUNREACH);
}
error = 0;
switch (dst->sa_family) {
case AF_INET:
ttloff = offsetof(struct ip, ip_ttl);
slen = sizeof(struct sockaddr_in);
break;
#ifdef INET6
case AF_INET6:
ttloff = offsetof(struct ip6_hdr, ip6_hlim);
slen = sizeof(struct sockaddr_in6);
break;
#endif
default:
m_freem(m);
return (EPFNOSUPPORT);
}
if (mpls_mapttl_ip) {
/* assumes the ip header is already contig */
ttl = *(mtod(m, uint8_t *) + ttloff);
}
shim.shim_label = rtmpls->mpls_label | MPLS_BOS_MASK | htonl(ttl);
m = m_prepend(m, sizeof(shim), M_NOWAIT);
if (m == NULL) {
error = ENOMEM;
goto out;
}
*mtod(m, struct shim_hdr *) = shim;
m = m_prepend(m, slen, M_WAITOK);
if (m == NULL) {
error = ENOMEM;
goto out;
}
memcpy(mtod(m, struct sockaddr *), rt->rt_gateway, slen);
mtod(m, struct sockaddr *)->sa_len = slen; /* to be sure */
m->m_pkthdr.ph_ifidx = ifp->if_index;
/* XXX assumes MPLS is always in rdomain 0 */
m->m_pkthdr.ph_rtableid = 0;
m->m_pkthdr.ph_family = dst->sa_family;
error = if_enqueue(ifp, m);
out:
if (error)
ifp->if_oerrors++;
return (error);
}
int
mpe_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
{
struct mpe_softc *ifm;
struct ifreq *ifr;
struct shim_hdr shim;
int error = 0;
ifr = (struct ifreq *)data;
switch (cmd) {
case SIOCSIFADDR:
break;
case SIOCSIFFLAGS:
if (ifp->if_flags & IFF_UP)
ifp->if_flags |= IFF_RUNNING;
else
ifp->if_flags &= ~IFF_RUNNING;
break;
case SIOCSIFMTU:
if (ifr->ifr_mtu < MPE_MTU_MIN ||
ifr->ifr_mtu > MPE_MTU_MAX)
error = EINVAL;
else
ifp->if_mtu = ifr->ifr_mtu;
break;
case SIOCGETLABEL:
ifm = ifp->if_softc;
shim.shim_label = MPLS_SHIM2LABEL(ifm->sc_smpls.smpls_label);
error = copyout(&shim, ifr->ifr_data, sizeof(shim));
break;
case SIOCSETLABEL:
ifm = ifp->if_softc;
if ((error = copyin(ifr->ifr_data, &shim, sizeof(shim))))
break;
if (shim.shim_label > MPLS_LABEL_MAX ||
shim.shim_label <= MPLS_LABEL_RESERVED_MAX) {
error = EINVAL;
break;
}
shim.shim_label = MPLS_LABEL2SHIM(shim.shim_label);
if (ifm->sc_smpls.smpls_label == shim.shim_label)
break;
LIST_FOREACH(ifm, &mpeif_list, sc_list) {
if (ifm != ifp->if_softc &&
ifm->sc_smpls.smpls_label == shim.shim_label) {
error = EEXIST;
break;
}
}
if (error)
break;
ifm = ifp->if_softc;
if (ifm->sc_smpls.smpls_label) {
/* remove old MPLS route */
rt_ifa_del(&ifm->sc_ifa, RTF_MPLS,
smplstosa(&ifm->sc_smpls));
}
/* add new MPLS route */
ifm->sc_smpls.smpls_label = shim.shim_label;
error = rt_ifa_add(&ifm->sc_ifa, RTF_MPLS|RTF_LOCAL,
smplstosa(&ifm->sc_smpls));
if (error) {
ifm->sc_smpls.smpls_label = 0;
break;
}
break;
case SIOCSIFRDOMAIN:
/* must readd the MPLS "route" for our label */
/* XXX does not make sense, the MPLS route is on rtable 0 */
ifm = ifp->if_softc;
if (ifr->ifr_rdomainid != ifp->if_rdomain) {
if (ifm->sc_smpls.smpls_label) {
rt_ifa_add(&ifm->sc_ifa, RTF_MPLS,
smplstosa(&ifm->sc_smpls));
}
}
/* return with ENOTTY so that the parent handler finishes */
return (ENOTTY);
default:
return (ENOTTY);
}
return (error);
}
void
mpe_input(struct ifnet *ifp, struct mbuf *m)
{
struct shim_hdr *shim;
struct mbuf *n;
uint8_t ttl;
void (*input)(struct ifnet *, struct mbuf *);
shim = mtod(m, struct shim_hdr *);
if (!MPLS_BOS_ISSET(shim->shim_label))
goto drop;
ttl = ntohl(shim->shim_label & MPLS_TTL_MASK);
m_adj(m, sizeof(*shim));
n = m;
while (n->m_len == 0) {
n = n->m_next;
if (n == NULL)
goto drop;
}
switch (*mtod(n, uint8_t *) >> 4) {
case 4:
if (mpls_mapttl_ip) {
m = mpls_ip_adjttl(m, ttl);
if (m == NULL)
return;
}
input = ipv4_input;
m->m_pkthdr.ph_family = AF_INET;
break;
#ifdef INET6
case 6:
if (mpls_mapttl_ip6) {
m = mpls_ip6_adjttl(m, ttl);
if (m == NULL)
return;
}
input = ipv6_input;
m->m_pkthdr.ph_family = AF_INET6;
break;
#endif /* INET6 */
default:
goto drop;
}
/* new receive if and move into correct rtable */
m->m_pkthdr.ph_ifidx = ifp->if_index;
m->m_pkthdr.ph_rtableid = ifp->if_rdomain;
#if NBPFILTER > 0
if (ifp->if_bpf) {
bpf_mtap_af(ifp->if_bpf, m->m_pkthdr.ph_family,
m, BPF_DIRECTION_IN);
}
#endif
(*input)(ifp, m);
return;
drop:
m_freem(m);
}
|