2 * Copyright (c) 2002 Mark Santcroos <marks@ripe.net>
3 * Copyright (c) 2004-2005 Gleb Smirnoff <glebius@FreeBSD.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 * Netgraph "device" node
27 * This node presents a /dev/ngd%d device that interfaces to an other
30 * $FreeBSD: src/sys/netgraph/ng_device.c,v 1.22 2006/11/02 17:37:21 andre Exp $
31 * $DragonFly: src/sys/netgraph7/ng_device.c,v 1.2 2008/06/26 23:05:35 dillon Exp $
36 #define DBG do { printf("ng_device: %s\n", __func__ ); } while (0)
38 #define DBG do {} while (0)
41 #include <sys/param.h>
43 #include <sys/kernel.h>
44 #include <sys/malloc.h>
47 #include <sys/queue.h>
48 #include <sys/socket.h>
49 #include <sys/systm.h>
51 #include <sys/vnode.h>
54 #include <net/if_var.h>
55 #include <netinet/in.h>
56 #include <netinet/in_systm.h>
57 #include <netinet/ip.h>
59 #include "ng_message.h"
61 #include "ng_device.h"
63 #define ERROUT(x) do { error = (x); goto done; } while (0)
65 /* Netgraph methods */
66 static int ng_device_mod_event(module_t, int, void *);
67 static ng_constructor_t ng_device_constructor;
68 static ng_rcvmsg_t ng_device_rcvmsg;
69 static ng_shutdown_t ng_device_shutdown;
70 static ng_newhook_t ng_device_newhook;
71 static ng_rcvdata_t ng_device_rcvdata;
72 static ng_disconnect_t ng_device_disconnect;
75 static struct ng_type ngd_typestruct = {
76 .version = NG_ABI_VERSION,
77 .name = NG_DEVICE_NODE_TYPE,
78 .mod_event = ng_device_mod_event,
79 .constructor = ng_device_constructor,
80 .rcvmsg = ng_device_rcvmsg,
81 .shutdown = ng_device_shutdown,
82 .newhook = ng_device_newhook,
83 .rcvdata = ng_device_rcvdata,
84 .disconnect = ng_device_disconnect,
86 NETGRAPH_INIT(device, &ngd_typestruct);
97 #define NGDF_OPEN 0x0001
98 #define NGDF_RWAIT 0x0002
100 typedef struct ngd_private *priv_p;
102 /* unit number allocator entity */
103 static struct unrhdr *ngd_unit;
105 /* Maximum number of NGD devices */
108 static d_close_t ngdclose;
109 static d_open_t ngdopen;
110 static d_read_t ngdread;
111 static d_write_t ngdwrite;
113 static d_ioctl_t ngdioctl;
115 static d_poll_t ngdpoll;
117 static struct cdevsw ngd_cdevsw = {
118 .d_version = D_VERSION,
127 .d_name = NG_DEVICE_DEVNAME,
130 /******************************************************************************
132 ******************************************************************************/
135 * Handle loading and unloading for this node type.
138 ng_device_mod_event(module_t mod, int event, void *data)
144 ngd_unit = new_unrhdr(0, MAX_NGD, NULL);
147 delete_unrhdr(ngd_unit);
160 ng_device_constructor(node_p node)
166 MALLOC(priv, priv_p, sizeof(*priv), M_NETGRAPH, M_WAITOK | M_ZERO);
170 /* Allocate unit number */
171 priv->unit = alloc_unr(ngd_unit);
173 /* Initialize mutexes and queue */
174 mtx_init(&priv->ngd_mtx, "ng_device", NULL, MTX_DEF);
175 mtx_init(&priv->readq.ifq_mtx, "ng_device queue", NULL, MTX_DEF);
176 IFQ_SET_MAXLEN(&priv->readq, ifqmaxlen);
178 /* Link everything together */
179 NG_NODE_SET_PRIVATE(node, priv);
182 priv->ngddev = make_dev(&ngd_cdevsw, unit2minor(priv->unit), UID_ROOT,
183 GID_WHEEL, 0600, NG_DEVICE_DEVNAME "%d", priv->unit);
184 if(priv->ngddev == NULL) {
185 printf("%s(): make_dev() failed\n",__func__);
186 mtx_destroy(&priv->ngd_mtx);
187 mtx_destroy(&priv->readq.ifq_mtx);
188 free_unr(ngd_unit, priv->unit);
189 FREE(priv, M_NETGRAPH);
192 /* XXX: race here? */
193 priv->ngddev->si_drv1 = priv;
199 * Process control message.
203 ng_device_rcvmsg(node_p node, item_p item, hook_p lasthook)
205 const priv_p priv = NG_NODE_PRIVATE(node);
207 struct ng_mesg *resp = NULL;
210 NGI_GET_MSG(item, msg);
212 if (msg->header.typecookie == NGM_DEVICE_COOKIE) {
213 switch (msg->header.cmd) {
214 case NGM_DEVICE_GET_DEVNAME:
215 /* XXX: Fix when MAX_NGD us bigger */
216 NG_MKRESPONSE(resp, msg,
217 strlen(NG_DEVICE_DEVNAME) + 4, M_WAITOK);
222 strlcpy((char *)resp->data, priv->ngddev->si_name,
223 strlen(priv->ngddev->si_name) + 1);
234 NG_RESPOND_MSG(error, node, item, resp);
240 * Accept incoming hook. We support only one hook per node.
243 ng_device_newhook(node_p node, hook_p hook, const char *name)
245 priv_p priv = NG_NODE_PRIVATE(node);
249 /* We have only one hook per node */
250 if (priv->hook != NULL)
259 * Receive data from hook, write it to device.
262 ng_device_rcvdata(hook_p hook, item_p item)
264 priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
272 IF_LOCK(&priv->readq);
273 if (_IF_QFULL(&priv->readq)) {
274 _IF_DROP(&priv->readq);
275 IF_UNLOCK(&priv->readq);
280 _IF_ENQUEUE(&priv->readq, m);
281 IF_UNLOCK(&priv->readq);
282 mtx_lock(&priv->ngd_mtx);
283 if (priv->flags & NGDF_RWAIT) {
284 priv->flags &= ~NGDF_RWAIT;
287 mtx_unlock(&priv->ngd_mtx);
293 * Removal of the hook destroys the node.
296 ng_device_disconnect(hook_p hook)
298 priv_p priv = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
302 destroy_dev(priv->ngddev);
303 mtx_destroy(&priv->ngd_mtx);
305 IF_DRAIN(&priv->readq);
306 mtx_destroy(&(priv)->readq.ifq_mtx);
308 free_unr(ngd_unit, priv->unit);
310 FREE(priv, M_NETGRAPH);
312 ng_rmnode_self(NG_HOOK_NODE(hook));
318 * Node shutdown. Everything is already done in disconnect method.
321 ng_device_shutdown(node_p node)
327 /******************************************************************************
329 ******************************************************************************/
332 * the device is opened
335 ngdopen(struct cdev *dev, int flag, int mode, struct thread *td)
337 priv_p priv = (priv_p )dev->si_drv1;
341 mtx_lock(&priv->ngd_mtx);
342 priv->flags |= NGDF_OPEN;
343 mtx_unlock(&priv->ngd_mtx);
349 * the device is closed
352 ngdclose(struct cdev *dev, int flag, int mode, struct thread *td)
354 priv_p priv = (priv_p )dev->si_drv1;
357 mtx_lock(&priv->ngd_mtx);
358 priv->flags &= ~NGDF_OPEN;
359 mtx_unlock(&priv->ngd_mtx);
365 * The ioctl is transformed into netgraph control message.
366 * We do not process them, yet.
371 * they are translated into netgraph messages and passed on
375 ngdioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
377 struct ngd_softc *sc = &ngd_softc;
378 struct ngd_connection * connection = NULL;
379 struct ngd_connection * tmp;
382 struct ngd_param_s * datap;
386 NG_MKMESSAGE(msg, NGM_DEVICE_COOKIE, cmd, sizeof(struct ngd_param_s),
389 printf("%s(): msg == NULL\n",__func__);
393 /* pass the ioctl data into the ->data area */
394 datap = (struct ngd_param_s *)msg->data;
397 NG_SEND_MSG_HOOK(error, sc->node, msg, connection->active_hook, 0);
399 printf("%s(): NG_SEND_MSG_HOOK error: %d\n",__func__,error);
408 * This function is called when a read(2) is done to our device.
409 * We process one mbuf from queue.
412 ngdread(struct cdev *dev, struct uio *uio, int flag)
414 priv_p priv = (priv_p )dev->si_drv1;
422 IF_DEQUEUE(&priv->readq, m);
424 if (flag & IO_NDELAY)
425 return (EWOULDBLOCK);
426 mtx_lock(&priv->ngd_mtx);
427 priv->flags |= NGDF_RWAIT;
428 if ((error = msleep(priv, &priv->ngd_mtx,
429 PDROP | PCATCH | (PZERO + 1),
435 while (m && uio->uio_resid > 0 && error == 0) {
436 len = MIN(uio->uio_resid, m->m_len);
438 error = uiomove(mtod(m, void *), len, uio);
450 * This function is called when our device is written to.
451 * We read the data from userland into mbuf chain and pass it to the remote hook.
455 ngdwrite(struct cdev *dev, struct uio *uio, int flag)
457 priv_p priv = (priv_p )dev->si_drv1;
463 if (uio->uio_resid == 0)
466 if (uio->uio_resid > IP_MAXPACKET)
469 if ((m = m_uiotombuf(uio, MB_DONTWAIT, 0, 0, M_PKTHDR)) == NULL)
472 NG_SEND_DATA_ONLY(error, priv->hook, m);
478 * we are being polled/selected
479 * check if there is data available for read
482 ngdpoll(struct cdev *dev, int events, struct thread *td)
484 priv_p priv = (priv_p )dev->si_drv1;
487 if (events & (POLLIN | POLLRDNORM) &&
488 !IFQ_IS_EMPTY(&priv->readq))
489 revents |= events & (POLLIN | POLLRDNORM);