ng_base.c revision 149817
1226586Sdim/*
2226586Sdim * ng_base.c
3226586Sdim */
4226586Sdim
5226586Sdim/*-
6226586Sdim * Copyright (c) 1996-1999 Whistle Communications, Inc.
7226586Sdim * All rights reserved.
8226586Sdim *
9226586Sdim * Subject to the following obligations and disclaimer of warranty, use and
10226586Sdim * redistribution of this software, in source or object code forms, with or
11226586Sdim * without modifications are expressly permitted by Whistle Communications;
12226586Sdim * provided, however, that:
13226586Sdim * 1. Any and all reproductions of the source or object code must include the
14249423Sdim *    copyright notice above and the following disclaimer of warranties; and
15226586Sdim * 2. No rights are granted, in any manner or form, to use Whistle
16239462Sdim *    Communications, Inc. trademarks, including the mark "WHISTLE
17226586Sdim *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
18226586Sdim *    such appears in the above copyright notice or in the software.
19234353Sdim *
20226586Sdim * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
21226586Sdim * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
22226586Sdim * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
23226586Sdim * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
24226586Sdim * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
25234353Sdim * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
26234353Sdim * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
27234353Sdim * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
28234353Sdim * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
29234353Sdim * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
30234353Sdim * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
31234353Sdim * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
32234353Sdim * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
33234353Sdim * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34234353Sdim * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35234353Sdim * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
36234353Sdim * OF SUCH DAMAGE.
37234353Sdim *
38234353Sdim * Authors: Julian Elischer <julian@freebsd.org>
39234353Sdim *          Archie Cobbs <archie@freebsd.org>
40234353Sdim *
41234353Sdim * $FreeBSD: head/sys/netgraph/ng_base.c 149817 2005-09-06 16:58:25Z glebius $
42234353Sdim * $Whistle: ng_base.c,v 1.39 1999/01/28 23:54:53 julian Exp $
43234353Sdim */
44234353Sdim
45226586Sdim/*
46226586Sdim * This file implements the base netgraph code.
47226586Sdim */
48226586Sdim
49226586Sdim#include <sys/param.h>
50226586Sdim#include <sys/systm.h>
51226586Sdim#include <sys/ctype.h>
52226586Sdim#include <sys/errno.h>
53226586Sdim#include <sys/kdb.h>
54226586Sdim#include <sys/kernel.h>
55226586Sdim#include <sys/limits.h>
56226586Sdim#include <sys/malloc.h>
57226586Sdim#include <sys/mbuf.h>
58226586Sdim#include <sys/queue.h>
59226586Sdim#include <sys/sysctl.h>
60226586Sdim#include <sys/syslog.h>
61226586Sdim
62226586Sdim#include <net/netisr.h>
63226586Sdim
64226586Sdim#include <netgraph/ng_message.h>
65226586Sdim#include <netgraph/netgraph.h>
66226586Sdim#include <netgraph/ng_parse.h>
67226586Sdim
68226586SdimMODULE_VERSION(netgraph, NG_ABI_VERSION);
69226586Sdim
70239462Sdim/* List of all active nodes */
71239462Sdimstatic LIST_HEAD(, ng_node) ng_nodelist;
72239462Sdimstatic struct mtx	ng_nodelist_mtx;
73239462Sdim
74243830Sdim#ifdef	NETGRAPH_DEBUG
75243830Sdimstatic struct mtx		ngq_mtx;	/* protects the queue item list */
76239462Sdim
77239462Sdimstatic SLIST_HEAD(, ng_node) ng_allnodes;
78239462Sdimstatic LIST_HEAD(, ng_node) ng_freenodes; /* in debug, we never free() them */
79239462Sdimstatic SLIST_HEAD(, ng_hook) ng_allhooks;
80239462Sdimstatic LIST_HEAD(, ng_hook) ng_freehooks; /* in debug, we never free() them */
81239462Sdim
82239462Sdimstatic void ng_dumpitems(void);
83226586Sdimstatic void ng_dumpnodes(void);
84226586Sdimstatic void ng_dumphooks(void);
85226586Sdim
86226586Sdim#endif	/* NETGRAPH_DEBUG */
87226586Sdim/*
88226586Sdim * DEAD versions of the structures.
89234353Sdim * In order to avoid races, it is sometimes neccesary to point
90234353Sdim * at SOMETHING even though theoretically, the current entity is
91226586Sdim * INVALID. Use these to avoid these races.
92226586Sdim */
93226586Sdimstruct ng_type ng_deadtype = {
94226586Sdim	NG_ABI_VERSION,
95226586Sdim	"dead",
96226586Sdim	NULL,	/* modevent */
97226586Sdim	NULL,	/* constructor */
98226586Sdim	NULL,	/* rcvmsg */
99226586Sdim	NULL,	/* shutdown */
100226586Sdim	NULL,	/* newhook */
101226586Sdim	NULL,	/* findhook */
102226586Sdim	NULL,	/* connect */
103226586Sdim	NULL,	/* rcvdata */
104226586Sdim	NULL,	/* disconnect */
105226586Sdim	NULL, 	/* cmdlist */
106226586Sdim};
107226586Sdim
108226586Sdimstruct ng_node ng_deadnode = {
109226586Sdim	"dead",
110243830Sdim	&ng_deadtype,
111243830Sdim	NGF_INVALID,
112226586Sdim	1,	/* refs */
113226586Sdim	0,	/* numhooks */
114243830Sdim	NULL,	/* private */
115226586Sdim	0,	/* ID */
116234353Sdim	LIST_HEAD_INITIALIZER(ng_deadnode.hooks),
117226586Sdim	{},	/* all_nodes list entry */
118226586Sdim	{},	/* id hashtable list entry */
119243830Sdim	{},	/* workqueue entry */
120226586Sdim	{	0,
121226586Sdim		{}, /* should never use! (should hang) */
122226586Sdim		NULL,
123226586Sdim		&ng_deadnode.nd_input_queue.queue,
124226586Sdim		&ng_deadnode
125234353Sdim	},
126226586Sdim#ifdef	NETGRAPH_DEBUG
127249423Sdim	ND_MAGIC,
128226586Sdim	__FILE__,
129234353Sdim	__LINE__,
130226586Sdim	{NULL}
131226586Sdim#endif	/* NETGRAPH_DEBUG */
132226586Sdim};
133226586Sdim
134226586Sdimstruct ng_hook ng_deadhook = {
135249423Sdim	"dead",
136249423Sdim	NULL,		/* private */
137249423Sdim	HK_INVALID | HK_DEAD,
138234353Sdim	1,		/* refs always >= 1 */
139249423Sdim	0,		/* undefined data link type */
140261991Sdim	&ng_deadhook,	/* Peer is self */
141261991Sdim	&ng_deadnode,	/* attached to deadnode */
142261991Sdim	{},		/* hooks list */
143261991Sdim	NULL,		/* override rcvmsg() */
144261991Sdim	NULL,		/* override rcvdata() */
145261991Sdim#ifdef	NETGRAPH_DEBUG
146249423Sdim	HK_MAGIC,
147249423Sdim	__FILE__,
148249423Sdim	__LINE__,
149249423Sdim	{NULL}
150249423Sdim#endif	/* NETGRAPH_DEBUG */
151249423Sdim};
152261991Sdim
153226586Sdim/*
154226586Sdim * END DEAD STRUCTURES
155249423Sdim */
156249423Sdim/* List nodes with unallocated work */
157261991Sdimstatic TAILQ_HEAD(, ng_node) ng_worklist = TAILQ_HEAD_INITIALIZER(ng_worklist);
158261991Sdimstatic struct mtx	ng_worklist_mtx;   /* MUST LOCK NODE FIRST */
159261991Sdim
160261991Sdim/* List of installed types */
161261991Sdimstatic LIST_HEAD(, ng_type) ng_typelist;
162261991Sdimstatic struct mtx	ng_typelist_mtx;
163261991Sdim
164249423Sdim/* Hash related definitions */
165261991Sdim/* XXX Don't need to initialise them because it's a LIST */
166249423Sdim#define NG_ID_HASH_SIZE 32 /* most systems wont need even this many */
167249423Sdimstatic LIST_HEAD(, ng_node) ng_ID_hash[NG_ID_HASH_SIZE];
168249423Sdimstatic struct mtx	ng_idhash_mtx;
169249423Sdim/* Method to find a node.. used twice so do it here */
170226586Sdim#define NG_IDHASH_FN(ID) ((ID) % (NG_ID_HASH_SIZE))
171234353Sdim#define NG_IDHASH_FIND(ID, node)					\
172249423Sdim	do { 								\
173261991Sdim		mtx_assert(&ng_idhash_mtx, MA_OWNED);			\
174261991Sdim		LIST_FOREACH(node, &ng_ID_hash[NG_IDHASH_FN(ID)],	\
175261991Sdim						nd_idnodes) {		\
176226586Sdim			if (NG_NODE_IS_VALID(node)			\
177226586Sdim			&& (NG_NODE_ID(node) == ID)) {			\
178249423Sdim				break;					\
179249423Sdim			}						\
180261991Sdim		}							\
181261991Sdim	} while (0)
182261991Sdim
183261991Sdim
184261991Sdim/* Internal functions */
185261991Sdimstatic int	ng_add_hook(node_p node, const char *name, hook_p * hookp);
186261991Sdimstatic int	ng_generic_msg(node_p here, item_p item, hook_p lasthook);
187261991Sdimstatic ng_ID_t	ng_decodeidname(const char *name);
188249423Sdimstatic int	ngb_mod_event(module_t mod, int event, void *data);
189249423Sdimstatic void	ng_worklist_remove(node_p node);
190226586Sdimstatic void	ngintr(void);
191226586Sdimstatic int	ng_apply_item(node_p node, item_p item);
192261991Sdimstatic void	ng_flush_input_queue(struct ng_queue * ngq);
193261991Sdimstatic void	ng_setisr(node_p node);
194249423Sdimstatic node_p	ng_ID2noderef(ng_ID_t ID);
195249423Sdimstatic int	ng_con_nodes(node_p node, const char *name, node_p node2,
196234353Sdim							const char *name2);
197249423Sdimstatic void	ng_con_part2(node_p node, hook_p hook, void *arg1, int arg2);
198249423Sdimstatic void	ng_con_part3(node_p node, hook_p hook, void *arg1, int arg2);
199261991Sdimstatic int	ng_mkpeer(node_p node, const char *name,
200249423Sdim						const char *name2, char *type);
201261991Sdim
202261991Sdim/* imported , these used to be externally visible, some may go back */
203249423Sdimvoid	ng_destroy_hook(hook_p hook);
204249423Sdimnode_p	ng_name2noderef(node_p node, const char *name);
205261991Sdimint	ng_path2noderef(node_p here, const char *path,
206261991Sdim	node_p *dest, hook_p *lasthook);
207226586Sdimint	ng_make_node(const char *type, node_p *nodepp);
208226586Sdimint	ng_path_parse(char *addr, char **node, char **path, char **hook);
209226586Sdimvoid	ng_rmnode(node_p node, hook_p dummy1, void *dummy2, int dummy3);
210261991Sdimvoid	ng_unname(node_p node);
211261991Sdim
212226586Sdim
213226586Sdim/* Our own netgraph malloc type */
214226586SdimMALLOC_DEFINE(M_NETGRAPH, "netgraph", "netgraph structures and ctrl messages");
215243830SdimMALLOC_DEFINE(M_NETGRAPH_HOOK, "netgraph_hook", "netgraph hook structures");
216249423SdimMALLOC_DEFINE(M_NETGRAPH_NODE, "netgraph_node", "netgraph node structures");
217226586SdimMALLOC_DEFINE(M_NETGRAPH_ITEM, "netgraph_item", "netgraph item structures");
218226586SdimMALLOC_DEFINE(M_NETGRAPH_MSG, "netgraph_msg", "netgraph name storage");
219243830Sdim
220243830Sdim/* Should not be visible outside this file */
221226586Sdim
222226586Sdim#define _NG_ALLOC_HOOK(hook) \
223226586Sdim	MALLOC(hook, hook_p, sizeof(*hook), M_NETGRAPH_HOOK, M_NOWAIT | M_ZERO)
224226586Sdim#define _NG_ALLOC_NODE(node) \
225226586Sdim	MALLOC(node, node_p, sizeof(*node), M_NETGRAPH_NODE, M_NOWAIT | M_ZERO)
226226586Sdim
227226586Sdim#ifdef NETGRAPH_DEBUG /*----------------------------------------------*/
228234353Sdim/*
229239462Sdim * In debug mode:
230239462Sdim * In an attempt to help track reference count screwups
231239462Sdim * we do not free objects back to the malloc system, but keep them
232239462Sdim * in a local cache where we can examine them and keep information safely
233239462Sdim * after they have been freed.
234226586Sdim * We use this scheme for nodes and hooks, and to some extent for items.
235226586Sdim */
236226586Sdimstatic __inline hook_p
237226586Sdimng_alloc_hook(void)
238226586Sdim{
239226586Sdim	hook_p hook;
240226586Sdim	SLIST_ENTRY(ng_hook) temp;
241226586Sdim	mtx_lock(&ng_nodelist_mtx);
242226586Sdim	hook = LIST_FIRST(&ng_freehooks);
243226586Sdim	if (hook) {
244226586Sdim		LIST_REMOVE(hook, hk_hooks);
245251662Sdim		bcopy(&hook->hk_all, &temp, sizeof(temp));
246226586Sdim		bzero(hook, sizeof(struct ng_hook));
247226586Sdim		bcopy(&temp, &hook->hk_all, sizeof(temp));
248226586Sdim		mtx_unlock(&ng_nodelist_mtx);
249226586Sdim		hook->hk_magic = HK_MAGIC;
250226586Sdim	} else {
251226586Sdim		mtx_unlock(&ng_nodelist_mtx);
252226586Sdim		_NG_ALLOC_HOOK(hook);
253226586Sdim		if (hook) {
254226586Sdim			hook->hk_magic = HK_MAGIC;
255226586Sdim			mtx_lock(&ng_nodelist_mtx);
256226586Sdim			SLIST_INSERT_HEAD(&ng_allhooks, hook, hk_all);
257226586Sdim			mtx_unlock(&ng_nodelist_mtx);
258226586Sdim		}
259226586Sdim	}
260226586Sdim	return (hook);
261243830Sdim}
262243830Sdim
263243830Sdimstatic __inline node_p
264226586Sdimng_alloc_node(void)
265226586Sdim{
266226586Sdim	node_p node;
267226586Sdim	SLIST_ENTRY(ng_node) temp;
268226586Sdim	mtx_lock(&ng_nodelist_mtx);
269226586Sdim	node = LIST_FIRST(&ng_freenodes);
270226586Sdim	if (node) {
271226586Sdim		LIST_REMOVE(node, nd_nodes);
272226586Sdim		bcopy(&node->nd_all, &temp, sizeof(temp));
273226586Sdim		bzero(node, sizeof(struct ng_node));
274226586Sdim		bcopy(&temp, &node->nd_all, sizeof(temp));
275226586Sdim		mtx_unlock(&ng_nodelist_mtx);
276226586Sdim		node->nd_magic = ND_MAGIC;
277226586Sdim	} else {
278226586Sdim		mtx_unlock(&ng_nodelist_mtx);
279226586Sdim		_NG_ALLOC_NODE(node);
280249423Sdim		if (node) {
281226586Sdim			node->nd_magic = ND_MAGIC;
282226586Sdim			mtx_lock(&ng_nodelist_mtx);
283226586Sdim			SLIST_INSERT_HEAD(&ng_allnodes, node, nd_all);
284226586Sdim			mtx_unlock(&ng_nodelist_mtx);
285226586Sdim		}
286226586Sdim	}
287226586Sdim	return (node);
288226586Sdim}
289226586Sdim
290226586Sdim#define NG_ALLOC_HOOK(hook) do { (hook) = ng_alloc_hook(); } while (0)
291234353Sdim#define NG_ALLOC_NODE(node) do { (node) = ng_alloc_node(); } while (0)
292234353Sdim
293234353Sdim
294234353Sdim#define NG_FREE_HOOK(hook)						\
295234353Sdim	do {								\
296234353Sdim		mtx_lock(&ng_nodelist_mtx);			\
297226586Sdim		LIST_INSERT_HEAD(&ng_freehooks, hook, hk_hooks);	\
298226586Sdim		hook->hk_magic = 0;					\
299226586Sdim		mtx_unlock(&ng_nodelist_mtx);			\
300226586Sdim	} while (0)
301226586Sdim
302226586Sdim#define NG_FREE_NODE(node)						\
303226586Sdim	do {								\
304226586Sdim		mtx_lock(&ng_nodelist_mtx);			\
305234353Sdim		LIST_INSERT_HEAD(&ng_freenodes, node, nd_nodes);	\
306226586Sdim		node->nd_magic = 0;					\
307234353Sdim		mtx_unlock(&ng_nodelist_mtx);			\
308234353Sdim	} while (0)
309226586Sdim
310226586Sdim#else /* NETGRAPH_DEBUG */ /*----------------------------------------------*/
311226586Sdim
312226586Sdim#define NG_ALLOC_HOOK(hook) _NG_ALLOC_HOOK(hook)
313226586Sdim#define NG_ALLOC_NODE(node) _NG_ALLOC_NODE(node)
314226586Sdim
315226586Sdim#define NG_FREE_HOOK(hook) do { FREE((hook), M_NETGRAPH_HOOK); } while (0)
316226586Sdim#define NG_FREE_NODE(node) do { FREE((node), M_NETGRAPH_NODE); } while (0)
317226586Sdim
318226586Sdim#endif /* NETGRAPH_DEBUG */ /*----------------------------------------------*/
319226586Sdim
320226586Sdim/* Set this to kdb_enter("X") to catch all errors as they occur */
321226586Sdim#ifndef TRAP_ERROR
322234353Sdim#define TRAP_ERROR()
323234353Sdim#endif
324226586Sdim
325226586Sdimstatic	ng_ID_t nextID = 1;
326226586Sdim
327226586Sdim#ifdef INVARIANTS
328249423Sdim#define CHECK_DATA_MBUF(m)	do {					\
329226586Sdim		struct mbuf *n;						\
330226586Sdim		int total;						\
331226586Sdim									\
332226586Sdim		M_ASSERTPKTHDR(m);					\
333226586Sdim		for (total = 0, n = (m); n != NULL; n = n->m_next)	\
334249423Sdim			total += n->m_len;				\
335226586Sdim		if ((m)->m_pkthdr.len != total) {			\
336226586Sdim			panic("%s: %d != %d",				\
337226586Sdim			    __func__, (m)->m_pkthdr.len, total);	\
338226586Sdim		}							\
339226586Sdim	} while (0)
340226586Sdim#else
341249423Sdim#define CHECK_DATA_MBUF(m)
342249423Sdim#endif
343226586Sdim
344226586Sdim
345226586Sdim/************************************************************************
346226586Sdim	Parse type definitions for generic messages
347226586Sdim************************************************************************/
348249423Sdim
349226586Sdim/* Handy structure parse type defining macro */
350226586Sdim#define DEFINE_PARSE_STRUCT_TYPE(lo, up, args)				\
351249423Sdimstatic const struct ng_parse_struct_field				\
352249423Sdim	ng_ ## lo ## _type_fields[] = NG_GENERIC_ ## up ## _INFO args;	\
353249423Sdimstatic const struct ng_parse_type ng_generic_ ## lo ## _type = {	\
354249423Sdim	&ng_parse_struct_type,						\
355249423Sdim	&ng_ ## lo ## _type_fields					\
356249423Sdim}
357249423Sdim
358251662SdimDEFINE_PARSE_STRUCT_TYPE(mkpeer, MKPEER, ());
359249423SdimDEFINE_PARSE_STRUCT_TYPE(connect, CONNECT, ());
360249423SdimDEFINE_PARSE_STRUCT_TYPE(name, NAME, ());
361249423SdimDEFINE_PARSE_STRUCT_TYPE(rmhook, RMHOOK, ());
362249423SdimDEFINE_PARSE_STRUCT_TYPE(nodeinfo, NODEINFO, ());
363249423SdimDEFINE_PARSE_STRUCT_TYPE(typeinfo, TYPEINFO, ());
364249423SdimDEFINE_PARSE_STRUCT_TYPE(linkinfo, LINKINFO, (&ng_generic_nodeinfo_type));
365234353Sdim
366226586Sdim/* Get length of an array when the length is stored as a 32 bit
367226586Sdim   value immediately preceding the array -- as with struct namelist
368226586Sdim   and struct typelist. */
369226586Sdimstatic int
370226586Sdimng_generic_list_getLength(const struct ng_parse_type *type,
371226586Sdim	const u_char *start, const u_char *buf)
372226586Sdim{
373226586Sdim	return *((const u_int32_t *)(buf - 4));
374234353Sdim}
375234353Sdim
376234353Sdim/* Get length of the array of struct linkinfo inside a struct hooklist */
377234353Sdimstatic int
378226586Sdimng_generic_linkinfo_getLength(const struct ng_parse_type *type,
379226586Sdim	const u_char *start, const u_char *buf)
380226586Sdim{
381226586Sdim	const struct hooklist *hl = (const struct hooklist *)start;
382234353Sdim
383226586Sdim	return hl->nodeinfo.hooks;
384226586Sdim}
385226586Sdim
386226586Sdim/* Array type for a variable length array of struct namelist */
387226586Sdimstatic const struct ng_parse_array_info ng_nodeinfoarray_type_info = {
388226586Sdim	&ng_generic_nodeinfo_type,
389226586Sdim	&ng_generic_list_getLength
390226586Sdim};
391226586Sdimstatic const struct ng_parse_type ng_generic_nodeinfoarray_type = {
392226586Sdim	&ng_parse_array_type,
393226586Sdim	&ng_nodeinfoarray_type_info
394226586Sdim};
395226586Sdim
396226586Sdim/* Array type for a variable length array of struct typelist */
397226586Sdimstatic const struct ng_parse_array_info ng_typeinfoarray_type_info = {
398226586Sdim	&ng_generic_typeinfo_type,
399226586Sdim	&ng_generic_list_getLength
400226586Sdim};
401226586Sdimstatic const struct ng_parse_type ng_generic_typeinfoarray_type = {
402226586Sdim	&ng_parse_array_type,
403226586Sdim	&ng_typeinfoarray_type_info
404234353Sdim};
405234353Sdim
406226586Sdim/* Array type for array of struct linkinfo in struct hooklist */
407226586Sdimstatic const struct ng_parse_array_info ng_generic_linkinfo_array_type_info = {
408226586Sdim	&ng_generic_linkinfo_type,
409226586Sdim	&ng_generic_linkinfo_getLength
410226586Sdim};
411226586Sdimstatic const struct ng_parse_type ng_generic_linkinfo_array_type = {
412226586Sdim	&ng_parse_array_type,
413226586Sdim	&ng_generic_linkinfo_array_type_info
414226586Sdim};
415226586Sdim
416226586SdimDEFINE_PARSE_STRUCT_TYPE(typelist, TYPELIST, (&ng_generic_nodeinfoarray_type));
417226586SdimDEFINE_PARSE_STRUCT_TYPE(hooklist, HOOKLIST,
418226586Sdim	(&ng_generic_nodeinfo_type, &ng_generic_linkinfo_array_type));
419226586SdimDEFINE_PARSE_STRUCT_TYPE(listnodes, LISTNODES,
420226586Sdim	(&ng_generic_nodeinfoarray_type));
421226586Sdim
422226586Sdim/* List of commands and how to convert arguments to/from ASCII */
423234353Sdimstatic const struct ng_cmdlist ng_generic_cmds[] = {
424226586Sdim	{
425226586Sdim	  NGM_GENERIC_COOKIE,
426226586Sdim	  NGM_SHUTDOWN,
427226586Sdim	  "shutdown",
428226586Sdim	  NULL,
429234353Sdim	  NULL
430234353Sdim	},
431226586Sdim	{
432234353Sdim	  NGM_GENERIC_COOKIE,
433234353Sdim	  NGM_MKPEER,
434226586Sdim	  "mkpeer",
435234353Sdim	  &ng_generic_mkpeer_type,
436234353Sdim	  NULL
437234353Sdim	},
438226586Sdim	{
439234353Sdim	  NGM_GENERIC_COOKIE,
440234353Sdim	  NGM_CONNECT,
441234353Sdim	  "connect",
442226586Sdim	  &ng_generic_connect_type,
443234353Sdim	  NULL
444234353Sdim	},
445234353Sdim	{
446226586Sdim	  NGM_GENERIC_COOKIE,
447234353Sdim	  NGM_NAME,
448234353Sdim	  "name",
449234353Sdim	  &ng_generic_name_type,
450226586Sdim	  NULL
451234353Sdim	},
452234353Sdim	{
453226586Sdim	  NGM_GENERIC_COOKIE,
454234353Sdim	  NGM_RMHOOK,
455234353Sdim	  "rmhook",
456226586Sdim	  &ng_generic_rmhook_type,
457226586Sdim	  NULL
458226586Sdim	},
459234353Sdim	{
460234353Sdim	  NGM_GENERIC_COOKIE,
461226586Sdim	  NGM_NODEINFO,
462226586Sdim	  "nodeinfo",
463226586Sdim	  NULL,
464226586Sdim	  &ng_generic_nodeinfo_type
465226586Sdim	},
466226586Sdim	{
467226586Sdim	  NGM_GENERIC_COOKIE,
468226586Sdim	  NGM_LISTHOOKS,
469226586Sdim	  "listhooks",
470226586Sdim	  NULL,
471226586Sdim	  &ng_generic_hooklist_type
472226586Sdim	},
473226586Sdim	{
474226586Sdim	  NGM_GENERIC_COOKIE,
475226586Sdim	  NGM_LISTNAMES,
476226586Sdim	  "listnames",
477226586Sdim	  NULL,
478226586Sdim	  &ng_generic_listnodes_type	/* same as NGM_LISTNODES */
479226586Sdim	},
480226586Sdim	{
481226586Sdim	  NGM_GENERIC_COOKIE,
482226586Sdim	  NGM_LISTNODES,
483226586Sdim	  "listnodes",
484226586Sdim	  NULL,
485234353Sdim	  &ng_generic_listnodes_type
486226586Sdim	},
487226586Sdim	{
488226586Sdim	  NGM_GENERIC_COOKIE,
489226586Sdim	  NGM_LISTTYPES,
490226586Sdim	  "listtypes",
491226586Sdim	  NULL,
492226586Sdim	  &ng_generic_typeinfo_type
493226586Sdim	},
494226586Sdim	{
495226586Sdim	  NGM_GENERIC_COOKIE,
496226586Sdim	  NGM_TEXT_CONFIG,
497234353Sdim	  "textconfig",
498226586Sdim	  NULL,
499226586Sdim	  &ng_parse_string_type
500226586Sdim	},
501226586Sdim	{
502226586Sdim	  NGM_GENERIC_COOKIE,
503226586Sdim	  NGM_TEXT_STATUS,
504226586Sdim	  "textstatus",
505226586Sdim	  NULL,
506226586Sdim	  &ng_parse_string_type
507226586Sdim	},
508226586Sdim	{
509261991Sdim	  NGM_GENERIC_COOKIE,
510261991Sdim	  NGM_ASCII2BINARY,
511261991Sdim	  "ascii2binary",
512261991Sdim	  &ng_parse_ng_mesg_type,
513261991Sdim	  &ng_parse_ng_mesg_type
514261991Sdim	},
515261991Sdim	{
516261991Sdim	  NGM_GENERIC_COOKIE,
517261991Sdim	  NGM_BINARY2ASCII,
518261991Sdim	  "binary2ascii",
519261991Sdim	  &ng_parse_ng_mesg_type,
520261991Sdim	  &ng_parse_ng_mesg_type
521261991Sdim	},
522226586Sdim	{ 0 }
523226586Sdim};
524226586Sdim
525226586Sdim/************************************************************************
526226586Sdim			Node routines
527226586Sdim************************************************************************/
528226586Sdim
529226586Sdim/*
530226586Sdim * Instantiate a node of the requested type
531261991Sdim */
532261991Sdimint
533226586Sdimng_make_node(const char *typename, node_p *nodepp)
534226586Sdim{
535234353Sdim	struct ng_type *type;
536234353Sdim	int	error;
537226586Sdim
538234353Sdim	/* Check that the type makes sense */
539226586Sdim	if (typename == NULL) {
540226586Sdim		TRAP_ERROR();
541226586Sdim		return (EINVAL);
542226586Sdim	}
543226586Sdim
544226586Sdim	/* Locate the node type. If we fail we return. Do not try to load
545226586Sdim	 * module.
546234353Sdim	 */
547234353Sdim	if ((type = ng_findtype(typename)) == NULL)
548226586Sdim		return (ENXIO);
549226586Sdim
550234353Sdim	/*
551234353Sdim	 * If we have a constructor, then make the node and
552226586Sdim	 * call the constructor to do type specific initialisation.
553226586Sdim	 */
554226586Sdim	if (type->constructor != NULL) {
555226586Sdim		if ((error = ng_make_node_common(type, nodepp)) == 0) {
556226586Sdim			if ((error = ((*type->constructor)(*nodepp)) != 0)) {
557226586Sdim				NG_NODE_UNREF(*nodepp);
558226586Sdim			}
559226586Sdim		}
560226586Sdim	} else {
561249423Sdim		/*
562226586Sdim		 * Node has no constructor. We cannot ask for one
563226586Sdim		 * to be made. It must be brought into existance by
564249423Sdim		 * some external agency. The external agency should
565261991Sdim		 * call ng_make_node_common() directly to get the
566261991Sdim		 * netgraph part initialised.
567239462Sdim		 */
568249423Sdim		TRAP_ERROR();
569226586Sdim		error = EINVAL;
570226586Sdim	}
571226586Sdim	return (error);
572226586Sdim}
573226586Sdim
574226586Sdim/*
575226586Sdim * Generic node creation. Called by node initialisation for externally
576226586Sdim * instantiated nodes (e.g. hardware, sockets, etc ).
577249423Sdim * The returned node has a reference count of 1.
578226586Sdim */
579226586Sdimint
580226586Sdimng_make_node_common(struct ng_type *type, node_p *nodepp)
581226586Sdim{
582226586Sdim	node_p node;
583226586Sdim
584226586Sdim	/* Require the node type to have been already installed */
585226586Sdim	if (ng_findtype(type->name) == NULL) {
586226586Sdim		TRAP_ERROR();
587261991Sdim		return (EINVAL);
588261991Sdim	}
589226586Sdim
590234353Sdim	/* Make a node and try attach it to the type */
591234353Sdim	NG_ALLOC_NODE(node);
592234353Sdim	if (node == NULL) {
593226586Sdim		TRAP_ERROR();
594226586Sdim		return (ENOMEM);
595226586Sdim	}
596226586Sdim	node->nd_type = type;
597226586Sdim	NG_NODE_REF(node);				/* note reference */
598226586Sdim	type->refs++;
599226586Sdim
600239462Sdim	mtx_init(&node->nd_input_queue.q_mtx, "ng_node", NULL, MTX_SPIN);
601239462Sdim	node->nd_input_queue.queue = NULL;
602239462Sdim	node->nd_input_queue.last = &node->nd_input_queue.queue;
603226586Sdim	node->nd_input_queue.q_flags = 0;
604226586Sdim	node->nd_input_queue.q_node = node;
605239462Sdim
606239462Sdim	/* Initialize hook list for new node */
607239462Sdim	LIST_INIT(&node->nd_hooks);
608239462Sdim
609239462Sdim	/* Link us into the node linked list */
610239462Sdim	mtx_lock(&ng_nodelist_mtx);
611239462Sdim	LIST_INSERT_HEAD(&ng_nodelist, node, nd_nodes);
612226586Sdim	mtx_unlock(&ng_nodelist_mtx);
613239462Sdim
614239462Sdim
615239462Sdim	/* get an ID and put us in the hash chain */
616239462Sdim	mtx_lock(&ng_idhash_mtx);
617239462Sdim	for (;;) { /* wrap protection, even if silly */
618239462Sdim		node_p node2 = NULL;
619239462Sdim		node->nd_ID = nextID++; /* 137/second for 1 year before wrap */
620239462Sdim
621239462Sdim		/* Is there a problem with the new number? */
622226586Sdim		NG_IDHASH_FIND(node->nd_ID, node2); /* already taken? */
623239462Sdim		if ((node->nd_ID != 0) && (node2 == NULL)) {
624226586Sdim			break;
625226586Sdim		}
626226586Sdim	}
627226586Sdim	LIST_INSERT_HEAD(&ng_ID_hash[NG_IDHASH_FN(node->nd_ID)],
628226586Sdim							node, nd_idnodes);
629226586Sdim	mtx_unlock(&ng_idhash_mtx);
630226586Sdim
631226586Sdim	/* Done */
632226586Sdim	*nodepp = node;
633226586Sdim	return (0);
634226586Sdim}
635226586Sdim
636226586Sdim/*
637226586Sdim * Forceably start the shutdown process on a node. Either call
638226586Sdim * it's shutdown method, or do the default shutdown if there is
639226586Sdim * no type-specific method.
640226586Sdim *
641226586Sdim * We can only be called form a shutdown message, so we know we have
642226586Sdim * a writer lock, and therefore exclusive access. It also means
643226586Sdim * that we should not be on the work queue, but we check anyhow.
644226586Sdim *
645226586Sdim * Persistent node types must have a type-specific method which
646226586Sdim * Allocates a new node in which case, this one is irretrievably going away,
647226586Sdim * or cleans up anything it needs, and just makes the node valid again,
648226586Sdim * in which case we allow the node to survive.
649226586Sdim *
650226586Sdim * XXX We need to think of how to tell a persistant node that we
651234353Sdim * REALLY need to go away because the hardware has gone or we
652234353Sdim * are rebooting.... etc.
653234353Sdim */
654234353Sdimvoid
655234353Sdimng_rmnode(node_p node, hook_p dummy1, void *dummy2, int dummy3)
656234353Sdim{
657234353Sdim	hook_p hook;
658234353Sdim
659234353Sdim	/* Check if it's already shutting down */
660234353Sdim	if ((node->nd_flags & NGF_CLOSING) != 0)
661234353Sdim		return;
662234353Sdim
663234353Sdim	if (node == &ng_deadnode) {
664234353Sdim		printf ("shutdown called on deadnode\n");
665234353Sdim		return;
666234353Sdim	}
667234353Sdim
668234353Sdim	/* Add an extra reference so it doesn't go away during this */
669234353Sdim	NG_NODE_REF(node);
670234353Sdim
671234353Sdim	/*
672234353Sdim	 * Mark it invalid so any newcomers know not to try use it
673234353Sdim	 * Also add our own mark so we can't recurse
674234353Sdim	 * note that NGF_INVALID does not do this as it's also set during
675234353Sdim	 * creation
676234353Sdim	 */
677234353Sdim	node->nd_flags |= NGF_INVALID|NGF_CLOSING;
678234353Sdim
679234353Sdim	/* If node has its pre-shutdown method, then call it first*/
680234353Sdim	if (node->nd_type && node->nd_type->close)
681234353Sdim		(*node->nd_type->close)(node);
682234353Sdim
683234353Sdim	/* Notify all remaining connected nodes to disconnect */
684234353Sdim	while ((hook = LIST_FIRST(&node->nd_hooks)) != NULL)
685234353Sdim		ng_destroy_hook(hook);
686234353Sdim
687234353Sdim	/*
688234353Sdim	 * Drain the input queue forceably.
689234353Sdim	 * it has no hooks so what's it going to do, bleed on someone?
690234353Sdim	 * Theoretically we came here from a queue entry that was added
691234353Sdim	 * Just before the queue was closed, so it should be empty anyway.
692234353Sdim	 * Also removes us from worklist if needed.
693234353Sdim	 */
694234353Sdim	ng_flush_input_queue(&node->nd_input_queue);
695234353Sdim
696234353Sdim	/* Ask the type if it has anything to do in this case */
697234353Sdim	if (node->nd_type && node->nd_type->shutdown) {
698234353Sdim		(*node->nd_type->shutdown)(node);
699234353Sdim		if (NG_NODE_IS_VALID(node)) {
700234353Sdim			/*
701234353Sdim			 * Well, blow me down if the node code hasn't declared
702234353Sdim			 * that it doesn't want to die.
703234353Sdim			 * Presumably it is a persistant node.
704234353Sdim			 * If we REALLY want it to go away,
705234353Sdim			 *  e.g. hardware going away,
706234353Sdim			 * Our caller should set NGF_REALLY_DIE in nd_flags.
707234353Sdim			 */
708234353Sdim			node->nd_flags &= ~(NGF_INVALID|NGF_CLOSING);
709234353Sdim			NG_NODE_UNREF(node); /* Assume they still have theirs */
710234353Sdim			return;
711234353Sdim		}
712234353Sdim	} else {				/* do the default thing */
713234353Sdim		NG_NODE_UNREF(node);
714234353Sdim	}
715234353Sdim
716234353Sdim	ng_unname(node); /* basically a NOP these days */
717234353Sdim
718234353Sdim	/*
719234353Sdim	 * Remove extra reference, possibly the last
720234353Sdim	 * Possible other holders of references may include
721234353Sdim	 * timeout callouts, but theoretically the node's supposed to
722234353Sdim	 * have cancelled them. Possibly hardware dependencies may
723234353Sdim	 * force a driver to 'linger' with a reference.
724234353Sdim	 */
725234353Sdim	NG_NODE_UNREF(node);
726234353Sdim}
727234353Sdim
728234353Sdim#ifdef	NETGRAPH_DEBUG
729234353Sdimvoid
730234353Sdimng_ref_node(node_p node)
731243830Sdim{
732243830Sdim	_NG_NODE_REF(node);
733243830Sdim}
734234353Sdim#endif
735234353Sdim
736234353Sdim/*
737234353Sdim * Remove a reference to the node, possibly the last.
738234353Sdim * deadnode always acts as it it were the last.
739234353Sdim */
740234353Sdimint
741234353Sdimng_unref_node(node_p node)
742234353Sdim{
743234353Sdim	int     v;
744234353Sdim
745234353Sdim	if (node == &ng_deadnode) {
746234353Sdim		return (0);
747234353Sdim	}
748234353Sdim
749234353Sdim	do {
750234353Sdim		v = node->nd_refs - 1;
751234353Sdim	} while (! atomic_cmpset_int(&node->nd_refs, v + 1, v));
752234353Sdim
753234353Sdim	if (v == 0) { /* we were the last */
754234353Sdim
755239462Sdim		mtx_lock(&ng_nodelist_mtx);
756239462Sdim		node->nd_type->refs--; /* XXX maybe should get types lock? */
757243830Sdim		LIST_REMOVE(node, nd_nodes);
758243830Sdim		mtx_unlock(&ng_nodelist_mtx);
759243830Sdim
760243830Sdim		mtx_lock(&ng_idhash_mtx);
761239462Sdim		LIST_REMOVE(node, nd_idnodes);
762239462Sdim		mtx_unlock(&ng_idhash_mtx);
763239462Sdim
764239462Sdim		mtx_destroy(&node->nd_input_queue.q_mtx);
765239462Sdim		NG_FREE_NODE(node);
766239462Sdim	}
767239462Sdim	return (v);
768239462Sdim}
769239462Sdim
770239462Sdim/************************************************************************
771239462Sdim			Node ID handling
772239462Sdim************************************************************************/
773239462Sdimstatic node_p
774239462Sdimng_ID2noderef(ng_ID_t ID)
775239462Sdim{
776243830Sdim	node_p node;
777239462Sdim	mtx_lock(&ng_idhash_mtx);
778239462Sdim	NG_IDHASH_FIND(ID, node);
779239462Sdim	if(node)
780239462Sdim		NG_NODE_REF(node);
781239462Sdim	mtx_unlock(&ng_idhash_mtx);
782239462Sdim	return(node);
783239462Sdim}
784239462Sdim
785239462Sdimng_ID_t
786239462Sdimng_node2ID(node_p node)
787239462Sdim{
788239462Sdim	return (node ? NG_NODE_ID(node) : 0);
789}
790
791/************************************************************************
792			Node name handling
793************************************************************************/
794
795/*
796 * Assign a node a name. Once assigned, the name cannot be changed.
797 */
798int
799ng_name_node(node_p node, const char *name)
800{
801	int i;
802	node_p node2;
803
804	/* Check the name is valid */
805	for (i = 0; i < NG_NODESIZ; i++) {
806		if (name[i] == '\0' || name[i] == '.' || name[i] == ':')
807			break;
808	}
809	if (i == 0 || name[i] != '\0') {
810		TRAP_ERROR();
811		return (EINVAL);
812	}
813	if (ng_decodeidname(name) != 0) { /* valid IDs not allowed here */
814		TRAP_ERROR();
815		return (EINVAL);
816	}
817
818	/* Check the name isn't already being used */
819	if ((node2 = ng_name2noderef(node, name)) != NULL) {
820		NG_NODE_UNREF(node2);
821		TRAP_ERROR();
822		return (EADDRINUSE);
823	}
824
825	/* copy it */
826	strlcpy(NG_NODE_NAME(node), name, NG_NODESIZ);
827
828	return (0);
829}
830
831/*
832 * Find a node by absolute name. The name should NOT end with ':'
833 * The name "." means "this node" and "[xxx]" means "the node
834 * with ID (ie, at address) xxx".
835 *
836 * Returns the node if found, else NULL.
837 * Eventually should add something faster than a sequential search.
838 * Note it aquires a reference on the node so you can be sure it's still there.
839 */
840node_p
841ng_name2noderef(node_p here, const char *name)
842{
843	node_p node;
844	ng_ID_t temp;
845
846	/* "." means "this node" */
847	if (strcmp(name, ".") == 0) {
848		NG_NODE_REF(here);
849		return(here);
850	}
851
852	/* Check for name-by-ID */
853	if ((temp = ng_decodeidname(name)) != 0) {
854		return (ng_ID2noderef(temp));
855	}
856
857	/* Find node by name */
858	mtx_lock(&ng_nodelist_mtx);
859	LIST_FOREACH(node, &ng_nodelist, nd_nodes) {
860		if (NG_NODE_IS_VALID(node)
861		&& NG_NODE_HAS_NAME(node)
862		&& (strcmp(NG_NODE_NAME(node), name) == 0)) {
863			break;
864		}
865	}
866	if (node)
867		NG_NODE_REF(node);
868	mtx_unlock(&ng_nodelist_mtx);
869	return (node);
870}
871
872/*
873 * Decode an ID name, eg. "[f03034de]". Returns 0 if the
874 * string is not valid, otherwise returns the value.
875 */
876static ng_ID_t
877ng_decodeidname(const char *name)
878{
879	const int len = strlen(name);
880	char *eptr;
881	u_long val;
882
883	/* Check for proper length, brackets, no leading junk */
884	if ((len < 3)
885	|| (name[0] != '[')
886	|| (name[len - 1] != ']')
887	|| (!isxdigit(name[1]))) {
888		return ((ng_ID_t)0);
889	}
890
891	/* Decode number */
892	val = strtoul(name + 1, &eptr, 16);
893	if ((eptr - name != len - 1)
894	|| (val == ULONG_MAX)
895	|| (val == 0)) {
896		return ((ng_ID_t)0);
897	}
898	return (ng_ID_t)val;
899}
900
901/*
902 * Remove a name from a node. This should only be called
903 * when shutting down and removing the node.
904 * IF we allow name changing this may be more resurected.
905 */
906void
907ng_unname(node_p node)
908{
909}
910
911/************************************************************************
912			Hook routines
913 Names are not optional. Hooks are always connected, except for a
914 brief moment within these routines. On invalidation or during creation
915 they are connected to the 'dead' hook.
916************************************************************************/
917
918/*
919 * Remove a hook reference
920 */
921void
922ng_unref_hook(hook_p hook)
923{
924	int     v;
925
926	if (hook == &ng_deadhook) {
927		return;
928	}
929	do {
930		v = hook->hk_refs;
931	} while (! atomic_cmpset_int(&hook->hk_refs, v, v - 1));
932
933	if (v == 1) { /* we were the last */
934		if (_NG_HOOK_NODE(hook)) { /* it'll probably be ng_deadnode */
935			_NG_NODE_UNREF((_NG_HOOK_NODE(hook)));
936			hook->hk_node = NULL;
937		}
938		NG_FREE_HOOK(hook);
939	}
940}
941
942/*
943 * Add an unconnected hook to a node. Only used internally.
944 * Assumes node is locked. (XXX not yet true )
945 */
946static int
947ng_add_hook(node_p node, const char *name, hook_p *hookp)
948{
949	hook_p hook;
950	int error = 0;
951
952	/* Check that the given name is good */
953	if (name == NULL) {
954		TRAP_ERROR();
955		return (EINVAL);
956	}
957	if (ng_findhook(node, name) != NULL) {
958		TRAP_ERROR();
959		return (EEXIST);
960	}
961
962	/* Allocate the hook and link it up */
963	NG_ALLOC_HOOK(hook);
964	if (hook == NULL) {
965		TRAP_ERROR();
966		return (ENOMEM);
967	}
968	hook->hk_refs = 1;		/* add a reference for us to return */
969	hook->hk_flags = HK_INVALID;
970	hook->hk_peer = &ng_deadhook;	/* start off this way */
971	hook->hk_node = node;
972	NG_NODE_REF(node);		/* each hook counts as a reference */
973
974	/* Set hook name */
975	strlcpy(NG_HOOK_NAME(hook), name, NG_HOOKSIZ);
976
977	/*
978	 * Check if the node type code has something to say about it
979	 * If it fails, the unref of the hook will also unref the node.
980	 */
981	if (node->nd_type->newhook != NULL) {
982		if ((error = (*node->nd_type->newhook)(node, hook, name))) {
983			NG_HOOK_UNREF(hook);	/* this frees the hook */
984			return (error);
985		}
986	}
987	/*
988	 * The 'type' agrees so far, so go ahead and link it in.
989	 * We'll ask again later when we actually connect the hooks.
990	 */
991	LIST_INSERT_HEAD(&node->nd_hooks, hook, hk_hooks);
992	node->nd_numhooks++;
993	NG_HOOK_REF(hook);	/* one for the node */
994
995	if (hookp)
996		*hookp = hook;
997	return (0);
998}
999
1000/*
1001 * Find a hook
1002 *
1003 * Node types may supply their own optimized routines for finding
1004 * hooks.  If none is supplied, we just do a linear search.
1005 * XXX Possibly we should add a reference to the hook?
1006 */
1007hook_p
1008ng_findhook(node_p node, const char *name)
1009{
1010	hook_p hook;
1011
1012	if (node->nd_type->findhook != NULL)
1013		return (*node->nd_type->findhook)(node, name);
1014	LIST_FOREACH(hook, &node->nd_hooks, hk_hooks) {
1015		if (NG_HOOK_IS_VALID(hook)
1016		&& (strcmp(NG_HOOK_NAME(hook), name) == 0))
1017			return (hook);
1018	}
1019	return (NULL);
1020}
1021
1022/*
1023 * Destroy a hook
1024 *
1025 * As hooks are always attached, this really destroys two hooks.
1026 * The one given, and the one attached to it. Disconnect the hooks
1027 * from each other first. We reconnect the peer hook to the 'dead'
1028 * hook so that it can still exist after we depart. We then
1029 * send the peer its own destroy message. This ensures that we only
1030 * interact with the peer's structures when it is locked processing that
1031 * message. We hold a reference to the peer hook so we are guaranteed that
1032 * the peer hook and node are still going to exist until
1033 * we are finished there as the hook holds a ref on the node.
1034 * We run this same code again on the peer hook, but that time it is already
1035 * attached to the 'dead' hook.
1036 *
1037 * This routine is called at all stages of hook creation
1038 * on error detection and must be able to handle any such stage.
1039 */
1040void
1041ng_destroy_hook(hook_p hook)
1042{
1043	hook_p peer = NG_HOOK_PEER(hook);
1044	node_p node = NG_HOOK_NODE(hook);
1045
1046	if (hook == &ng_deadhook) {	/* better safe than sorry */
1047		printf("ng_destroy_hook called on deadhook\n");
1048		return;
1049	}
1050	hook->hk_flags |= HK_INVALID;		/* as soon as possible */
1051	if (peer && (peer != &ng_deadhook)) {
1052		/*
1053		 * Set the peer to point to ng_deadhook
1054		 * from this moment on we are effectively independent it.
1055		 * send it an rmhook message of it's own.
1056		 */
1057		peer->hk_peer = &ng_deadhook;	/* They no longer know us */
1058		hook->hk_peer = &ng_deadhook;	/* Nor us, them */
1059		if (NG_HOOK_NODE(peer) == &ng_deadnode) {
1060			/*
1061			 * If it's already divorced from a node,
1062			 * just free it.
1063			 */
1064			/* nothing */
1065		} else {
1066			ng_rmhook_self(peer); 	/* Send it a surprise */
1067		}
1068		NG_HOOK_UNREF(peer);		/* account for peer link */
1069		NG_HOOK_UNREF(hook);		/* account for peer link */
1070	}
1071
1072	/*
1073	 * Remove the hook from the node's list to avoid possible recursion
1074	 * in case the disconnection results in node shutdown.
1075	 */
1076	if (node == &ng_deadnode) { /* happens if called from ng_con_nodes() */
1077		return;
1078	}
1079	LIST_REMOVE(hook, hk_hooks);
1080	node->nd_numhooks--;
1081	if (node->nd_type->disconnect) {
1082		/*
1083		 * The type handler may elect to destroy the node so don't
1084		 * trust its existance after this point. (except
1085		 * that we still hold a reference on it. (which we
1086		 * inherrited from the hook we are destroying)
1087		 */
1088		(*node->nd_type->disconnect) (hook);
1089	}
1090
1091	/*
1092	 * Note that because we will point to ng_deadnode, the original node
1093	 * is not decremented automatically so we do that manually.
1094	 */
1095	_NG_HOOK_NODE(hook) = &ng_deadnode;
1096	NG_NODE_UNREF(node);	/* We no longer point to it so adjust count */
1097	NG_HOOK_UNREF(hook);	/* Account for linkage (in list) to node */
1098}
1099
1100/*
1101 * Take two hooks on a node and merge the connection so that the given node
1102 * is effectively bypassed.
1103 */
1104int
1105ng_bypass(hook_p hook1, hook_p hook2)
1106{
1107	if (hook1->hk_node != hook2->hk_node) {
1108		TRAP_ERROR();
1109		return (EINVAL);
1110	}
1111	hook1->hk_peer->hk_peer = hook2->hk_peer;
1112	hook2->hk_peer->hk_peer = hook1->hk_peer;
1113
1114	hook1->hk_peer = &ng_deadhook;
1115	hook2->hk_peer = &ng_deadhook;
1116
1117	/* XXX If we ever cache methods on hooks update them as well */
1118	ng_destroy_hook(hook1);
1119	ng_destroy_hook(hook2);
1120	return (0);
1121}
1122
1123/*
1124 * Install a new netgraph type
1125 */
1126int
1127ng_newtype(struct ng_type *tp)
1128{
1129	const size_t namelen = strlen(tp->name);
1130
1131	/* Check version and type name fields */
1132	if ((tp->version != NG_ABI_VERSION)
1133	|| (namelen == 0)
1134	|| (namelen >= NG_TYPESIZ)) {
1135		TRAP_ERROR();
1136		if (tp->version != NG_ABI_VERSION) {
1137			printf("Netgraph: Node type rejected. ABI mismatch. Suggest recompile\n");
1138		}
1139		return (EINVAL);
1140	}
1141
1142	/* Check for name collision */
1143	if (ng_findtype(tp->name) != NULL) {
1144		TRAP_ERROR();
1145		return (EEXIST);
1146	}
1147
1148
1149	/* Link in new type */
1150	mtx_lock(&ng_typelist_mtx);
1151	LIST_INSERT_HEAD(&ng_typelist, tp, types);
1152	tp->refs = 1;	/* first ref is linked list */
1153	mtx_unlock(&ng_typelist_mtx);
1154	return (0);
1155}
1156
1157/*
1158 * unlink a netgraph type
1159 * If no examples exist
1160 */
1161int
1162ng_rmtype(struct ng_type *tp)
1163{
1164	/* Check for name collision */
1165	if (tp->refs != 1) {
1166		TRAP_ERROR();
1167		return (EBUSY);
1168	}
1169
1170	/* Unlink type */
1171	mtx_lock(&ng_typelist_mtx);
1172	LIST_REMOVE(tp, types);
1173	mtx_unlock(&ng_typelist_mtx);
1174	return (0);
1175}
1176
1177/*
1178 * Look for a type of the name given
1179 */
1180struct ng_type *
1181ng_findtype(const char *typename)
1182{
1183	struct ng_type *type;
1184
1185	mtx_lock(&ng_typelist_mtx);
1186	LIST_FOREACH(type, &ng_typelist, types) {
1187		if (strcmp(type->name, typename) == 0)
1188			break;
1189	}
1190	mtx_unlock(&ng_typelist_mtx);
1191	return (type);
1192}
1193
1194/************************************************************************
1195			Composite routines
1196************************************************************************/
1197/*
1198 * Connect two nodes using the specified hooks, using queued functions.
1199 */
1200static void
1201ng_con_part3(node_p node, hook_p hook, void *arg1, int arg2)
1202{
1203
1204	/*
1205	 * When we run, we know that the node 'node' is locked for us.
1206	 * Our caller has a reference on the hook.
1207	 * Our caller has a reference on the node.
1208	 * (In this case our caller is ng_apply_item() ).
1209	 * The peer hook has a reference on the hook.
1210	 * We are all set up except for the final call to the node, and
1211	 * the clearing of the INVALID flag.
1212	 */
1213	if (NG_HOOK_NODE(hook) == &ng_deadnode) {
1214		/*
1215		 * The node must have been freed again since we last visited
1216		 * here. ng_destry_hook() has this effect but nothing else does.
1217		 * We should just release our references and
1218		 * free anything we can think of.
1219		 * Since we know it's been destroyed, and it's our caller
1220		 * that holds the references, just return.
1221		 */
1222		return ;
1223	}
1224	if (hook->hk_node->nd_type->connect) {
1225		if ((*hook->hk_node->nd_type->connect) (hook)) {
1226			ng_destroy_hook(hook);	/* also zaps peer */
1227			printf("failed in ng_con_part3()\n");
1228			return ;
1229		}
1230	}
1231	/*
1232	 *  XXX this is wrong for SMP. Possibly we need
1233	 * to separate out 'create' and 'invalid' flags.
1234	 * should only set flags on hooks we have locked under our node.
1235	 */
1236	hook->hk_flags &= ~HK_INVALID;
1237	return ;
1238}
1239
1240static void
1241ng_con_part2(node_p node, hook_p hook, void *arg1, int arg2)
1242{
1243
1244	/*
1245	 * When we run, we know that the node 'node' is locked for us.
1246	 * Our caller has a reference on the hook.
1247	 * Our caller has a reference on the node.
1248	 * (In this case our caller is ng_apply_item() ).
1249	 * The peer hook has a reference on the hook.
1250	 * our node pointer points to the 'dead' node.
1251	 * First check the hook name is unique.
1252	 * Should not happen because we checked before queueing this.
1253	 */
1254	if (ng_findhook(node, NG_HOOK_NAME(hook)) != NULL) {
1255		TRAP_ERROR();
1256		ng_destroy_hook(hook); /* should destroy peer too */
1257		printf("failed in ng_con_part2()\n");
1258		return ;
1259	}
1260	/*
1261	 * Check if the node type code has something to say about it
1262	 * If it fails, the unref of the hook will also unref the attached node,
1263	 * however since that node is 'ng_deadnode' this will do nothing.
1264	 * The peer hook will also be destroyed.
1265	 */
1266	if (node->nd_type->newhook != NULL) {
1267		if ((*node->nd_type->newhook)(node, hook, hook->hk_name)) {
1268			ng_destroy_hook(hook); /* should destroy peer too */
1269			printf("failed in ng_con_part2()\n");
1270			return ;
1271		}
1272	}
1273
1274	/*
1275	 * The 'type' agrees so far, so go ahead and link it in.
1276	 * We'll ask again later when we actually connect the hooks.
1277	 */
1278	hook->hk_node = node;		/* just overwrite ng_deadnode */
1279	NG_NODE_REF(node);		/* each hook counts as a reference */
1280	LIST_INSERT_HEAD(&node->nd_hooks, hook, hk_hooks);
1281	node->nd_numhooks++;
1282	NG_HOOK_REF(hook);	/* one for the node */
1283
1284	/*
1285	 * We now have a symetrical situation, where both hooks have been
1286	 * linked to their nodes, the newhook methods have been called
1287	 * And the references are all correct. The hooks are still marked
1288	 * as invalid, as we have not called the 'connect' methods
1289	 * yet.
1290	 * We can call the local one immediatly as we have the
1291	 * node locked, but we need to queue the remote one.
1292	 */
1293	if (hook->hk_node->nd_type->connect) {
1294		if ((*hook->hk_node->nd_type->connect) (hook)) {
1295			ng_destroy_hook(hook);	/* also zaps peer */
1296			printf("failed in ng_con_part2(A)\n");
1297			return ;
1298		}
1299	}
1300	if (ng_send_fn(hook->hk_peer->hk_node, hook->hk_peer,
1301			&ng_con_part3, arg1, arg2)) {
1302		printf("failed in ng_con_part2(B)");
1303		ng_destroy_hook(hook);	/* also zaps peer */
1304		return ;
1305	}
1306	hook->hk_flags &= ~HK_INVALID; /* need both to be able to work */
1307	return ;
1308}
1309
1310/*
1311 * Connect this node with another node. We assume that this node is
1312 * currently locked, as we are only called from an NGM_CONNECT message.
1313 */
1314static int
1315ng_con_nodes(node_p node, const char *name, node_p node2, const char *name2)
1316{
1317	int     error;
1318	hook_p  hook;
1319	hook_p  hook2;
1320
1321	if (ng_findhook(node2, name2) != NULL) {
1322		return(EEXIST);
1323	}
1324	if ((error = ng_add_hook(node, name, &hook)))  /* gives us a ref */
1325		return (error);
1326	/* Allocate the other hook and link it up */
1327	NG_ALLOC_HOOK(hook2);
1328	if (hook2 == NULL) {
1329		TRAP_ERROR();
1330		ng_destroy_hook(hook);	/* XXX check ref counts so far */
1331		NG_HOOK_UNREF(hook);	/* including our ref */
1332		return (ENOMEM);
1333	}
1334	hook2->hk_refs = 1;		/* start with a reference for us. */
1335	hook2->hk_flags = HK_INVALID;
1336	hook2->hk_peer = hook;		/* Link the two together */
1337	hook->hk_peer = hook2;
1338	NG_HOOK_REF(hook);		/* Add a ref for the peer to each*/
1339	NG_HOOK_REF(hook2);
1340	hook2->hk_node = &ng_deadnode;
1341	strlcpy(NG_HOOK_NAME(hook2), name2, NG_HOOKSIZ);
1342
1343	/*
1344	 * Queue the function above.
1345	 * Procesing continues in that function in the lock context of
1346	 * the other node.
1347	 */
1348	ng_send_fn(node2, hook2, &ng_con_part2, NULL, 0);
1349
1350	NG_HOOK_UNREF(hook);		/* Let each hook go if it wants to */
1351	NG_HOOK_UNREF(hook2);
1352	return (0);
1353}
1354
1355/*
1356 * Make a peer and connect.
1357 * We assume that the local node is locked.
1358 * The new node probably doesn't need a lock until
1359 * it has a hook, because it cannot really have any work until then,
1360 * but we should think about it a bit more.
1361 *
1362 * The problem may come if the other node also fires up
1363 * some hardware or a timer or some other source of activation,
1364 * also it may already get a command msg via it's ID.
1365 *
1366 * We could use the same method as ng_con_nodes() but we'd have
1367 * to add ability to remove the node when failing. (Not hard, just
1368 * make arg1 point to the node to remove).
1369 * Unless of course we just ignore failure to connect and leave
1370 * an unconnected node?
1371 */
1372static int
1373ng_mkpeer(node_p node, const char *name, const char *name2, char *type)
1374{
1375	node_p  node2;
1376	hook_p  hook1;
1377	hook_p  hook2;
1378	int     error;
1379
1380	if ((error = ng_make_node(type, &node2))) {
1381		return (error);
1382	}
1383
1384	if ((error = ng_add_hook(node, name, &hook1))) { /* gives us a ref */
1385		ng_rmnode(node2, NULL, NULL, 0);
1386		return (error);
1387	}
1388
1389	if ((error = ng_add_hook(node2, name2, &hook2))) {
1390		ng_rmnode(node2, NULL, NULL, 0);
1391		ng_destroy_hook(hook1);
1392		NG_HOOK_UNREF(hook1);
1393		return (error);
1394	}
1395
1396	/*
1397	 * Actually link the two hooks together.
1398	 */
1399	hook1->hk_peer = hook2;
1400	hook2->hk_peer = hook1;
1401
1402	/* Each hook is referenced by the other */
1403	NG_HOOK_REF(hook1);
1404	NG_HOOK_REF(hook2);
1405
1406	/* Give each node the opportunity to veto the pending connection */
1407	if (hook1->hk_node->nd_type->connect) {
1408		error = (*hook1->hk_node->nd_type->connect) (hook1);
1409	}
1410
1411	if ((error == 0) && hook2->hk_node->nd_type->connect) {
1412		error = (*hook2->hk_node->nd_type->connect) (hook2);
1413
1414	}
1415
1416	/*
1417	 * drop the references we were holding on the two hooks.
1418	 */
1419	if (error) {
1420		ng_destroy_hook(hook2);	/* also zaps hook1 */
1421		ng_rmnode(node2, NULL, NULL, 0);
1422	} else {
1423		/* As a last act, allow the hooks to be used */
1424		hook1->hk_flags &= ~HK_INVALID;
1425		hook2->hk_flags &= ~HK_INVALID;
1426	}
1427	NG_HOOK_UNREF(hook1);
1428	NG_HOOK_UNREF(hook2);
1429	return (error);
1430}
1431
1432/************************************************************************
1433		Utility routines to send self messages
1434************************************************************************/
1435
1436/* Shut this node down as soon as everyone is clear of it */
1437/* Should add arg "immediatly" to jump the queue */
1438int
1439ng_rmnode_self(node_p node)
1440{
1441	int		error;
1442
1443	if (node == &ng_deadnode)
1444		return (0);
1445	node->nd_flags |= NGF_INVALID;
1446	if (node->nd_flags & NGF_CLOSING)
1447		return (0);
1448
1449	error = ng_send_fn(node, NULL, &ng_rmnode, NULL, 0);
1450	return (error);
1451}
1452
1453static void
1454ng_rmhook_part2(node_p node, hook_p hook, void *arg1, int arg2)
1455{
1456	ng_destroy_hook(hook);
1457	return ;
1458}
1459
1460int
1461ng_rmhook_self(hook_p hook)
1462{
1463	int		error;
1464	node_p node = NG_HOOK_NODE(hook);
1465
1466	if (node == &ng_deadnode)
1467		return (0);
1468
1469	error = ng_send_fn(node, hook, &ng_rmhook_part2, NULL, 0);
1470	return (error);
1471}
1472
1473/***********************************************************************
1474 * Parse and verify a string of the form:  <NODE:><PATH>
1475 *
1476 * Such a string can refer to a specific node or a specific hook
1477 * on a specific node, depending on how you look at it. In the
1478 * latter case, the PATH component must not end in a dot.
1479 *
1480 * Both <NODE:> and <PATH> are optional. The <PATH> is a string
1481 * of hook names separated by dots. This breaks out the original
1482 * string, setting *nodep to "NODE" (or NULL if none) and *pathp
1483 * to "PATH" (or NULL if degenerate). Also, *hookp will point to
1484 * the final hook component of <PATH>, if any, otherwise NULL.
1485 *
1486 * This returns -1 if the path is malformed. The char ** are optional.
1487 ***********************************************************************/
1488int
1489ng_path_parse(char *addr, char **nodep, char **pathp, char **hookp)
1490{
1491	char   *node, *path, *hook;
1492	int     k;
1493
1494	/*
1495	 * Extract absolute NODE, if any
1496	 */
1497	for (path = addr; *path && *path != ':'; path++);
1498	if (*path) {
1499		node = addr;	/* Here's the NODE */
1500		*path++ = '\0';	/* Here's the PATH */
1501
1502		/* Node name must not be empty */
1503		if (!*node)
1504			return -1;
1505
1506		/* A name of "." is OK; otherwise '.' not allowed */
1507		if (strcmp(node, ".") != 0) {
1508			for (k = 0; node[k]; k++)
1509				if (node[k] == '.')
1510					return -1;
1511		}
1512	} else {
1513		node = NULL;	/* No absolute NODE */
1514		path = addr;	/* Here's the PATH */
1515	}
1516
1517	/* Snoop for illegal characters in PATH */
1518	for (k = 0; path[k]; k++)
1519		if (path[k] == ':')
1520			return -1;
1521
1522	/* Check for no repeated dots in PATH */
1523	for (k = 0; path[k]; k++)
1524		if (path[k] == '.' && path[k + 1] == '.')
1525			return -1;
1526
1527	/* Remove extra (degenerate) dots from beginning or end of PATH */
1528	if (path[0] == '.')
1529		path++;
1530	if (*path && path[strlen(path) - 1] == '.')
1531		path[strlen(path) - 1] = 0;
1532
1533	/* If PATH has a dot, then we're not talking about a hook */
1534	if (*path) {
1535		for (hook = path, k = 0; path[k]; k++)
1536			if (path[k] == '.') {
1537				hook = NULL;
1538				break;
1539			}
1540	} else
1541		path = hook = NULL;
1542
1543	/* Done */
1544	if (nodep)
1545		*nodep = node;
1546	if (pathp)
1547		*pathp = path;
1548	if (hookp)
1549		*hookp = hook;
1550	return (0);
1551}
1552
1553/*
1554 * Given a path, which may be absolute or relative, and a starting node,
1555 * return the destination node.
1556 */
1557int
1558ng_path2noderef(node_p here, const char *address,
1559				node_p *destp, hook_p *lasthook)
1560{
1561	char    fullpath[NG_PATHSIZ];
1562	char   *nodename, *path, pbuf[2];
1563	node_p  node, oldnode;
1564	char   *cp;
1565	hook_p hook = NULL;
1566
1567	/* Initialize */
1568	if (destp == NULL) {
1569		TRAP_ERROR();
1570		return EINVAL;
1571	}
1572	*destp = NULL;
1573
1574	/* Make a writable copy of address for ng_path_parse() */
1575	strncpy(fullpath, address, sizeof(fullpath) - 1);
1576	fullpath[sizeof(fullpath) - 1] = '\0';
1577
1578	/* Parse out node and sequence of hooks */
1579	if (ng_path_parse(fullpath, &nodename, &path, NULL) < 0) {
1580		TRAP_ERROR();
1581		return EINVAL;
1582	}
1583	if (path == NULL) {
1584		pbuf[0] = '.';	/* Needs to be writable */
1585		pbuf[1] = '\0';
1586		path = pbuf;
1587	}
1588
1589	/*
1590	 * For an absolute address, jump to the starting node.
1591	 * Note that this holds a reference on the node for us.
1592	 * Don't forget to drop the reference if we don't need it.
1593	 */
1594	if (nodename) {
1595		node = ng_name2noderef(here, nodename);
1596		if (node == NULL) {
1597			TRAP_ERROR();
1598			return (ENOENT);
1599		}
1600	} else {
1601		if (here == NULL) {
1602			TRAP_ERROR();
1603			return (EINVAL);
1604		}
1605		node = here;
1606		NG_NODE_REF(node);
1607	}
1608
1609	/*
1610	 * Now follow the sequence of hooks
1611	 * XXX
1612	 * We actually cannot guarantee that the sequence
1613	 * is not being demolished as we crawl along it
1614	 * without extra-ordinary locking etc.
1615	 * So this is a bit dodgy to say the least.
1616	 * We can probably hold up some things by holding
1617	 * the nodelist mutex for the time of this
1618	 * crawl if we wanted.. At least that way we wouldn't have to
1619	 * worry about the nodes dissappearing, but the hooks would still
1620	 * be a problem.
1621	 */
1622	for (cp = path; node != NULL && *cp != '\0'; ) {
1623		char *segment;
1624
1625		/*
1626		 * Break out the next path segment. Replace the dot we just
1627		 * found with a NUL; "cp" points to the next segment (or the
1628		 * NUL at the end).
1629		 */
1630		for (segment = cp; *cp != '\0'; cp++) {
1631			if (*cp == '.') {
1632				*cp++ = '\0';
1633				break;
1634			}
1635		}
1636
1637		/* Empty segment */
1638		if (*segment == '\0')
1639			continue;
1640
1641		/* We have a segment, so look for a hook by that name */
1642		hook = ng_findhook(node, segment);
1643
1644		/* Can't get there from here... */
1645		if (hook == NULL
1646		    || NG_HOOK_PEER(hook) == NULL
1647		    || NG_HOOK_NOT_VALID(hook)
1648		    || NG_HOOK_NOT_VALID(NG_HOOK_PEER(hook))) {
1649			TRAP_ERROR();
1650			NG_NODE_UNREF(node);
1651#if 0
1652			printf("hooknotvalid %s %s %d %d %d %d ",
1653					path,
1654					segment,
1655					hook == NULL,
1656		     			NG_HOOK_PEER(hook) == NULL,
1657		     			NG_HOOK_NOT_VALID(hook),
1658		     			NG_HOOK_NOT_VALID(NG_HOOK_PEER(hook)));
1659#endif
1660			return (ENOENT);
1661		}
1662
1663		/*
1664		 * Hop on over to the next node
1665		 * XXX
1666		 * Big race conditions here as hooks and nodes go away
1667		 * *** Idea.. store an ng_ID_t in each hook and use that
1668		 * instead of the direct hook in this crawl?
1669		 */
1670		oldnode = node;
1671		if ((node = NG_PEER_NODE(hook)))
1672			NG_NODE_REF(node);	/* XXX RACE */
1673		NG_NODE_UNREF(oldnode);	/* XXX another race */
1674		if (NG_NODE_NOT_VALID(node)) {
1675			NG_NODE_UNREF(node);	/* XXX more races */
1676			node = NULL;
1677		}
1678	}
1679
1680	/* If node somehow missing, fail here (probably this is not needed) */
1681	if (node == NULL) {
1682		TRAP_ERROR();
1683		return (ENXIO);
1684	}
1685
1686	/* Done */
1687	*destp = node;
1688	if (lasthook != NULL)
1689		*lasthook = (hook ? NG_HOOK_PEER(hook) : NULL);
1690	return (0);
1691}
1692
1693/***************************************************************\
1694* Input queue handling.
1695* All activities are submitted to the node via the input queue
1696* which implements a multiple-reader/single-writer gate.
1697* Items which cannot be handled immeditly are queued.
1698*
1699* read-write queue locking inline functions			*
1700\***************************************************************/
1701
1702static __inline item_p ng_dequeue(struct ng_queue * ngq);
1703static __inline item_p ng_acquire_read(struct ng_queue * ngq,
1704					item_p  item);
1705static __inline item_p ng_acquire_write(struct ng_queue * ngq,
1706					item_p  item);
1707static __inline void	ng_leave_read(struct ng_queue * ngq);
1708static __inline void	ng_leave_write(struct ng_queue * ngq);
1709static __inline void	ng_queue_rw(struct ng_queue * ngq,
1710					item_p  item, int rw);
1711
1712/*
1713 * Definition of the bits fields in the ng_queue flag word.
1714 * Defined here rather than in netgraph.h because no-one should fiddle
1715 * with them.
1716 *
1717 * The ordering here may be important! don't shuffle these.
1718 */
1719/*-
1720 Safety Barrier--------+ (adjustable to suit taste) (not used yet)
1721                       |
1722                       V
1723+-------+-------+-------+-------+-------+-------+-------+-------+
1724| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
1725| |A|c|t|i|v|e| |R|e|a|d|e|r| |C|o|u|n|t| | | | | | | | | |R|A|W|
1726| | | | | | | | | | | | | | | | | | | | | | | | | | | | | |P|W|P|
1727+-------+-------+-------+-------+-------+-------+-------+-------+
1728\___________________________ ____________________________/ | | |
1729                            V                              | | |
1730                  [active reader count]                    | | |
1731                                                           | | |
1732          Read Pending ------------------------------------+ | |
1733                                                             | |
1734          Active Writer -------------------------------------+ |
1735                                                               |
1736          Write Pending ---------------------------------------+
1737
1738
1739*/
1740#define WRITE_PENDING	0x00000001
1741#define WRITER_ACTIVE	0x00000002
1742#define READ_PENDING	0x00000004
1743#define READER_INCREMENT 0x00000008
1744#define READER_MASK	0xfffffff8	/* Not valid if WRITER_ACTIVE is set */
1745#define SAFETY_BARRIER	0x00100000	/* 64K items queued should be enough */
1746
1747/* Defines of more elaborate states on the queue */
1748/* Mask of bits a read cares about */
1749#define NGQ_RMASK	(WRITE_PENDING|WRITER_ACTIVE|READ_PENDING)
1750
1751/* Mask of bits a write cares about */
1752#define NGQ_WMASK	(NGQ_RMASK|READER_MASK)
1753
1754/* tests to decide if we could get a read or write off the queue */
1755#define CAN_GET_READ(flag)	((flag & NGQ_RMASK) == READ_PENDING)
1756#define CAN_GET_WRITE(flag)	((flag & NGQ_WMASK) == WRITE_PENDING)
1757
1758/* Is there a chance of getting ANY work off the queue? */
1759#define CAN_GET_WORK(flag)	(CAN_GET_READ(flag) || CAN_GET_WRITE(flag))
1760
1761/*
1762 * Taking into account the current state of the queue and node, possibly take
1763 * the next entry off the queue and return it. Return NULL if there was
1764 * nothing we could return, either because there really was nothing there, or
1765 * because the node was in a state where it cannot yet process the next item
1766 * on the queue.
1767 *
1768 * This MUST MUST MUST be called with the mutex held.
1769 */
1770static __inline item_p
1771ng_dequeue(struct ng_queue *ngq)
1772{
1773	item_p item;
1774	u_int		add_arg;
1775
1776	mtx_assert(&ngq->q_mtx, MA_OWNED);
1777
1778	if (CAN_GET_READ(ngq->q_flags)) {
1779		/*
1780		 * Head of queue is a reader and we have no write active.
1781		 * We don't care how many readers are already active.
1782		 * Adjust the flags for the item we are about to dequeue.
1783		 * Add the correct increment for the reader count as well.
1784		 */
1785		add_arg = (READER_INCREMENT - READ_PENDING);
1786	} else if (CAN_GET_WRITE(ngq->q_flags)) {
1787		/*
1788		 * There is a pending write, no readers and no active writer.
1789		 * This means we can go ahead with the pending writer. Note
1790		 * the fact that we now have a writer, ready for when we take
1791		 * it off the queue.
1792		 *
1793		 * We don't need to worry about a possible collision with the
1794		 * fasttrack reader.
1795		 *
1796		 * The fasttrack thread may take a long time to discover that we
1797		 * are running so we would have an inconsistent state in the
1798		 * flags for a while. Since we ignore the reader count
1799		 * entirely when the WRITER_ACTIVE flag is set, this should
1800		 * not matter (in fact it is defined that way). If it tests
1801		 * the flag before this operation, the WRITE_PENDING flag
1802		 * will make it fail, and if it tests it later, the
1803		 * WRITER_ACTIVE flag will do the same. If it is SO slow that
1804		 * we have actually completed the operation, and neither flag
1805		 * is set (nor the READ_PENDING) by the time that it tests
1806		 * the flags, then it is actually ok for it to continue. If
1807		 * it completes and we've finished and the read pending is
1808		 * set it still fails.
1809		 *
1810		 * So we can just ignore it,  as long as we can ensure that the
1811		 * transition from WRITE_PENDING state to the WRITER_ACTIVE
1812		 * state is atomic.
1813		 *
1814		 * After failing, first it will be held back by the mutex, then
1815		 * when it can proceed, it will queue its request, then it
1816		 * would arrive at this function. Usually it will have to
1817		 * leave empty handed because the ACTIVE WRITER bit will be
1818		 * set.
1819		 *
1820		 * Adjust the flags for the item we are about to dequeue
1821		 * and for the new active writer.
1822		 */
1823		add_arg = (WRITER_ACTIVE - WRITE_PENDING);
1824		/*
1825		 * We want to write "active writer, no readers " Now go make
1826		 * it true. In fact there may be a number in the readers
1827		 * count but we know it is not true and will be fixed soon.
1828		 * We will fix the flags for the next pending entry in a
1829		 * moment.
1830		 */
1831	} else {
1832		/*
1833		 * We can't dequeue anything.. return and say so. Probably we
1834		 * have a write pending and the readers count is non zero. If
1835		 * we got here because a reader hit us just at the wrong
1836		 * moment with the fasttrack code, and put us in a strange
1837		 * state, then it will be through in just a moment, (as soon
1838		 * as we release the mutex) and keep things moving.
1839		 * Make sure we remove ourselves from the work queue.
1840		 */
1841		ng_worklist_remove(ngq->q_node);
1842		return (0);
1843	}
1844
1845	/*
1846	 * Now we dequeue the request (whatever it may be) and correct the
1847	 * pending flags and the next and last pointers.
1848	 */
1849	item = ngq->queue;
1850	ngq->queue = item->el_next;
1851	if (ngq->last == &(item->el_next)) {
1852		/*
1853		 * that was the last entry in the queue so set the 'last
1854		 * pointer up correctly and make sure the pending flags are
1855		 * clear.
1856		 */
1857		ngq->last = &(ngq->queue);
1858		/*
1859		 * Whatever flag was set will be cleared and
1860		 * the new acive field will be set by the add as well,
1861		 * so we don't need to change add_arg.
1862		 * But we know we don't need to be on the work list.
1863		 */
1864		atomic_add_long(&ngq->q_flags, add_arg);
1865		ng_worklist_remove(ngq->q_node);
1866	} else {
1867		/*
1868		 * Since there is something on the queue, note what it is
1869		 * in the flags word.
1870		 */
1871		if ((ngq->queue->el_flags & NGQF_RW) == NGQF_READER) {
1872			add_arg += READ_PENDING;
1873		} else {
1874			add_arg += WRITE_PENDING;
1875		}
1876		atomic_add_long(&ngq->q_flags, add_arg);
1877		/*
1878		 * If we see more doable work, make sure we are
1879		 * on the work queue.
1880		 */
1881		if (CAN_GET_WORK(ngq->q_flags)) {
1882			ng_setisr(ngq->q_node);
1883		}
1884	}
1885	/*
1886	 * We have successfully cleared the old pending flag, set the new one
1887	 * if it is needed, and incremented the appropriate active field.
1888	 * (all in one atomic addition.. )
1889	 */
1890	return (item);
1891}
1892
1893/*
1894 * Queue a packet to be picked up by someone else.
1895 * We really don't care who, but we can't or don't want to hang around
1896 * to process it ourselves. We are probably an interrupt routine..
1897 * 1 = writer, 0 = reader
1898 */
1899#define NGQRW_R 0
1900#define NGQRW_W 1
1901static __inline void
1902ng_queue_rw(struct ng_queue * ngq, item_p  item, int rw)
1903{
1904	mtx_assert(&ngq->q_mtx, MA_OWNED);
1905
1906	item->el_next = NULL;	/* maybe not needed */
1907	*ngq->last = item;
1908	/*
1909	 * If it was the first item in the queue then we need to
1910	 * set the last pointer and the type flags.
1911	 */
1912	if (ngq->last == &(ngq->queue)) {
1913		/*
1914		 * When called with constants for rw, the optimiser will
1915		 * remove the unneeded branch below.
1916		 */
1917		if (rw == NGQRW_W) {
1918			atomic_add_long(&ngq->q_flags, WRITE_PENDING);
1919		} else {
1920			atomic_add_long(&ngq->q_flags, READ_PENDING);
1921		}
1922	}
1923	ngq->last = &(item->el_next);
1924}
1925
1926
1927/*
1928 * This function 'cheats' in that it first tries to 'grab' the use of the
1929 * node, without going through the mutex. We can do this becasue of the
1930 * semantics of the lock. The semantics include a clause that says that the
1931 * value of the readers count is invalid if the WRITER_ACTIVE flag is set. It
1932 * also says that the WRITER_ACTIVE flag cannot be set if the readers count
1933 * is not zero. Note that this talks about what is valid to SET the
1934 * WRITER_ACTIVE flag, because from the moment it is set, the value if the
1935 * reader count is immaterial, and not valid. The two 'pending' flags have a
1936 * similar effect, in that If they are orthogonal to the two active fields in
1937 * how they are set, but if either is set, the attempted 'grab' need to be
1938 * backed out because there is earlier work, and we maintain ordering in the
1939 * queue. The result of this is that the reader request can try obtain use of
1940 * the node with only a single atomic addition, and without any of the mutex
1941 * overhead. If this fails the operation degenerates to the same as for other
1942 * cases.
1943 *
1944 */
1945static __inline item_p
1946ng_acquire_read(struct ng_queue *ngq, item_p item)
1947{
1948
1949	/* ######### Hack alert ######### */
1950	atomic_add_long(&ngq->q_flags, READER_INCREMENT);
1951	if ((ngq->q_flags & NGQ_RMASK) == 0) {
1952		/* Successfully grabbed node */
1953		return (item);
1954	}
1955	/* undo the damage if we didn't succeed */
1956	atomic_subtract_long(&ngq->q_flags, READER_INCREMENT);
1957
1958	/* ######### End Hack alert ######### */
1959	mtx_lock_spin((&ngq->q_mtx));
1960	/*
1961	 * Try again. Another processor (or interrupt for that matter) may
1962	 * have removed the last queued item that was stopping us from
1963	 * running, between the previous test, and the moment that we took
1964	 * the mutex. (Or maybe a writer completed.)
1965	 */
1966	if ((ngq->q_flags & NGQ_RMASK) == 0) {
1967		atomic_add_long(&ngq->q_flags, READER_INCREMENT);
1968		mtx_unlock_spin((&ngq->q_mtx));
1969		return (item);
1970	}
1971
1972	/*
1973	 * and queue the request for later.
1974	 */
1975	ng_queue_rw(ngq, item, NGQRW_R);
1976	if (CAN_GET_WORK(ngq->q_flags))
1977		ng_setisr(ngq->q_node);
1978	mtx_unlock_spin(&(ngq->q_mtx));
1979
1980	return (NULL);
1981}
1982
1983static __inline item_p
1984ng_acquire_write(struct ng_queue *ngq, item_p item)
1985{
1986restart:
1987	mtx_lock_spin(&(ngq->q_mtx));
1988	/*
1989	 * If there are no readers, no writer, and no pending packets, then
1990	 * we can just go ahead. In all other situations we need to queue the
1991	 * request
1992	 */
1993	if ((ngq->q_flags & NGQ_WMASK) == 0) {
1994		atomic_add_long(&ngq->q_flags, WRITER_ACTIVE);
1995		mtx_unlock_spin((&ngq->q_mtx));
1996		if (ngq->q_flags & READER_MASK) {
1997			/* Collision with fast-track reader */
1998			atomic_subtract_long(&ngq->q_flags, WRITER_ACTIVE);
1999			goto restart;
2000		}
2001		return (item);
2002	}
2003
2004	/*
2005	 * and queue the request for later.
2006	 */
2007	ng_queue_rw(ngq, item, NGQRW_W);
2008	if (CAN_GET_WORK(ngq->q_flags))
2009		ng_setisr(ngq->q_node);
2010	mtx_unlock_spin(&(ngq->q_mtx));
2011
2012	return (NULL);
2013}
2014
2015static __inline void
2016ng_leave_read(struct ng_queue *ngq)
2017{
2018	atomic_subtract_long(&ngq->q_flags, READER_INCREMENT);
2019}
2020
2021static __inline void
2022ng_leave_write(struct ng_queue *ngq)
2023{
2024	atomic_subtract_long(&ngq->q_flags, WRITER_ACTIVE);
2025}
2026
2027static void
2028ng_flush_input_queue(struct ng_queue * ngq)
2029{
2030	item_p item;
2031	u_int		add_arg;
2032	mtx_lock_spin(&ngq->q_mtx);
2033	for (;;) {
2034		/* Now take a look at what's on the queue */
2035		if (ngq->q_flags & READ_PENDING) {
2036			add_arg = -READ_PENDING;
2037		} else if (ngq->q_flags & WRITE_PENDING) {
2038			add_arg = -WRITE_PENDING;
2039		} else {
2040			break;
2041		}
2042
2043		item = ngq->queue;
2044		ngq->queue = item->el_next;
2045		if (ngq->last == &(item->el_next)) {
2046			ngq->last = &(ngq->queue);
2047		} else {
2048			if ((ngq->queue->el_flags & NGQF_RW) == NGQF_READER) {
2049				add_arg += READ_PENDING;
2050			} else {
2051				add_arg += WRITE_PENDING;
2052			}
2053		}
2054		atomic_add_long(&ngq->q_flags, add_arg);
2055
2056		mtx_unlock_spin(&ngq->q_mtx);
2057		NG_FREE_ITEM(item);
2058		mtx_lock_spin(&ngq->q_mtx);
2059	}
2060	/*
2061	 * Take us off the work queue if we are there.
2062	 * We definatly have no work to be done.
2063	 */
2064	ng_worklist_remove(ngq->q_node);
2065	mtx_unlock_spin(&ngq->q_mtx);
2066}
2067
2068/***********************************************************************
2069* Externally visible method for sending or queueing messages or data.
2070***********************************************************************/
2071
2072/*
2073 * The module code should have filled out the item correctly by this stage:
2074 * Common:
2075 *    reference to destination node.
2076 *    Reference to destination rcv hook if relevant.
2077 * Data:
2078 *    pointer to mbuf
2079 * Control_Message:
2080 *    pointer to msg.
2081 *    ID of original sender node. (return address)
2082 * Function:
2083 *    Function pointer
2084 *    void * argument
2085 *    integer argument
2086 *
2087 * The nodes have several routines and macros to help with this task:
2088 */
2089
2090int
2091ng_snd_item(item_p item, int flags)
2092{
2093	hook_p hook = NGI_HOOK(item);
2094	node_p node = NGI_NODE(item);
2095	int queue, rw;
2096	int error = 0, ierror;
2097	item_p	oitem;
2098	struct ng_queue * ngq = &node->nd_input_queue;
2099
2100#ifdef	NETGRAPH_DEBUG
2101        _ngi_check(item, __FILE__, __LINE__);
2102#endif
2103
2104	queue = (flags & NG_QUEUE) ? 1 : 0;
2105
2106	if (item == NULL) {
2107		TRAP_ERROR();
2108		return (EINVAL);	/* failed to get queue element */
2109	}
2110	if (node == NULL) {
2111		NG_FREE_ITEM(item);
2112		TRAP_ERROR();
2113		return (EINVAL);	/* No address */
2114	}
2115	switch(item->el_flags & NGQF_TYPE) {
2116	case NGQF_DATA:
2117		/*
2118		 * DATA MESSAGE
2119		 * Delivered to a node via a non-optional hook.
2120		 * Both should be present in the item even though
2121		 * the node is derivable from the hook.
2122		 * References are held on both by the item.
2123		 */
2124
2125		/* Protect nodes from sending NULL pointers
2126		 * to each other
2127		 */
2128		if (NGI_M(item) == NULL)
2129			return (EINVAL);
2130
2131		CHECK_DATA_MBUF(NGI_M(item));
2132		if (hook == NULL) {
2133			NG_FREE_ITEM(item);
2134			TRAP_ERROR();
2135			return(EINVAL);
2136		}
2137		if ((NG_HOOK_NOT_VALID(hook))
2138		|| (NG_NODE_NOT_VALID(NG_HOOK_NODE(hook)))) {
2139			NG_FREE_ITEM(item);
2140			return (ENOTCONN);
2141		}
2142		if ((hook->hk_flags & HK_QUEUE)) {
2143			queue = 1;
2144		}
2145		break;
2146	case NGQF_MESG:
2147		/*
2148		 * CONTROL MESSAGE
2149		 * Delivered to a node.
2150		 * Hook is optional.
2151		 * References are held by the item on the node and
2152		 * the hook if it is present.
2153		 */
2154		if (hook && (hook->hk_flags & HK_QUEUE)) {
2155			queue = 1;
2156		}
2157		break;
2158	case NGQF_FN:
2159		break;
2160	default:
2161		NG_FREE_ITEM(item);
2162		TRAP_ERROR();
2163		return (EINVAL);
2164	}
2165	switch(item->el_flags & NGQF_RW) {
2166	case NGQF_READER:
2167		rw = NGQRW_R;
2168		break;
2169	case NGQF_WRITER:
2170		rw = NGQRW_W;
2171		break;
2172	default:
2173		panic("%s: invalid item flags %lx", __func__, item->el_flags);
2174	}
2175
2176	/*
2177	 * If the node specifies single threading, force writer semantics.
2178	 * Similarly, the node may say one hook always produces writers.
2179	 * These are overrides. Modify the item itself, so that if it
2180	 * is queued now, it would be dequeued later with corrected
2181	 * read/write flags.
2182	 */
2183	if ((node->nd_flags & NGF_FORCE_WRITER)
2184	    || (hook && (hook->hk_flags & HK_FORCE_WRITER))) {
2185			rw = NGQRW_W;
2186			item->el_flags &= ~NGQF_READER;
2187	}
2188
2189	if (queue) {
2190		/* Put it on the queue for that node*/
2191#ifdef	NETGRAPH_DEBUG
2192        _ngi_check(item, __FILE__, __LINE__);
2193#endif
2194		mtx_lock_spin(&(ngq->q_mtx));
2195		ng_queue_rw(ngq, item, rw);
2196		/*
2197		 * If there are active elements then we can rely on
2198		 * them. if not we should not rely on another packet
2199		 * coming here by another path,
2200		 * so it is best to put us in the netisr list.
2201		 * We can take the worklist lock with the node locked
2202		 * BUT NOT THE REVERSE!
2203		 */
2204		if (CAN_GET_WORK(ngq->q_flags)) {
2205			ng_setisr(node);
2206		}
2207		mtx_unlock_spin(&(ngq->q_mtx));
2208
2209		if (flags & NG_PROGRESS)
2210			return (EINPROGRESS);
2211		else
2212			return (0);
2213	}
2214	/*
2215	 * Take a queue item and a node and see if we can apply the item to
2216	 * the node. We may end up getting a different item to apply instead.
2217	 * Will allow for a piggyback reply only in the case where
2218	 * there is no queueing.
2219	 */
2220
2221	oitem = item;
2222	/*
2223	 * We already decided how we will be queueud or treated.
2224	 * Try get the appropriate operating permission.
2225	 */
2226 	if (rw == NGQRW_R) {
2227		item = ng_acquire_read(ngq, item);
2228	} else {
2229		item = ng_acquire_write(ngq, item);
2230	}
2231
2232	/*
2233	 * May have come back with a different item.
2234	 * or maybe none at all. The one we started with will
2235	 * have been queued in thises cases.
2236	 */
2237	if (item == NULL) {
2238		if (flags & NG_PROGRESS)
2239			return (EINPROGRESS);
2240		else
2241			return (0);
2242	}
2243
2244#ifdef	NETGRAPH_DEBUG
2245        _ngi_check(item, __FILE__, __LINE__);
2246#endif
2247	/*
2248	 * Take over the reference frm the item.
2249	 * Hold it until the called function returns.
2250	 */
2251	NGI_GET_NODE(item, node); /* zaps stored node */
2252
2253	ierror = ng_apply_item(node, item); /* drops r/w lock when done */
2254
2255	/* only return an error if it was our initial item.. (compat hack) */
2256	if (oitem == item) {
2257		error = ierror;
2258	}
2259
2260	/*
2261	 * If the node goes away when we remove the reference,
2262	 * whatever we just did caused it.. whatever we do, DO NOT
2263	 * access the node again!
2264	 */
2265	if (NG_NODE_UNREF(node) == 0) {
2266		return (error);
2267	}
2268
2269	mtx_lock_spin(&(ngq->q_mtx));
2270	if (CAN_GET_WORK(ngq->q_flags))
2271		ng_setisr(ngq->q_node);
2272	mtx_unlock_spin(&(ngq->q_mtx));
2273
2274	return (error);
2275}
2276
2277/*
2278 * We have an item that was possibly queued somewhere.
2279 * It should contain all the information needed
2280 * to run it on the appropriate node/hook.
2281 */
2282static int
2283ng_apply_item(node_p node, item_p item)
2284{
2285	hook_p  hook;
2286	int	was_reader = ((item->el_flags & NGQF_RW));
2287	int	error = 0;
2288	ng_rcvdata_t *rcvdata;
2289	ng_rcvmsg_t *rcvmsg;
2290	ng_apply_t *apply = NULL;
2291	void	*context = NULL;
2292
2293	NGI_GET_HOOK(item, hook); /* clears stored hook */
2294#ifdef	NETGRAPH_DEBUG
2295        _ngi_check(item, __FILE__, __LINE__);
2296#endif
2297
2298	/*
2299	 * If item has apply callback, store it. Clear callback
2300	 * immediately, two avoid another call in case if
2301	 * item would be reused by destination node.
2302	 */
2303	if (item->apply != NULL) {
2304		apply = item->apply;
2305		context = item->context;
2306		item->apply = NULL;
2307	}
2308
2309	switch (item->el_flags & NGQF_TYPE) {
2310	case NGQF_DATA:
2311		/*
2312		 * Check things are still ok as when we were queued.
2313		 */
2314		if ((hook == NULL)
2315		|| NG_HOOK_NOT_VALID(hook)
2316		|| NG_NODE_NOT_VALID(node) ) {
2317			error = EIO;
2318			NG_FREE_ITEM(item);
2319			break;
2320		}
2321		/*
2322		 * If no receive method, just silently drop it.
2323		 * Give preference to the hook over-ride method
2324		 */
2325		if ((!(rcvdata = hook->hk_rcvdata))
2326		&& (!(rcvdata = NG_HOOK_NODE(hook)->nd_type->rcvdata))) {
2327			error = 0;
2328			NG_FREE_ITEM(item);
2329			break;
2330		}
2331		error = (*rcvdata)(hook, item);
2332		break;
2333	case NGQF_MESG:
2334		if (hook) {
2335			if (NG_HOOK_NOT_VALID(hook)) {
2336				/*
2337				 * The hook has been zapped then we can't
2338				 * use it. Immediatly drop its reference.
2339				 * The message may not need it.
2340				 */
2341				NG_HOOK_UNREF(hook);
2342				hook = NULL;
2343			}
2344		}
2345		/*
2346		 * Similarly, if the node is a zombie there is
2347		 * nothing we can do with it, drop everything.
2348		 */
2349		if (NG_NODE_NOT_VALID(node)) {
2350			TRAP_ERROR();
2351			error = EINVAL;
2352			NG_FREE_ITEM(item);
2353		} else {
2354			/*
2355			 * Call the appropriate message handler for the object.
2356			 * It is up to the message handler to free the message.
2357			 * If it's a generic message, handle it generically,
2358			 * otherwise call the type's message handler
2359			 * (if it exists)
2360			 * XXX (race). Remember that a queued message may
2361			 * reference a node or hook that has just been
2362			 * invalidated. It will exist as the queue code
2363			 * is holding a reference, but..
2364			 */
2365
2366			struct ng_mesg *msg = NGI_MSG(item);
2367
2368			/*
2369			 * check if the generic handler owns it.
2370			 */
2371			if ((msg->header.typecookie == NGM_GENERIC_COOKIE)
2372			&& ((msg->header.flags & NGF_RESP) == 0)) {
2373				error = ng_generic_msg(node, item, hook);
2374				break;
2375			}
2376			/*
2377			 * Now see if there is a handler (hook or node specific)
2378			 * in the target node. If none, silently discard.
2379			 */
2380			if (((!hook) || (!(rcvmsg = hook->hk_rcvmsg)))
2381			&& (!(rcvmsg = node->nd_type->rcvmsg))) {
2382				TRAP_ERROR();
2383				error = 0;
2384				NG_FREE_ITEM(item);
2385				break;
2386			}
2387			error = (*rcvmsg)(node, item, hook);
2388		}
2389		break;
2390	case NGQF_FN:
2391		/*
2392		 *  We have to implicitly trust the hook,
2393		 * as some of these are used for system purposes
2394		 * where the hook is invalid. In the case of
2395		 * the shutdown message we allow it to hit
2396		 * even if the node is invalid.
2397		 */
2398		if ((NG_NODE_NOT_VALID(node))
2399		&& (NGI_FN(item) != &ng_rmnode)) {
2400			TRAP_ERROR();
2401			error = EINVAL;
2402			NG_FREE_ITEM(item);
2403			break;
2404		}
2405		(*NGI_FN(item))(node, hook, NGI_ARG1(item), NGI_ARG2(item));
2406		NG_FREE_ITEM(item);
2407		break;
2408
2409	}
2410	/*
2411	 * We held references on some of the resources
2412	 * that we took from the item. Now that we have
2413	 * finished doing everything, drop those references.
2414	 */
2415	if (hook) {
2416		NG_HOOK_UNREF(hook);
2417	}
2418
2419	if (was_reader) {
2420		ng_leave_read(&node->nd_input_queue);
2421	} else {
2422		ng_leave_write(&node->nd_input_queue);
2423	}
2424
2425	/* Apply callback. */
2426	if (apply != NULL)
2427		(*apply)(context, error);
2428
2429	return (error);
2430}
2431
2432/***********************************************************************
2433 * Implement the 'generic' control messages
2434 ***********************************************************************/
2435static int
2436ng_generic_msg(node_p here, item_p item, hook_p lasthook)
2437{
2438	int error = 0;
2439	struct ng_mesg *msg;
2440	struct ng_mesg *resp = NULL;
2441
2442	NGI_GET_MSG(item, msg);
2443	if (msg->header.typecookie != NGM_GENERIC_COOKIE) {
2444		TRAP_ERROR();
2445		error = EINVAL;
2446		goto out;
2447	}
2448	switch (msg->header.cmd) {
2449	case NGM_SHUTDOWN:
2450		ng_rmnode(here, NULL, NULL, 0);
2451		break;
2452	case NGM_MKPEER:
2453	    {
2454		struct ngm_mkpeer *const mkp = (struct ngm_mkpeer *) msg->data;
2455
2456		if (msg->header.arglen != sizeof(*mkp)) {
2457			TRAP_ERROR();
2458			error = EINVAL;
2459			break;
2460		}
2461		mkp->type[sizeof(mkp->type) - 1] = '\0';
2462		mkp->ourhook[sizeof(mkp->ourhook) - 1] = '\0';
2463		mkp->peerhook[sizeof(mkp->peerhook) - 1] = '\0';
2464		error = ng_mkpeer(here, mkp->ourhook, mkp->peerhook, mkp->type);
2465		break;
2466	    }
2467	case NGM_CONNECT:
2468	    {
2469		struct ngm_connect *const con =
2470			(struct ngm_connect *) msg->data;
2471		node_p node2;
2472
2473		if (msg->header.arglen != sizeof(*con)) {
2474			TRAP_ERROR();
2475			error = EINVAL;
2476			break;
2477		}
2478		con->path[sizeof(con->path) - 1] = '\0';
2479		con->ourhook[sizeof(con->ourhook) - 1] = '\0';
2480		con->peerhook[sizeof(con->peerhook) - 1] = '\0';
2481		/* Don't forget we get a reference.. */
2482		error = ng_path2noderef(here, con->path, &node2, NULL);
2483		if (error)
2484			break;
2485		error = ng_con_nodes(here, con->ourhook, node2, con->peerhook);
2486		NG_NODE_UNREF(node2);
2487		break;
2488	    }
2489	case NGM_NAME:
2490	    {
2491		struct ngm_name *const nam = (struct ngm_name *) msg->data;
2492
2493		if (msg->header.arglen != sizeof(*nam)) {
2494			TRAP_ERROR();
2495			error = EINVAL;
2496			break;
2497		}
2498		nam->name[sizeof(nam->name) - 1] = '\0';
2499		error = ng_name_node(here, nam->name);
2500		break;
2501	    }
2502	case NGM_RMHOOK:
2503	    {
2504		struct ngm_rmhook *const rmh = (struct ngm_rmhook *) msg->data;
2505		hook_p hook;
2506
2507		if (msg->header.arglen != sizeof(*rmh)) {
2508			TRAP_ERROR();
2509			error = EINVAL;
2510			break;
2511		}
2512		rmh->ourhook[sizeof(rmh->ourhook) - 1] = '\0';
2513		if ((hook = ng_findhook(here, rmh->ourhook)) != NULL)
2514			ng_destroy_hook(hook);
2515		break;
2516	    }
2517	case NGM_NODEINFO:
2518	    {
2519		struct nodeinfo *ni;
2520
2521		NG_MKRESPONSE(resp, msg, sizeof(*ni), M_NOWAIT);
2522		if (resp == NULL) {
2523			error = ENOMEM;
2524			break;
2525		}
2526
2527		/* Fill in node info */
2528		ni = (struct nodeinfo *) resp->data;
2529		if (NG_NODE_HAS_NAME(here))
2530			strcpy(ni->name, NG_NODE_NAME(here));
2531		strcpy(ni->type, here->nd_type->name);
2532		ni->id = ng_node2ID(here);
2533		ni->hooks = here->nd_numhooks;
2534		break;
2535	    }
2536	case NGM_LISTHOOKS:
2537	    {
2538		const int nhooks = here->nd_numhooks;
2539		struct hooklist *hl;
2540		struct nodeinfo *ni;
2541		hook_p hook;
2542
2543		/* Get response struct */
2544		NG_MKRESPONSE(resp, msg, sizeof(*hl)
2545		    + (nhooks * sizeof(struct linkinfo)), M_NOWAIT);
2546		if (resp == NULL) {
2547			error = ENOMEM;
2548			break;
2549		}
2550		hl = (struct hooklist *) resp->data;
2551		ni = &hl->nodeinfo;
2552
2553		/* Fill in node info */
2554		if (NG_NODE_HAS_NAME(here))
2555			strcpy(ni->name, NG_NODE_NAME(here));
2556		strcpy(ni->type, here->nd_type->name);
2557		ni->id = ng_node2ID(here);
2558
2559		/* Cycle through the linked list of hooks */
2560		ni->hooks = 0;
2561		LIST_FOREACH(hook, &here->nd_hooks, hk_hooks) {
2562			struct linkinfo *const link = &hl->link[ni->hooks];
2563
2564			if (ni->hooks >= nhooks) {
2565				log(LOG_ERR, "%s: number of %s changed\n",
2566				    __func__, "hooks");
2567				break;
2568			}
2569			if (NG_HOOK_NOT_VALID(hook))
2570				continue;
2571			strcpy(link->ourhook, NG_HOOK_NAME(hook));
2572			strcpy(link->peerhook, NG_PEER_HOOK_NAME(hook));
2573			if (NG_PEER_NODE_NAME(hook)[0] != '\0')
2574				strcpy(link->nodeinfo.name,
2575				    NG_PEER_NODE_NAME(hook));
2576			strcpy(link->nodeinfo.type,
2577			   NG_PEER_NODE(hook)->nd_type->name);
2578			link->nodeinfo.id = ng_node2ID(NG_PEER_NODE(hook));
2579			link->nodeinfo.hooks = NG_PEER_NODE(hook)->nd_numhooks;
2580			ni->hooks++;
2581		}
2582		break;
2583	    }
2584
2585	case NGM_LISTNAMES:
2586	case NGM_LISTNODES:
2587	    {
2588		const int unnamed = (msg->header.cmd == NGM_LISTNODES);
2589		struct namelist *nl;
2590		node_p node;
2591		int num = 0;
2592
2593		mtx_lock(&ng_nodelist_mtx);
2594		/* Count number of nodes */
2595		LIST_FOREACH(node, &ng_nodelist, nd_nodes) {
2596			if (NG_NODE_IS_VALID(node)
2597			&& (unnamed || NG_NODE_HAS_NAME(node))) {
2598				num++;
2599			}
2600		}
2601		mtx_unlock(&ng_nodelist_mtx);
2602
2603		/* Get response struct */
2604		NG_MKRESPONSE(resp, msg, sizeof(*nl)
2605		    + (num * sizeof(struct nodeinfo)), M_NOWAIT);
2606		if (resp == NULL) {
2607			error = ENOMEM;
2608			break;
2609		}
2610		nl = (struct namelist *) resp->data;
2611
2612		/* Cycle through the linked list of nodes */
2613		nl->numnames = 0;
2614		mtx_lock(&ng_nodelist_mtx);
2615		LIST_FOREACH(node, &ng_nodelist, nd_nodes) {
2616			struct nodeinfo *const np = &nl->nodeinfo[nl->numnames];
2617
2618			if (nl->numnames >= num) {
2619				log(LOG_ERR, "%s: number of %s changed\n",
2620				    __func__, "nodes");
2621				break;
2622			}
2623			if (NG_NODE_NOT_VALID(node))
2624				continue;
2625			if (!unnamed && (! NG_NODE_HAS_NAME(node)))
2626				continue;
2627			if (NG_NODE_HAS_NAME(node))
2628				strcpy(np->name, NG_NODE_NAME(node));
2629			strcpy(np->type, node->nd_type->name);
2630			np->id = ng_node2ID(node);
2631			np->hooks = node->nd_numhooks;
2632			nl->numnames++;
2633		}
2634		mtx_unlock(&ng_nodelist_mtx);
2635		break;
2636	    }
2637
2638	case NGM_LISTTYPES:
2639	    {
2640		struct typelist *tl;
2641		struct ng_type *type;
2642		int num = 0;
2643
2644		mtx_lock(&ng_typelist_mtx);
2645		/* Count number of types */
2646		LIST_FOREACH(type, &ng_typelist, types) {
2647			num++;
2648		}
2649		mtx_unlock(&ng_typelist_mtx);
2650
2651		/* Get response struct */
2652		NG_MKRESPONSE(resp, msg, sizeof(*tl)
2653		    + (num * sizeof(struct typeinfo)), M_NOWAIT);
2654		if (resp == NULL) {
2655			error = ENOMEM;
2656			break;
2657		}
2658		tl = (struct typelist *) resp->data;
2659
2660		/* Cycle through the linked list of types */
2661		tl->numtypes = 0;
2662		mtx_lock(&ng_typelist_mtx);
2663		LIST_FOREACH(type, &ng_typelist, types) {
2664			struct typeinfo *const tp = &tl->typeinfo[tl->numtypes];
2665
2666			if (tl->numtypes >= num) {
2667				log(LOG_ERR, "%s: number of %s changed\n",
2668				    __func__, "types");
2669				break;
2670			}
2671			strcpy(tp->type_name, type->name);
2672			tp->numnodes = type->refs - 1; /* don't count list */
2673			tl->numtypes++;
2674		}
2675		mtx_unlock(&ng_typelist_mtx);
2676		break;
2677	    }
2678
2679	case NGM_BINARY2ASCII:
2680	    {
2681		int bufSize = 20 * 1024;	/* XXX hard coded constant */
2682		const struct ng_parse_type *argstype;
2683		const struct ng_cmdlist *c;
2684		struct ng_mesg *binary, *ascii;
2685
2686		/* Data area must contain a valid netgraph message */
2687		binary = (struct ng_mesg *)msg->data;
2688		if (msg->header.arglen < sizeof(struct ng_mesg)
2689		    || (msg->header.arglen - sizeof(struct ng_mesg)
2690		      < binary->header.arglen)) {
2691			TRAP_ERROR();
2692			error = EINVAL;
2693			break;
2694		}
2695
2696		/* Get a response message with lots of room */
2697		NG_MKRESPONSE(resp, msg, sizeof(*ascii) + bufSize, M_NOWAIT);
2698		if (resp == NULL) {
2699			error = ENOMEM;
2700			break;
2701		}
2702		ascii = (struct ng_mesg *)resp->data;
2703
2704		/* Copy binary message header to response message payload */
2705		bcopy(binary, ascii, sizeof(*binary));
2706
2707		/* Find command by matching typecookie and command number */
2708		for (c = here->nd_type->cmdlist;
2709		    c != NULL && c->name != NULL; c++) {
2710			if (binary->header.typecookie == c->cookie
2711			    && binary->header.cmd == c->cmd)
2712				break;
2713		}
2714		if (c == NULL || c->name == NULL) {
2715			for (c = ng_generic_cmds; c->name != NULL; c++) {
2716				if (binary->header.typecookie == c->cookie
2717				    && binary->header.cmd == c->cmd)
2718					break;
2719			}
2720			if (c->name == NULL) {
2721				NG_FREE_MSG(resp);
2722				error = ENOSYS;
2723				break;
2724			}
2725		}
2726
2727		/* Convert command name to ASCII */
2728		snprintf(ascii->header.cmdstr, sizeof(ascii->header.cmdstr),
2729		    "%s", c->name);
2730
2731		/* Convert command arguments to ASCII */
2732		argstype = (binary->header.flags & NGF_RESP) ?
2733		    c->respType : c->mesgType;
2734		if (argstype == NULL) {
2735			*ascii->data = '\0';
2736		} else {
2737			if ((error = ng_unparse(argstype,
2738			    (u_char *)binary->data,
2739			    ascii->data, bufSize)) != 0) {
2740				NG_FREE_MSG(resp);
2741				break;
2742			}
2743		}
2744
2745		/* Return the result as struct ng_mesg plus ASCII string */
2746		bufSize = strlen(ascii->data) + 1;
2747		ascii->header.arglen = bufSize;
2748		resp->header.arglen = sizeof(*ascii) + bufSize;
2749		break;
2750	    }
2751
2752	case NGM_ASCII2BINARY:
2753	    {
2754		int bufSize = 2000;	/* XXX hard coded constant */
2755		const struct ng_cmdlist *c;
2756		const struct ng_parse_type *argstype;
2757		struct ng_mesg *ascii, *binary;
2758		int off = 0;
2759
2760		/* Data area must contain at least a struct ng_mesg + '\0' */
2761		ascii = (struct ng_mesg *)msg->data;
2762		if ((msg->header.arglen < sizeof(*ascii) + 1)
2763		    || (ascii->header.arglen < 1)
2764		    || (msg->header.arglen
2765		      < sizeof(*ascii) + ascii->header.arglen)) {
2766			TRAP_ERROR();
2767			error = EINVAL;
2768			break;
2769		}
2770		ascii->data[ascii->header.arglen - 1] = '\0';
2771
2772		/* Get a response message with lots of room */
2773		NG_MKRESPONSE(resp, msg, sizeof(*binary) + bufSize, M_NOWAIT);
2774		if (resp == NULL) {
2775			error = ENOMEM;
2776			break;
2777		}
2778		binary = (struct ng_mesg *)resp->data;
2779
2780		/* Copy ASCII message header to response message payload */
2781		bcopy(ascii, binary, sizeof(*ascii));
2782
2783		/* Find command by matching ASCII command string */
2784		for (c = here->nd_type->cmdlist;
2785		    c != NULL && c->name != NULL; c++) {
2786			if (strcmp(ascii->header.cmdstr, c->name) == 0)
2787				break;
2788		}
2789		if (c == NULL || c->name == NULL) {
2790			for (c = ng_generic_cmds; c->name != NULL; c++) {
2791				if (strcmp(ascii->header.cmdstr, c->name) == 0)
2792					break;
2793			}
2794			if (c->name == NULL) {
2795				NG_FREE_MSG(resp);
2796				error = ENOSYS;
2797				break;
2798			}
2799		}
2800
2801		/* Convert command name to binary */
2802		binary->header.cmd = c->cmd;
2803		binary->header.typecookie = c->cookie;
2804
2805		/* Convert command arguments to binary */
2806		argstype = (binary->header.flags & NGF_RESP) ?
2807		    c->respType : c->mesgType;
2808		if (argstype == NULL) {
2809			bufSize = 0;
2810		} else {
2811			if ((error = ng_parse(argstype, ascii->data,
2812			    &off, (u_char *)binary->data, &bufSize)) != 0) {
2813				NG_FREE_MSG(resp);
2814				break;
2815			}
2816		}
2817
2818		/* Return the result */
2819		binary->header.arglen = bufSize;
2820		resp->header.arglen = sizeof(*binary) + bufSize;
2821		break;
2822	    }
2823
2824	case NGM_TEXT_CONFIG:
2825	case NGM_TEXT_STATUS:
2826		/*
2827		 * This one is tricky as it passes the command down to the
2828		 * actual node, even though it is a generic type command.
2829		 * This means we must assume that the item/msg is already freed
2830		 * when control passes back to us.
2831		 */
2832		if (here->nd_type->rcvmsg != NULL) {
2833			NGI_MSG(item) = msg; /* put it back as we found it */
2834			return((*here->nd_type->rcvmsg)(here, item, lasthook));
2835		}
2836		/* Fall through if rcvmsg not supported */
2837	default:
2838		TRAP_ERROR();
2839		error = EINVAL;
2840	}
2841	/*
2842	 * Sometimes a generic message may be statically allocated
2843	 * to avoid problems with allocating when in tight memeory situations.
2844	 * Don't free it if it is so.
2845	 * I break them appart here, because erros may cause a free if the item
2846	 * in which case we'd be doing it twice.
2847	 * they are kept together above, to simplify freeing.
2848	 */
2849out:
2850	NG_RESPOND_MSG(error, here, item, resp);
2851	if (msg)
2852		NG_FREE_MSG(msg);
2853	return (error);
2854}
2855
2856/************************************************************************
2857			Queue element get/free routines
2858************************************************************************/
2859
2860uma_zone_t			ng_qzone;
2861static int			maxalloc = 512;	/* limit the damage of a leak */
2862
2863TUNABLE_INT("net.graph.maxalloc", &maxalloc);
2864SYSCTL_INT(_net_graph, OID_AUTO, maxalloc, CTLFLAG_RDTUN, &maxalloc,
2865    0, "Maximum number of queue items to allocate");
2866
2867#ifdef	NETGRAPH_DEBUG
2868static TAILQ_HEAD(, ng_item) ng_itemlist = TAILQ_HEAD_INITIALIZER(ng_itemlist);
2869static int			allocated;	/* number of items malloc'd */
2870#endif
2871
2872/*
2873 * Get a queue entry.
2874 * This is usually called when a packet first enters netgraph.
2875 * By definition, this is usually from an interrupt, or from a user.
2876 * Users are not so important, but try be quick for the times that it's
2877 * an interrupt.
2878 */
2879static __inline item_p
2880ng_getqblk(int flags)
2881{
2882	item_p item = NULL;
2883	int wait;
2884
2885	wait = (flags & NG_WAITOK) ? M_WAITOK : M_NOWAIT;
2886
2887	item = uma_zalloc(ng_qzone, wait | M_ZERO);
2888
2889#ifdef	NETGRAPH_DEBUG
2890	if (item) {
2891			mtx_lock(&ngq_mtx);
2892			TAILQ_INSERT_TAIL(&ng_itemlist, item, all);
2893			allocated++;
2894			mtx_unlock(&ngq_mtx);
2895	}
2896#endif
2897
2898	return (item);
2899}
2900
2901/*
2902 * Release a queue entry
2903 */
2904void
2905ng_free_item(item_p item)
2906{
2907	/*
2908	 * The item may hold resources on it's own. We need to free
2909	 * these before we can free the item. What they are depends upon
2910	 * what kind of item it is. it is important that nodes zero
2911	 * out pointers to resources that they remove from the item
2912	 * or we release them again here.
2913	 */
2914	switch (item->el_flags & NGQF_TYPE) {
2915	case NGQF_DATA:
2916		/* If we have an mbuf still attached.. */
2917		NG_FREE_M(_NGI_M(item));
2918		break;
2919	case NGQF_MESG:
2920		_NGI_RETADDR(item) = 0;
2921		NG_FREE_MSG(_NGI_MSG(item));
2922		break;
2923	case NGQF_FN:
2924		/* nothing to free really, */
2925		_NGI_FN(item) = NULL;
2926		_NGI_ARG1(item) = NULL;
2927		_NGI_ARG2(item) = 0;
2928	case NGQF_UNDEF:
2929		break;
2930	}
2931	/* If we still have a node or hook referenced... */
2932	_NGI_CLR_NODE(item);
2933	_NGI_CLR_HOOK(item);
2934
2935#ifdef	NETGRAPH_DEBUG
2936	mtx_lock(&ngq_mtx);
2937	TAILQ_REMOVE(&ng_itemlist, item, all);
2938	allocated--;
2939	mtx_unlock(&ngq_mtx);
2940#endif
2941	uma_zfree(ng_qzone, item);
2942}
2943
2944/************************************************************************
2945			Module routines
2946************************************************************************/
2947
2948/*
2949 * Handle the loading/unloading of a netgraph node type module
2950 */
2951int
2952ng_mod_event(module_t mod, int event, void *data)
2953{
2954	struct ng_type *const type = data;
2955	int s, error = 0;
2956
2957	switch (event) {
2958	case MOD_LOAD:
2959
2960		/* Register new netgraph node type */
2961		s = splnet();
2962		if ((error = ng_newtype(type)) != 0) {
2963			splx(s);
2964			break;
2965		}
2966
2967		/* Call type specific code */
2968		if (type->mod_event != NULL)
2969			if ((error = (*type->mod_event)(mod, event, data))) {
2970				mtx_lock(&ng_typelist_mtx);
2971				type->refs--;	/* undo it */
2972				LIST_REMOVE(type, types);
2973				mtx_unlock(&ng_typelist_mtx);
2974			}
2975		splx(s);
2976		break;
2977
2978	case MOD_UNLOAD:
2979		s = splnet();
2980		if (type->refs > 1) {		/* make sure no nodes exist! */
2981			error = EBUSY;
2982		} else {
2983			if (type->refs == 0) {
2984				/* failed load, nothing to undo */
2985				splx(s);
2986				break;
2987			}
2988			if (type->mod_event != NULL) {	/* check with type */
2989				error = (*type->mod_event)(mod, event, data);
2990				if (error != 0) {	/* type refuses.. */
2991					splx(s);
2992					break;
2993				}
2994			}
2995			mtx_lock(&ng_typelist_mtx);
2996			LIST_REMOVE(type, types);
2997			mtx_unlock(&ng_typelist_mtx);
2998		}
2999		splx(s);
3000		break;
3001
3002	default:
3003		if (type->mod_event != NULL)
3004			error = (*type->mod_event)(mod, event, data);
3005		else
3006			error = EOPNOTSUPP;		/* XXX ? */
3007		break;
3008	}
3009	return (error);
3010}
3011
3012/*
3013 * Handle loading and unloading for this code.
3014 * The only thing we need to link into is the NETISR strucure.
3015 */
3016static int
3017ngb_mod_event(module_t mod, int event, void *data)
3018{
3019	int error = 0;
3020
3021	switch (event) {
3022	case MOD_LOAD:
3023		/* Initialize everything. */
3024		mtx_init(&ng_worklist_mtx, "ng_worklist", NULL, MTX_SPIN);
3025		mtx_init(&ng_typelist_mtx, "netgraph types mutex", NULL,
3026		    MTX_DEF);
3027		mtx_init(&ng_nodelist_mtx, "netgraph nodelist mutex", NULL,
3028		    MTX_DEF);
3029		mtx_init(&ng_idhash_mtx, "netgraph idhash mutex", NULL,
3030		    MTX_DEF);
3031#ifdef	NETGRAPH_DEBUG
3032		mtx_init(&ngq_mtx, "netgraph item list mutex", NULL,
3033		    MTX_DEF);
3034#endif
3035		ng_qzone = uma_zcreate("NetGraph items", sizeof(struct ng_item),
3036		    NULL, NULL, NULL, NULL, UMA_ALIGN_CACHE, 0);
3037		uma_zone_set_max(ng_qzone, maxalloc);
3038		netisr_register(NETISR_NETGRAPH, (netisr_t *)ngintr, NULL,
3039		    NETISR_MPSAFE);
3040		break;
3041	case MOD_UNLOAD:
3042		/* You cant unload it because an interface may be using it.  */
3043		error = EBUSY;
3044		break;
3045	default:
3046		error = EOPNOTSUPP;
3047		break;
3048	}
3049	return (error);
3050}
3051
3052static moduledata_t netgraph_mod = {
3053	"netgraph",
3054	ngb_mod_event,
3055	(NULL)
3056};
3057DECLARE_MODULE(netgraph, netgraph_mod, SI_SUB_NETGRAPH, SI_ORDER_MIDDLE);
3058SYSCTL_NODE(_net, OID_AUTO, graph, CTLFLAG_RW, 0, "netgraph Family");
3059SYSCTL_INT(_net_graph, OID_AUTO, abi_version, CTLFLAG_RD, 0, NG_ABI_VERSION,"");
3060SYSCTL_INT(_net_graph, OID_AUTO, msg_version, CTLFLAG_RD, 0, NG_VERSION, "");
3061
3062#ifdef	NETGRAPH_DEBUG
3063void
3064dumphook (hook_p hook, char *file, int line)
3065{
3066	printf("hook: name %s, %d refs, Last touched:\n",
3067		_NG_HOOK_NAME(hook), hook->hk_refs);
3068	printf("	Last active @ %s, line %d\n",
3069		hook->lastfile, hook->lastline);
3070	if (line) {
3071		printf(" problem discovered at file %s, line %d\n", file, line);
3072	}
3073}
3074
3075void
3076dumpnode(node_p node, char *file, int line)
3077{
3078	printf("node: ID [%x]: type '%s', %d hooks, flags 0x%x, %d refs, %s:\n",
3079		_NG_NODE_ID(node), node->nd_type->name,
3080		node->nd_numhooks, node->nd_flags,
3081		node->nd_refs, node->nd_name);
3082	printf("	Last active @ %s, line %d\n",
3083		node->lastfile, node->lastline);
3084	if (line) {
3085		printf(" problem discovered at file %s, line %d\n", file, line);
3086	}
3087}
3088
3089void
3090dumpitem(item_p item, char *file, int line)
3091{
3092	printf(" ACTIVE item, last used at %s, line %d",
3093		item->lastfile, item->lastline);
3094	switch(item->el_flags & NGQF_TYPE) {
3095	case NGQF_DATA:
3096		printf(" - [data]\n");
3097		break;
3098	case NGQF_MESG:
3099		printf(" - retaddr[%d]:\n", _NGI_RETADDR(item));
3100		break;
3101	case NGQF_FN:
3102		printf(" - fn@%p (%p, %p, %p, %d (%x))\n",
3103			item->body.fn.fn_fn,
3104			_NGI_NODE(item),
3105			_NGI_HOOK(item),
3106			item->body.fn.fn_arg1,
3107			item->body.fn.fn_arg2,
3108			item->body.fn.fn_arg2);
3109		break;
3110	case NGQF_UNDEF:
3111		printf(" - UNDEFINED!\n");
3112	}
3113	if (line) {
3114		printf(" problem discovered at file %s, line %d\n", file, line);
3115		if (_NGI_NODE(item)) {
3116			printf("node %p ([%x])\n",
3117				_NGI_NODE(item), ng_node2ID(_NGI_NODE(item)));
3118		}
3119	}
3120}
3121
3122static void
3123ng_dumpitems(void)
3124{
3125	item_p item;
3126	int i = 1;
3127	TAILQ_FOREACH(item, &ng_itemlist, all) {
3128		printf("[%d] ", i++);
3129		dumpitem(item, NULL, 0);
3130	}
3131}
3132
3133static void
3134ng_dumpnodes(void)
3135{
3136	node_p node;
3137	int i = 1;
3138	mtx_lock(&ng_nodelist_mtx);
3139	SLIST_FOREACH(node, &ng_allnodes, nd_all) {
3140		printf("[%d] ", i++);
3141		dumpnode(node, NULL, 0);
3142	}
3143	mtx_unlock(&ng_nodelist_mtx);
3144}
3145
3146static void
3147ng_dumphooks(void)
3148{
3149	hook_p hook;
3150	int i = 1;
3151	mtx_lock(&ng_nodelist_mtx);
3152	SLIST_FOREACH(hook, &ng_allhooks, hk_all) {
3153		printf("[%d] ", i++);
3154		dumphook(hook, NULL, 0);
3155	}
3156	mtx_unlock(&ng_nodelist_mtx);
3157}
3158
3159static int
3160sysctl_debug_ng_dump_items(SYSCTL_HANDLER_ARGS)
3161{
3162	int error;
3163	int val;
3164	int i;
3165
3166	val = allocated;
3167	i = 1;
3168	error = sysctl_handle_int(oidp, &val, sizeof(int), req);
3169	if (error != 0 || req->newptr == NULL)
3170		return (error);
3171	if (val == 42) {
3172		ng_dumpitems();
3173		ng_dumpnodes();
3174		ng_dumphooks();
3175	}
3176	return (0);
3177}
3178
3179SYSCTL_PROC(_debug, OID_AUTO, ng_dump_items, CTLTYPE_INT | CTLFLAG_RW,
3180    0, sizeof(int), sysctl_debug_ng_dump_items, "I", "Number of allocated items");
3181#endif	/* NETGRAPH_DEBUG */
3182
3183
3184/***********************************************************************
3185* Worklist routines
3186**********************************************************************/
3187/* NETISR thread enters here */
3188/*
3189 * Pick a node off the list of nodes with work,
3190 * try get an item to process off it.
3191 * If there are no more, remove the node from the list.
3192 */
3193static void
3194ngintr(void)
3195{
3196	item_p item;
3197	node_p  node = NULL;
3198
3199	for (;;) {
3200		mtx_lock_spin(&ng_worklist_mtx);
3201		node = TAILQ_FIRST(&ng_worklist);
3202		if (!node) {
3203			mtx_unlock_spin(&ng_worklist_mtx);
3204			break;
3205		}
3206		node->nd_flags &= ~NGF_WORKQ;
3207		TAILQ_REMOVE(&ng_worklist, node, nd_work);
3208		mtx_unlock_spin(&ng_worklist_mtx);
3209		/*
3210		 * We have the node. We also take over the reference
3211		 * that the list had on it.
3212		 * Now process as much as you can, until it won't
3213		 * let you have another item off the queue.
3214		 * All this time, keep the reference
3215		 * that lets us be sure that the node still exists.
3216		 * Let the reference go at the last minute.
3217		 * ng_dequeue will put us back on the worklist
3218		 * if there is more too do. This may be of use if there
3219		 * are Multiple Processors and multiple Net threads in the
3220		 * future.
3221		 */
3222		for (;;) {
3223			mtx_lock_spin(&node->nd_input_queue.q_mtx);
3224			item = ng_dequeue(&node->nd_input_queue);
3225			if (item == NULL) {
3226				mtx_unlock_spin(&node->nd_input_queue.q_mtx);
3227				break; /* go look for another node */
3228			} else {
3229				mtx_unlock_spin(&node->nd_input_queue.q_mtx);
3230				NGI_GET_NODE(item, node); /* zaps stored node */
3231				ng_apply_item(node, item);
3232				NG_NODE_UNREF(node);
3233			}
3234		}
3235		NG_NODE_UNREF(node);
3236	}
3237}
3238
3239static void
3240ng_worklist_remove(node_p node)
3241{
3242	mtx_lock_spin(&ng_worklist_mtx);
3243	if (node->nd_flags & NGF_WORKQ) {
3244		node->nd_flags &= ~NGF_WORKQ;
3245		TAILQ_REMOVE(&ng_worklist, node, nd_work);
3246		mtx_unlock_spin(&ng_worklist_mtx);
3247		NG_NODE_UNREF(node);
3248	} else {
3249		mtx_unlock_spin(&ng_worklist_mtx);
3250	}
3251}
3252
3253/*
3254 * XXX
3255 * It's posible that a debugging NG_NODE_REF may need
3256 * to be outside the mutex zone
3257 */
3258static void
3259ng_setisr(node_p node)
3260{
3261
3262	mtx_assert(&node->nd_input_queue.q_mtx, MA_OWNED);
3263
3264	if ((node->nd_flags & NGF_WORKQ) == 0) {
3265		/*
3266		 * If we are not already on the work queue,
3267		 * then put us on.
3268		 */
3269		node->nd_flags |= NGF_WORKQ;
3270		mtx_lock_spin(&ng_worklist_mtx);
3271		TAILQ_INSERT_TAIL(&ng_worklist, node, nd_work);
3272		mtx_unlock_spin(&ng_worklist_mtx);
3273		NG_NODE_REF(node); /* XXX fafe in mutex? */
3274	}
3275	schednetisr(NETISR_NETGRAPH);
3276}
3277
3278
3279/***********************************************************************
3280* Externally useable functions to set up a queue item ready for sending
3281***********************************************************************/
3282
3283#ifdef	NETGRAPH_DEBUG
3284#define	ITEM_DEBUG_CHECKS						\
3285	do {								\
3286		if (NGI_NODE(item) ) {					\
3287			printf("item already has node");		\
3288			kdb_enter("has node");				\
3289			NGI_CLR_NODE(item);				\
3290		}							\
3291		if (NGI_HOOK(item) ) {					\
3292			printf("item already has hook");		\
3293			kdb_enter("has hook");				\
3294			NGI_CLR_HOOK(item);				\
3295		}							\
3296	} while (0)
3297#else
3298#define ITEM_DEBUG_CHECKS
3299#endif
3300
3301/*
3302 * Put mbuf into the item.
3303 * Hook and node references will be removed when the item is dequeued.
3304 * (or equivalent)
3305 * (XXX) Unsafe because no reference held by peer on remote node.
3306 * remote node might go away in this timescale.
3307 * We know the hooks can't go away because that would require getting
3308 * a writer item on both nodes and we must have at least a  reader
3309 * here to eb able to do this.
3310 * Note that the hook loaded is the REMOTE hook.
3311 *
3312 * This is possibly in the critical path for new data.
3313 */
3314item_p
3315ng_package_data(struct mbuf *m, int flags)
3316{
3317	item_p item;
3318
3319	if ((item = ng_getqblk(flags)) == NULL) {
3320		NG_FREE_M(m);
3321		return (NULL);
3322	}
3323	ITEM_DEBUG_CHECKS;
3324	item->el_flags = NGQF_DATA | NGQF_READER;
3325	item->el_next = NULL;
3326	NGI_M(item) = m;
3327	return (item);
3328}
3329
3330/*
3331 * Allocate a queue item and put items into it..
3332 * Evaluate the address as this will be needed to queue it and
3333 * to work out what some of the fields should be.
3334 * Hook and node references will be removed when the item is dequeued.
3335 * (or equivalent)
3336 */
3337item_p
3338ng_package_msg(struct ng_mesg *msg, int flags)
3339{
3340	item_p item;
3341
3342	if ((item = ng_getqblk(flags)) == NULL) {
3343		NG_FREE_MSG(msg);
3344		return (NULL);
3345	}
3346	ITEM_DEBUG_CHECKS;
3347	/* Messages items count as writers unless explicitly exempted. */
3348	if (msg->header.cmd & NGM_READONLY)
3349		item->el_flags = NGQF_MESG | NGQF_READER;
3350	else
3351		item->el_flags = NGQF_MESG | NGQF_WRITER;
3352	item->el_next = NULL;
3353	/*
3354	 * Set the current lasthook into the queue item
3355	 */
3356	NGI_MSG(item) = msg;
3357	NGI_RETADDR(item) = 0;
3358	return (item);
3359}
3360
3361
3362
3363#define SET_RETADDR(item, here, retaddr)				\
3364	do {	/* Data or fn items don't have retaddrs */		\
3365		if ((item->el_flags & NGQF_TYPE) == NGQF_MESG) {	\
3366			if (retaddr) {					\
3367				NGI_RETADDR(item) = retaddr;		\
3368			} else {					\
3369				/*					\
3370				 * The old return address should be ok.	\
3371				 * If there isn't one, use the address	\
3372				 * here.				\
3373				 */					\
3374				if (NGI_RETADDR(item) == 0) {		\
3375					NGI_RETADDR(item)		\
3376						= ng_node2ID(here);	\
3377				}					\
3378			}						\
3379		}							\
3380	} while (0)
3381
3382int
3383ng_address_hook(node_p here, item_p item, hook_p hook, ng_ID_t retaddr)
3384{
3385	hook_p peer;
3386	node_p peernode;
3387	ITEM_DEBUG_CHECKS;
3388	/*
3389	 * Quick sanity check..
3390	 * Since a hook holds a reference on it's node, once we know
3391	 * that the peer is still connected (even if invalid,) we know
3392	 * that the peer node is present, though maybe invalid.
3393	 */
3394	if ((hook == NULL)
3395	|| NG_HOOK_NOT_VALID(hook)
3396	|| (NG_HOOK_PEER(hook) == NULL)
3397	|| NG_HOOK_NOT_VALID(NG_HOOK_PEER(hook))
3398	|| NG_NODE_NOT_VALID(NG_PEER_NODE(hook))) {
3399		NG_FREE_ITEM(item);
3400		TRAP_ERROR();
3401		return (ENETDOWN);
3402	}
3403
3404	/*
3405	 * Transfer our interest to the other (peer) end.
3406	 */
3407	peer = NG_HOOK_PEER(hook);
3408	NG_HOOK_REF(peer);
3409	NGI_SET_HOOK(item, peer);
3410	peernode = NG_PEER_NODE(hook);
3411	NG_NODE_REF(peernode);
3412	NGI_SET_NODE(item, peernode);
3413	SET_RETADDR(item, here, retaddr);
3414	return (0);
3415}
3416
3417int
3418ng_address_path(node_p here, item_p item, char *address, ng_ID_t retaddr)
3419{
3420	node_p  dest = NULL;
3421	hook_p	hook = NULL;
3422	int     error;
3423
3424	ITEM_DEBUG_CHECKS;
3425	/*
3426	 * Note that ng_path2noderef increments the reference count
3427	 * on the node for us if it finds one. So we don't have to.
3428	 */
3429	error = ng_path2noderef(here, address, &dest, &hook);
3430	if (error) {
3431		NG_FREE_ITEM(item);
3432		return (error);
3433	}
3434	NGI_SET_NODE(item, dest);
3435	if ( hook) {
3436		NG_HOOK_REF(hook);	/* don't let it go while on the queue */
3437		NGI_SET_HOOK(item, hook);
3438	}
3439	SET_RETADDR(item, here, retaddr);
3440	return (0);
3441}
3442
3443int
3444ng_address_ID(node_p here, item_p item, ng_ID_t ID, ng_ID_t retaddr)
3445{
3446	node_p dest;
3447
3448	ITEM_DEBUG_CHECKS;
3449	/*
3450	 * Find the target node.
3451	 */
3452	dest = ng_ID2noderef(ID); /* GETS REFERENCE! */
3453	if (dest == NULL) {
3454		NG_FREE_ITEM(item);
3455		TRAP_ERROR();
3456		return(EINVAL);
3457	}
3458	/* Fill out the contents */
3459	NGI_SET_NODE(item, dest);
3460	NGI_CLR_HOOK(item);
3461	SET_RETADDR(item, here, retaddr);
3462	return (0);
3463}
3464
3465/*
3466 * special case to send a message to self (e.g. destroy node)
3467 * Possibly indicate an arrival hook too.
3468 * Useful for removing that hook :-)
3469 */
3470item_p
3471ng_package_msg_self(node_p here, hook_p hook, struct ng_mesg *msg)
3472{
3473	item_p item;
3474
3475	/*
3476	 * Find the target node.
3477	 * If there is a HOOK argument, then use that in preference
3478	 * to the address.
3479	 */
3480	if ((item = ng_getqblk(NG_NOFLAGS)) == NULL) {
3481		NG_FREE_MSG(msg);
3482		return (NULL);
3483	}
3484
3485	/* Fill out the contents */
3486	item->el_flags = NGQF_MESG | NGQF_WRITER;
3487	item->el_next = NULL;
3488	NG_NODE_REF(here);
3489	NGI_SET_NODE(item, here);
3490	if (hook) {
3491		NG_HOOK_REF(hook);
3492		NGI_SET_HOOK(item, hook);
3493	}
3494	NGI_MSG(item) = msg;
3495	NGI_RETADDR(item) = ng_node2ID(here);
3496	return (item);
3497}
3498
3499int
3500ng_send_fn1(node_p node, hook_p hook, ng_item_fn *fn, void * arg1, int arg2,
3501	int flags)
3502{
3503	item_p item;
3504
3505	if ((item = ng_getqblk(flags)) == NULL) {
3506		return (ENOMEM);
3507	}
3508	item->el_flags = NGQF_FN | NGQF_WRITER;
3509	NG_NODE_REF(node); /* and one for the item */
3510	NGI_SET_NODE(item, node);
3511	if (hook) {
3512		NG_HOOK_REF(hook);
3513		NGI_SET_HOOK(item, hook);
3514	}
3515	NGI_FN(item) = fn;
3516	NGI_ARG1(item) = arg1;
3517	NGI_ARG2(item) = arg2;
3518	return(ng_snd_item(item, flags));
3519}
3520
3521/*
3522 * Official timeout routines for Netgraph nodes.
3523 */
3524static void
3525ng_callout_trampoline(void *arg)
3526{
3527	item_p item = arg;
3528
3529	ng_snd_item(item, 0);
3530}
3531
3532
3533int
3534ng_callout(struct callout *c, node_p node, hook_p hook, int ticks,
3535    ng_item_fn *fn, void * arg1, int arg2)
3536{
3537	item_p item;
3538
3539	if ((item = ng_getqblk(NG_NOFLAGS)) == NULL)
3540		return (ENOMEM);
3541
3542	item->el_flags = NGQF_FN | NGQF_WRITER;
3543	NG_NODE_REF(node);		/* and one for the item */
3544	NGI_SET_NODE(item, node);
3545	if (hook) {
3546		NG_HOOK_REF(hook);
3547		NGI_SET_HOOK(item, hook);
3548	}
3549	NGI_FN(item) = fn;
3550	NGI_ARG1(item) = arg1;
3551	NGI_ARG2(item) = arg2;
3552	callout_reset(c, ticks, &ng_callout_trampoline, item);
3553	return (0);
3554}
3555
3556/* A special modified version of untimeout() */
3557int
3558ng_uncallout(struct callout *c, node_p node)
3559{
3560	item_p item;
3561	int rval;
3562
3563	KASSERT(c != NULL, ("ng_uncallout: NULL callout"));
3564	KASSERT(node != NULL, ("ng_uncallout: NULL node"));
3565
3566	rval = callout_stop(c);
3567	item = c->c_arg;
3568	/* Do an extra check */
3569	if ((rval > 0) && (c->c_func == &ng_callout_trampoline) &&
3570	    (NGI_NODE(item) == node)) {
3571		/*
3572		 * We successfully removed it from the queue before it ran
3573		 * So now we need to unreference everything that was
3574		 * given extra references. (NG_FREE_ITEM does this).
3575		 */
3576		NG_FREE_ITEM(item);
3577	}
3578
3579	return (rval);
3580}
3581
3582/*
3583 * Set the address, if none given, give the node here.
3584 */
3585void
3586ng_replace_retaddr(node_p here, item_p item, ng_ID_t retaddr)
3587{
3588	if (retaddr) {
3589		NGI_RETADDR(item) = retaddr;
3590	} else {
3591		/*
3592		 * The old return address should be ok.
3593		 * If there isn't one, use the address here.
3594		 */
3595		NGI_RETADDR(item) = ng_node2ID(here);
3596	}
3597}
3598
3599#define TESTING
3600#ifdef TESTING
3601/* just test all the macros */
3602void
3603ng_macro_test(item_p item);
3604void
3605ng_macro_test(item_p item)
3606{
3607	node_p node = NULL;
3608	hook_p hook = NULL;
3609	struct mbuf *m;
3610	struct ng_mesg *msg;
3611	ng_ID_t retaddr;
3612	int	error;
3613
3614	NGI_GET_M(item, m);
3615	NGI_GET_MSG(item, msg);
3616	retaddr = NGI_RETADDR(item);
3617	NG_SEND_DATA(error, hook, m, NULL);
3618	NG_SEND_DATA_ONLY(error, hook, m);
3619	NG_FWD_NEW_DATA(error, item, hook, m);
3620	NG_FWD_ITEM_HOOK(error, item, hook);
3621	NG_SEND_MSG_HOOK(error, node, msg, hook, retaddr);
3622	NG_SEND_MSG_ID(error, node, msg, retaddr, retaddr);
3623	NG_SEND_MSG_PATH(error, node, msg, ".:", retaddr);
3624	NG_FWD_MSG_HOOK(error, node, item, hook, retaddr);
3625}
3626#endif /* TESTING */
3627
3628