xref: /dragonfly/sys/netgraph7/iface/ng_iface.c (revision 38c2ea22)
1 /*
2  * ng_iface.c
3  */
4 
5 /*-
6  * Copyright (c) 1996-1999 Whistle Communications, Inc.
7  * All rights reserved.
8  *
9  * Subject to the following obligations and disclaimer of warranty, use and
10  * redistribution of this software, in source or object code forms, with or
11  * without modifications are expressly permitted by Whistle Communications;
12  * provided, however, that:
13  * 1. Any and all reproductions of the source or object code must include the
14  *    copyright notice above and the following disclaimer of warranties; and
15  * 2. No rights are granted, in any manner or form, to use Whistle
16  *    Communications, Inc. trademarks, including the mark "WHISTLE
17  *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
18  *    such appears in the above copyright notice or in the software.
19  *
20  * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
21  * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
22  * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
23  * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
24  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
25  * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
26  * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
27  * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
28  * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
29  * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
30  * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
31  * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
32  * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35  * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
36  * OF SUCH DAMAGE.
37  *
38  * Author: Archie Cobbs <archie@freebsd.org>
39  *
40  * $FreeBSD: src/sys/netgraph/ng_iface.c,v 1.48 2008/01/31 08:51:48 mav Exp $
41  * $Whistle: ng_iface.c,v 1.33 1999/11/01 09:24:51 julian Exp $
42  */
43 
44 /*
45  * This node is also a system networking interface. It has
46  * a hook for each protocol (IP, AppleTalk, IPX, etc). Packets
47  * are simply relayed between the interface and the hooks.
48  *
49  * Interfaces are named ng0, ng1, etc.  New nodes take the
50  * first available interface name.
51  *
52  * This node also includes Berkeley packet filter support.
53  */
54 
55 #include "opt_inet.h"
56 #include "opt_inet6.h"
57 #include "opt_ipx.h"
58 
59 #include <sys/param.h>
60 #include <sys/systm.h>
61 #include <sys/errno.h>
62 #include <sys/kernel.h>
63 #include <sys/malloc.h>
64 #include <sys/mbuf.h>
65 #include <sys/errno.h>
66 #include <sys/random.h>
67 #include <sys/sockio.h>
68 #include <sys/socket.h>
69 #include <sys/syslog.h>
70 #include <sys/libkern.h>
71 
72 #include <net/if.h>
73 #include <net/if_types.h>
74 #include <net/ifq_var.h>
75 #include <net/bpf.h>
76 #include <net/netisr.h>
77 
78 #include <netinet/in.h>
79 
80 #include <netgraph7/ng_message.h>
81 #include <netgraph7/netgraph.h>
82 #include <netgraph7/ng_parse.h>
83 #include <netgraph7/cisco/ng_cisco.h>
84 #include "ng_iface.h"
85 
86 #ifdef NG_SEPARATE_MALLOC
87 MALLOC_DEFINE(M_NETGRAPH_IFACE, "netgraph_iface", "netgraph iface node ");
88 #else
89 #define M_NETGRAPH_IFACE M_NETGRAPH
90 #endif
91 
92 /* This struct describes one address family */
93 struct iffam {
94 	sa_family_t	family;		/* Address family */
95 	const char	*hookname;	/* Name for hook */
96 };
97 typedef const struct iffam *iffam_p;
98 
99 /* List of address families supported by our interface */
100 static const struct iffam gFamilies[] = {
101 	{ AF_INET,	NG_IFACE_HOOK_INET	},
102 	{ AF_INET6,	NG_IFACE_HOOK_INET6	},
103 	{ AF_IPX,	NG_IFACE_HOOK_IPX	},
104 	{ AF_ATM,	NG_IFACE_HOOK_ATM	},
105 	{ AF_NATM,	NG_IFACE_HOOK_NATM	},
106 };
107 #define NUM_FAMILIES		NELEM(gFamilies)
108 
109 /* Node private data */
110 struct ng_iface_private {
111 	struct	ifnet *ifp;		/* Our interface */
112 	int	unit;			/* Interface unit number */
113 	node_p	node;			/* Our netgraph node */
114 	hook_p	hooks[NUM_FAMILIES];	/* Hook for each address family */
115 };
116 typedef struct ng_iface_private *priv_p;
117 
118 /* Interface methods */
119 static void	ng_iface_start(struct ifnet *ifp);
120 static int	ng_iface_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data,
121 			struct ucred *cr);
122 static int	ng_iface_output(struct ifnet *ifp, struct mbuf *m0,
123 			struct sockaddr *dst, struct rtentry *rt0);
124 static void	ng_iface_bpftap(struct ifnet *ifp,
125 			struct mbuf *m, sa_family_t family);
126 static int	ng_iface_send(struct ifnet *ifp, struct mbuf *m,
127 			sa_family_t sa);
128 #ifdef DEBUG
129 static void	ng_iface_print_ioctl(struct ifnet *ifp, int cmd, caddr_t data);
130 #endif
131 
132 /* Netgraph methods */
133 static int		ng_iface_mod_event(module_t, int, void *);
134 static ng_constructor_t	ng_iface_constructor;
135 static ng_rcvmsg_t	ng_iface_rcvmsg;
136 static ng_shutdown_t	ng_iface_shutdown;
137 static ng_newhook_t	ng_iface_newhook;
138 static ng_rcvdata_t	ng_iface_rcvdata;
139 static ng_disconnect_t	ng_iface_disconnect;
140 
141 /* Helper stuff */
142 static iffam_p	get_iffam_from_af(sa_family_t family);
143 static iffam_p	get_iffam_from_hook(priv_p priv, hook_p hook);
144 static iffam_p	get_iffam_from_name(const char *name);
145 static hook_p  *get_hook_from_iffam(priv_p priv, iffam_p iffam);
146 
147 /* Parse type for struct ng_cisco_ipaddr */
148 static const struct ng_parse_struct_field ng_cisco_ipaddr_type_fields[]
149 	= NG_CISCO_IPADDR_TYPE_INFO;
150 static const struct ng_parse_type ng_cisco_ipaddr_type = {
151 	&ng_parse_struct_type,
152 	&ng_cisco_ipaddr_type_fields
153 };
154 
155 /* List of commands and how to convert arguments to/from ASCII */
156 static const struct ng_cmdlist ng_iface_cmds[] = {
157 	{
158 	  NGM_IFACE_COOKIE,
159 	  NGM_IFACE_GET_IFNAME,
160 	  "getifname",
161 	  NULL,
162 	  &ng_parse_string_type
163 	},
164 	{
165 	  NGM_IFACE_COOKIE,
166 	  NGM_IFACE_POINT2POINT,
167 	  "point2point",
168 	  NULL,
169 	  NULL
170 	},
171 	{
172 	  NGM_IFACE_COOKIE,
173 	  NGM_IFACE_BROADCAST,
174 	  "broadcast",
175 	  NULL,
176 	  NULL
177 	},
178 	{
179 	  NGM_CISCO_COOKIE,
180 	  NGM_CISCO_GET_IPADDR,
181 	  "getipaddr",
182 	  NULL,
183 	  &ng_cisco_ipaddr_type
184 	},
185 	{
186 	  NGM_IFACE_COOKIE,
187 	  NGM_IFACE_GET_IFINDEX,
188 	  "getifindex",
189 	  NULL,
190 	  &ng_parse_uint32_type
191 	},
192 	{ 0 }
193 };
194 
195 /* Node type descriptor */
196 static struct ng_type typestruct = {
197 	.version =	NG_ABI_VERSION,
198 	.name =		NG_IFACE_NODE_TYPE,
199 	.mod_event =	ng_iface_mod_event,
200 	.constructor =	ng_iface_constructor,
201 	.rcvmsg =	ng_iface_rcvmsg,
202 	.shutdown =	ng_iface_shutdown,
203 	.newhook =	ng_iface_newhook,
204 	.rcvdata =	ng_iface_rcvdata,
205 	.disconnect =	ng_iface_disconnect,
206 	.cmdlist =	ng_iface_cmds,
207 };
208 NETGRAPH_INIT(iface, &typestruct);
209 
210 /* We keep a bitmap indicating which unit numbers are free.
211    One means the unit number is free, zero means it's taken. */
212 static int	*ng_iface_units = NULL;
213 static int	ng_iface_units_len = 0;
214 
215 #define UNITS_BITSPERWORD	(sizeof(*ng_iface_units) * NBBY)
216 
217 
218 /************************************************************************
219 			HELPER STUFF
220  ************************************************************************/
221 
222 /*
223  * Get the family descriptor from the family ID
224  */
225 static __inline iffam_p
226 get_iffam_from_af(sa_family_t family)
227 {
228 	iffam_p iffam;
229 	int k;
230 
231 	for (k = 0; k < NUM_FAMILIES; k++) {
232 		iffam = &gFamilies[k];
233 		if (iffam->family == family)
234 			return (iffam);
235 	}
236 	return (NULL);
237 }
238 
239 /*
240  * Get the family descriptor from the hook
241  */
242 static __inline iffam_p
243 get_iffam_from_hook(priv_p priv, hook_p hook)
244 {
245 	int k;
246 
247 	for (k = 0; k < NUM_FAMILIES; k++)
248 		if (priv->hooks[k] == hook)
249 			return (&gFamilies[k]);
250 	return (NULL);
251 }
252 
253 /*
254  * Get the hook from the iffam descriptor
255  */
256 
257 static __inline hook_p *
258 get_hook_from_iffam(priv_p priv, iffam_p iffam)
259 {
260 	return (&priv->hooks[iffam - gFamilies]);
261 }
262 
263 /*
264  * Get the iffam descriptor from the name
265  */
266 static __inline iffam_p
267 get_iffam_from_name(const char *name)
268 {
269 	iffam_p iffam;
270 	int k;
271 
272 	for (k = 0; k < NUM_FAMILIES; k++) {
273 		iffam = &gFamilies[k];
274 		if (!strcmp(iffam->hookname, name))
275 			return (iffam);
276 	}
277 	return (NULL);
278 }
279 
280 /*
281  * Find the first free unit number for a new interface.
282  * Increase the size of the unit bitmap as necessary.
283  */
284 static __inline__ int
285 ng_iface_get_unit(int *unit)
286 {
287 	int index, bit;
288 
289 	for (index = 0; index < ng_iface_units_len
290 	    && ng_iface_units[index] == 0; index++);
291 	if (index == ng_iface_units_len) {		/* extend array */
292 		int i, *newarray, newlen;
293 
294 		newlen = (2 * ng_iface_units_len) + 4;
295 		newarray = kmalloc(newlen * sizeof(*ng_iface_units),
296 		    M_NETGRAPH_IFACE, M_NOWAIT);
297 		if (newarray == NULL)
298 			return (ENOMEM);
299 		bcopy(ng_iface_units, newarray,
300 		    ng_iface_units_len * sizeof(*ng_iface_units));
301 		for (i = ng_iface_units_len; i < newlen; i++)
302 			newarray[i] = ~0;
303 		if (ng_iface_units != NULL)
304 			kfree(ng_iface_units, M_NETGRAPH_IFACE);
305 		ng_iface_units = newarray;
306 		ng_iface_units_len = newlen;
307 	}
308 	bit = ffs(ng_iface_units[index]) - 1;
309 	KASSERT(bit >= 0 && bit <= UNITS_BITSPERWORD - 1,
310 	    ("%s: word=%d bit=%d", __func__, ng_iface_units[index], bit));
311 	ng_iface_units[index] &= ~(1 << bit);
312 	*unit = (index * UNITS_BITSPERWORD) + bit;
313 	return (0);
314 }
315 
316 /*
317  * Free a no longer needed unit number.
318  */
319 static __inline__ void
320 ng_iface_free_unit(int unit)
321 {
322 	int index, bit;
323 
324 	index = unit / UNITS_BITSPERWORD;
325 	bit = unit % UNITS_BITSPERWORD;
326 	KASSERT(index < ng_iface_units_len,
327 	    ("%s: unit=%d len=%d", __func__, unit, ng_iface_units_len));
328 	KASSERT((ng_iface_units[index] & (1 << bit)) == 0,
329 	    ("%s: unit=%d is free", __func__, unit));
330 	ng_iface_units[index] |= (1 << bit);
331 	/*
332 	 * XXX We could think about reducing the size of ng_iface_units[]
333 	 * XXX here if the last portion is all ones
334 	 */
335 }
336 
337 /************************************************************************
338 			INTERFACE STUFF
339  ************************************************************************/
340 
341 /*
342  * Process an ioctl for the virtual interface
343  */
344 static int
345 ng_iface_ioctl(struct ifnet *ifp, u_long command, caddr_t data,
346     struct ucred *cr)
347 {
348 	struct ifreq *const ifr = (struct ifreq *) data;
349 	int error = 0;
350 
351 #ifdef DEBUG
352 	ng_iface_print_ioctl(ifp, command, data);
353 #endif
354 	crit_enter();
355 	switch (command) {
356 
357 	/* These two are mostly handled at a higher layer */
358 	case SIOCSIFADDR:
359 		ifp->if_flags |= IFF_UP;
360 		ifp->if_flags |= IFF_RUNNING;
361 		ifp->if_flags &= ~(IFF_OACTIVE);
362 		break;
363 	case SIOCGIFADDR:
364 		break;
365 
366 	/* Set flags */
367 	case SIOCSIFFLAGS:
368 		/*
369 		 * If the interface is marked up and stopped, then start it.
370 		 * If it is marked down and running, then stop it.
371 		 */
372 		if (ifr->ifr_flags & IFF_UP) {
373 			if (!(ifp->if_flags & IFF_RUNNING)) {
374 				ifp->if_flags &= ~(IFF_OACTIVE);
375 				ifp->if_flags |= IFF_RUNNING;
376 			}
377 		} else {
378 			if (ifp->if_flags & IFF_RUNNING)
379 				ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
380 		}
381 		break;
382 
383 	/* Set the interface MTU */
384 	case SIOCSIFMTU:
385 		if (ifr->ifr_mtu > NG_IFACE_MTU_MAX
386 		    || ifr->ifr_mtu < NG_IFACE_MTU_MIN)
387 			error = EINVAL;
388 		else
389 			ifp->if_mtu = ifr->ifr_mtu;
390 		break;
391 
392 	/* Stuff that's not supported */
393 	case SIOCADDMULTI:
394 	case SIOCDELMULTI:
395 		error = 0;
396 		break;
397 	case SIOCSIFPHYS:
398 		error = EOPNOTSUPP;
399 		break;
400 
401 	default:
402 		error = EINVAL;
403 		break;
404 	}
405 	crit_exit();
406 	return (error);
407 }
408 
409 /*
410  * This routine is called to deliver a packet out the interface.
411  * We simply look at the address family and relay the packet to
412  * the corresponding hook, if it exists and is connected.
413  */
414 
415 static int
416 ng_iface_output(struct ifnet *ifp, struct mbuf *m,
417 		struct sockaddr *dst, struct rtentry *rt0)
418 {
419 	uint32_t af;
420 	int error;
421 
422 	/* Check interface flags */
423 	if (!((ifp->if_flags & IFF_UP) && (ifp->if_flags & IFF_RUNNING))) {
424 		m_freem(m);
425 		return (ENETDOWN);
426 	}
427 
428 	/* BPF writes need to be handled specially. */
429 	if (dst->sa_family == AF_UNSPEC) {
430 		bcopy(dst->sa_data, &af, sizeof(af));
431 		dst->sa_family = af;
432 	}
433 
434 	/* Berkeley packet filter */
435 	ng_iface_bpftap(ifp, m, dst->sa_family);
436 
437 	if (ifq_is_enabled(&ifp->if_snd)) {
438 		M_PREPEND(m, sizeof(sa_family_t), MB_DONTWAIT);
439 		if (m == NULL) {
440 			IFQ_LOCK(&ifp->if_snd);
441 			IF_DROP(&ifp->if_snd);
442 			IFQ_UNLOCK(&ifp->if_snd);
443 			ifp->if_oerrors++;
444 			return (ENOBUFS);
445 		}
446 		*(sa_family_t *)m->m_data = dst->sa_family;
447 		error = ifq_handoff(ifp, m, 0);
448 	} else
449 		error = ng_iface_send(ifp, m, dst->sa_family);
450 
451 	return (error);
452 }
453 
454 /*
455  * Start method is used only when ALTQ is enabled.
456  */
457 static void
458 ng_iface_start(struct ifnet *ifp)
459 {
460 	struct mbuf *m = NULL;
461 	sa_family_t sa;
462 
463 	KASSERT(ifq_is_enabled(&ifp->if_snd), ("%s without ALTQ", __func__));
464 
465 	for(;;) {
466 		m = ifq_dequeue(&ifp->if_snd, m);
467 		if (m == NULL)
468 			break;
469 		sa = *mtod(m, sa_family_t *);
470 		m_adj(m, sizeof(sa_family_t));
471 		ng_iface_send(ifp, m, sa);
472 	}
473 }
474 
475 /*
476  * Flash a packet by the BPF (requires prepending 4 byte AF header)
477  * Note the phoney mbuf; this is OK because BPF treats it read-only.
478  */
479 static void
480 ng_iface_bpftap(struct ifnet *ifp, struct mbuf *m, sa_family_t family)
481 {
482 	int32_t family4 = (int32_t)family;
483 
484 	KASSERT(family != AF_UNSPEC, ("%s: family=AF_UNSPEC", __func__));
485 
486 	if (ifp->if_bpf)
487 		bpf_ptap(ifp->if_bpf, m, &family4, sizeof(family4));
488 }
489 
490 /*
491  * This routine does actual delivery of the packet into the
492  * netgraph(4). It is called from ng_iface_start() and
493  * ng_iface_output().
494  */
495 static int
496 ng_iface_send(struct ifnet *ifp, struct mbuf *m, sa_family_t sa)
497 {
498 	const priv_p priv = (priv_p) ifp->if_softc;
499 	const iffam_p iffam = get_iffam_from_af(sa);
500 	int error;
501 	int len;
502 
503 	/* Check address family to determine hook (if known) */
504 	if (iffam == NULL) {
505 		m_freem(m);
506 		log(LOG_WARNING, "%s: can't handle af%d\n", ifp->if_xname, sa);
507 		return (EAFNOSUPPORT);
508 	}
509 
510 	/* Copy length before the mbuf gets invalidated. */
511 	len = m->m_pkthdr.len;
512 
513 	/* Send packet. If hook is not connected,
514 	   mbuf will get freed. */
515 	NG_SEND_DATA_ONLY(error, *get_hook_from_iffam(priv, iffam), m);
516 
517 	/* Update stats. */
518 	if (error == 0) {
519 		ifp->if_obytes += len;
520 		ifp->if_opackets++;
521 	}
522 
523 	return (error);
524 }
525 
526 #ifdef DEBUG
527 /*
528  * Display an ioctl to the virtual interface
529  */
530 
531 static void
532 ng_iface_print_ioctl(struct ifnet *ifp, int command, caddr_t data)
533 {
534 	char   *str;
535 
536 	switch (command & IOC_DIRMASK) {
537 	case IOC_VOID:
538 		str = "IO";
539 		break;
540 	case IOC_OUT:
541 		str = "IOR";
542 		break;
543 	case IOC_IN:
544 		str = "IOW";
545 		break;
546 	case IOC_INOUT:
547 		str = "IORW";
548 		break;
549 	default:
550 		str = "IO??";
551 	}
552 	log(LOG_DEBUG, "%s: %s('%c', %d, char[%d])\n",
553 	       ifp->if_xname,
554 	       str,
555 	       IOCGROUP(command),
556 	       command & 0xff,
557 	       IOCPARM_LEN(command));
558 }
559 #endif /* DEBUG */
560 
561 /************************************************************************
562 			NETGRAPH NODE STUFF
563  ************************************************************************/
564 
565 /*
566  * Constructor for a node
567  */
568 static int
569 ng_iface_constructor(node_p node)
570 {
571 	struct ifnet *ifp;
572 	priv_p priv;
573 	int error;
574 
575 	/* Allocate node and interface private structures */
576 	priv = kmalloc(sizeof(*priv), M_NETGRAPH_IFACE,
577 		       M_WAITOK | M_NULLOK | M_ZERO);
578 	if (priv == NULL)
579 		return (ENOMEM);
580 	ifp = kmalloc(sizeof(*ifp), M_NETGRAPH_IFACE, M_WAITOK | M_NULLOK | M_ZERO);
581 	if (ifp == NULL) {
582 		kfree(priv, M_NETGRAPH_IFACE);
583 		return (ENOMEM);
584 	}
585 
586 	/* Link them together */
587 	ifp->if_softc = priv;
588 	priv->ifp = ifp;
589 
590 	/* Get an interface unit number */
591 	if ((error = ng_iface_get_unit(&priv->unit)) != 0) {
592 		kfree(ifp, M_NETGRAPH_IFACE);
593 		kfree(priv, M_NETGRAPH_IFACE);
594 		return (error);
595 	}
596 
597 
598 	/* Link together node and private info */
599 	NG_NODE_SET_PRIVATE(node, priv);
600 	priv->node = node;
601 
602 	/* Initialize interface structure */
603 	if_initname(ifp, NG_IFACE_IFACE_NAME, priv->unit);
604 	ifp->if_output = ng_iface_output;
605 	ifp->if_start = ng_iface_start;
606 	ifp->if_ioctl = ng_iface_ioctl;
607 	ifp->if_watchdog = NULL;
608 	ifp->if_mtu = NG_IFACE_MTU_DEFAULT;
609 	ifp->if_flags = (IFF_SIMPLEX|IFF_POINTOPOINT|IFF_NOARP|IFF_MULTICAST);
610 	ifp->if_type = IFT_PROPVIRTUAL;		/* XXX */
611 	ifp->if_addrlen = 0;			/* XXX */
612 	ifp->if_hdrlen = 0;			/* XXX */
613 	ifp->if_baudrate = 64000;		/* XXX */
614 	ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
615 	ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
616 	ifq_set_ready(&ifp->if_snd);
617 
618 	/* Give this node the same name as the interface (if possible) */
619 	if (ng_name_node(node, ifp->if_xname) != 0)
620 		log(LOG_WARNING, "%s: can't acquire netgraph name\n",
621 		    ifp->if_xname);
622 
623 	/* Attach the interface */
624 	if_attach(ifp, NULL);
625 	bpfattach(ifp, DLT_NULL, sizeof(u_int32_t));
626 
627 	/* Done */
628 	return (0);
629 }
630 
631 /*
632  * Give our ok for a hook to be added
633  */
634 static int
635 ng_iface_newhook(node_p node, hook_p hook, const char *name)
636 {
637 	const iffam_p iffam = get_iffam_from_name(name);
638 	hook_p *hookptr;
639 
640 	if (iffam == NULL)
641 		return (EPFNOSUPPORT);
642 	hookptr = get_hook_from_iffam(NG_NODE_PRIVATE(node), iffam);
643 	if (*hookptr != NULL)
644 		return (EISCONN);
645 	*hookptr = hook;
646 	NG_HOOK_HI_STACK(hook);
647 	return (0);
648 }
649 
650 /*
651  * Receive a control message
652  */
653 static int
654 ng_iface_rcvmsg(node_p node, item_p item, hook_p lasthook)
655 {
656 	const priv_p priv = NG_NODE_PRIVATE(node);
657 	struct ifnet *const ifp = priv->ifp;
658 	struct ng_mesg *resp = NULL;
659 	int error = 0;
660 	struct ng_mesg *msg;
661 
662 	NGI_GET_MSG(item, msg);
663 	switch (msg->header.typecookie) {
664 	case NGM_IFACE_COOKIE:
665 		switch (msg->header.cmd) {
666 		case NGM_IFACE_GET_IFNAME:
667 			NG_MKRESPONSE(resp, msg, IFNAMSIZ, M_WAITOK | M_NULLOK);
668 			if (resp == NULL) {
669 				error = ENOMEM;
670 				break;
671 			}
672 			strlcpy(resp->data, ifp->if_xname, IFNAMSIZ);
673 			break;
674 
675 		case NGM_IFACE_POINT2POINT:
676 		case NGM_IFACE_BROADCAST:
677 		    {
678 
679 			/* Deny request if interface is UP */
680 			if ((ifp->if_flags & IFF_UP) != 0)
681 				return (EBUSY);
682 
683 			/* Change flags */
684 			switch (msg->header.cmd) {
685 			case NGM_IFACE_POINT2POINT:
686 				ifp->if_flags |= IFF_POINTOPOINT;
687 				ifp->if_flags &= ~IFF_BROADCAST;
688 				break;
689 			case NGM_IFACE_BROADCAST:
690 				ifp->if_flags &= ~IFF_POINTOPOINT;
691 				ifp->if_flags |= IFF_BROADCAST;
692 				break;
693 			}
694 			break;
695 		    }
696 
697 		case NGM_IFACE_GET_IFINDEX:
698 			NG_MKRESPONSE(resp, msg, sizeof(uint32_t), M_WAITOK | M_NULLOK);
699 			if (resp == NULL) {
700 				error = ENOMEM;
701 				break;
702 			}
703 			*((uint32_t *)resp->data) = priv->ifp->if_index;
704 			break;
705 
706 		default:
707 			error = EINVAL;
708 			break;
709 		}
710 		break;
711 	case NGM_CISCO_COOKIE:
712 		switch (msg->header.cmd) {
713 		case NGM_CISCO_GET_IPADDR:	/* we understand this too */
714 		    {
715 			struct ifaddr_container *ifac;
716 
717 			/* Return the first configured IP address */
718 			TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
719 				struct ifaddr *ifa = ifac->ifa;
720 				struct ng_cisco_ipaddr *ips;
721 
722 				if (ifa->ifa_addr->sa_family != AF_INET)
723 					continue;
724 				NG_MKRESPONSE(resp, msg, sizeof(ips), M_WAITOK | M_NULLOK);
725 				if (resp == NULL) {
726 					error = ENOMEM;
727 					break;
728 				}
729 				ips = (struct ng_cisco_ipaddr *)resp->data;
730 				ips->ipaddr = ((struct sockaddr_in *)
731 						ifa->ifa_addr)->sin_addr;
732 				ips->netmask = ((struct sockaddr_in *)
733 						ifa->ifa_netmask)->sin_addr;
734 				break;
735 			}
736 
737 			/* No IP addresses on this interface? */
738 			if (ifac == NULL)
739 				error = EADDRNOTAVAIL;
740 			break;
741 		    }
742 		default:
743 			error = EINVAL;
744 			break;
745 		}
746 		break;
747 	case NGM_FLOW_COOKIE:
748 		switch (msg->header.cmd) {
749 		case NGM_LINK_IS_UP:
750 			ifp->if_flags |= IFF_RUNNING;
751 			break;
752 		case NGM_LINK_IS_DOWN:
753 			ifp->if_flags &= ~IFF_RUNNING;
754 			break;
755 		default:
756 			break;
757 		}
758 		break;
759 	default:
760 		error = EINVAL;
761 		break;
762 	}
763 	NG_RESPOND_MSG(error, node, item, resp);
764 	NG_FREE_MSG(msg);
765 	return (error);
766 }
767 
768 /*
769  * Recive data from a hook. Pass the packet to the correct input routine.
770  */
771 static int
772 ng_iface_rcvdata(hook_p hook, item_p item)
773 {
774 	const priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
775 	const iffam_p iffam = get_iffam_from_hook(priv, hook);
776 	struct ifnet *const ifp = priv->ifp;
777 	struct mbuf *m;
778 	int isr;
779 
780 	NGI_GET_M(item, m);
781 	NG_FREE_ITEM(item);
782 	/* Sanity checks */
783 	KASSERT(iffam != NULL, ("%s: iffam", __func__));
784 	M_ASSERTPKTHDR(m);
785 	if ((ifp->if_flags & IFF_UP) == 0) {
786 		NG_FREE_M(m);
787 		return (ENETDOWN);
788 	}
789 
790 	/* Update interface stats */
791 	ifp->if_ipackets++;
792 	ifp->if_ibytes += m->m_pkthdr.len;
793 
794 	/* Note receiving interface */
795 	m->m_pkthdr.rcvif = ifp;
796 
797 	/* Berkeley packet filter */
798 	ng_iface_bpftap(ifp, m, iffam->family);
799 
800 	/* Send packet */
801 	switch (iffam->family) {
802 #ifdef INET
803 	case AF_INET:
804 		isr = NETISR_IP;
805 		break;
806 #endif
807 #ifdef INET6
808 	case AF_INET6:
809 		isr = NETISR_IPV6;
810 		break;
811 #endif
812 #ifdef IPX
813 	case AF_IPX:
814 		isr = NETISR_IPX;
815 		break;
816 #endif
817 	default:
818 		m_freem(m);
819 		return (EAFNOSUPPORT);
820 	}
821 #if 0
822 	/* First chunk of an mbuf contains good junk */
823 	if (harvest.point_to_point)
824 		random_harvest(m, 16, 3, 0, RANDOM_NET);
825 #endif
826 	netisr_queue(isr, m);
827 	return (0);
828 }
829 
830 /*
831  * Shutdown and remove the node and its associated interface.
832  */
833 static int
834 ng_iface_shutdown(node_p node)
835 {
836 	const priv_p priv = NG_NODE_PRIVATE(node);
837 
838 	bpfdetach(priv->ifp);
839 	if_detach(priv->ifp);
840 	kfree(priv->ifp, M_NETGRAPH_IFACE);
841 	priv->ifp = NULL;
842 	ng_iface_free_unit(priv->unit);
843 	kfree(priv, M_NETGRAPH_IFACE);
844 	NG_NODE_SET_PRIVATE(node, NULL);
845 	NG_NODE_UNREF(node);
846 	return (0);
847 }
848 
849 /*
850  * Hook disconnection. Note that we do *not* shutdown when all
851  * hooks have been disconnected.
852  */
853 static int
854 ng_iface_disconnect(hook_p hook)
855 {
856 	const priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
857 	const iffam_p iffam = get_iffam_from_hook(priv, hook);
858 
859 	if (iffam == NULL)
860 		panic(__func__);
861 	*get_hook_from_iffam(priv, iffam) = NULL;
862 	return (0);
863 }
864 
865 /*
866  * Handle loading and unloading for this node type.
867  */
868 static int
869 ng_iface_mod_event(module_t mod, int event, void *data)
870 {
871 	int error = 0;
872 
873 	switch (event) {
874 	case MOD_LOAD:
875 		break;
876 	case MOD_UNLOAD:
877 		break;
878 	default:
879 		error = EOPNOTSUPP;
880 		break;
881 	}
882 	return (error);
883 }
884