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
|
/* $OpenBSD: if_enc.c,v 1.79 2022/08/29 07:51:45 bluhm Exp $ */
/*
* Copyright (c) 2010 Reyk Floeter <reyk@vantronix.net>
*
* 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 "bpfilter.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/mbuf.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_var.h>
#include <net/if_enc.h>
#include <net/if_types.h>
#if NBPFILTER > 0
#include <net/bpf.h>
#endif
struct ifnet **enc_ifps; /* rdomain-mapped enc ifs */
u_int enc_max_rdomain;
struct ifnet **enc_allifps; /* unit-mapped enc ifs */
u_int enc_max_unit;
#define ENC_MAX_UNITS 4096 /* XXX n per rdomain */
void encattach(int);
int enc_clone_create(struct if_clone *, int);
int enc_clone_destroy(struct ifnet *);
int enc_output(struct ifnet *, struct mbuf *, struct sockaddr *,
struct rtentry *);
int enc_ioctl(struct ifnet *, u_long, caddr_t);
int enc_setif(struct ifnet *, u_int);
void enc_unsetif(struct ifnet *);
struct if_clone enc_cloner =
IF_CLONE_INITIALIZER("enc", enc_clone_create, enc_clone_destroy);
void
encattach(int count)
{
/* Create enc0 by default */
(void)enc_clone_create(&enc_cloner, 0);
if_clone_attach(&enc_cloner);
}
int
enc_clone_create(struct if_clone *ifc, int unit)
{
struct enc_softc *sc;
struct ifnet *ifp;
struct ifnet **new;
size_t oldlen;
int error;
if (unit > ENC_MAX_UNITS)
return (EINVAL);
if ((sc = malloc(sizeof(*sc), M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL)
return (ENOBUFS);
sc->sc_unit = unit;
ifp = &sc->sc_if;
ifp->if_softc = sc;
ifp->if_type = IFT_ENC;
ifp->if_xflags = IFXF_CLONED;
ifp->if_output = enc_output;
ifp->if_ioctl = enc_ioctl;
ifp->if_hdrlen = ENC_HDRLEN;
snprintf(ifp->if_xname, sizeof(ifp->if_xname), "%s%d",
ifc->ifc_name, unit);
if_attach(ifp);
if (unit == 0)
if_addgroup(ifp, ifc->ifc_name);
/*
* enc(4) does not have a link-layer address but rtrequest()
* wants an ifa for every route entry. So let's setup a fake
* and empty ifa of type AF_LINK for this purpose.
*/
if_alloc_sadl(ifp);
refcnt_init_trace(&sc->sc_ifa.ifa_refcnt, DT_REFCNT_IDX_IFADDR);
sc->sc_ifa.ifa_ifp = ifp;
sc->sc_ifa.ifa_addr = sdltosa(ifp->if_sadl);
sc->sc_ifa.ifa_netmask = NULL;
#if NBPFILTER > 0
bpfattach(&ifp->if_bpf, ifp, DLT_ENC, ENC_HDRLEN);
#endif
NET_LOCK();
error = enc_setif(ifp, 0);
if (error != 0) {
NET_UNLOCK();
if_detach(ifp);
free(sc, M_DEVBUF, sizeof(*sc));
return (error);
}
if (enc_allifps == NULL || unit > enc_max_unit) {
if ((new = mallocarray(unit + 1, sizeof(struct ifnet *),
M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL) {
NET_UNLOCK();
return (ENOBUFS);
}
if (enc_allifps != NULL) {
oldlen = sizeof(struct ifnet *) * (enc_max_unit + 1);
memcpy(new, enc_allifps, oldlen);
free(enc_allifps, M_DEVBUF, oldlen);
}
enc_allifps = new;
enc_max_unit = unit;
}
enc_allifps[unit] = ifp;
NET_UNLOCK();
return (0);
}
int
enc_clone_destroy(struct ifnet *ifp)
{
struct enc_softc *sc = ifp->if_softc;
/* Protect users from removing enc0 */
if (sc->sc_unit == 0)
return (EPERM);
NET_LOCK();
enc_allifps[sc->sc_unit] = NULL;
enc_unsetif(ifp);
NET_UNLOCK();
if_detach(ifp);
if (refcnt_rele(&sc->sc_ifa.ifa_refcnt) == 0) {
panic("%s: ifa refcnt has %u refs", __func__,
sc->sc_ifa.ifa_refcnt.r_refs);
}
free(sc, M_DEVBUF, sizeof(*sc));
return (0);
}
int
enc_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *sa,
struct rtentry *rt)
{
m_freem(m); /* drop packet */
return (EAFNOSUPPORT);
}
int
enc_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
{
struct ifreq *ifr = (struct ifreq *)data;
int error;
switch (cmd) {
case SIOCSIFADDR:
case SIOCSIFDSTADDR:
case SIOCSIFFLAGS:
if (ifp->if_flags & IFF_UP)
ifp->if_flags |= IFF_RUNNING;
else
ifp->if_flags &= ~IFF_RUNNING;
break;
case SIOCSIFRDOMAIN:
if ((error = enc_setif(ifp, ifr->ifr_rdomainid)) != 0)
return (error);
/* FALLTHROUGH */
default:
return (ENOTTY);
}
return (0);
}
struct ifnet *
enc_getif(u_int rdomain, u_int unit)
{
struct ifnet *ifp;
NET_ASSERT_LOCKED();
/* Check if the caller wants to get a non-default enc interface */
if (unit > 0) {
if (unit > enc_max_unit)
return (NULL);
ifp = enc_allifps[unit];
if (ifp == NULL || ifp->if_rdomain != rdomain)
return (NULL);
return (ifp);
}
/* Otherwise return the default enc interface for this rdomain */
if (enc_ifps == NULL)
return (NULL);
else if (rdomain > RT_TABLEID_MAX)
return (NULL);
else if (rdomain > enc_max_rdomain)
return (NULL);
return (enc_ifps[rdomain]);
}
struct ifaddr *
enc_getifa(u_int rdomain, u_int unit)
{
struct ifnet *ifp;
struct enc_softc *sc;
ifp = enc_getif(rdomain, unit);
if (ifp == NULL)
return (NULL);
sc = ifp->if_softc;
return (&sc->sc_ifa);
}
int
enc_setif(struct ifnet *ifp, u_int rdomain)
{
struct ifnet **new;
size_t oldlen;
NET_ASSERT_LOCKED();
enc_unsetif(ifp);
/*
* There can only be one default encif per rdomain -
* Don't overwrite the existing enc iface that is stored
* for this rdomain, so only the first enc interface that
* was added for this rdomain becomes the default.
*/
if (enc_getif(rdomain, 0) != NULL)
return (0);
if (rdomain > RT_TABLEID_MAX)
return (EINVAL);
if (enc_ifps == NULL || rdomain > enc_max_rdomain) {
if ((new = mallocarray(rdomain + 1, sizeof(struct ifnet *),
M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL)
return (ENOBUFS);
if (enc_ifps != NULL) {
oldlen = sizeof(struct ifnet *) * (enc_max_rdomain + 1);
memcpy(new, enc_ifps, oldlen);
free(enc_ifps, M_DEVBUF, oldlen);
}
enc_ifps = new;
enc_max_rdomain = rdomain;
}
enc_ifps[rdomain] = ifp;
/* Indicate that this interface is the rdomain default */
ifp->if_link_state = LINK_STATE_UP;
return (0);
}
void
enc_unsetif(struct ifnet *ifp)
{
u_int rdomain = ifp->if_rdomain, i;
struct ifnet *oifp, *nifp;
if ((oifp = enc_getif(rdomain, 0)) == NULL || oifp != ifp)
return;
/* Clear slot for this rdomain */
enc_ifps[rdomain] = NULL;
ifp->if_link_state = LINK_STATE_UNKNOWN;
/*
* Now find the next available encif to be the default interface
* for this rdomain.
*/
for (i = 0; i < (enc_max_unit + 1); i++) {
nifp = enc_allifps[i];
if (nifp == NULL || nifp == ifp || nifp->if_rdomain != rdomain)
continue;
enc_ifps[rdomain] = nifp;
nifp->if_link_state = LINK_STATE_UP;
break;
}
}
|