ifq: Remove the unused parameter 'mpolled' from ifq dequeue interface
[dragonfly.git] / sys / netgraph7 / iface / ng_iface.c
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, struct ifaltq_subque *);
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                 ifq_clr_oactive(&ifp->if_snd);
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                                 ifq_clr_oactive(&ifp->if_snd);
375                                 ifp->if_flags |= IFF_RUNNING;
376                         }
377                 } else {
378                         if (ifp->if_flags & IFF_RUNNING) {
379                                 ifp->if_flags &= ~IFF_RUNNING;
380                                 ifq_clr_oactive(&ifp->if_snd);
381                         }
382                 }
383                 break;
384
385         /* Set the interface MTU */
386         case SIOCSIFMTU:
387                 if (ifr->ifr_mtu > NG_IFACE_MTU_MAX
388                     || ifr->ifr_mtu < NG_IFACE_MTU_MIN)
389                         error = EINVAL;
390                 else
391                         ifp->if_mtu = ifr->ifr_mtu;
392                 break;
393
394         /* Stuff that's not supported */
395         case SIOCADDMULTI:
396         case SIOCDELMULTI:
397                 error = 0;
398                 break;
399         case SIOCSIFPHYS:
400                 error = EOPNOTSUPP;
401                 break;
402
403         default:
404                 error = EINVAL;
405                 break;
406         }
407         crit_exit();
408         return (error);
409 }
410
411 /*
412  * This routine is called to deliver a packet out the interface.
413  * We simply look at the address family and relay the packet to
414  * the corresponding hook, if it exists and is connected.
415  */
416
417 static int
418 ng_iface_output(struct ifnet *ifp, struct mbuf *m,
419                 struct sockaddr *dst, struct rtentry *rt0)
420 {
421         uint32_t af;
422         int error;
423
424         /* Check interface flags */
425         if (!((ifp->if_flags & IFF_UP) && (ifp->if_flags & IFF_RUNNING))) {
426                 m_freem(m);
427                 return (ENETDOWN);
428         }
429
430         /* BPF writes need to be handled specially. */
431         if (dst->sa_family == AF_UNSPEC) {
432                 bcopy(dst->sa_data, &af, sizeof(af));
433                 dst->sa_family = af;
434         }
435
436         /* Berkeley packet filter */
437         ng_iface_bpftap(ifp, m, dst->sa_family);
438
439         if (ifq_is_enabled(&ifp->if_snd)) {
440                 M_PREPEND(m, sizeof(sa_family_t), MB_DONTWAIT);
441                 if (m == NULL) {
442                         IFNET_STAT_INC(ifp, oerrors, 1);
443                         return (ENOBUFS);
444                 }
445                 *(sa_family_t *)m->m_data = dst->sa_family;
446                 error = ifq_dispatch(ifp, m, NULL);
447         } else
448                 error = ng_iface_send(ifp, m, dst->sa_family);
449
450         return (error);
451 }
452
453 /*
454  * Start method is used only when ALTQ is enabled.
455  */
456 static void
457 ng_iface_start(struct ifnet *ifp, struct ifaltq_subque *ifsq)
458 {
459         sa_family_t sa;
460
461         KASSERT(ifq_is_enabled(&ifp->if_snd), ("%s without ALTQ", __func__));
462
463         for(;;) {
464                 struct mbuf *m;
465
466                 m = ifq_dequeue(&ifp->if_snd);
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_gettoken();
488                 if (ifp->if_bpf)
489                         bpf_ptap(ifp->if_bpf, m, &family4, sizeof(family4));
490                 bpf_reltoken();
491         }
492 }
493
494 /*
495  * This routine does actual delivery of the packet into the
496  * netgraph(4). It is called from ng_iface_start() and
497  * ng_iface_output().
498  */
499 static int
500 ng_iface_send(struct ifnet *ifp, struct mbuf *m, sa_family_t sa)
501 {
502         const priv_p priv = (priv_p) ifp->if_softc;
503         const iffam_p iffam = get_iffam_from_af(sa);
504         int error;
505         int len;
506
507         /* Check address family to determine hook (if known) */
508         if (iffam == NULL) {
509                 m_freem(m);
510                 log(LOG_WARNING, "%s: can't handle af%d\n", ifp->if_xname, sa);
511                 return (EAFNOSUPPORT);
512         }
513
514         /* Copy length before the mbuf gets invalidated. */
515         len = m->m_pkthdr.len;
516
517         /* Send packet. If hook is not connected,
518            mbuf will get freed. */
519         NG_SEND_DATA_ONLY(error, *get_hook_from_iffam(priv, iffam), m);
520
521         /* Update stats. */
522         if (error == 0) {
523                 IFNET_STAT_INC(ifp, obytes, len);
524                 IFNET_STAT_INC(ifp, opackets, 1);
525         }
526
527         return (error);
528 }
529
530 #ifdef DEBUG
531 /*
532  * Display an ioctl to the virtual interface
533  */
534
535 static void
536 ng_iface_print_ioctl(struct ifnet *ifp, int command, caddr_t data)
537 {
538         char   *str;
539
540         switch (command & IOC_DIRMASK) {
541         case IOC_VOID:
542                 str = "IO";
543                 break;
544         case IOC_OUT:
545                 str = "IOR";
546                 break;
547         case IOC_IN:
548                 str = "IOW";
549                 break;
550         case IOC_INOUT:
551                 str = "IORW";
552                 break;
553         default:
554                 str = "IO??";
555         }
556         log(LOG_DEBUG, "%s: %s('%c', %d, char[%d])\n",
557                ifp->if_xname,
558                str,
559                IOCGROUP(command),
560                command & 0xff,
561                IOCPARM_LEN(command));
562 }
563 #endif /* DEBUG */
564
565 /************************************************************************
566                         NETGRAPH NODE STUFF
567  ************************************************************************/
568
569 /*
570  * Constructor for a node
571  */
572 static int
573 ng_iface_constructor(node_p node)
574 {
575         struct ifnet *ifp;
576         priv_p priv;
577         int error;
578
579         /* Allocate node and interface private structures */
580         priv = kmalloc(sizeof(*priv), M_NETGRAPH_IFACE,
581                        M_WAITOK | M_NULLOK | M_ZERO);
582         if (priv == NULL)
583                 return (ENOMEM);
584         ifp = kmalloc(sizeof(*ifp), M_NETGRAPH_IFACE, M_WAITOK | M_NULLOK | M_ZERO);
585         if (ifp == NULL) {
586                 kfree(priv, M_NETGRAPH_IFACE);
587                 return (ENOMEM);
588         }
589
590         /* Link them together */
591         ifp->if_softc = priv;
592         priv->ifp = ifp;
593
594         /* Get an interface unit number */
595         if ((error = ng_iface_get_unit(&priv->unit)) != 0) {
596                 kfree(ifp, M_NETGRAPH_IFACE);
597                 kfree(priv, M_NETGRAPH_IFACE);
598                 return (error);
599         }
600
601
602         /* Link together node and private info */
603         NG_NODE_SET_PRIVATE(node, priv);
604         priv->node = node;
605
606         /* Initialize interface structure */
607         if_initname(ifp, NG_IFACE_IFACE_NAME, priv->unit);
608         ifp->if_output = ng_iface_output;
609         ifp->if_start = ng_iface_start;
610         ifp->if_ioctl = ng_iface_ioctl;
611         ifp->if_watchdog = NULL;
612         ifp->if_mtu = NG_IFACE_MTU_DEFAULT;
613         ifp->if_flags = (IFF_SIMPLEX|IFF_POINTOPOINT|IFF_NOARP|IFF_MULTICAST);
614         ifp->if_type = IFT_PROPVIRTUAL;         /* XXX */
615         ifp->if_addrlen = 0;                    /* XXX */
616         ifp->if_hdrlen = 0;                     /* XXX */
617         ifp->if_baudrate = 64000;               /* XXX */
618         ifq_set_maxlen(&ifp->if_snd, IFQ_MAXLEN);
619         ifq_set_ready(&ifp->if_snd);
620
621         /* Give this node the same name as the interface (if possible) */
622         if (ng_name_node(node, ifp->if_xname) != 0)
623                 log(LOG_WARNING, "%s: can't acquire netgraph name\n",
624                     ifp->if_xname);
625
626         /* Attach the interface */
627         if_attach(ifp, NULL);
628         bpfattach(ifp, DLT_NULL, sizeof(u_int32_t));
629
630         /* Done */
631         return (0);
632 }
633
634 /*
635  * Give our ok for a hook to be added
636  */
637 static int
638 ng_iface_newhook(node_p node, hook_p hook, const char *name)
639 {
640         const iffam_p iffam = get_iffam_from_name(name);
641         hook_p *hookptr;
642
643         if (iffam == NULL)
644                 return (EPFNOSUPPORT);
645         hookptr = get_hook_from_iffam(NG_NODE_PRIVATE(node), iffam);
646         if (*hookptr != NULL)
647                 return (EISCONN);
648         *hookptr = hook;
649         NG_HOOK_HI_STACK(hook);
650         return (0);
651 }
652
653 /*
654  * Receive a control message
655  */
656 static int
657 ng_iface_rcvmsg(node_p node, item_p item, hook_p lasthook)
658 {
659         const priv_p priv = NG_NODE_PRIVATE(node);
660         struct ifnet *const ifp = priv->ifp;
661         struct ng_mesg *resp = NULL;
662         int error = 0;
663         struct ng_mesg *msg;
664
665         NGI_GET_MSG(item, msg);
666         switch (msg->header.typecookie) {
667         case NGM_IFACE_COOKIE:
668                 switch (msg->header.cmd) {
669                 case NGM_IFACE_GET_IFNAME:
670                         NG_MKRESPONSE(resp, msg, IFNAMSIZ, M_WAITOK | M_NULLOK);
671                         if (resp == NULL) {
672                                 error = ENOMEM;
673                                 break;
674                         }
675                         strlcpy(resp->data, ifp->if_xname, IFNAMSIZ);
676                         break;
677
678                 case NGM_IFACE_POINT2POINT:
679                 case NGM_IFACE_BROADCAST:
680                     {
681
682                         /* Deny request if interface is UP */
683                         if ((ifp->if_flags & IFF_UP) != 0)
684                                 return (EBUSY);
685
686                         /* Change flags */
687                         switch (msg->header.cmd) {
688                         case NGM_IFACE_POINT2POINT:
689                                 ifp->if_flags |= IFF_POINTOPOINT;
690                                 ifp->if_flags &= ~IFF_BROADCAST;
691                                 break;
692                         case NGM_IFACE_BROADCAST:
693                                 ifp->if_flags &= ~IFF_POINTOPOINT;
694                                 ifp->if_flags |= IFF_BROADCAST;
695                                 break;
696                         }
697                         break;
698                     }
699
700                 case NGM_IFACE_GET_IFINDEX:
701                         NG_MKRESPONSE(resp, msg, sizeof(uint32_t), M_WAITOK | M_NULLOK);
702                         if (resp == NULL) {
703                                 error = ENOMEM;
704                                 break;
705                         }
706                         *((uint32_t *)resp->data) = priv->ifp->if_index;
707                         break;
708
709                 default:
710                         error = EINVAL;
711                         break;
712                 }
713                 break;
714         case NGM_CISCO_COOKIE:
715                 switch (msg->header.cmd) {
716                 case NGM_CISCO_GET_IPADDR:      /* we understand this too */
717                     {
718                         struct ifaddr_container *ifac;
719
720                         /* Return the first configured IP address */
721                         TAILQ_FOREACH(ifac, &ifp->if_addrheads[mycpuid], ifa_link) {
722                                 struct ifaddr *ifa = ifac->ifa;
723                                 struct ng_cisco_ipaddr *ips;
724
725                                 if (ifa->ifa_addr->sa_family != AF_INET)
726                                         continue;
727                                 NG_MKRESPONSE(resp, msg, sizeof(ips), M_WAITOK | M_NULLOK);
728                                 if (resp == NULL) {
729                                         error = ENOMEM;
730                                         break;
731                                 }
732                                 ips = (struct ng_cisco_ipaddr *)resp->data;
733                                 ips->ipaddr = ((struct sockaddr_in *)
734                                                 ifa->ifa_addr)->sin_addr;
735                                 ips->netmask = ((struct sockaddr_in *)
736                                                 ifa->ifa_netmask)->sin_addr;
737                                 break;
738                         }
739
740                         /* No IP addresses on this interface? */
741                         if (ifac == NULL)
742                                 error = EADDRNOTAVAIL;
743                         break;
744                     }
745                 default:
746                         error = EINVAL;
747                         break;
748                 }
749                 break;
750         case NGM_FLOW_COOKIE:
751                 switch (msg->header.cmd) {
752                 case NGM_LINK_IS_UP:
753                         ifp->if_flags |= IFF_RUNNING;
754                         break;
755                 case NGM_LINK_IS_DOWN:
756                         ifp->if_flags &= ~IFF_RUNNING;
757                         break;
758                 default:
759                         break;
760                 }
761                 break;
762         default:
763                 error = EINVAL;
764                 break;
765         }
766         NG_RESPOND_MSG(error, node, item, resp);
767         NG_FREE_MSG(msg);
768         return (error);
769 }
770
771 /*
772  * Recive data from a hook. Pass the packet to the correct input routine.
773  */
774 static int
775 ng_iface_rcvdata(hook_p hook, item_p item)
776 {
777         const priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
778         const iffam_p iffam = get_iffam_from_hook(priv, hook);
779         struct ifnet *const ifp = priv->ifp;
780         struct mbuf *m;
781         int isr;
782
783         NGI_GET_M(item, m);
784         NG_FREE_ITEM(item);
785         /* Sanity checks */
786         KASSERT(iffam != NULL, ("%s: iffam", __func__));
787         M_ASSERTPKTHDR(m);
788         if ((ifp->if_flags & IFF_UP) == 0) {
789                 NG_FREE_M(m);
790                 return (ENETDOWN);
791         }
792
793         /* Update interface stats */
794         IFNET_STAT_INC(ifp, ipackets, 1);
795         IFNET_STAT_INC(ifp, ibytes, m->m_pkthdr.len);
796
797         /* Note receiving interface */
798         m->m_pkthdr.rcvif = ifp;
799
800         /* Berkeley packet filter */
801         ng_iface_bpftap(ifp, m, iffam->family);
802
803         /* Send packet */
804         switch (iffam->family) {
805 #ifdef INET
806         case AF_INET:
807                 isr = NETISR_IP;
808                 break;
809 #endif
810 #ifdef INET6
811         case AF_INET6:
812                 isr = NETISR_IPV6;
813                 break;
814 #endif
815 #ifdef IPX
816         case AF_IPX:
817                 isr = NETISR_IPX;
818                 break;
819 #endif
820         default:
821                 m_freem(m);
822                 return (EAFNOSUPPORT);
823         }
824 #if 0
825         /* First chunk of an mbuf contains good junk */
826         if (harvest.point_to_point)
827                 random_harvest(m, 16, 3, 0, RANDOM_NET);
828 #endif
829         netisr_queue(isr, m);
830         return (0);
831 }
832
833 /*
834  * Shutdown and remove the node and its associated interface.
835  */
836 static int
837 ng_iface_shutdown(node_p node)
838 {
839         const priv_p priv = NG_NODE_PRIVATE(node);
840
841         bpfdetach(priv->ifp);
842         if_detach(priv->ifp);
843         kfree(priv->ifp, M_NETGRAPH_IFACE);
844         priv->ifp = NULL;
845         ng_iface_free_unit(priv->unit);
846         kfree(priv, M_NETGRAPH_IFACE);
847         NG_NODE_SET_PRIVATE(node, NULL);
848         NG_NODE_UNREF(node);
849         return (0);
850 }
851
852 /*
853  * Hook disconnection. Note that we do *not* shutdown when all
854  * hooks have been disconnected.
855  */
856 static int
857 ng_iface_disconnect(hook_p hook)
858 {
859         const priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
860         const iffam_p iffam = get_iffam_from_hook(priv, hook);
861
862         if (iffam == NULL)
863                 panic(__func__);
864         *get_hook_from_iffam(priv, iffam) = NULL;
865         return (0);
866 }
867
868 /*
869  * Handle loading and unloading for this node type.
870  */
871 static int
872 ng_iface_mod_event(module_t mod, int event, void *data)
873 {
874         int error = 0;
875
876         switch (event) {
877         case MOD_LOAD:
878                 break;
879         case MOD_UNLOAD:
880                 break;
881         default:
882                 error = EOPNOTSUPP;
883                 break;
884         }
885         return (error);
886 }