xref: /dragonfly/sys/netgraph/eiface/ng_eiface.c (revision b7367ef6)
1 /*
2  * ng_eiface.c
3  *
4  * Copyright (c) 1999-2000, Vitaly V Belekhov
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice unmodified, this list of conditions, and the following
12  *    disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * 	$Id: ng_eiface.c,v 1.14 2000/03/15 12:28:44 vitaly Exp $
30  * $FreeBSD: src/sys/netgraph/ng_eiface.c,v 1.4.2.5 2002/12/17 21:47:48 julian Exp $
31  * $DragonFly: src/sys/netgraph/eiface/ng_eiface.c,v 1.14 2007/09/15 23:52:49 swildner Exp $
32  */
33 
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/errno.h>
37 #include <sys/kernel.h>
38 #include <sys/malloc.h>
39 #include <sys/mbuf.h>
40 #include <sys/errno.h>
41 #include <sys/sockio.h>
42 #include <sys/socket.h>
43 #include <sys/syslog.h>
44 #include <sys/serialize.h>
45 #include <sys/thread2.h>
46 
47 #include <net/if.h>
48 #include <net/if_types.h>
49 #include <net/netisr.h>
50 
51 
52 #include <netgraph/ng_message.h>
53 #include <netgraph/netgraph.h>
54 #include <netgraph/ng_parse.h>
55 #include "ng_eiface.h"
56 
57 #include <net/bpf.h>
58 #include <net/ethernet.h>
59 #include <net/if_arp.h>
60 
61 static const struct ng_parse_struct_field ng_eiface_par_fields[]
62 	= NG_EIFACE_PAR_FIELDS;
63 
64 static const struct ng_parse_type ng_eiface_par_type = {
65 	&ng_parse_struct_type,
66 	&ng_eiface_par_fields
67 };
68 
69 static const struct ng_cmdlist ng_eiface_cmdlist[] = {
70 	{
71 	  NGM_EIFACE_COOKIE,
72 	  NGM_EIFACE_SET,
73 	  "set",
74 	  &ng_eiface_par_type,
75 	  NULL
76 	},
77 	{ 0 }
78 };
79 
80 /* Node private data */
81 struct ng_eiface_private {
82 	struct arpcom	arpcom;		/* per-interface network data */
83 	struct	ifnet *ifp;		/* This interface */
84 	node_p	node;			/* Our netgraph node */
85 	hook_p	ether;			/* Hook for ethernet stream */
86 	struct	private *next;		/* When hung on the free list */
87 };
88 typedef struct ng_eiface_private *priv_p;
89 
90 /* Interface methods */
91 static void	ng_eiface_init(void *xsc);
92 static void	ng_eiface_start(struct ifnet *ifp);
93 static int	ng_eiface_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data,
94 				struct ucred *cr);
95 #ifdef DEBUG
96 static void	ng_eiface_print_ioctl(struct ifnet *ifp, int cmd, caddr_t data);
97 #endif
98 
99 /* Netgraph methods */
100 static ng_constructor_t	ng_eiface_constructor;
101 static ng_rcvmsg_t	ng_eiface_rcvmsg;
102 static ng_shutdown_t	ng_eiface_rmnode;
103 static ng_newhook_t	ng_eiface_newhook;
104 static ng_rcvdata_t	ng_eiface_rcvdata;
105 static ng_connect_t	ng_eiface_connect;
106 static ng_disconnect_t	ng_eiface_disconnect;
107 
108 /* Node type descriptor */
109 static struct ng_type typestruct = {
110 	NG_VERSION,
111 	NG_EIFACE_NODE_TYPE,
112 	NULL,
113 	ng_eiface_constructor,
114 	ng_eiface_rcvmsg,
115 	ng_eiface_rmnode,
116 	ng_eiface_newhook,
117 	NULL,
118 	ng_eiface_connect,
119 	ng_eiface_rcvdata,
120 	ng_eiface_rcvdata,
121 	ng_eiface_disconnect,
122 	ng_eiface_cmdlist
123 };
124 NETGRAPH_INIT(eiface, &typestruct);
125 
126 static char ng_eiface_ifname[] = NG_EIFACE_EIFACE_NAME;
127 static int ng_eiface_next_unit;
128 
129 /************************************************************************
130 			INTERFACE STUFF
131  ************************************************************************/
132 
133 /*
134  * Process an ioctl for the virtual interface
135  */
136 static int
137 ng_eiface_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data, struct ucred *cr)
138 {
139 	struct ifreq *const ifr = (struct ifreq *) data;
140 	int error = 0;
141 
142 #ifdef DEBUG
143 	ng_eiface_print_ioctl(ifp, cmd, data);
144 #endif
145 	crit_enter();
146 	switch (cmd) {
147 
148 	/* These two are mostly handled at a higher layer */
149 	case SIOCSIFADDR:
150 		error = ether_ioctl(ifp, cmd, data);
151 		break;
152 	case SIOCGIFADDR:
153 		break;
154 
155 	/* Set flags */
156 	case SIOCSIFFLAGS:
157 		/*
158 		 * If the interface is marked up and stopped, then start it.
159 		 * If it is marked down and running, then stop it.
160 		 */
161 		if (ifr->ifr_flags & IFF_UP) {
162 			if (!(ifp->if_flags & IFF_RUNNING)) {
163 				ifp->if_flags &= ~(IFF_OACTIVE);
164 				ifp->if_flags |= IFF_RUNNING;
165 			}
166 		} else {
167 			if (ifp->if_flags & IFF_RUNNING)
168 				ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
169 		}
170 		break;
171 
172 	/* Set the interface MTU */
173 	case SIOCSIFMTU:
174 		if (ifr->ifr_mtu > NG_EIFACE_MTU_MAX
175 		    || ifr->ifr_mtu < NG_EIFACE_MTU_MIN)
176 			error = EINVAL;
177 		else
178 			ifp->if_mtu = ifr->ifr_mtu;
179 		break;
180 
181 	/* Stuff that's not supported */
182 	case SIOCADDMULTI:
183 	case SIOCDELMULTI:
184 		error = 0;
185 		break;
186 	case SIOCSIFPHYS:
187 		error = EOPNOTSUPP;
188 		break;
189 
190 	default:
191 		error = EINVAL;
192 		break;
193 	}
194 	crit_exit();
195 	return (error);
196 }
197 
198 static void
199 ng_eiface_init(void *xsc)
200 {
201 	priv_p sc = xsc;
202 	struct ifnet *ifp = sc->ifp;
203 
204 	crit_enter();
205 
206 	ifp->if_flags |= IFF_RUNNING;
207 	ifp->if_flags &= ~IFF_OACTIVE;
208 
209 	crit_exit();
210 
211 }
212 
213 /*
214  * This routine is called to deliver a packet out the interface.
215  * We simply relay the packet to
216  * the ether hook, if it is connected.
217  */
218 
219 static void
220 ng_eiface_start(struct ifnet *ifp)
221 {
222 	const priv_p priv = (priv_p) ifp->if_softc;
223 	meta_p meta = NULL;
224 	int len, error = 0;
225 	struct mbuf *m;
226 
227 	/* Check interface flags */
228 	if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
229 		return;
230 
231 	/* Don't do anything if output is active */
232 	if( ifp->if_flags & IFF_OACTIVE )
233 		return;
234 
235 	ifp->if_flags |= IFF_OACTIVE;
236 
237 	/*
238 	 * Grab a packet to transmit.
239 	 */
240 	IF_DEQUEUE(&ifp->if_snd, m);
241 
242 	/* If there's nothing to send, return. */
243 	if(m == NULL)
244 	{
245 		ifp->if_flags &= ~IFF_OACTIVE;
246 		return;
247 	}
248 
249 	BPF_MTAP(ifp, m);
250 
251 	/* Copy length before the mbuf gets invalidated */
252 	len = m->m_pkthdr.len;
253 
254 	/* Send packet; if hook is not connected, mbuf will get freed. */
255 	NG_SEND_DATA(error, priv->ether, m, meta);
256 
257 	/* Update stats */
258 	if (error == 0) {
259 		ifp->if_obytes += len;
260 		ifp->if_opackets++;
261 	}
262 
263 	ifp->if_flags &= ~IFF_OACTIVE;
264 
265 	return;
266 }
267 
268 #ifdef DEBUG
269 /*
270  * Display an ioctl to the virtual interface
271  */
272 
273 static void
274 ng_eiface_print_ioctl(struct ifnet *ifp, int cmd, caddr_t data)
275 {
276 	char   *str;
277 
278 	switch (cmd & IOC_DIRMASK) {
279 	case IOC_VOID:
280 		str = "IO";
281 		break;
282 	case IOC_OUT:
283 		str = "IOR";
284 		break;
285 	case IOC_IN:
286 		str = "IOW";
287 		break;
288 	case IOC_INOUT:
289 		str = "IORW";
290 		break;
291 	default:
292 		str = "IO??";
293 	}
294 	log(LOG_DEBUG, "%s: %s('%c', %d, char[%d])\n",
295 	       ifp->if_xname,
296 	       str,
297 	       IOCGROUP(cmd),
298 	       cmd & 0xff,
299 	       IOCPARM_LEN(cmd));
300 }
301 #endif /* DEBUG */
302 
303 /************************************************************************
304 			NETGRAPH NODE STUFF
305  ************************************************************************/
306 
307 /*
308  * Constructor for a node
309  */
310 static int
311 ng_eiface_constructor(node_p *nodep)
312 {
313 	struct ifnet *ifp;
314 	node_p node;
315 	priv_p priv;
316 	int error = 0;
317 
318 	/* Allocate node and interface private structures */
319 	MALLOC(priv, priv_p, sizeof(*priv), M_NETGRAPH, M_WAITOK);
320 	if (priv == NULL)
321 		return (ENOMEM);
322 	bzero(priv, sizeof(*priv));
323 
324 	ifp = &(priv->arpcom.ac_if);
325 
326 	/* Link them together */
327 	ifp->if_softc = priv;
328 	priv->ifp = ifp;
329 
330 	/* Call generic node constructor */
331 	if ((error = ng_make_node_common(&typestruct, nodep))) {
332 		FREE(priv, M_NETGRAPH);
333 		return (error);
334 	}
335 	node = *nodep;
336 
337 	/* Link together node and private info */
338 	node->private = priv;
339 	priv->node = node;
340 
341 	/* Initialize interface structure */
342 	if_initname(ifp, ng_eiface_ifname, ng_eiface_next_unit++);
343 	ifp->if_init = ng_eiface_init;
344 	ifp->if_start = ng_eiface_start;
345 	ifp->if_ioctl = ng_eiface_ioctl;
346 	ifp->if_watchdog = NULL;
347 	ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
348 	ifp->if_flags = (IFF_SIMPLEX | IFF_BROADCAST | IFF_MULTICAST);
349 
350 	TAILQ_INIT(&ifp->if_addrhead);
351 
352 	/* Give this node name *
353 	bzero(ifname, sizeof(ifname));
354 	ksprintf(ifname, "if%s", ifp->if_xname);
355 	ng_name_node(node, ifname);
356 	*/
357 
358 	/* Attach the interface */
359 	ether_ifattach(ifp, priv->arpcom.ac_enaddr, NULL);
360 
361 	/* Done */
362 	return (0);
363 }
364 
365 /*
366  * Give our ok for a hook to be added
367  */
368 static int
369 ng_eiface_newhook(node_p node, hook_p hook, const char *name)
370 {
371 	priv_p priv = node->private;
372 
373 	if (strcmp(name, NG_EIFACE_HOOK_ETHER))
374 		return (EPFNOSUPPORT);
375 	if (priv->ether != NULL)
376 		return (EISCONN);
377 	priv->ether = hook;
378 	hook->private = &priv->ether;
379 
380 	return (0);
381 }
382 
383 /*
384  * Receive a control message
385  */
386 static int
387 ng_eiface_rcvmsg(node_p node, struct ng_mesg *msg,
388 		const char *retaddr, struct ng_mesg **rptr)
389 {
390 	const priv_p priv = node->private;
391 	struct ifnet *const ifp = priv->ifp;
392 	struct ng_mesg *resp = NULL;
393 	int error = 0;
394 
395 	switch (msg->header.typecookie) {
396 	case NGM_EIFACE_COOKIE:
397 		switch (msg->header.cmd) {
398 
399 		case NGM_EIFACE_SET:
400 		    {
401 		      struct ng_eiface_par *eaddr;
402 
403 		      if (msg->header.arglen != sizeof(struct ng_eiface_par))
404 			{
405 			  error = EINVAL;
406 			  break;
407 			}
408 		      eaddr = (struct ng_eiface_par *)(msg->data);
409 
410 		      priv->arpcom.ac_enaddr[0] = eaddr->oct0;
411 		      priv->arpcom.ac_enaddr[1] = eaddr->oct1;
412 		      priv->arpcom.ac_enaddr[2] = eaddr->oct2;
413 		      priv->arpcom.ac_enaddr[3] = eaddr->oct3;
414 		      priv->arpcom.ac_enaddr[4] = eaddr->oct4;
415 		      priv->arpcom.ac_enaddr[5] = eaddr->oct5;
416 
417 		      break;
418 		    }
419 
420 		case NGM_EIFACE_GET_IFNAME:
421 		    {
422 			struct ng_eiface_ifname *arg;
423 
424 			NG_MKRESPONSE(resp, msg, sizeof(*arg), M_NOWAIT);
425 			if (resp == NULL) {
426 				error = ENOMEM;
427 				break;
428 			}
429 			arg = (struct ng_eiface_ifname *) resp->data;
430 			ksprintf(arg->ngif_name,
431 			    "%s", ifp->if_xname); /* XXX: strings */
432 			break;
433 		    }
434 
435 		case NGM_EIFACE_GET_IFADDRS:
436 		    {
437 			struct ifaddr *ifa;
438 			caddr_t ptr;
439 			int buflen;
440 
441 #define SA_SIZE(s)	((s)->sa_len<sizeof(*(s))? sizeof(*(s)):(s)->sa_len)
442 
443 			/* Determine size of response and allocate it */
444 			buflen = 0;
445 			TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link)
446 				buflen += SA_SIZE(ifa->ifa_addr);
447 			NG_MKRESPONSE(resp, msg, buflen, M_NOWAIT);
448 			if (resp == NULL) {
449 				error = ENOMEM;
450 				break;
451 			}
452 
453 			/* Add addresses */
454 			ptr = resp->data;
455 			TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
456 				const int len = SA_SIZE(ifa->ifa_addr);
457 
458 				if (buflen < len) {
459 					log(LOG_ERR, "%s: len changed?\n",
460 					    ifp->if_xname);
461 					break;
462 				}
463 				bcopy(ifa->ifa_addr, ptr, len);
464 				ptr += len;
465 				buflen -= len;
466 			}
467 			break;
468 #undef SA_SIZE
469 		    }
470 
471 		default:
472 			error = EINVAL;
473 			break;
474 		}
475 		break;
476 	default:
477 		error = EINVAL;
478 		break;
479 	}
480 	if (rptr)
481 		*rptr = resp;
482 	else if (resp)
483 		FREE(resp, M_NETGRAPH);
484 	FREE(msg, M_NETGRAPH);
485 	return (error);
486 }
487 
488 /*
489  * Recive data from a hook. Pass the packet to the ether_input routine.
490  */
491 static int
492 ng_eiface_rcvdata(hook_p hook, struct mbuf *m, meta_p meta)
493 {
494 	const priv_p priv = hook->node->private;
495 	struct ifnet *const ifp = priv->ifp;
496 	int error = 0;
497 
498 	/* Meta-data is end its life here... */
499 	NG_FREE_META(meta);
500 
501 	if (m == NULL)
502 	  {
503 	    kprintf("ng_eiface: mbuf is null.\n");
504 	    return (EINVAL);
505 	  }
506 
507 	lwkt_serialize_enter(ifp->if_serializer);
508 	if ( !(ifp->if_flags & IFF_UP) ) {
509 		lwkt_serialize_exit(ifp->if_serializer);
510 		return (ENETDOWN);
511 	}
512 
513 	/* Note receiving interface */
514 	m->m_pkthdr.rcvif = ifp;
515 
516 	/* Update interface stats */
517 	ifp->if_ipackets++;
518 
519 	BPF_MTAP(ifp, m);
520 
521 	ifp->if_input(ifp, m);
522 	lwkt_serialize_exit(ifp->if_serializer);
523 
524 	/* Done */
525 	return (error);
526 }
527 
528 /*
529  * Because the BSD networking code doesn't support the removal of
530  * networking interfaces, iface nodes (once created) are persistent.
531  * So this method breaks all connections and marks the interface
532  * down, but does not remove the node.
533  */
534 static int
535 ng_eiface_rmnode(node_p node)
536 {
537 	const priv_p priv = node->private;
538 	struct ifnet *const ifp = priv->ifp;
539 
540 	ng_cutlinks(node);
541 	node->flags &= ~NG_INVALID;
542 	lwkt_serialize_enter(ifp->if_serializer);
543 	ifp->if_flags &= ~(IFF_UP | IFF_RUNNING | IFF_OACTIVE);
544 	lwkt_serialize_exit(ifp->if_serializer);
545 	return (0);
546 }
547 
548 
549 /*
550  * This is called once we've already connected a new hook to the other node.
551  * It gives us a chance to balk at the last minute.
552  */
553 static int
554 ng_eiface_connect(hook_p hook)
555 {
556 	/* be really amiable and just say "YUP that's OK by me! " */
557 	return (0);
558 }
559 
560 /*
561  * Hook disconnection
562  */
563 static int
564 ng_eiface_disconnect(hook_p hook)
565 {
566 	const priv_p priv = hook->node->private;
567 
568 	priv->ether = NULL;
569 	return (0);
570 }
571