1 /* 2 * ng_base.c 3 * 4 * Copyright (c) 1996-1999 Whistle Communications, Inc. 5 * All rights reserved. 6 * 7 * Subject to the following obligations and disclaimer of warranty, use and 8 * redistribution of this software, in source or object code forms, with or 9 * without modifications are expressly permitted by Whistle Communications; 10 * provided, however, that: 11 * 1. Any and all reproductions of the source or object code must include the 12 * copyright notice above and the following disclaimer of warranties; and 13 * 2. No rights are granted, in any manner or form, to use Whistle 14 * Communications, Inc. trademarks, including the mark "WHISTLE 15 * COMMUNICATIONS" on advertising, endorsements, or otherwise except as 16 * such appears in the above copyright notice or in the software. 17 * 18 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND 19 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO 20 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE, 21 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF 22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. 23 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY 24 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS 25 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE. 26 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES 27 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING 28 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 29 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR 30 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY 31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 33 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY 34 * OF SUCH DAMAGE. 35 * 36 * Authors: Julian Elischer <julian@freebsd.org> 37 * Archie Cobbs <archie@freebsd.org> 38 * 39 * $FreeBSD$ 40 * $Whistle: ng_base.c,v 1.39 1999/01/28 23:54:53 julian Exp $ 41 */ 42 43 /* 44 * This file implements the base netgraph code. 45 */ 46 47 #include <sys/param.h> 48 #include <sys/systm.h> 49 #include <sys/errno.h> 50 #include <sys/kernel.h> 51 #include <sys/limits.h> 52 #include <sys/malloc.h> 53 #include <sys/syslog.h> 54 #include <sys/sysctl.h> 55 #include <sys/linker.h> 56 #include <sys/queue.h> 57 #include <sys/mbuf.h> 58 #include <sys/ctype.h> 59 #include <sys/sysctl.h> 60 61 #include <net/netisr.h> 62 63 #include <netgraph/ng_message.h> 64 #include <netgraph/netgraph.h> 65 #include <netgraph/ng_parse.h> 66 67 MODULE_VERSION(netgraph, NG_ABI_VERSION); 68 69 /* List of all active nodes */ 70 static LIST_HEAD(, ng_node) ng_nodelist; 71 static struct mtx ng_nodelist_mtx; 72 73 /* Mutex that protects the free queue item list */ 74 static struct mtx ngq_mtx; 75 76 #ifdef NETGRAPH_DEBUG 77 78 static SLIST_HEAD(, ng_node) ng_allnodes; 79 static LIST_HEAD(, ng_node) ng_freenodes; /* in debug, we never free() them */ 80 static SLIST_HEAD(, ng_hook) ng_allhooks; 81 static LIST_HEAD(, ng_hook) ng_freehooks; /* in debug, we never free() them */ 82 83 static void ng_dumpitems(void); 84 static void ng_dumpnodes(void); 85 static void ng_dumphooks(void); 86 87 #endif /* NETGRAPH_DEBUG */ 88 /* 89 * DEAD versions of the structures. 90 * In order to avoid races, it is sometimes neccesary to point 91 * at SOMETHING even though theoretically, the current entity is 92 * INVALID. Use these to avoid these races. 93 */ 94 struct ng_type ng_deadtype = { 95 NG_ABI_VERSION, 96 "dead", 97 NULL, /* modevent */ 98 NULL, /* constructor */ 99 NULL, /* rcvmsg */ 100 NULL, /* shutdown */ 101 NULL, /* newhook */ 102 NULL, /* findhook */ 103 NULL, /* connect */ 104 NULL, /* rcvdata */ 105 NULL, /* disconnect */ 106 NULL, /* cmdlist */ 107 }; 108 109 struct ng_node ng_deadnode = { 110 "dead", 111 &ng_deadtype, 112 NG_INVALID, 113 1, /* refs */ 114 0, /* numhooks */ 115 NULL, /* private */ 116 0, /* ID */ 117 LIST_HEAD_INITIALIZER(ng_deadnode.hooks), 118 {}, /* all_nodes list entry */ 119 {}, /* id hashtable list entry */ 120 {}, /* workqueue entry */ 121 { 0, 122 {}, /* should never use! (should hang) */ 123 NULL, 124 &ng_deadnode.nd_input_queue.queue, 125 &ng_deadnode 126 }, 127 #ifdef NETGRAPH_DEBUG 128 ND_MAGIC, 129 __FILE__, 130 __LINE__, 131 {NULL} 132 #endif /* NETGRAPH_DEBUG */ 133 }; 134 135 struct ng_hook ng_deadhook = { 136 "dead", 137 NULL, /* private */ 138 HK_INVALID | HK_DEAD, 139 1, /* refs always >= 1 */ 140 &ng_deadhook, /* Peer is self */ 141 &ng_deadnode, /* attached to deadnode */ 142 {}, /* hooks list */ 143 NULL, /* override rcvmsg() */ 144 NULL, /* override rcvdata() */ 145 #ifdef NETGRAPH_DEBUG 146 HK_MAGIC, 147 __FILE__, 148 __LINE__, 149 {NULL} 150 #endif /* NETGRAPH_DEBUG */ 151 }; 152 153 /* 154 * END DEAD STRUCTURES 155 */ 156 /* List nodes with unallocated work */ 157 static TAILQ_HEAD(, ng_node) ng_worklist = TAILQ_HEAD_INITIALIZER(ng_worklist); 158 static struct mtx ng_worklist_mtx; /* MUST LOCK NODE FIRST */ 159 160 /* List of installed types */ 161 static LIST_HEAD(, ng_type) ng_typelist; 162 static struct mtx ng_typelist_mtx; 163 164 /* Hash related definitions */ 165 /* XXX Don't need to initialise them because it's a LIST */ 166 #define NG_ID_HASH_SIZE 32 /* most systems wont need even this many */ 167 static LIST_HEAD(, ng_node) ng_ID_hash[NG_ID_HASH_SIZE]; 168 static struct mtx ng_idhash_mtx; 169 /* Method to find a node.. used twice so do it here */ 170 #define NG_IDHASH_FN(ID) ((ID) % (NG_ID_HASH_SIZE)) 171 #define NG_IDHASH_FIND(ID, node) \ 172 do { \ 173 mtx_assert(&ng_idhash_mtx, MA_OWNED); \ 174 LIST_FOREACH(node, &ng_ID_hash[NG_IDHASH_FN(ID)], \ 175 nd_idnodes) { \ 176 if (NG_NODE_IS_VALID(node) \ 177 && (NG_NODE_ID(node) == ID)) { \ 178 break; \ 179 } \ 180 } \ 181 } while (0) 182 183 184 /* Internal functions */ 185 static int ng_add_hook(node_p node, const char *name, hook_p * hookp); 186 static int ng_generic_msg(node_p here, item_p item, hook_p lasthook); 187 static ng_ID_t ng_decodeidname(const char *name); 188 static int ngb_mod_event(module_t mod, int event, void *data); 189 static void ng_worklist_remove(node_p node); 190 static void ngintr(void); 191 static int ng_apply_item(node_p node, item_p item); 192 static void ng_flush_input_queue(struct ng_queue * ngq); 193 static void ng_setisr(node_p node); 194 static node_p ng_ID2noderef(ng_ID_t ID); 195 static int ng_con_nodes(node_p node, const char *name, node_p node2, 196 const char *name2); 197 static void ng_con_part2(node_p node, hook_p hook, void *arg1, int arg2); 198 static void ng_con_part3(node_p node, hook_p hook, void *arg1, int arg2); 199 static int ng_mkpeer(node_p node, const char *name, 200 const char *name2, char *type); 201 202 /* imported , these used to be externally visible, some may go back */ 203 void ng_destroy_hook(hook_p hook); 204 node_p ng_name2noderef(node_p node, const char *name); 205 int ng_path2noderef(node_p here, const char *path, 206 node_p *dest, hook_p *lasthook); 207 struct ng_type *ng_findtype(const char *type); 208 int ng_make_node(const char *type, node_p *nodepp); 209 int ng_path_parse(char *addr, char **node, char **path, char **hook); 210 void ng_rmnode(node_p node, hook_p dummy1, void *dummy2, int dummy3); 211 void ng_unname(node_p node); 212 213 214 /* Our own netgraph malloc type */ 215 MALLOC_DEFINE(M_NETGRAPH, "netgraph", "netgraph structures and ctrl messages"); 216 MALLOC_DEFINE(M_NETGRAPH_HOOK, "netgraph_hook", "netgraph hook structures"); 217 MALLOC_DEFINE(M_NETGRAPH_NODE, "netgraph_node", "netgraph node structures"); 218 MALLOC_DEFINE(M_NETGRAPH_ITEM, "netgraph_item", "netgraph item structures"); 219 MALLOC_DEFINE(M_NETGRAPH_MSG, "netgraph_msg", "netgraph name storage"); 220 221 /* Should not be visible outside this file */ 222 223 #define _NG_ALLOC_HOOK(hook) \ 224 MALLOC(hook, hook_p, sizeof(*hook), M_NETGRAPH_HOOK, M_NOWAIT | M_ZERO) 225 #define _NG_ALLOC_NODE(node) \ 226 MALLOC(node, node_p, sizeof(*node), M_NETGRAPH_NODE, M_NOWAIT | M_ZERO) 227 228 #ifdef NETGRAPH_DEBUG /*----------------------------------------------*/ 229 /* 230 * In debug mode: 231 * In an attempt to help track reference count screwups 232 * we do not free objects back to the malloc system, but keep them 233 * in a local cache where we can examine them and keep information safely 234 * after they have been freed. 235 * We use this scheme for nodes and hooks, and to some extent for items. 236 */ 237 static __inline hook_p 238 ng_alloc_hook(void) 239 { 240 hook_p hook; 241 SLIST_ENTRY(ng_hook) temp; 242 mtx_lock(&ng_nodelist_mtx); 243 hook = LIST_FIRST(&ng_freehooks); 244 if (hook) { 245 LIST_REMOVE(hook, hk_hooks); 246 bcopy(&hook->hk_all, &temp, sizeof(temp)); 247 bzero(hook, sizeof(struct ng_hook)); 248 bcopy(&temp, &hook->hk_all, sizeof(temp)); 249 mtx_unlock(&ng_nodelist_mtx); 250 hook->hk_magic = HK_MAGIC; 251 } else { 252 mtx_unlock(&ng_nodelist_mtx); 253 _NG_ALLOC_HOOK(hook); 254 if (hook) { 255 hook->hk_magic = HK_MAGIC; 256 mtx_lock(&ng_nodelist_mtx); 257 SLIST_INSERT_HEAD(&ng_allhooks, hook, hk_all); 258 mtx_unlock(&ng_nodelist_mtx); 259 } 260 } 261 return (hook); 262 } 263 264 static __inline node_p 265 ng_alloc_node(void) 266 { 267 node_p node; 268 SLIST_ENTRY(ng_node) temp; 269 mtx_lock(&ng_nodelist_mtx); 270 node = LIST_FIRST(&ng_freenodes); 271 if (node) { 272 LIST_REMOVE(node, nd_nodes); 273 bcopy(&node->nd_all, &temp, sizeof(temp)); 274 bzero(node, sizeof(struct ng_node)); 275 bcopy(&temp, &node->nd_all, sizeof(temp)); 276 mtx_unlock(&ng_nodelist_mtx); 277 node->nd_magic = ND_MAGIC; 278 } else { 279 mtx_unlock(&ng_nodelist_mtx); 280 _NG_ALLOC_NODE(node); 281 if (node) { 282 node->nd_magic = ND_MAGIC; 283 mtx_lock(&ng_nodelist_mtx); 284 SLIST_INSERT_HEAD(&ng_allnodes, node, nd_all); 285 mtx_unlock(&ng_nodelist_mtx); 286 } 287 } 288 return (node); 289 } 290 291 #define NG_ALLOC_HOOK(hook) do { (hook) = ng_alloc_hook(); } while (0) 292 #define NG_ALLOC_NODE(node) do { (node) = ng_alloc_node(); } while (0) 293 294 295 #define NG_FREE_HOOK(hook) \ 296 do { \ 297 mtx_lock(&ng_nodelist_mtx); \ 298 LIST_INSERT_HEAD(&ng_freehooks, hook, hk_hooks); \ 299 hook->hk_magic = 0; \ 300 mtx_unlock(&ng_nodelist_mtx); \ 301 } while (0) 302 303 #define NG_FREE_NODE(node) \ 304 do { \ 305 mtx_lock(&ng_nodelist_mtx); \ 306 LIST_INSERT_HEAD(&ng_freenodes, node, nd_nodes); \ 307 node->nd_magic = 0; \ 308 mtx_unlock(&ng_nodelist_mtx); \ 309 } while (0) 310 311 #else /* NETGRAPH_DEBUG */ /*----------------------------------------------*/ 312 313 #define NG_ALLOC_HOOK(hook) _NG_ALLOC_HOOK(hook) 314 #define NG_ALLOC_NODE(node) _NG_ALLOC_NODE(node) 315 316 #define NG_FREE_HOOK(hook) do { FREE((hook), M_NETGRAPH_HOOK); } while (0) 317 #define NG_FREE_NODE(node) do { FREE((node), M_NETGRAPH_NODE); } while (0) 318 319 #endif /* NETGRAPH_DEBUG */ /*----------------------------------------------*/ 320 321 /* Warning: Generally use NG_FREE_ITEM() instead */ 322 #define NG_FREE_ITEM_REAL(item) do { FREE((item), M_NETGRAPH_ITEM); } while (0) 323 324 325 /* Set this to Debugger("X") to catch all errors as they occur */ 326 #ifndef TRAP_ERROR 327 #define TRAP_ERROR() 328 #endif 329 330 static ng_ID_t nextID = 1; 331 332 #ifdef INVARIANTS 333 #define CHECK_DATA_MBUF(m) do { \ 334 struct mbuf *n; \ 335 int total; \ 336 \ 337 M_ASSERTPKTHDR(m); \ 338 for (total = 0, n = (m); n != NULL; n = n->m_next) \ 339 total += n->m_len; \ 340 if ((m)->m_pkthdr.len != total) { \ 341 panic("%s: %d != %d", \ 342 __func__, (m)->m_pkthdr.len, total); \ 343 } \ 344 } while (0) 345 #else 346 #define CHECK_DATA_MBUF(m) 347 #endif 348 349 350 /************************************************************************ 351 Parse type definitions for generic messages 352 ************************************************************************/ 353 354 /* Handy structure parse type defining macro */ 355 #define DEFINE_PARSE_STRUCT_TYPE(lo, up, args) \ 356 static const struct ng_parse_struct_field \ 357 ng_ ## lo ## _type_fields[] = NG_GENERIC_ ## up ## _INFO args; \ 358 static const struct ng_parse_type ng_generic_ ## lo ## _type = { \ 359 &ng_parse_struct_type, \ 360 &ng_ ## lo ## _type_fields \ 361 } 362 363 DEFINE_PARSE_STRUCT_TYPE(mkpeer, MKPEER, ()); 364 DEFINE_PARSE_STRUCT_TYPE(connect, CONNECT, ()); 365 DEFINE_PARSE_STRUCT_TYPE(name, NAME, ()); 366 DEFINE_PARSE_STRUCT_TYPE(rmhook, RMHOOK, ()); 367 DEFINE_PARSE_STRUCT_TYPE(nodeinfo, NODEINFO, ()); 368 DEFINE_PARSE_STRUCT_TYPE(typeinfo, TYPEINFO, ()); 369 DEFINE_PARSE_STRUCT_TYPE(linkinfo, LINKINFO, (&ng_generic_nodeinfo_type)); 370 371 /* Get length of an array when the length is stored as a 32 bit 372 value immediately preceding the array -- as with struct namelist 373 and struct typelist. */ 374 static int 375 ng_generic_list_getLength(const struct ng_parse_type *type, 376 const u_char *start, const u_char *buf) 377 { 378 return *((const u_int32_t *)(buf - 4)); 379 } 380 381 /* Get length of the array of struct linkinfo inside a struct hooklist */ 382 static int 383 ng_generic_linkinfo_getLength(const struct ng_parse_type *type, 384 const u_char *start, const u_char *buf) 385 { 386 const struct hooklist *hl = (const struct hooklist *)start; 387 388 return hl->nodeinfo.hooks; 389 } 390 391 /* Array type for a variable length array of struct namelist */ 392 static const struct ng_parse_array_info ng_nodeinfoarray_type_info = { 393 &ng_generic_nodeinfo_type, 394 &ng_generic_list_getLength 395 }; 396 static const struct ng_parse_type ng_generic_nodeinfoarray_type = { 397 &ng_parse_array_type, 398 &ng_nodeinfoarray_type_info 399 }; 400 401 /* Array type for a variable length array of struct typelist */ 402 static const struct ng_parse_array_info ng_typeinfoarray_type_info = { 403 &ng_generic_typeinfo_type, 404 &ng_generic_list_getLength 405 }; 406 static const struct ng_parse_type ng_generic_typeinfoarray_type = { 407 &ng_parse_array_type, 408 &ng_typeinfoarray_type_info 409 }; 410 411 /* Array type for array of struct linkinfo in struct hooklist */ 412 static const struct ng_parse_array_info ng_generic_linkinfo_array_type_info = { 413 &ng_generic_linkinfo_type, 414 &ng_generic_linkinfo_getLength 415 }; 416 static const struct ng_parse_type ng_generic_linkinfo_array_type = { 417 &ng_parse_array_type, 418 &ng_generic_linkinfo_array_type_info 419 }; 420 421 DEFINE_PARSE_STRUCT_TYPE(typelist, TYPELIST, (&ng_generic_nodeinfoarray_type)); 422 DEFINE_PARSE_STRUCT_TYPE(hooklist, HOOKLIST, 423 (&ng_generic_nodeinfo_type, &ng_generic_linkinfo_array_type)); 424 DEFINE_PARSE_STRUCT_TYPE(listnodes, LISTNODES, 425 (&ng_generic_nodeinfoarray_type)); 426 427 /* List of commands and how to convert arguments to/from ASCII */ 428 static const struct ng_cmdlist ng_generic_cmds[] = { 429 { 430 NGM_GENERIC_COOKIE, 431 NGM_SHUTDOWN, 432 "shutdown", 433 NULL, 434 NULL 435 }, 436 { 437 NGM_GENERIC_COOKIE, 438 NGM_MKPEER, 439 "mkpeer", 440 &ng_generic_mkpeer_type, 441 NULL 442 }, 443 { 444 NGM_GENERIC_COOKIE, 445 NGM_CONNECT, 446 "connect", 447 &ng_generic_connect_type, 448 NULL 449 }, 450 { 451 NGM_GENERIC_COOKIE, 452 NGM_NAME, 453 "name", 454 &ng_generic_name_type, 455 NULL 456 }, 457 { 458 NGM_GENERIC_COOKIE, 459 NGM_RMHOOK, 460 "rmhook", 461 &ng_generic_rmhook_type, 462 NULL 463 }, 464 { 465 NGM_GENERIC_COOKIE, 466 NGM_NODEINFO, 467 "nodeinfo", 468 NULL, 469 &ng_generic_nodeinfo_type 470 }, 471 { 472 NGM_GENERIC_COOKIE, 473 NGM_LISTHOOKS, 474 "listhooks", 475 NULL, 476 &ng_generic_hooklist_type 477 }, 478 { 479 NGM_GENERIC_COOKIE, 480 NGM_LISTNAMES, 481 "listnames", 482 NULL, 483 &ng_generic_listnodes_type /* same as NGM_LISTNODES */ 484 }, 485 { 486 NGM_GENERIC_COOKIE, 487 NGM_LISTNODES, 488 "listnodes", 489 NULL, 490 &ng_generic_listnodes_type 491 }, 492 { 493 NGM_GENERIC_COOKIE, 494 NGM_LISTTYPES, 495 "listtypes", 496 NULL, 497 &ng_generic_typeinfo_type 498 }, 499 { 500 NGM_GENERIC_COOKIE, 501 NGM_TEXT_CONFIG, 502 "textconfig", 503 NULL, 504 &ng_parse_string_type 505 }, 506 { 507 NGM_GENERIC_COOKIE, 508 NGM_TEXT_STATUS, 509 "textstatus", 510 NULL, 511 &ng_parse_string_type 512 }, 513 { 514 NGM_GENERIC_COOKIE, 515 NGM_ASCII2BINARY, 516 "ascii2binary", 517 &ng_parse_ng_mesg_type, 518 &ng_parse_ng_mesg_type 519 }, 520 { 521 NGM_GENERIC_COOKIE, 522 NGM_BINARY2ASCII, 523 "binary2ascii", 524 &ng_parse_ng_mesg_type, 525 &ng_parse_ng_mesg_type 526 }, 527 { 0 } 528 }; 529 530 /************************************************************************ 531 Node routines 532 ************************************************************************/ 533 534 /* 535 * Instantiate a node of the requested type 536 */ 537 int 538 ng_make_node(const char *typename, node_p *nodepp) 539 { 540 struct ng_type *type; 541 int error; 542 543 /* Check that the type makes sense */ 544 if (typename == NULL) { 545 TRAP_ERROR(); 546 return (EINVAL); 547 } 548 549 /* Locate the node type */ 550 if ((type = ng_findtype(typename)) == NULL) { 551 char filename[NG_TYPESIZ + 3]; 552 linker_file_t lf; 553 int error; 554 555 /* Not found, try to load it as a loadable module */ 556 snprintf(filename, sizeof(filename), "ng_%s", typename); 557 error = linker_load_module(NULL, filename, NULL, NULL, &lf); 558 if (error != 0) 559 return (error); 560 lf->userrefs++; /* pretend loaded by the syscall */ 561 562 /* Try again, as now the type should have linked itself in */ 563 if ((type = ng_findtype(typename)) == NULL) 564 return (ENXIO); 565 } 566 567 /* 568 * If we have a constructor, then make the node and 569 * call the constructor to do type specific initialisation. 570 */ 571 if (type->constructor != NULL) { 572 if ((error = ng_make_node_common(type, nodepp)) == 0) { 573 if ((error = ((*type->constructor)(*nodepp)) != 0)) { 574 NG_NODE_UNREF(*nodepp); 575 } 576 } 577 } else { 578 /* 579 * Node has no constructor. We cannot ask for one 580 * to be made. It must be brought into existance by 581 * some external agency. The external agency should 582 * call ng_make_node_common() directly to get the 583 * netgraph part initialised. 584 */ 585 TRAP_ERROR(); 586 error = EINVAL; 587 } 588 return (error); 589 } 590 591 /* 592 * Generic node creation. Called by node initialisation for externally 593 * instantiated nodes (e.g. hardware, sockets, etc ). 594 * The returned node has a reference count of 1. 595 */ 596 int 597 ng_make_node_common(struct ng_type *type, node_p *nodepp) 598 { 599 node_p node; 600 601 /* Require the node type to have been already installed */ 602 if (ng_findtype(type->name) == NULL) { 603 TRAP_ERROR(); 604 return (EINVAL); 605 } 606 607 /* Make a node and try attach it to the type */ 608 NG_ALLOC_NODE(node); 609 if (node == NULL) { 610 TRAP_ERROR(); 611 return (ENOMEM); 612 } 613 node->nd_type = type; 614 NG_NODE_REF(node); /* note reference */ 615 type->refs++; 616 617 mtx_init(&node->nd_input_queue.q_mtx, "ng_node", NULL, MTX_SPIN); 618 node->nd_input_queue.queue = NULL; 619 node->nd_input_queue.last = &node->nd_input_queue.queue; 620 node->nd_input_queue.q_flags = 0; 621 node->nd_input_queue.q_node = node; 622 623 /* Initialize hook list for new node */ 624 LIST_INIT(&node->nd_hooks); 625 626 /* Link us into the node linked list */ 627 mtx_lock(&ng_nodelist_mtx); 628 LIST_INSERT_HEAD(&ng_nodelist, node, nd_nodes); 629 mtx_unlock(&ng_nodelist_mtx); 630 631 632 /* get an ID and put us in the hash chain */ 633 mtx_lock(&ng_idhash_mtx); 634 for (;;) { /* wrap protection, even if silly */ 635 node_p node2 = NULL; 636 node->nd_ID = nextID++; /* 137/second for 1 year before wrap */ 637 638 /* Is there a problem with the new number? */ 639 NG_IDHASH_FIND(node->nd_ID, node2); /* already taken? */ 640 if ((node->nd_ID != 0) && (node2 == NULL)) { 641 break; 642 } 643 } 644 LIST_INSERT_HEAD(&ng_ID_hash[NG_IDHASH_FN(node->nd_ID)], 645 node, nd_idnodes); 646 mtx_unlock(&ng_idhash_mtx); 647 648 /* Done */ 649 *nodepp = node; 650 return (0); 651 } 652 653 /* 654 * Forceably start the shutdown process on a node. Either call 655 * it's shutdown method, or do the default shutdown if there is 656 * no type-specific method. 657 * 658 * We can only be called form a shutdown message, so we know we have 659 * a writer lock, and therefore exclusive access. It also means 660 * that we should not be on the work queue, but we check anyhow. 661 * 662 * Persistent node types must have a type-specific method which 663 * Allocates a new node in which case, this one is irretrievably going away, 664 * or cleans up anything it needs, and just makes the node valid again, 665 * in which case we allow the node to survive. 666 * 667 * XXX We need to think of how to tell a persistant node that we 668 * REALLY need to go away because the hardware has gone or we 669 * are rebooting.... etc. 670 */ 671 void 672 ng_rmnode(node_p node, hook_p dummy1, void *dummy2, int dummy3) 673 { 674 hook_p hook; 675 676 /* Check if it's already shutting down */ 677 if ((node->nd_flags & NG_CLOSING) != 0) 678 return; 679 680 if (node == &ng_deadnode) { 681 printf ("shutdown called on deadnode\n"); 682 return; 683 } 684 685 /* Add an extra reference so it doesn't go away during this */ 686 NG_NODE_REF(node); 687 688 /* 689 * Mark it invalid so any newcomers know not to try use it 690 * Also add our own mark so we can't recurse 691 * note that NG_INVALID does not do this as it's also set during 692 * creation 693 */ 694 node->nd_flags |= NG_INVALID|NG_CLOSING; 695 696 /* If node has its pre-shutdown method, then call it first*/ 697 if (node->nd_type && node->nd_type->close) 698 (*node->nd_type->close)(node); 699 700 /* Notify all remaining connected nodes to disconnect */ 701 while ((hook = LIST_FIRST(&node->nd_hooks)) != NULL) 702 ng_destroy_hook(hook); 703 704 /* 705 * Drain the input queue forceably. 706 * it has no hooks so what's it going to do, bleed on someone? 707 * Theoretically we came here from a queue entry that was added 708 * Just before the queue was closed, so it should be empty anyway. 709 * Also removes us from worklist if needed. 710 */ 711 ng_flush_input_queue(&node->nd_input_queue); 712 713 /* Ask the type if it has anything to do in this case */ 714 if (node->nd_type && node->nd_type->shutdown) { 715 (*node->nd_type->shutdown)(node); 716 if (NG_NODE_IS_VALID(node)) { 717 /* 718 * Well, blow me down if the node code hasn't declared 719 * that it doesn't want to die. 720 * Presumably it is a persistant node. 721 * If we REALLY want it to go away, 722 * e.g. hardware going away, 723 * Our caller should set NG_REALLY_DIE in nd_flags. 724 */ 725 node->nd_flags &= ~(NG_INVALID|NG_CLOSING); 726 NG_NODE_UNREF(node); /* Assume they still have theirs */ 727 return; 728 } 729 } else { /* do the default thing */ 730 NG_NODE_UNREF(node); 731 } 732 733 ng_unname(node); /* basically a NOP these days */ 734 735 /* 736 * Remove extra reference, possibly the last 737 * Possible other holders of references may include 738 * timeout callouts, but theoretically the node's supposed to 739 * have cancelled them. Possibly hardware dependencies may 740 * force a driver to 'linger' with a reference. 741 */ 742 NG_NODE_UNREF(node); 743 } 744 745 #ifdef NETGRAPH_DEBUG 746 void 747 ng_ref_node(node_p node) 748 { 749 _NG_NODE_REF(node); 750 } 751 #endif 752 753 /* 754 * Remove a reference to the node, possibly the last. 755 * deadnode always acts as it it were the last. 756 */ 757 int 758 ng_unref_node(node_p node) 759 { 760 int v; 761 762 if (node == &ng_deadnode) { 763 return (0); 764 } 765 766 do { 767 v = node->nd_refs - 1; 768 } while (! atomic_cmpset_int(&node->nd_refs, v + 1, v)); 769 770 if (v == 0) { /* we were the last */ 771 772 mtx_lock(&ng_nodelist_mtx); 773 node->nd_type->refs--; /* XXX maybe should get types lock? */ 774 LIST_REMOVE(node, nd_nodes); 775 mtx_unlock(&ng_nodelist_mtx); 776 777 mtx_lock(&ng_idhash_mtx); 778 LIST_REMOVE(node, nd_idnodes); 779 mtx_unlock(&ng_idhash_mtx); 780 781 mtx_destroy(&node->nd_input_queue.q_mtx); 782 NG_FREE_NODE(node); 783 } 784 return (v); 785 } 786 787 /************************************************************************ 788 Node ID handling 789 ************************************************************************/ 790 static node_p 791 ng_ID2noderef(ng_ID_t ID) 792 { 793 node_p node; 794 mtx_lock(&ng_idhash_mtx); 795 NG_IDHASH_FIND(ID, node); 796 if(node) 797 NG_NODE_REF(node); 798 mtx_unlock(&ng_idhash_mtx); 799 return(node); 800 } 801 802 ng_ID_t 803 ng_node2ID(node_p node) 804 { 805 return (node ? NG_NODE_ID(node) : 0); 806 } 807 808 /************************************************************************ 809 Node name handling 810 ************************************************************************/ 811 812 /* 813 * Assign a node a name. Once assigned, the name cannot be changed. 814 */ 815 int 816 ng_name_node(node_p node, const char *name) 817 { 818 int i; 819 node_p node2; 820 821 /* Check the name is valid */ 822 for (i = 0; i < NG_NODESIZ; i++) { 823 if (name[i] == '\0' || name[i] == '.' || name[i] == ':') 824 break; 825 } 826 if (i == 0 || name[i] != '\0') { 827 TRAP_ERROR(); 828 return (EINVAL); 829 } 830 if (ng_decodeidname(name) != 0) { /* valid IDs not allowed here */ 831 TRAP_ERROR(); 832 return (EINVAL); 833 } 834 835 /* Check the name isn't already being used */ 836 if ((node2 = ng_name2noderef(node, name)) != NULL) { 837 NG_NODE_UNREF(node2); 838 TRAP_ERROR(); 839 return (EADDRINUSE); 840 } 841 842 /* copy it */ 843 strlcpy(NG_NODE_NAME(node), name, NG_NODESIZ); 844 845 return (0); 846 } 847 848 /* 849 * Find a node by absolute name. The name should NOT end with ':' 850 * The name "." means "this node" and "[xxx]" means "the node 851 * with ID (ie, at address) xxx". 852 * 853 * Returns the node if found, else NULL. 854 * Eventually should add something faster than a sequential search. 855 * Note it aquires a reference on the node so you can be sure it's still there. 856 */ 857 node_p 858 ng_name2noderef(node_p here, const char *name) 859 { 860 node_p node; 861 ng_ID_t temp; 862 863 /* "." means "this node" */ 864 if (strcmp(name, ".") == 0) { 865 NG_NODE_REF(here); 866 return(here); 867 } 868 869 /* Check for name-by-ID */ 870 if ((temp = ng_decodeidname(name)) != 0) { 871 return (ng_ID2noderef(temp)); 872 } 873 874 /* Find node by name */ 875 mtx_lock(&ng_nodelist_mtx); 876 LIST_FOREACH(node, &ng_nodelist, nd_nodes) { 877 if (NG_NODE_IS_VALID(node) 878 && NG_NODE_HAS_NAME(node) 879 && (strcmp(NG_NODE_NAME(node), name) == 0)) { 880 break; 881 } 882 } 883 if (node) 884 NG_NODE_REF(node); 885 mtx_unlock(&ng_nodelist_mtx); 886 return (node); 887 } 888 889 /* 890 * Decode an ID name, eg. "[f03034de]". Returns 0 if the 891 * string is not valid, otherwise returns the value. 892 */ 893 static ng_ID_t 894 ng_decodeidname(const char *name) 895 { 896 const int len = strlen(name); 897 char *eptr; 898 u_long val; 899 900 /* Check for proper length, brackets, no leading junk */ 901 if ((len < 3) 902 || (name[0] != '[') 903 || (name[len - 1] != ']') 904 || (!isxdigit(name[1]))) { 905 return ((ng_ID_t)0); 906 } 907 908 /* Decode number */ 909 val = strtoul(name + 1, &eptr, 16); 910 if ((eptr - name != len - 1) 911 || (val == ULONG_MAX) 912 || (val == 0)) { 913 return ((ng_ID_t)0); 914 } 915 return (ng_ID_t)val; 916 } 917 918 /* 919 * Remove a name from a node. This should only be called 920 * when shutting down and removing the node. 921 * IF we allow name changing this may be more resurected. 922 */ 923 void 924 ng_unname(node_p node) 925 { 926 } 927 928 /************************************************************************ 929 Hook routines 930 Names are not optional. Hooks are always connected, except for a 931 brief moment within these routines. On invalidation or during creation 932 they are connected to the 'dead' hook. 933 ************************************************************************/ 934 935 /* 936 * Remove a hook reference 937 */ 938 void 939 ng_unref_hook(hook_p hook) 940 { 941 int v; 942 943 if (hook == &ng_deadhook) { 944 return; 945 } 946 do { 947 v = hook->hk_refs; 948 } while (! atomic_cmpset_int(&hook->hk_refs, v, v - 1)); 949 950 if (v == 1) { /* we were the last */ 951 if (_NG_HOOK_NODE(hook)) { /* it'll probably be ng_deadnode */ 952 _NG_NODE_UNREF((_NG_HOOK_NODE(hook))); 953 hook->hk_node = NULL; 954 } 955 NG_FREE_HOOK(hook); 956 } 957 } 958 959 /* 960 * Add an unconnected hook to a node. Only used internally. 961 * Assumes node is locked. (XXX not yet true ) 962 */ 963 static int 964 ng_add_hook(node_p node, const char *name, hook_p *hookp) 965 { 966 hook_p hook; 967 int error = 0; 968 969 /* Check that the given name is good */ 970 if (name == NULL) { 971 TRAP_ERROR(); 972 return (EINVAL); 973 } 974 if (ng_findhook(node, name) != NULL) { 975 TRAP_ERROR(); 976 return (EEXIST); 977 } 978 979 /* Allocate the hook and link it up */ 980 NG_ALLOC_HOOK(hook); 981 if (hook == NULL) { 982 TRAP_ERROR(); 983 return (ENOMEM); 984 } 985 hook->hk_refs = 1; /* add a reference for us to return */ 986 hook->hk_flags = HK_INVALID; 987 hook->hk_peer = &ng_deadhook; /* start off this way */ 988 hook->hk_node = node; 989 NG_NODE_REF(node); /* each hook counts as a reference */ 990 991 /* Set hook name */ 992 strlcpy(NG_HOOK_NAME(hook), name, NG_HOOKSIZ); 993 994 /* 995 * Check if the node type code has something to say about it 996 * If it fails, the unref of the hook will also unref the node. 997 */ 998 if (node->nd_type->newhook != NULL) { 999 if ((error = (*node->nd_type->newhook)(node, hook, name))) { 1000 NG_HOOK_UNREF(hook); /* this frees the hook */ 1001 return (error); 1002 } 1003 } 1004 /* 1005 * The 'type' agrees so far, so go ahead and link it in. 1006 * We'll ask again later when we actually connect the hooks. 1007 */ 1008 LIST_INSERT_HEAD(&node->nd_hooks, hook, hk_hooks); 1009 node->nd_numhooks++; 1010 NG_HOOK_REF(hook); /* one for the node */ 1011 1012 if (hookp) 1013 *hookp = hook; 1014 return (0); 1015 } 1016 1017 /* 1018 * Find a hook 1019 * 1020 * Node types may supply their own optimized routines for finding 1021 * hooks. If none is supplied, we just do a linear search. 1022 * XXX Possibly we should add a reference to the hook? 1023 */ 1024 hook_p 1025 ng_findhook(node_p node, const char *name) 1026 { 1027 hook_p hook; 1028 1029 if (node->nd_type->findhook != NULL) 1030 return (*node->nd_type->findhook)(node, name); 1031 LIST_FOREACH(hook, &node->nd_hooks, hk_hooks) { 1032 if (NG_HOOK_IS_VALID(hook) 1033 && (strcmp(NG_HOOK_NAME(hook), name) == 0)) 1034 return (hook); 1035 } 1036 return (NULL); 1037 } 1038 1039 /* 1040 * Destroy a hook 1041 * 1042 * As hooks are always attached, this really destroys two hooks. 1043 * The one given, and the one attached to it. Disconnect the hooks 1044 * from each other first. We reconnect the peer hook to the 'dead' 1045 * hook so that it can still exist after we depart. We then 1046 * send the peer its own destroy message. This ensures that we only 1047 * interact with the peer's structures when it is locked processing that 1048 * message. We hold a reference to the peer hook so we are guaranteed that 1049 * the peer hook and node are still going to exist until 1050 * we are finished there as the hook holds a ref on the node. 1051 * We run this same code again on the peer hook, but that time it is already 1052 * attached to the 'dead' hook. 1053 * 1054 * This routine is called at all stages of hook creation 1055 * on error detection and must be able to handle any such stage. 1056 */ 1057 void 1058 ng_destroy_hook(hook_p hook) 1059 { 1060 hook_p peer = NG_HOOK_PEER(hook); 1061 node_p node = NG_HOOK_NODE(hook); 1062 1063 if (hook == &ng_deadhook) { /* better safe than sorry */ 1064 printf("ng_destroy_hook called on deadhook\n"); 1065 return; 1066 } 1067 hook->hk_flags |= HK_INVALID; /* as soon as possible */ 1068 if (peer && (peer != &ng_deadhook)) { 1069 /* 1070 * Set the peer to point to ng_deadhook 1071 * from this moment on we are effectively independent it. 1072 * send it an rmhook message of it's own. 1073 */ 1074 peer->hk_peer = &ng_deadhook; /* They no longer know us */ 1075 hook->hk_peer = &ng_deadhook; /* Nor us, them */ 1076 if (NG_HOOK_NODE(peer) == &ng_deadnode) { 1077 /* 1078 * If it's already divorced from a node, 1079 * just free it. 1080 */ 1081 /* nothing */ 1082 } else { 1083 ng_rmhook_self(peer); /* Send it a surprise */ 1084 } 1085 NG_HOOK_UNREF(peer); /* account for peer link */ 1086 NG_HOOK_UNREF(hook); /* account for peer link */ 1087 } 1088 1089 /* 1090 * Remove the hook from the node's list to avoid possible recursion 1091 * in case the disconnection results in node shutdown. 1092 */ 1093 if (node == &ng_deadnode) { /* happens if called from ng_con_nodes() */ 1094 return; 1095 } 1096 LIST_REMOVE(hook, hk_hooks); 1097 node->nd_numhooks--; 1098 if (node->nd_type->disconnect) { 1099 /* 1100 * The type handler may elect to destroy the node so don't 1101 * trust its existance after this point. (except 1102 * that we still hold a reference on it. (which we 1103 * inherrited from the hook we are destroying) 1104 */ 1105 (*node->nd_type->disconnect) (hook); 1106 } 1107 1108 /* 1109 * Note that because we will point to ng_deadnode, the original node 1110 * is not decremented automatically so we do that manually. 1111 */ 1112 _NG_HOOK_NODE(hook) = &ng_deadnode; 1113 NG_NODE_UNREF(node); /* We no longer point to it so adjust count */ 1114 NG_HOOK_UNREF(hook); /* Account for linkage (in list) to node */ 1115 } 1116 1117 /* 1118 * Take two hooks on a node and merge the connection so that the given node 1119 * is effectively bypassed. 1120 */ 1121 int 1122 ng_bypass(hook_p hook1, hook_p hook2) 1123 { 1124 if (hook1->hk_node != hook2->hk_node) { 1125 TRAP_ERROR(); 1126 return (EINVAL); 1127 } 1128 hook1->hk_peer->hk_peer = hook2->hk_peer; 1129 hook2->hk_peer->hk_peer = hook1->hk_peer; 1130 1131 hook1->hk_peer = &ng_deadhook; 1132 hook2->hk_peer = &ng_deadhook; 1133 1134 /* XXX If we ever cache methods on hooks update them as well */ 1135 ng_destroy_hook(hook1); 1136 ng_destroy_hook(hook2); 1137 return (0); 1138 } 1139 1140 /* 1141 * Install a new netgraph type 1142 */ 1143 int 1144 ng_newtype(struct ng_type *tp) 1145 { 1146 const size_t namelen = strlen(tp->name); 1147 1148 /* Check version and type name fields */ 1149 if ((tp->version != NG_ABI_VERSION) 1150 || (namelen == 0) 1151 || (namelen >= NG_TYPESIZ)) { 1152 TRAP_ERROR(); 1153 if (tp->version != NG_ABI_VERSION) { 1154 printf("Netgraph: Node type rejected. ABI mismatch. Suggest recompile\n"); 1155 } 1156 return (EINVAL); 1157 } 1158 1159 /* Check for name collision */ 1160 if (ng_findtype(tp->name) != NULL) { 1161 TRAP_ERROR(); 1162 return (EEXIST); 1163 } 1164 1165 1166 /* Link in new type */ 1167 mtx_lock(&ng_typelist_mtx); 1168 LIST_INSERT_HEAD(&ng_typelist, tp, types); 1169 tp->refs = 1; /* first ref is linked list */ 1170 mtx_unlock(&ng_typelist_mtx); 1171 return (0); 1172 } 1173 1174 /* 1175 * unlink a netgraph type 1176 * If no examples exist 1177 */ 1178 int 1179 ng_rmtype(struct ng_type *tp) 1180 { 1181 /* Check for name collision */ 1182 if (tp->refs != 1) { 1183 TRAP_ERROR(); 1184 return (EBUSY); 1185 } 1186 1187 /* Unlink type */ 1188 mtx_lock(&ng_typelist_mtx); 1189 LIST_REMOVE(tp, types); 1190 mtx_unlock(&ng_typelist_mtx); 1191 return (0); 1192 } 1193 1194 /* 1195 * Look for a type of the name given 1196 */ 1197 struct ng_type * 1198 ng_findtype(const char *typename) 1199 { 1200 struct ng_type *type; 1201 1202 mtx_lock(&ng_typelist_mtx); 1203 LIST_FOREACH(type, &ng_typelist, types) { 1204 if (strcmp(type->name, typename) == 0) 1205 break; 1206 } 1207 mtx_unlock(&ng_typelist_mtx); 1208 return (type); 1209 } 1210 1211 /************************************************************************ 1212 Composite routines 1213 ************************************************************************/ 1214 /* 1215 * Connect two nodes using the specified hooks, using queued functions. 1216 */ 1217 static void 1218 ng_con_part3(node_p node, hook_p hook, void *arg1, int arg2) 1219 { 1220 1221 /* 1222 * When we run, we know that the node 'node' is locked for us. 1223 * Our caller has a reference on the hook. 1224 * Our caller has a reference on the node. 1225 * (In this case our caller is ng_apply_item() ). 1226 * The peer hook has a reference on the hook. 1227 * We are all set up except for the final call to the node, and 1228 * the clearing of the INVALID flag. 1229 */ 1230 if (NG_HOOK_NODE(hook) == &ng_deadnode) { 1231 /* 1232 * The node must have been freed again since we last visited 1233 * here. ng_destry_hook() has this effect but nothing else does. 1234 * We should just release our references and 1235 * free anything we can think of. 1236 * Since we know it's been destroyed, and it's our caller 1237 * that holds the references, just return. 1238 */ 1239 return ; 1240 } 1241 if (hook->hk_node->nd_type->connect) { 1242 if ((*hook->hk_node->nd_type->connect) (hook)) { 1243 ng_destroy_hook(hook); /* also zaps peer */ 1244 printf("failed in ng_con_part3()\n"); 1245 return ; 1246 } 1247 } 1248 /* 1249 * XXX this is wrong for SMP. Possibly we need 1250 * to separate out 'create' and 'invalid' flags. 1251 * should only set flags on hooks we have locked under our node. 1252 */ 1253 hook->hk_flags &= ~HK_INVALID; 1254 return ; 1255 } 1256 1257 static void 1258 ng_con_part2(node_p node, hook_p hook, void *arg1, int arg2) 1259 { 1260 1261 /* 1262 * When we run, we know that the node 'node' is locked for us. 1263 * Our caller has a reference on the hook. 1264 * Our caller has a reference on the node. 1265 * (In this case our caller is ng_apply_item() ). 1266 * The peer hook has a reference on the hook. 1267 * our node pointer points to the 'dead' node. 1268 * First check the hook name is unique. 1269 * Should not happen because we checked before queueing this. 1270 */ 1271 if (ng_findhook(node, NG_HOOK_NAME(hook)) != NULL) { 1272 TRAP_ERROR(); 1273 ng_destroy_hook(hook); /* should destroy peer too */ 1274 printf("failed in ng_con_part2()\n"); 1275 return ; 1276 } 1277 /* 1278 * Check if the node type code has something to say about it 1279 * If it fails, the unref of the hook will also unref the attached node, 1280 * however since that node is 'ng_deadnode' this will do nothing. 1281 * The peer hook will also be destroyed. 1282 */ 1283 if (node->nd_type->newhook != NULL) { 1284 if ((*node->nd_type->newhook)(node, hook, hook->hk_name)) { 1285 ng_destroy_hook(hook); /* should destroy peer too */ 1286 printf("failed in ng_con_part2()\n"); 1287 return ; 1288 } 1289 } 1290 1291 /* 1292 * The 'type' agrees so far, so go ahead and link it in. 1293 * We'll ask again later when we actually connect the hooks. 1294 */ 1295 hook->hk_node = node; /* just overwrite ng_deadnode */ 1296 NG_NODE_REF(node); /* each hook counts as a reference */ 1297 LIST_INSERT_HEAD(&node->nd_hooks, hook, hk_hooks); 1298 node->nd_numhooks++; 1299 NG_HOOK_REF(hook); /* one for the node */ 1300 1301 /* 1302 * We now have a symetrical situation, where both hooks have been 1303 * linked to their nodes, the newhook methods have been called 1304 * And the references are all correct. The hooks are still marked 1305 * as invalid, as we have not called the 'connect' methods 1306 * yet. 1307 * We can call the local one immediatly as we have the 1308 * node locked, but we need to queue the remote one. 1309 */ 1310 if (hook->hk_node->nd_type->connect) { 1311 if ((*hook->hk_node->nd_type->connect) (hook)) { 1312 ng_destroy_hook(hook); /* also zaps peer */ 1313 printf("failed in ng_con_part2(A)\n"); 1314 return ; 1315 } 1316 } 1317 if (ng_send_fn(hook->hk_peer->hk_node, hook->hk_peer, 1318 &ng_con_part3, arg1, arg2)) { 1319 printf("failed in ng_con_part2(B)"); 1320 ng_destroy_hook(hook); /* also zaps peer */ 1321 return ; 1322 } 1323 hook->hk_flags &= ~HK_INVALID; /* need both to be able to work */ 1324 return ; 1325 } 1326 1327 /* 1328 * Connect this node with another node. We assume that this node is 1329 * currently locked, as we are only called from an NGM_CONNECT message. 1330 */ 1331 static int 1332 ng_con_nodes(node_p node, const char *name, node_p node2, const char *name2) 1333 { 1334 int error; 1335 hook_p hook; 1336 hook_p hook2; 1337 1338 if (ng_findhook(node2, name2) != NULL) { 1339 return(EEXIST); 1340 } 1341 if ((error = ng_add_hook(node, name, &hook))) /* gives us a ref */ 1342 return (error); 1343 /* Allocate the other hook and link it up */ 1344 NG_ALLOC_HOOK(hook2); 1345 if (hook == NULL) { 1346 TRAP_ERROR(); 1347 ng_destroy_hook(hook); /* XXX check ref counts so far */ 1348 NG_HOOK_UNREF(hook); /* including our ref */ 1349 return (ENOMEM); 1350 } 1351 hook2->hk_refs = 1; /* start with a reference for us. */ 1352 hook2->hk_flags = HK_INVALID; 1353 hook2->hk_peer = hook; /* Link the two together */ 1354 hook->hk_peer = hook2; 1355 NG_HOOK_REF(hook); /* Add a ref for the peer to each*/ 1356 NG_HOOK_REF(hook2); 1357 hook2->hk_node = &ng_deadnode; 1358 strlcpy(NG_HOOK_NAME(hook2), name2, NG_HOOKSIZ); 1359 1360 /* 1361 * Queue the function above. 1362 * Procesing continues in that function in the lock context of 1363 * the other node. 1364 */ 1365 ng_send_fn(node2, hook2, &ng_con_part2, NULL, 0); 1366 1367 NG_HOOK_UNREF(hook); /* Let each hook go if it wants to */ 1368 NG_HOOK_UNREF(hook2); 1369 return (0); 1370 } 1371 1372 /* 1373 * Make a peer and connect. 1374 * We assume that the local node is locked. 1375 * The new node probably doesn't need a lock until 1376 * it has a hook, because it cannot really have any work until then, 1377 * but we should think about it a bit more. 1378 * 1379 * The problem may come if the other node also fires up 1380 * some hardware or a timer or some other source of activation, 1381 * also it may already get a command msg via it's ID. 1382 * 1383 * We could use the same method as ng_con_nodes() but we'd have 1384 * to add ability to remove the node when failing. (Not hard, just 1385 * make arg1 point to the node to remove). 1386 * Unless of course we just ignore failure to connect and leave 1387 * an unconnected node? 1388 */ 1389 static int 1390 ng_mkpeer(node_p node, const char *name, const char *name2, char *type) 1391 { 1392 node_p node2; 1393 hook_p hook1; 1394 hook_p hook2; 1395 int error; 1396 1397 if ((error = ng_make_node(type, &node2))) { 1398 return (error); 1399 } 1400 1401 if ((error = ng_add_hook(node, name, &hook1))) { /* gives us a ref */ 1402 ng_rmnode(node2, NULL, NULL, 0); 1403 return (error); 1404 } 1405 1406 if ((error = ng_add_hook(node2, name2, &hook2))) { 1407 ng_rmnode(node2, NULL, NULL, 0); 1408 ng_destroy_hook(hook1); 1409 NG_HOOK_UNREF(hook1); 1410 return (error); 1411 } 1412 1413 /* 1414 * Actually link the two hooks together. 1415 */ 1416 hook1->hk_peer = hook2; 1417 hook2->hk_peer = hook1; 1418 1419 /* Each hook is referenced by the other */ 1420 NG_HOOK_REF(hook1); 1421 NG_HOOK_REF(hook2); 1422 1423 /* Give each node the opportunity to veto the pending connection */ 1424 if (hook1->hk_node->nd_type->connect) { 1425 error = (*hook1->hk_node->nd_type->connect) (hook1); 1426 } 1427 1428 if ((error == 0) && hook2->hk_node->nd_type->connect) { 1429 error = (*hook2->hk_node->nd_type->connect) (hook2); 1430 1431 } 1432 1433 /* 1434 * drop the references we were holding on the two hooks. 1435 */ 1436 if (error) { 1437 ng_destroy_hook(hook2); /* also zaps hook1 */ 1438 ng_rmnode(node2, NULL, NULL, 0); 1439 } else { 1440 /* As a last act, allow the hooks to be used */ 1441 hook1->hk_flags &= ~HK_INVALID; 1442 hook2->hk_flags &= ~HK_INVALID; 1443 } 1444 NG_HOOK_UNREF(hook1); 1445 NG_HOOK_UNREF(hook2); 1446 return (error); 1447 } 1448 1449 /************************************************************************ 1450 Utility routines to send self messages 1451 ************************************************************************/ 1452 1453 /* Shut this node down as soon as everyone is clear of it */ 1454 /* Should add arg "immediatly" to jump the queue */ 1455 int 1456 ng_rmnode_self(node_p node) 1457 { 1458 int error; 1459 1460 if (node == &ng_deadnode) 1461 return (0); 1462 node->nd_flags |= NG_INVALID; 1463 if (node->nd_flags & NG_CLOSING) 1464 return (0); 1465 1466 error = ng_send_fn(node, NULL, &ng_rmnode, NULL, 0); 1467 return (error); 1468 } 1469 1470 static void 1471 ng_rmhook_part2(node_p node, hook_p hook, void *arg1, int arg2) 1472 { 1473 ng_destroy_hook(hook); 1474 return ; 1475 } 1476 1477 int 1478 ng_rmhook_self(hook_p hook) 1479 { 1480 int error; 1481 node_p node = NG_HOOK_NODE(hook); 1482 1483 if (node == &ng_deadnode) 1484 return (0); 1485 1486 error = ng_send_fn(node, hook, &ng_rmhook_part2, NULL, 0); 1487 return (error); 1488 } 1489 1490 /*********************************************************************** 1491 * Parse and verify a string of the form: <NODE:><PATH> 1492 * 1493 * Such a string can refer to a specific node or a specific hook 1494 * on a specific node, depending on how you look at it. In the 1495 * latter case, the PATH component must not end in a dot. 1496 * 1497 * Both <NODE:> and <PATH> are optional. The <PATH> is a string 1498 * of hook names separated by dots. This breaks out the original 1499 * string, setting *nodep to "NODE" (or NULL if none) and *pathp 1500 * to "PATH" (or NULL if degenerate). Also, *hookp will point to 1501 * the final hook component of <PATH>, if any, otherwise NULL. 1502 * 1503 * This returns -1 if the path is malformed. The char ** are optional. 1504 ***********************************************************************/ 1505 int 1506 ng_path_parse(char *addr, char **nodep, char **pathp, char **hookp) 1507 { 1508 char *node, *path, *hook; 1509 int k; 1510 1511 /* 1512 * Extract absolute NODE, if any 1513 */ 1514 for (path = addr; *path && *path != ':'; path++); 1515 if (*path) { 1516 node = addr; /* Here's the NODE */ 1517 *path++ = '\0'; /* Here's the PATH */ 1518 1519 /* Node name must not be empty */ 1520 if (!*node) 1521 return -1; 1522 1523 /* A name of "." is OK; otherwise '.' not allowed */ 1524 if (strcmp(node, ".") != 0) { 1525 for (k = 0; node[k]; k++) 1526 if (node[k] == '.') 1527 return -1; 1528 } 1529 } else { 1530 node = NULL; /* No absolute NODE */ 1531 path = addr; /* Here's the PATH */ 1532 } 1533 1534 /* Snoop for illegal characters in PATH */ 1535 for (k = 0; path[k]; k++) 1536 if (path[k] == ':') 1537 return -1; 1538 1539 /* Check for no repeated dots in PATH */ 1540 for (k = 0; path[k]; k++) 1541 if (path[k] == '.' && path[k + 1] == '.') 1542 return -1; 1543 1544 /* Remove extra (degenerate) dots from beginning or end of PATH */ 1545 if (path[0] == '.') 1546 path++; 1547 if (*path && path[strlen(path) - 1] == '.') 1548 path[strlen(path) - 1] = 0; 1549 1550 /* If PATH has a dot, then we're not talking about a hook */ 1551 if (*path) { 1552 for (hook = path, k = 0; path[k]; k++) 1553 if (path[k] == '.') { 1554 hook = NULL; 1555 break; 1556 } 1557 } else 1558 path = hook = NULL; 1559 1560 /* Done */ 1561 if (nodep) 1562 *nodep = node; 1563 if (pathp) 1564 *pathp = path; 1565 if (hookp) 1566 *hookp = hook; 1567 return (0); 1568 } 1569 1570 /* 1571 * Given a path, which may be absolute or relative, and a starting node, 1572 * return the destination node. 1573 */ 1574 int 1575 ng_path2noderef(node_p here, const char *address, 1576 node_p *destp, hook_p *lasthook) 1577 { 1578 char fullpath[NG_PATHSIZ]; 1579 char *nodename, *path, pbuf[2]; 1580 node_p node, oldnode; 1581 char *cp; 1582 hook_p hook = NULL; 1583 1584 /* Initialize */ 1585 if (destp == NULL) { 1586 TRAP_ERROR(); 1587 return EINVAL; 1588 } 1589 *destp = NULL; 1590 1591 /* Make a writable copy of address for ng_path_parse() */ 1592 strncpy(fullpath, address, sizeof(fullpath) - 1); 1593 fullpath[sizeof(fullpath) - 1] = '\0'; 1594 1595 /* Parse out node and sequence of hooks */ 1596 if (ng_path_parse(fullpath, &nodename, &path, NULL) < 0) { 1597 TRAP_ERROR(); 1598 return EINVAL; 1599 } 1600 if (path == NULL) { 1601 pbuf[0] = '.'; /* Needs to be writable */ 1602 pbuf[1] = '\0'; 1603 path = pbuf; 1604 } 1605 1606 /* 1607 * For an absolute address, jump to the starting node. 1608 * Note that this holds a reference on the node for us. 1609 * Don't forget to drop the reference if we don't need it. 1610 */ 1611 if (nodename) { 1612 node = ng_name2noderef(here, nodename); 1613 if (node == NULL) { 1614 TRAP_ERROR(); 1615 return (ENOENT); 1616 } 1617 } else { 1618 if (here == NULL) { 1619 TRAP_ERROR(); 1620 return (EINVAL); 1621 } 1622 node = here; 1623 NG_NODE_REF(node); 1624 } 1625 1626 /* 1627 * Now follow the sequence of hooks 1628 * XXX 1629 * We actually cannot guarantee that the sequence 1630 * is not being demolished as we crawl along it 1631 * without extra-ordinary locking etc. 1632 * So this is a bit dodgy to say the least. 1633 * We can probably hold up some things by holding 1634 * the nodelist mutex for the time of this 1635 * crawl if we wanted.. At least that way we wouldn't have to 1636 * worry about the nodes dissappearing, but the hooks would still 1637 * be a problem. 1638 */ 1639 for (cp = path; node != NULL && *cp != '\0'; ) { 1640 char *segment; 1641 1642 /* 1643 * Break out the next path segment. Replace the dot we just 1644 * found with a NUL; "cp" points to the next segment (or the 1645 * NUL at the end). 1646 */ 1647 for (segment = cp; *cp != '\0'; cp++) { 1648 if (*cp == '.') { 1649 *cp++ = '\0'; 1650 break; 1651 } 1652 } 1653 1654 /* Empty segment */ 1655 if (*segment == '\0') 1656 continue; 1657 1658 /* We have a segment, so look for a hook by that name */ 1659 hook = ng_findhook(node, segment); 1660 1661 /* Can't get there from here... */ 1662 if (hook == NULL 1663 || NG_HOOK_PEER(hook) == NULL 1664 || NG_HOOK_NOT_VALID(hook) 1665 || NG_HOOK_NOT_VALID(NG_HOOK_PEER(hook))) { 1666 TRAP_ERROR(); 1667 NG_NODE_UNREF(node); 1668 #if 0 1669 printf("hooknotvalid %s %s %d %d %d %d ", 1670 path, 1671 segment, 1672 hook == NULL, 1673 NG_HOOK_PEER(hook) == NULL, 1674 NG_HOOK_NOT_VALID(hook), 1675 NG_HOOK_NOT_VALID(NG_HOOK_PEER(hook))); 1676 #endif 1677 return (ENOENT); 1678 } 1679 1680 /* 1681 * Hop on over to the next node 1682 * XXX 1683 * Big race conditions here as hooks and nodes go away 1684 * *** Idea.. store an ng_ID_t in each hook and use that 1685 * instead of the direct hook in this crawl? 1686 */ 1687 oldnode = node; 1688 if ((node = NG_PEER_NODE(hook))) 1689 NG_NODE_REF(node); /* XXX RACE */ 1690 NG_NODE_UNREF(oldnode); /* XXX another race */ 1691 if (NG_NODE_NOT_VALID(node)) { 1692 NG_NODE_UNREF(node); /* XXX more races */ 1693 node = NULL; 1694 } 1695 } 1696 1697 /* If node somehow missing, fail here (probably this is not needed) */ 1698 if (node == NULL) { 1699 TRAP_ERROR(); 1700 return (ENXIO); 1701 } 1702 1703 /* Done */ 1704 *destp = node; 1705 if (lasthook != NULL) 1706 *lasthook = (hook ? NG_HOOK_PEER(hook) : NULL); 1707 return (0); 1708 } 1709 1710 /***************************************************************\ 1711 * Input queue handling. 1712 * All activities are submitted to the node via the input queue 1713 * which implements a multiple-reader/single-writer gate. 1714 * Items which cannot be handled immeditly are queued. 1715 * 1716 * read-write queue locking inline functions * 1717 \***************************************************************/ 1718 1719 static __inline item_p ng_dequeue(struct ng_queue * ngq); 1720 static __inline item_p ng_acquire_read(struct ng_queue * ngq, 1721 item_p item); 1722 static __inline item_p ng_acquire_write(struct ng_queue * ngq, 1723 item_p item); 1724 static __inline void ng_leave_read(struct ng_queue * ngq); 1725 static __inline void ng_leave_write(struct ng_queue * ngq); 1726 static __inline void ng_queue_rw(struct ng_queue * ngq, 1727 item_p item, int rw); 1728 1729 /* 1730 * Definition of the bits fields in the ng_queue flag word. 1731 * Defined here rather than in netgraph.h because no-one should fiddle 1732 * with them. 1733 * 1734 * The ordering here may be important! don't shuffle these. 1735 */ 1736 /*- 1737 Safety Barrier--------+ (adjustable to suit taste) (not used yet) 1738 | 1739 V 1740 +-------+-------+-------+-------+-------+-------+-------+-------+ 1741 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1742 | |A|c|t|i|v|e| |R|e|a|d|e|r| |C|o|u|n|t| | | | | | | | | |R|A|W| 1743 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |P|W|P| 1744 +-------+-------+-------+-------+-------+-------+-------+-------+ 1745 \___________________________ ____________________________/ | | | 1746 V | | | 1747 [active reader count] | | | 1748 | | | 1749 Read Pending ------------------------------------+ | | 1750 | | 1751 Active Writer -------------------------------------+ | 1752 | 1753 Write Pending ---------------------------------------+ 1754 1755 1756 */ 1757 #define WRITE_PENDING 0x00000001 1758 #define WRITER_ACTIVE 0x00000002 1759 #define READ_PENDING 0x00000004 1760 #define READER_INCREMENT 0x00000008 1761 #define READER_MASK 0xfffffff0 /* Not valid if WRITER_ACTIVE is set */ 1762 #define SAFETY_BARRIER 0x00100000 /* 64K items queued should be enough */ 1763 1764 /* Defines of more elaborate states on the queue */ 1765 /* Mask of bits a read cares about */ 1766 #define NGQ_RMASK (WRITE_PENDING|WRITER_ACTIVE|READ_PENDING) 1767 1768 /* Mask of bits a write cares about */ 1769 #define NGQ_WMASK (NGQ_RMASK|READER_MASK) 1770 1771 /* tests to decide if we could get a read or write off the queue */ 1772 #define CAN_GET_READ(flag) ((flag & NGQ_RMASK) == READ_PENDING) 1773 #define CAN_GET_WRITE(flag) ((flag & NGQ_WMASK) == WRITE_PENDING) 1774 1775 /* Is there a chance of getting ANY work off the queue? */ 1776 #define CAN_GET_WORK(flag) (CAN_GET_READ(flag) || CAN_GET_WRITE(flag)) 1777 1778 /* 1779 * Taking into account the current state of the queue and node, possibly take 1780 * the next entry off the queue and return it. Return NULL if there was 1781 * nothing we could return, either because there really was nothing there, or 1782 * because the node was in a state where it cannot yet process the next item 1783 * on the queue. 1784 * 1785 * This MUST MUST MUST be called with the mutex held. 1786 */ 1787 static __inline item_p 1788 ng_dequeue(struct ng_queue *ngq) 1789 { 1790 item_p item; 1791 u_int add_arg; 1792 1793 if (CAN_GET_READ(ngq->q_flags)) { 1794 /* 1795 * Head of queue is a reader and we have no write active. 1796 * We don't care how many readers are already active. 1797 * Adjust the flags for the item we are about to dequeue. 1798 * Add the correct increment for the reader count as well. 1799 */ 1800 add_arg = (READER_INCREMENT - READ_PENDING); 1801 } else if (CAN_GET_WRITE(ngq->q_flags)) { 1802 /* 1803 * There is a pending write, no readers and no active writer. 1804 * This means we can go ahead with the pending writer. Note 1805 * the fact that we now have a writer, ready for when we take 1806 * it off the queue. 1807 * 1808 * We don't need to worry about a possible collision with the 1809 * fasttrack reader. 1810 * 1811 * The fasttrack thread may take a long time to discover that we 1812 * are running so we would have an inconsistent state in the 1813 * flags for a while. Since we ignore the reader count 1814 * entirely when the WRITER_ACTIVE flag is set, this should 1815 * not matter (in fact it is defined that way). If it tests 1816 * the flag before this operation, the WRITE_PENDING flag 1817 * will make it fail, and if it tests it later, the 1818 * WRITER_ACTIVE flag will do the same. If it is SO slow that 1819 * we have actually completed the operation, and neither flag 1820 * is set (nor the READ_PENDING) by the time that it tests 1821 * the flags, then it is actually ok for it to continue. If 1822 * it completes and we've finished and the read pending is 1823 * set it still fails. 1824 * 1825 * So we can just ignore it, as long as we can ensure that the 1826 * transition from WRITE_PENDING state to the WRITER_ACTIVE 1827 * state is atomic. 1828 * 1829 * After failing, first it will be held back by the mutex, then 1830 * when it can proceed, it will queue its request, then it 1831 * would arrive at this function. Usually it will have to 1832 * leave empty handed because the ACTIVE WRITER bit will be 1833 * set. 1834 * 1835 * Adjust the flags for the item we are about to dequeue 1836 * and for the new active writer. 1837 */ 1838 add_arg = (WRITER_ACTIVE - WRITE_PENDING); 1839 /* 1840 * We want to write "active writer, no readers " Now go make 1841 * it true. In fact there may be a number in the readers 1842 * count but we know it is not true and will be fixed soon. 1843 * We will fix the flags for the next pending entry in a 1844 * moment. 1845 */ 1846 } else { 1847 /* 1848 * We can't dequeue anything.. return and say so. Probably we 1849 * have a write pending and the readers count is non zero. If 1850 * we got here because a reader hit us just at the wrong 1851 * moment with the fasttrack code, and put us in a strange 1852 * state, then it will be through in just a moment, (as soon 1853 * as we release the mutex) and keep things moving. 1854 * Make sure we remove ourselves from the work queue. 1855 */ 1856 ng_worklist_remove(ngq->q_node); 1857 return (0); 1858 } 1859 1860 /* 1861 * Now we dequeue the request (whatever it may be) and correct the 1862 * pending flags and the next and last pointers. 1863 */ 1864 item = ngq->queue; 1865 ngq->queue = item->el_next; 1866 if (ngq->last == &(item->el_next)) { 1867 /* 1868 * that was the last entry in the queue so set the 'last 1869 * pointer up correctly and make sure the pending flags are 1870 * clear. 1871 */ 1872 ngq->last = &(ngq->queue); 1873 /* 1874 * Whatever flag was set will be cleared and 1875 * the new acive field will be set by the add as well, 1876 * so we don't need to change add_arg. 1877 * But we know we don't need to be on the work list. 1878 */ 1879 atomic_add_long(&ngq->q_flags, add_arg); 1880 ng_worklist_remove(ngq->q_node); 1881 } else { 1882 /* 1883 * Since there is something on the queue, note what it is 1884 * in the flags word. 1885 */ 1886 if ((ngq->queue->el_flags & NGQF_RW) == NGQF_READER) { 1887 add_arg += READ_PENDING; 1888 } else { 1889 add_arg += WRITE_PENDING; 1890 } 1891 atomic_add_long(&ngq->q_flags, add_arg); 1892 /* 1893 * If we see more doable work, make sure we are 1894 * on the work queue. 1895 */ 1896 if (CAN_GET_WORK(ngq->q_flags)) { 1897 ng_setisr(ngq->q_node); 1898 } 1899 } 1900 /* 1901 * We have successfully cleared the old pending flag, set the new one 1902 * if it is needed, and incremented the appropriate active field. 1903 * (all in one atomic addition.. ) 1904 */ 1905 return (item); 1906 } 1907 1908 /* 1909 * Queue a packet to be picked up by someone else. 1910 * We really don't care who, but we can't or don't want to hang around 1911 * to process it ourselves. We are probably an interrupt routine.. 1912 * 1 = writer, 0 = reader 1913 */ 1914 #define NGQRW_R 0 1915 #define NGQRW_W 1 1916 static __inline void 1917 ng_queue_rw(struct ng_queue * ngq, item_p item, int rw) 1918 { 1919 item->el_next = NULL; /* maybe not needed */ 1920 *ngq->last = item; 1921 /* 1922 * If it was the first item in the queue then we need to 1923 * set the last pointer and the type flags. 1924 */ 1925 if (ngq->last == &(ngq->queue)) { 1926 /* 1927 * When called with constants for rw, the optimiser will 1928 * remove the unneeded branch below. 1929 */ 1930 if (rw == NGQRW_W) { 1931 atomic_add_long(&ngq->q_flags, WRITE_PENDING); 1932 } else { 1933 atomic_add_long(&ngq->q_flags, READ_PENDING); 1934 } 1935 } 1936 ngq->last = &(item->el_next); 1937 } 1938 1939 1940 /* 1941 * This function 'cheats' in that it first tries to 'grab' the use of the 1942 * node, without going through the mutex. We can do this becasue of the 1943 * semantics of the lock. The semantics include a clause that says that the 1944 * value of the readers count is invalid if the WRITER_ACTIVE flag is set. It 1945 * also says that the WRITER_ACTIVE flag cannot be set if the readers count 1946 * is not zero. Note that this talks about what is valid to SET the 1947 * WRITER_ACTIVE flag, because from the moment it is set, the value if the 1948 * reader count is immaterial, and not valid. The two 'pending' flags have a 1949 * similar effect, in that If they are orthogonal to the two active fields in 1950 * how they are set, but if either is set, the attempted 'grab' need to be 1951 * backed out because there is earlier work, and we maintain ordering in the 1952 * queue. The result of this is that the reader request can try obtain use of 1953 * the node with only a single atomic addition, and without any of the mutex 1954 * overhead. If this fails the operation degenerates to the same as for other 1955 * cases. 1956 * 1957 */ 1958 static __inline item_p 1959 ng_acquire_read(struct ng_queue *ngq, item_p item) 1960 { 1961 1962 /* ######### Hack alert ######### */ 1963 atomic_add_long(&ngq->q_flags, READER_INCREMENT); 1964 if ((ngq->q_flags & NGQ_RMASK) == 0) { 1965 /* Successfully grabbed node */ 1966 return (item); 1967 } 1968 /* undo the damage if we didn't succeed */ 1969 atomic_subtract_long(&ngq->q_flags, READER_INCREMENT); 1970 1971 /* ######### End Hack alert ######### */ 1972 mtx_lock_spin((&ngq->q_mtx)); 1973 /* 1974 * Try again. Another processor (or interrupt for that matter) may 1975 * have removed the last queued item that was stopping us from 1976 * running, between the previous test, and the moment that we took 1977 * the mutex. (Or maybe a writer completed.) 1978 */ 1979 if ((ngq->q_flags & NGQ_RMASK) == 0) { 1980 atomic_add_long(&ngq->q_flags, READER_INCREMENT); 1981 mtx_unlock_spin((&ngq->q_mtx)); 1982 return (item); 1983 } 1984 1985 /* 1986 * and queue the request for later. 1987 */ 1988 item->el_flags |= NGQF_READER; 1989 ng_queue_rw(ngq, item, NGQRW_R); 1990 1991 /* 1992 * Ok, so that's the item successfully queued for later. So now we 1993 * see if we can dequeue something to run instead. 1994 */ 1995 item = ng_dequeue(ngq); 1996 mtx_unlock_spin(&(ngq->q_mtx)); 1997 return (item); 1998 } 1999 2000 static __inline item_p 2001 ng_acquire_write(struct ng_queue *ngq, item_p item) 2002 { 2003 restart: 2004 mtx_lock_spin(&(ngq->q_mtx)); 2005 /* 2006 * If there are no readers, no writer, and no pending packets, then 2007 * we can just go ahead. In all other situations we need to queue the 2008 * request 2009 */ 2010 if ((ngq->q_flags & NGQ_WMASK) == 0) { 2011 atomic_add_long(&ngq->q_flags, WRITER_ACTIVE); 2012 mtx_unlock_spin((&ngq->q_mtx)); 2013 if (ngq->q_flags & READER_MASK) { 2014 /* Collision with fast-track reader */ 2015 atomic_subtract_long(&ngq->q_flags, WRITER_ACTIVE); 2016 goto restart; 2017 } 2018 return (item); 2019 } 2020 2021 /* 2022 * and queue the request for later. 2023 */ 2024 item->el_flags &= ~NGQF_RW; 2025 ng_queue_rw(ngq, item, NGQRW_W); 2026 2027 /* 2028 * Ok, so that's the item successfully queued for later. So now we 2029 * see if we can dequeue something to run instead. 2030 */ 2031 item = ng_dequeue(ngq); 2032 mtx_unlock_spin(&(ngq->q_mtx)); 2033 return (item); 2034 } 2035 2036 static __inline void 2037 ng_leave_read(struct ng_queue *ngq) 2038 { 2039 atomic_subtract_long(&ngq->q_flags, READER_INCREMENT); 2040 } 2041 2042 static __inline void 2043 ng_leave_write(struct ng_queue *ngq) 2044 { 2045 atomic_subtract_long(&ngq->q_flags, WRITER_ACTIVE); 2046 } 2047 2048 static void 2049 ng_flush_input_queue(struct ng_queue * ngq) 2050 { 2051 item_p item; 2052 u_int add_arg; 2053 mtx_lock_spin(&ngq->q_mtx); 2054 for (;;) { 2055 /* Now take a look at what's on the queue */ 2056 if (ngq->q_flags & READ_PENDING) { 2057 add_arg = -READ_PENDING; 2058 } else if (ngq->q_flags & WRITE_PENDING) { 2059 add_arg = -WRITE_PENDING; 2060 } else { 2061 break; 2062 } 2063 2064 item = ngq->queue; 2065 ngq->queue = item->el_next; 2066 if (ngq->last == &(item->el_next)) { 2067 ngq->last = &(ngq->queue); 2068 } else { 2069 if ((ngq->queue->el_flags & NGQF_RW) == NGQF_READER) { 2070 add_arg += READ_PENDING; 2071 } else { 2072 add_arg += WRITE_PENDING; 2073 } 2074 } 2075 atomic_add_long(&ngq->q_flags, add_arg); 2076 2077 mtx_lock_spin(&ngq->q_mtx); 2078 NG_FREE_ITEM(item); 2079 mtx_unlock_spin(&ngq->q_mtx); 2080 } 2081 /* 2082 * Take us off the work queue if we are there. 2083 * We definatly have no work to be done. 2084 */ 2085 ng_worklist_remove(ngq->q_node); 2086 mtx_unlock_spin(&ngq->q_mtx); 2087 } 2088 2089 /*********************************************************************** 2090 * Externally visible method for sending or queueing messages or data. 2091 ***********************************************************************/ 2092 2093 /* 2094 * The module code should have filled out the item correctly by this stage: 2095 * Common: 2096 * reference to destination node. 2097 * Reference to destination rcv hook if relevant. 2098 * Data: 2099 * pointer to mbuf 2100 * Control_Message: 2101 * pointer to msg. 2102 * ID of original sender node. (return address) 2103 * Function: 2104 * Function pointer 2105 * void * argument 2106 * integer argument 2107 * 2108 * The nodes have several routines and macros to help with this task: 2109 */ 2110 2111 int 2112 ng_snd_item(item_p item, int queue) 2113 { 2114 hook_p hook = NGI_HOOK(item); 2115 node_p node = NGI_NODE(item); 2116 int rw; 2117 int error = 0, ierror; 2118 item_p oitem; 2119 struct ng_queue * ngq = &node->nd_input_queue; 2120 2121 #ifdef NETGRAPH_DEBUG 2122 _ngi_check(item, __FILE__, __LINE__); 2123 #endif 2124 2125 if (item == NULL) { 2126 TRAP_ERROR(); 2127 return (EINVAL); /* failed to get queue element */ 2128 } 2129 if (node == NULL) { 2130 NG_FREE_ITEM(item); 2131 TRAP_ERROR(); 2132 return (EINVAL); /* No address */ 2133 } 2134 switch(item->el_flags & NGQF_TYPE) { 2135 case NGQF_DATA: 2136 /* 2137 * DATA MESSAGE 2138 * Delivered to a node via a non-optional hook. 2139 * Both should be present in the item even though 2140 * the node is derivable from the hook. 2141 * References are held on both by the item. 2142 */ 2143 2144 /* Protect nodes from sending NULL pointers 2145 * to each other 2146 */ 2147 if (NGI_M(item) == NULL) 2148 return (EINVAL); 2149 2150 CHECK_DATA_MBUF(NGI_M(item)); 2151 if (hook == NULL) { 2152 NG_FREE_ITEM(item); 2153 TRAP_ERROR(); 2154 return(EINVAL); 2155 } 2156 if ((NG_HOOK_NOT_VALID(hook)) 2157 || (NG_NODE_NOT_VALID(NG_HOOK_NODE(hook)))) { 2158 NG_FREE_ITEM(item); 2159 return (ENOTCONN); 2160 } 2161 if ((hook->hk_flags & HK_QUEUE)) { 2162 queue = 1; 2163 } 2164 /* By default data is a reader in the locking scheme */ 2165 item->el_flags |= NGQF_READER; 2166 rw = NGQRW_R; 2167 break; 2168 case NGQF_MESG: 2169 /* 2170 * CONTROL MESSAGE 2171 * Delivered to a node. 2172 * Hook is optional. 2173 * References are held by the item on the node and 2174 * the hook if it is present. 2175 */ 2176 if (hook && (hook->hk_flags & HK_QUEUE)) { 2177 queue = 1; 2178 } 2179 /* Data messages count as writers unles explicitly exempted */ 2180 if (NGI_MSG(item)->header.cmd & NGM_READONLY) { 2181 item->el_flags |= NGQF_READER; 2182 rw = NGQRW_R; 2183 } else { 2184 item->el_flags &= ~NGQF_RW; 2185 rw = NGQRW_W; 2186 } 2187 break; 2188 case NGQF_FN: 2189 item->el_flags &= ~NGQF_RW; 2190 rw = NGQRW_W; 2191 break; 2192 default: 2193 NG_FREE_ITEM(item); 2194 TRAP_ERROR(); 2195 return (EINVAL); 2196 } 2197 /* 2198 * If the node specifies single threading, force writer semantics 2199 * Similarly the node may say one hook always produces writers. 2200 * These are over-rides. 2201 */ 2202 if ((node->nd_flags & NG_FORCE_WRITER) 2203 || (hook && (hook->hk_flags & HK_FORCE_WRITER))) { 2204 rw = NGQRW_W; 2205 item->el_flags &= ~NGQF_READER; 2206 } 2207 if (queue) { 2208 /* Put it on the queue for that node*/ 2209 #ifdef NETGRAPH_DEBUG 2210 _ngi_check(item, __FILE__, __LINE__); 2211 #endif 2212 mtx_lock_spin(&(ngq->q_mtx)); 2213 ng_queue_rw(ngq, item, rw); 2214 /* 2215 * If there are active elements then we can rely on 2216 * them. if not we should not rely on another packet 2217 * coming here by another path, 2218 * so it is best to put us in the netisr list. 2219 * We can take the worklist lock with the node locked 2220 * BUT NOT THE REVERSE! 2221 */ 2222 if (CAN_GET_WORK(ngq->q_flags)) { 2223 ng_setisr(node); 2224 } 2225 mtx_unlock_spin(&(ngq->q_mtx)); 2226 return (0); 2227 } 2228 /* 2229 * Take a queue item and a node and see if we can apply the item to 2230 * the node. We may end up getting a different item to apply instead. 2231 * Will allow for a piggyback reply only in the case where 2232 * there is no queueing. 2233 */ 2234 2235 oitem = item; 2236 /* 2237 * We already decided how we will be queueud or treated. 2238 * Try get the appropriate operating permission. 2239 */ 2240 if (rw == NGQRW_R) { 2241 item = ng_acquire_read(ngq, item); 2242 } else { 2243 item = ng_acquire_write(ngq, item); 2244 } 2245 2246 /* 2247 * May have come back with a different item. 2248 * or maybe none at all. The one we started with will 2249 * have been queued in thises cases. 2250 */ 2251 if (item == NULL) { 2252 return (0); 2253 } 2254 2255 #ifdef NETGRAPH_DEBUG 2256 _ngi_check(item, __FILE__, __LINE__); 2257 #endif 2258 /* 2259 * Take over the reference frm the item. 2260 * Hold it until the called function returns. 2261 */ 2262 NGI_GET_NODE(item, node); /* zaps stored node */ 2263 2264 ierror = ng_apply_item(node, item); /* drops r/w lock when done */ 2265 2266 /* only return an error if it was our initial item.. (compat hack) */ 2267 if (oitem == item) { 2268 error = ierror; 2269 } 2270 2271 /* 2272 * If the node goes away when we remove the reference, 2273 * whatever we just did caused it.. whatever we do, DO NOT 2274 * access the node again! 2275 */ 2276 if (NG_NODE_UNREF(node) == 0) { 2277 return (error); 2278 } 2279 2280 /* 2281 * Now we've handled the packet we brought, (or a friend of it) let's 2282 * look for any other packets that may have been queued up. We hold 2283 * no locks, so if someone puts something in the queue after 2284 * we check that it is empty, it is their problem 2285 * to ensure it is processed. If we have the netisr thread cme in here 2286 * while we still say we have stuff to do, we may get a boost 2287 * in SMP systems. :-) 2288 */ 2289 for (;;) { 2290 /* 2291 * dequeue acquires and adjusts the input_queue as it dequeues 2292 * packets. It acquires the rw lock as needed. 2293 */ 2294 mtx_lock_spin(&ngq->q_mtx); 2295 item = ng_dequeue(ngq); /* fixes worklist too*/ 2296 if (!item) { 2297 mtx_unlock_spin(&ngq->q_mtx); 2298 return (error); 2299 } 2300 mtx_unlock_spin(&ngq->q_mtx); 2301 2302 /* 2303 * Take over the reference frm the item. 2304 * Hold it until the called function returns. 2305 */ 2306 2307 NGI_GET_NODE(item, node); /* zaps stored node */ 2308 2309 /* 2310 * We have the appropriate lock, so run the item. 2311 * When finished it will drop the lock accordingly 2312 */ 2313 ierror = ng_apply_item(node, item); 2314 2315 /* 2316 * only return an error if it was our initial 2317 * item.. (compat hack) 2318 */ 2319 if (oitem == item) { 2320 error = ierror; 2321 } 2322 2323 /* 2324 * If the node goes away when we remove the reference, 2325 * whatever we just did caused it.. whatever we do, DO NOT 2326 * access the node again! 2327 */ 2328 if (NG_NODE_UNREF(node) == 0) { 2329 break; 2330 } 2331 } 2332 return (error); 2333 } 2334 2335 /* 2336 * We have an item that was possibly queued somewhere. 2337 * It should contain all the information needed 2338 * to run it on the appropriate node/hook. 2339 */ 2340 static int 2341 ng_apply_item(node_p node, item_p item) 2342 { 2343 hook_p hook; 2344 int was_reader = ((item->el_flags & NGQF_RW)); 2345 int error = 0; 2346 ng_rcvdata_t *rcvdata; 2347 ng_rcvmsg_t *rcvmsg; 2348 2349 NGI_GET_HOOK(item, hook); /* clears stored hook */ 2350 #ifdef NETGRAPH_DEBUG 2351 _ngi_check(item, __FILE__, __LINE__); 2352 #endif 2353 switch (item->el_flags & NGQF_TYPE) { 2354 case NGQF_DATA: 2355 /* 2356 * Check things are still ok as when we were queued. 2357 */ 2358 if ((hook == NULL) 2359 || NG_HOOK_NOT_VALID(hook) 2360 || NG_NODE_NOT_VALID(node) ) { 2361 error = EIO; 2362 NG_FREE_ITEM(item); 2363 break; 2364 } 2365 /* 2366 * If no receive method, just silently drop it. 2367 * Give preference to the hook over-ride method 2368 */ 2369 if ((!(rcvdata = hook->hk_rcvdata)) 2370 && (!(rcvdata = NG_HOOK_NODE(hook)->nd_type->rcvdata))) { 2371 error = 0; 2372 NG_FREE_ITEM(item); 2373 break; 2374 } 2375 error = (*rcvdata)(hook, item); 2376 break; 2377 case NGQF_MESG: 2378 if (hook) { 2379 if (NG_HOOK_NOT_VALID(hook)) { 2380 /* 2381 * The hook has been zapped then we can't 2382 * use it. Immediatly drop its reference. 2383 * The message may not need it. 2384 */ 2385 NG_HOOK_UNREF(hook); 2386 hook = NULL; 2387 } 2388 } 2389 /* 2390 * Similarly, if the node is a zombie there is 2391 * nothing we can do with it, drop everything. 2392 */ 2393 if (NG_NODE_NOT_VALID(node)) { 2394 TRAP_ERROR(); 2395 error = EINVAL; 2396 NG_FREE_ITEM(item); 2397 } else { 2398 /* 2399 * Call the appropriate message handler for the object. 2400 * It is up to the message handler to free the message. 2401 * If it's a generic message, handle it generically, 2402 * otherwise call the type's message handler 2403 * (if it exists) 2404 * XXX (race). Remember that a queued message may 2405 * reference a node or hook that has just been 2406 * invalidated. It will exist as the queue code 2407 * is holding a reference, but.. 2408 */ 2409 2410 struct ng_mesg *msg = NGI_MSG(item); 2411 2412 /* 2413 * check if the generic handler owns it. 2414 */ 2415 if ((msg->header.typecookie == NGM_GENERIC_COOKIE) 2416 && ((msg->header.flags & NGF_RESP) == 0)) { 2417 error = ng_generic_msg(node, item, hook); 2418 break; 2419 } 2420 /* 2421 * Now see if there is a handler (hook or node specific) 2422 * in the target node. If none, silently discard. 2423 */ 2424 if (((!hook) || (!(rcvmsg = hook->hk_rcvmsg))) 2425 && (!(rcvmsg = node->nd_type->rcvmsg))) { 2426 TRAP_ERROR(); 2427 error = 0; 2428 NG_FREE_ITEM(item); 2429 break; 2430 } 2431 error = (*rcvmsg)(node, item, hook); 2432 } 2433 break; 2434 case NGQF_FN: 2435 /* 2436 * We have to implicitly trust the hook, 2437 * as some of these are used for system purposes 2438 * where the hook is invalid. In the case of 2439 * the shutdown message we allow it to hit 2440 * even if the node is invalid. 2441 */ 2442 if ((NG_NODE_NOT_VALID(node)) 2443 && (NGI_FN(item) != &ng_rmnode)) { 2444 TRAP_ERROR(); 2445 error = EINVAL; 2446 break; 2447 } 2448 (*NGI_FN(item))(node, hook, NGI_ARG1(item), NGI_ARG2(item)); 2449 NG_FREE_ITEM(item); 2450 break; 2451 2452 } 2453 /* 2454 * We held references on some of the resources 2455 * that we took from the item. Now that we have 2456 * finished doing everything, drop those references. 2457 */ 2458 if (hook) { 2459 NG_HOOK_UNREF(hook); 2460 } 2461 2462 if (was_reader) { 2463 ng_leave_read(&node->nd_input_queue); 2464 } else { 2465 ng_leave_write(&node->nd_input_queue); 2466 } 2467 return (error); 2468 } 2469 2470 /*********************************************************************** 2471 * Implement the 'generic' control messages 2472 ***********************************************************************/ 2473 static int 2474 ng_generic_msg(node_p here, item_p item, hook_p lasthook) 2475 { 2476 int error = 0; 2477 struct ng_mesg *msg; 2478 struct ng_mesg *resp = NULL; 2479 2480 NGI_GET_MSG(item, msg); 2481 if (msg->header.typecookie != NGM_GENERIC_COOKIE) { 2482 TRAP_ERROR(); 2483 error = EINVAL; 2484 goto out; 2485 } 2486 switch (msg->header.cmd) { 2487 case NGM_SHUTDOWN: 2488 ng_rmnode(here, NULL, NULL, 0); 2489 break; 2490 case NGM_MKPEER: 2491 { 2492 struct ngm_mkpeer *const mkp = (struct ngm_mkpeer *) msg->data; 2493 2494 if (msg->header.arglen != sizeof(*mkp)) { 2495 TRAP_ERROR(); 2496 error = EINVAL; 2497 break; 2498 } 2499 mkp->type[sizeof(mkp->type) - 1] = '\0'; 2500 mkp->ourhook[sizeof(mkp->ourhook) - 1] = '\0'; 2501 mkp->peerhook[sizeof(mkp->peerhook) - 1] = '\0'; 2502 error = ng_mkpeer(here, mkp->ourhook, mkp->peerhook, mkp->type); 2503 break; 2504 } 2505 case NGM_CONNECT: 2506 { 2507 struct ngm_connect *const con = 2508 (struct ngm_connect *) msg->data; 2509 node_p node2; 2510 2511 if (msg->header.arglen != sizeof(*con)) { 2512 TRAP_ERROR(); 2513 error = EINVAL; 2514 break; 2515 } 2516 con->path[sizeof(con->path) - 1] = '\0'; 2517 con->ourhook[sizeof(con->ourhook) - 1] = '\0'; 2518 con->peerhook[sizeof(con->peerhook) - 1] = '\0'; 2519 /* Don't forget we get a reference.. */ 2520 error = ng_path2noderef(here, con->path, &node2, NULL); 2521 if (error) 2522 break; 2523 error = ng_con_nodes(here, con->ourhook, node2, con->peerhook); 2524 NG_NODE_UNREF(node2); 2525 break; 2526 } 2527 case NGM_NAME: 2528 { 2529 struct ngm_name *const nam = (struct ngm_name *) msg->data; 2530 2531 if (msg->header.arglen != sizeof(*nam)) { 2532 TRAP_ERROR(); 2533 error = EINVAL; 2534 break; 2535 } 2536 nam->name[sizeof(nam->name) - 1] = '\0'; 2537 error = ng_name_node(here, nam->name); 2538 break; 2539 } 2540 case NGM_RMHOOK: 2541 { 2542 struct ngm_rmhook *const rmh = (struct ngm_rmhook *) msg->data; 2543 hook_p hook; 2544 2545 if (msg->header.arglen != sizeof(*rmh)) { 2546 TRAP_ERROR(); 2547 error = EINVAL; 2548 break; 2549 } 2550 rmh->ourhook[sizeof(rmh->ourhook) - 1] = '\0'; 2551 if ((hook = ng_findhook(here, rmh->ourhook)) != NULL) 2552 ng_destroy_hook(hook); 2553 break; 2554 } 2555 case NGM_NODEINFO: 2556 { 2557 struct nodeinfo *ni; 2558 2559 NG_MKRESPONSE(resp, msg, sizeof(*ni), M_NOWAIT); 2560 if (resp == NULL) { 2561 error = ENOMEM; 2562 break; 2563 } 2564 2565 /* Fill in node info */ 2566 ni = (struct nodeinfo *) resp->data; 2567 if (NG_NODE_HAS_NAME(here)) 2568 strcpy(ni->name, NG_NODE_NAME(here)); 2569 strcpy(ni->type, here->nd_type->name); 2570 ni->id = ng_node2ID(here); 2571 ni->hooks = here->nd_numhooks; 2572 break; 2573 } 2574 case NGM_LISTHOOKS: 2575 { 2576 const int nhooks = here->nd_numhooks; 2577 struct hooklist *hl; 2578 struct nodeinfo *ni; 2579 hook_p hook; 2580 2581 /* Get response struct */ 2582 NG_MKRESPONSE(resp, msg, sizeof(*hl) 2583 + (nhooks * sizeof(struct linkinfo)), M_NOWAIT); 2584 if (resp == NULL) { 2585 error = ENOMEM; 2586 break; 2587 } 2588 hl = (struct hooklist *) resp->data; 2589 ni = &hl->nodeinfo; 2590 2591 /* Fill in node info */ 2592 if (NG_NODE_HAS_NAME(here)) 2593 strcpy(ni->name, NG_NODE_NAME(here)); 2594 strcpy(ni->type, here->nd_type->name); 2595 ni->id = ng_node2ID(here); 2596 2597 /* Cycle through the linked list of hooks */ 2598 ni->hooks = 0; 2599 LIST_FOREACH(hook, &here->nd_hooks, hk_hooks) { 2600 struct linkinfo *const link = &hl->link[ni->hooks]; 2601 2602 if (ni->hooks >= nhooks) { 2603 log(LOG_ERR, "%s: number of %s changed\n", 2604 __func__, "hooks"); 2605 break; 2606 } 2607 if (NG_HOOK_NOT_VALID(hook)) 2608 continue; 2609 strcpy(link->ourhook, NG_HOOK_NAME(hook)); 2610 strcpy(link->peerhook, NG_PEER_HOOK_NAME(hook)); 2611 if (NG_PEER_NODE_NAME(hook)[0] != '\0') 2612 strcpy(link->nodeinfo.name, 2613 NG_PEER_NODE_NAME(hook)); 2614 strcpy(link->nodeinfo.type, 2615 NG_PEER_NODE(hook)->nd_type->name); 2616 link->nodeinfo.id = ng_node2ID(NG_PEER_NODE(hook)); 2617 link->nodeinfo.hooks = NG_PEER_NODE(hook)->nd_numhooks; 2618 ni->hooks++; 2619 } 2620 break; 2621 } 2622 2623 case NGM_LISTNAMES: 2624 case NGM_LISTNODES: 2625 { 2626 const int unnamed = (msg->header.cmd == NGM_LISTNODES); 2627 struct namelist *nl; 2628 node_p node; 2629 int num = 0; 2630 2631 mtx_lock(&ng_nodelist_mtx); 2632 /* Count number of nodes */ 2633 LIST_FOREACH(node, &ng_nodelist, nd_nodes) { 2634 if (NG_NODE_IS_VALID(node) 2635 && (unnamed || NG_NODE_HAS_NAME(node))) { 2636 num++; 2637 } 2638 } 2639 mtx_unlock(&ng_nodelist_mtx); 2640 2641 /* Get response struct */ 2642 NG_MKRESPONSE(resp, msg, sizeof(*nl) 2643 + (num * sizeof(struct nodeinfo)), M_NOWAIT); 2644 if (resp == NULL) { 2645 error = ENOMEM; 2646 break; 2647 } 2648 nl = (struct namelist *) resp->data; 2649 2650 /* Cycle through the linked list of nodes */ 2651 nl->numnames = 0; 2652 mtx_lock(&ng_nodelist_mtx); 2653 LIST_FOREACH(node, &ng_nodelist, nd_nodes) { 2654 struct nodeinfo *const np = &nl->nodeinfo[nl->numnames]; 2655 2656 if (nl->numnames >= num) { 2657 log(LOG_ERR, "%s: number of %s changed\n", 2658 __func__, "nodes"); 2659 break; 2660 } 2661 if (NG_NODE_NOT_VALID(node)) 2662 continue; 2663 if (!unnamed && (! NG_NODE_HAS_NAME(node))) 2664 continue; 2665 if (NG_NODE_HAS_NAME(node)) 2666 strcpy(np->name, NG_NODE_NAME(node)); 2667 strcpy(np->type, node->nd_type->name); 2668 np->id = ng_node2ID(node); 2669 np->hooks = node->nd_numhooks; 2670 nl->numnames++; 2671 } 2672 mtx_unlock(&ng_nodelist_mtx); 2673 break; 2674 } 2675 2676 case NGM_LISTTYPES: 2677 { 2678 struct typelist *tl; 2679 struct ng_type *type; 2680 int num = 0; 2681 2682 mtx_lock(&ng_typelist_mtx); 2683 /* Count number of types */ 2684 LIST_FOREACH(type, &ng_typelist, types) { 2685 num++; 2686 } 2687 mtx_unlock(&ng_typelist_mtx); 2688 2689 /* Get response struct */ 2690 NG_MKRESPONSE(resp, msg, sizeof(*tl) 2691 + (num * sizeof(struct typeinfo)), M_NOWAIT); 2692 if (resp == NULL) { 2693 error = ENOMEM; 2694 break; 2695 } 2696 tl = (struct typelist *) resp->data; 2697 2698 /* Cycle through the linked list of types */ 2699 tl->numtypes = 0; 2700 mtx_lock(&ng_typelist_mtx); 2701 LIST_FOREACH(type, &ng_typelist, types) { 2702 struct typeinfo *const tp = &tl->typeinfo[tl->numtypes]; 2703 2704 if (tl->numtypes >= num) { 2705 log(LOG_ERR, "%s: number of %s changed\n", 2706 __func__, "types"); 2707 break; 2708 } 2709 strcpy(tp->type_name, type->name); 2710 tp->numnodes = type->refs - 1; /* don't count list */ 2711 tl->numtypes++; 2712 } 2713 mtx_unlock(&ng_typelist_mtx); 2714 break; 2715 } 2716 2717 case NGM_BINARY2ASCII: 2718 { 2719 int bufSize = 20 * 1024; /* XXX hard coded constant */ 2720 const struct ng_parse_type *argstype; 2721 const struct ng_cmdlist *c; 2722 struct ng_mesg *binary, *ascii; 2723 2724 /* Data area must contain a valid netgraph message */ 2725 binary = (struct ng_mesg *)msg->data; 2726 if (msg->header.arglen < sizeof(struct ng_mesg) 2727 || (msg->header.arglen - sizeof(struct ng_mesg) 2728 < binary->header.arglen)) { 2729 TRAP_ERROR(); 2730 error = EINVAL; 2731 break; 2732 } 2733 2734 /* Get a response message with lots of room */ 2735 NG_MKRESPONSE(resp, msg, sizeof(*ascii) + bufSize, M_NOWAIT); 2736 if (resp == NULL) { 2737 error = ENOMEM; 2738 break; 2739 } 2740 ascii = (struct ng_mesg *)resp->data; 2741 2742 /* Copy binary message header to response message payload */ 2743 bcopy(binary, ascii, sizeof(*binary)); 2744 2745 /* Find command by matching typecookie and command number */ 2746 for (c = here->nd_type->cmdlist; 2747 c != NULL && c->name != NULL; c++) { 2748 if (binary->header.typecookie == c->cookie 2749 && binary->header.cmd == c->cmd) 2750 break; 2751 } 2752 if (c == NULL || c->name == NULL) { 2753 for (c = ng_generic_cmds; c->name != NULL; c++) { 2754 if (binary->header.typecookie == c->cookie 2755 && binary->header.cmd == c->cmd) 2756 break; 2757 } 2758 if (c->name == NULL) { 2759 NG_FREE_MSG(resp); 2760 error = ENOSYS; 2761 break; 2762 } 2763 } 2764 2765 /* Convert command name to ASCII */ 2766 snprintf(ascii->header.cmdstr, sizeof(ascii->header.cmdstr), 2767 "%s", c->name); 2768 2769 /* Convert command arguments to ASCII */ 2770 argstype = (binary->header.flags & NGF_RESP) ? 2771 c->respType : c->mesgType; 2772 if (argstype == NULL) { 2773 *ascii->data = '\0'; 2774 } else { 2775 if ((error = ng_unparse(argstype, 2776 (u_char *)binary->data, 2777 ascii->data, bufSize)) != 0) { 2778 NG_FREE_MSG(resp); 2779 break; 2780 } 2781 } 2782 2783 /* Return the result as struct ng_mesg plus ASCII string */ 2784 bufSize = strlen(ascii->data) + 1; 2785 ascii->header.arglen = bufSize; 2786 resp->header.arglen = sizeof(*ascii) + bufSize; 2787 break; 2788 } 2789 2790 case NGM_ASCII2BINARY: 2791 { 2792 int bufSize = 2000; /* XXX hard coded constant */ 2793 const struct ng_cmdlist *c; 2794 const struct ng_parse_type *argstype; 2795 struct ng_mesg *ascii, *binary; 2796 int off = 0; 2797 2798 /* Data area must contain at least a struct ng_mesg + '\0' */ 2799 ascii = (struct ng_mesg *)msg->data; 2800 if ((msg->header.arglen < sizeof(*ascii) + 1) 2801 || (ascii->header.arglen < 1) 2802 || (msg->header.arglen 2803 < sizeof(*ascii) + ascii->header.arglen)) { 2804 TRAP_ERROR(); 2805 error = EINVAL; 2806 break; 2807 } 2808 ascii->data[ascii->header.arglen - 1] = '\0'; 2809 2810 /* Get a response message with lots of room */ 2811 NG_MKRESPONSE(resp, msg, sizeof(*binary) + bufSize, M_NOWAIT); 2812 if (resp == NULL) { 2813 error = ENOMEM; 2814 break; 2815 } 2816 binary = (struct ng_mesg *)resp->data; 2817 2818 /* Copy ASCII message header to response message payload */ 2819 bcopy(ascii, binary, sizeof(*ascii)); 2820 2821 /* Find command by matching ASCII command string */ 2822 for (c = here->nd_type->cmdlist; 2823 c != NULL && c->name != NULL; c++) { 2824 if (strcmp(ascii->header.cmdstr, c->name) == 0) 2825 break; 2826 } 2827 if (c == NULL || c->name == NULL) { 2828 for (c = ng_generic_cmds; c->name != NULL; c++) { 2829 if (strcmp(ascii->header.cmdstr, c->name) == 0) 2830 break; 2831 } 2832 if (c->name == NULL) { 2833 NG_FREE_MSG(resp); 2834 error = ENOSYS; 2835 break; 2836 } 2837 } 2838 2839 /* Convert command name to binary */ 2840 binary->header.cmd = c->cmd; 2841 binary->header.typecookie = c->cookie; 2842 2843 /* Convert command arguments to binary */ 2844 argstype = (binary->header.flags & NGF_RESP) ? 2845 c->respType : c->mesgType; 2846 if (argstype == NULL) { 2847 bufSize = 0; 2848 } else { 2849 if ((error = ng_parse(argstype, ascii->data, 2850 &off, (u_char *)binary->data, &bufSize)) != 0) { 2851 NG_FREE_MSG(resp); 2852 break; 2853 } 2854 } 2855 2856 /* Return the result */ 2857 binary->header.arglen = bufSize; 2858 resp->header.arglen = sizeof(*binary) + bufSize; 2859 break; 2860 } 2861 2862 case NGM_TEXT_CONFIG: 2863 case NGM_TEXT_STATUS: 2864 /* 2865 * This one is tricky as it passes the command down to the 2866 * actual node, even though it is a generic type command. 2867 * This means we must assume that the item/msg is already freed 2868 * when control passes back to us. 2869 */ 2870 if (here->nd_type->rcvmsg != NULL) { 2871 NGI_MSG(item) = msg; /* put it back as we found it */ 2872 return((*here->nd_type->rcvmsg)(here, item, lasthook)); 2873 } 2874 /* Fall through if rcvmsg not supported */ 2875 default: 2876 TRAP_ERROR(); 2877 error = EINVAL; 2878 } 2879 /* 2880 * Sometimes a generic message may be statically allocated 2881 * to avoid problems with allocating when in tight memeory situations. 2882 * Don't free it if it is so. 2883 * I break them appart here, because erros may cause a free if the item 2884 * in which case we'd be doing it twice. 2885 * they are kept together above, to simplify freeing. 2886 */ 2887 out: 2888 NG_RESPOND_MSG(error, here, item, resp); 2889 if (msg) 2890 NG_FREE_MSG(msg); 2891 return (error); 2892 } 2893 2894 /************************************************************************ 2895 Module routines 2896 ************************************************************************/ 2897 2898 /* 2899 * Handle the loading/unloading of a netgraph node type module 2900 */ 2901 int 2902 ng_mod_event(module_t mod, int event, void *data) 2903 { 2904 struct ng_type *const type = data; 2905 int s, error = 0; 2906 2907 switch (event) { 2908 case MOD_LOAD: 2909 2910 /* Register new netgraph node type */ 2911 s = splnet(); 2912 if ((error = ng_newtype(type)) != 0) { 2913 splx(s); 2914 break; 2915 } 2916 2917 /* Call type specific code */ 2918 if (type->mod_event != NULL) 2919 if ((error = (*type->mod_event)(mod, event, data))) { 2920 mtx_lock(&ng_typelist_mtx); 2921 type->refs--; /* undo it */ 2922 LIST_REMOVE(type, types); 2923 mtx_unlock(&ng_typelist_mtx); 2924 } 2925 splx(s); 2926 break; 2927 2928 case MOD_UNLOAD: 2929 s = splnet(); 2930 if (type->refs > 1) { /* make sure no nodes exist! */ 2931 error = EBUSY; 2932 } else { 2933 if (type->refs == 0) { 2934 /* failed load, nothing to undo */ 2935 splx(s); 2936 break; 2937 } 2938 if (type->mod_event != NULL) { /* check with type */ 2939 error = (*type->mod_event)(mod, event, data); 2940 if (error != 0) { /* type refuses.. */ 2941 splx(s); 2942 break; 2943 } 2944 } 2945 mtx_lock(&ng_typelist_mtx); 2946 LIST_REMOVE(type, types); 2947 mtx_unlock(&ng_typelist_mtx); 2948 } 2949 splx(s); 2950 break; 2951 2952 default: 2953 if (type->mod_event != NULL) 2954 error = (*type->mod_event)(mod, event, data); 2955 else 2956 error = 0; /* XXX ? */ 2957 break; 2958 } 2959 return (error); 2960 } 2961 2962 /* 2963 * Handle loading and unloading for this code. 2964 * The only thing we need to link into is the NETISR strucure. 2965 */ 2966 static int 2967 ngb_mod_event(module_t mod, int event, void *data) 2968 { 2969 int s, error = 0; 2970 2971 switch (event) { 2972 case MOD_LOAD: 2973 /* Register line discipline */ 2974 mtx_init(&ng_worklist_mtx, "ng_worklist", NULL, MTX_SPIN); 2975 mtx_init(&ng_typelist_mtx, "netgraph types mutex", NULL, 2976 MTX_DEF); 2977 mtx_init(&ng_nodelist_mtx, "netgraph nodelist mutex", NULL, 2978 MTX_DEF); 2979 mtx_init(&ng_idhash_mtx, "netgraph idhash mutex", NULL, 2980 MTX_DEF); 2981 mtx_init(&ngq_mtx, "netgraph free item list mutex", NULL, 2982 MTX_DEF); 2983 s = splimp(); 2984 /* XXX could use NETISR_MPSAFE but need to verify code */ 2985 netisr_register(NETISR_NETGRAPH, (netisr_t *)ngintr, NULL, 0); 2986 splx(s); 2987 break; 2988 case MOD_UNLOAD: 2989 /* You cant unload it because an interface may be using it. */ 2990 error = EBUSY; 2991 break; 2992 default: 2993 error = EOPNOTSUPP; 2994 break; 2995 } 2996 return (error); 2997 } 2998 2999 static moduledata_t netgraph_mod = { 3000 "netgraph", 3001 ngb_mod_event, 3002 (NULL) 3003 }; 3004 DECLARE_MODULE(netgraph, netgraph_mod, SI_SUB_DRIVERS, SI_ORDER_MIDDLE); 3005 SYSCTL_NODE(_net, OID_AUTO, graph, CTLFLAG_RW, 0, "netgraph Family"); 3006 SYSCTL_INT(_net_graph, OID_AUTO, abi_version, CTLFLAG_RD, 0, NG_ABI_VERSION,""); 3007 SYSCTL_INT(_net_graph, OID_AUTO, msg_version, CTLFLAG_RD, 0, NG_VERSION, ""); 3008 3009 /************************************************************************ 3010 Queue element get/free routines 3011 ************************************************************************/ 3012 3013 3014 static int allocated; /* number of items malloc'd */ 3015 3016 static int maxalloc = 128; /* limit the damage of a leak */ 3017 static int ngqfreemax = 64;/* cache at most this many */ 3018 3019 TUNABLE_INT("net.graph.maxalloc", &maxalloc); 3020 SYSCTL_INT(_net_graph, OID_AUTO, maxalloc, CTLFLAG_RDTUN, &maxalloc, 3021 0, "Maximum number of queue items to allocate"); 3022 3023 TUNABLE_INT("net.graph.ngqfreemax", &ngqfreemax); 3024 SYSCTL_INT(_net_graph, OID_AUTO, ngqfreemax, CTLFLAG_RDTUN, &ngqfreemax, 3025 0, "Maximum number of free queue items to cache"); 3026 3027 static const int ngqfreelow = 4; /* try malloc if free < this */ 3028 static volatile int ngqfreesize; /* number of cached entries */ 3029 static volatile item_p ngqfree; /* free ones */ 3030 3031 #ifdef NETGRAPH_DEBUG 3032 static TAILQ_HEAD(, ng_item) ng_itemlist = TAILQ_HEAD_INITIALIZER(ng_itemlist); 3033 #endif 3034 /* 3035 * Get a queue entry 3036 * This is usually called when a packet first enters netgraph. 3037 * By definition, this is usually from an interrupt, or from a user. 3038 * Users are not so important, but try be quick for the times that it's 3039 * an interrupt. 3040 * XXX If reserve is low, we should try to get 2 from malloc as this 3041 * would indicate it often fails. 3042 */ 3043 static item_p 3044 ng_getqblk(void) 3045 { 3046 item_p item = NULL; 3047 3048 /* 3049 * Try get a cached queue block, or else allocate a new one 3050 * If we are less than our reserve, try malloc. If malloc 3051 * fails, then that's what the reserve is for... 3052 * We have our little reserve 3053 * because we use M_NOWAIT for malloc. This just helps us 3054 * avoid dropping packets while not increasing the time 3055 * we take to service the interrupt (on average) (I hope). 3056 */ 3057 mtx_lock(&ngq_mtx); 3058 3059 if ((ngqfreesize < ngqfreelow) || (ngqfree == NULL)) { 3060 if (allocated < maxalloc) { /* don't leak forever */ 3061 MALLOC(item, item_p , 3062 sizeof(*item), M_NETGRAPH_ITEM, 3063 (M_NOWAIT | M_ZERO)); 3064 if (item) { 3065 #ifdef NETGRAPH_DEBUG 3066 TAILQ_INSERT_TAIL(&ng_itemlist, item, all); 3067 #endif /* NETGRAPH_DEBUG */ 3068 allocated++; 3069 } 3070 } 3071 } 3072 3073 /* 3074 * We didn't or couldn't malloc. 3075 * try get one from our cache. 3076 */ 3077 if (item == NULL && (item = ngqfree) != NULL) { 3078 ngqfree = item->el_next; 3079 ngqfreesize--; 3080 item->el_flags &= ~NGQF_FREE; 3081 } 3082 3083 mtx_unlock(&ngq_mtx); 3084 return (item); 3085 } 3086 3087 /* 3088 * Release a queue entry 3089 */ 3090 void 3091 ng_free_item(item_p item) 3092 { 3093 3094 /* 3095 * The item may hold resources on it's own. We need to free 3096 * these before we can free the item. What they are depends upon 3097 * what kind of item it is. it is important that nodes zero 3098 * out pointers to resources that they remove from the item 3099 * or we release them again here. 3100 */ 3101 if (item->el_flags & NGQF_FREE) { 3102 panic(" Freeing free queue item"); 3103 } 3104 switch (item->el_flags & NGQF_TYPE) { 3105 case NGQF_DATA: 3106 /* If we have an mbuf still attached.. */ 3107 NG_FREE_M(_NGI_M(item)); 3108 break; 3109 case NGQF_MESG: 3110 _NGI_RETADDR(item) = 0; 3111 NG_FREE_MSG(_NGI_MSG(item)); 3112 break; 3113 case NGQF_FN: 3114 /* nothing to free really, */ 3115 _NGI_FN(item) = NULL; 3116 _NGI_ARG1(item) = NULL; 3117 _NGI_ARG2(item) = 0; 3118 case NGQF_UNDEF: 3119 break; 3120 } 3121 /* If we still have a node or hook referenced... */ 3122 _NGI_CLR_NODE(item); 3123 _NGI_CLR_HOOK(item); 3124 item->el_flags |= NGQF_FREE; 3125 3126 mtx_lock(&ngq_mtx); 3127 if (ngqfreesize < ngqfreemax) { 3128 ngqfreesize++; 3129 item->el_next = ngqfree; 3130 ngqfree = item; 3131 } else { 3132 #ifdef NETGRAPH_DEBUG 3133 TAILQ_REMOVE(&ng_itemlist, item, all); 3134 #endif /* NETGRAPH_DEBUG */ 3135 NG_FREE_ITEM_REAL(item); 3136 allocated--; 3137 } 3138 mtx_unlock(&ngq_mtx); 3139 } 3140 3141 #ifdef NETGRAPH_DEBUG 3142 void 3143 dumphook (hook_p hook, char *file, int line) 3144 { 3145 printf("hook: name %s, %d refs, Last touched:\n", 3146 _NG_HOOK_NAME(hook), hook->hk_refs); 3147 printf(" Last active @ %s, line %d\n", 3148 hook->lastfile, hook->lastline); 3149 if (line) { 3150 printf(" problem discovered at file %s, line %d\n", file, line); 3151 } 3152 } 3153 3154 void 3155 dumpnode(node_p node, char *file, int line) 3156 { 3157 printf("node: ID [%x]: type '%s', %d hooks, flags 0x%x, %d refs, %s:\n", 3158 _NG_NODE_ID(node), node->nd_type->name, 3159 node->nd_numhooks, node->nd_flags, 3160 node->nd_refs, node->nd_name); 3161 printf(" Last active @ %s, line %d\n", 3162 node->lastfile, node->lastline); 3163 if (line) { 3164 printf(" problem discovered at file %s, line %d\n", file, line); 3165 } 3166 } 3167 3168 void 3169 dumpitem(item_p item, char *file, int line) 3170 { 3171 if (item->el_flags & NGQF_FREE) { 3172 printf(" Free item, freed at %s, line %d\n", 3173 item->lastfile, item->lastline); 3174 } else { 3175 printf(" ACTIVE item, last used at %s, line %d", 3176 item->lastfile, item->lastline); 3177 switch(item->el_flags & NGQF_TYPE) { 3178 case NGQF_DATA: 3179 printf(" - [data]\n"); 3180 break; 3181 case NGQF_MESG: 3182 printf(" - retaddr[%d]:\n", _NGI_RETADDR(item)); 3183 break; 3184 case NGQF_FN: 3185 printf(" - fn@%p (%p, %p, %p, %d (%x))\n", 3186 item->body.fn.fn_fn, 3187 NGI_NODE(item), 3188 NGI_HOOK(item), 3189 item->body.fn.fn_arg1, 3190 item->body.fn.fn_arg2, 3191 item->body.fn.fn_arg2); 3192 break; 3193 case NGQF_UNDEF: 3194 printf(" - UNDEFINED!\n"); 3195 } 3196 } 3197 if (line) { 3198 printf(" problem discovered at file %s, line %d\n", file, line); 3199 if (NGI_NODE(item)) { 3200 printf("node %p ([%x])\n", 3201 NGI_NODE(item), ng_node2ID(NGI_NODE(item))); 3202 } 3203 } 3204 } 3205 3206 static void 3207 ng_dumpitems(void) 3208 { 3209 item_p item; 3210 int i = 1; 3211 TAILQ_FOREACH(item, &ng_itemlist, all) { 3212 printf("[%d] ", i++); 3213 dumpitem(item, NULL, 0); 3214 } 3215 } 3216 3217 static void 3218 ng_dumpnodes(void) 3219 { 3220 node_p node; 3221 int i = 1; 3222 mtx_lock(&ng_nodelist_mtx); 3223 SLIST_FOREACH(node, &ng_allnodes, nd_all) { 3224 printf("[%d] ", i++); 3225 dumpnode(node, NULL, 0); 3226 } 3227 mtx_unlock(&ng_nodelist_mtx); 3228 } 3229 3230 static void 3231 ng_dumphooks(void) 3232 { 3233 hook_p hook; 3234 int i = 1; 3235 mtx_lock(&ng_nodelist_mtx); 3236 SLIST_FOREACH(hook, &ng_allhooks, hk_all) { 3237 printf("[%d] ", i++); 3238 dumphook(hook, NULL, 0); 3239 } 3240 mtx_unlock(&ng_nodelist_mtx); 3241 } 3242 3243 static int 3244 sysctl_debug_ng_dump_items(SYSCTL_HANDLER_ARGS) 3245 { 3246 int error; 3247 int val; 3248 int i; 3249 3250 val = allocated; 3251 i = 1; 3252 error = sysctl_handle_int(oidp, &val, sizeof(int), req); 3253 if (error != 0 || req->newptr == NULL) 3254 return (error); 3255 if (val == 42) { 3256 ng_dumpitems(); 3257 ng_dumpnodes(); 3258 ng_dumphooks(); 3259 } 3260 return (0); 3261 } 3262 3263 SYSCTL_PROC(_debug, OID_AUTO, ng_dump_items, CTLTYPE_INT | CTLFLAG_RW, 3264 0, sizeof(int), sysctl_debug_ng_dump_items, "I", "Number of allocated items"); 3265 #endif /* NETGRAPH_DEBUG */ 3266 3267 3268 /*********************************************************************** 3269 * Worklist routines 3270 **********************************************************************/ 3271 /* NETISR thread enters here */ 3272 /* 3273 * Pick a node off the list of nodes with work, 3274 * try get an item to process off it. 3275 * If there are no more, remove the node from the list. 3276 */ 3277 static void 3278 ngintr(void) 3279 { 3280 item_p item; 3281 node_p node = NULL; 3282 3283 for (;;) { 3284 mtx_lock_spin(&ng_worklist_mtx); 3285 node = TAILQ_FIRST(&ng_worklist); 3286 if (!node) { 3287 mtx_unlock_spin(&ng_worklist_mtx); 3288 break; 3289 } 3290 node->nd_flags &= ~NG_WORKQ; 3291 TAILQ_REMOVE(&ng_worklist, node, nd_work); 3292 mtx_unlock_spin(&ng_worklist_mtx); 3293 /* 3294 * We have the node. We also take over the reference 3295 * that the list had on it. 3296 * Now process as much as you can, until it won't 3297 * let you have another item off the queue. 3298 * All this time, keep the reference 3299 * that lets us be sure that the node still exists. 3300 * Let the reference go at the last minute. 3301 * ng_dequeue will put us back on the worklist 3302 * if there is more too do. This may be of use if there 3303 * are Multiple Processors and multiple Net threads in the 3304 * future. 3305 */ 3306 for (;;) { 3307 mtx_lock_spin(&node->nd_input_queue.q_mtx); 3308 item = ng_dequeue(&node->nd_input_queue); 3309 if (item == NULL) { 3310 mtx_unlock_spin(&node->nd_input_queue.q_mtx); 3311 break; /* go look for another node */ 3312 } else { 3313 mtx_unlock_spin(&node->nd_input_queue.q_mtx); 3314 NGI_GET_NODE(item, node); /* zaps stored node */ 3315 ng_apply_item(node, item); 3316 NG_NODE_UNREF(node); 3317 } 3318 } 3319 NG_NODE_UNREF(node); 3320 } 3321 } 3322 3323 static void 3324 ng_worklist_remove(node_p node) 3325 { 3326 mtx_lock_spin(&ng_worklist_mtx); 3327 if (node->nd_flags & NG_WORKQ) { 3328 node->nd_flags &= ~NG_WORKQ; 3329 TAILQ_REMOVE(&ng_worklist, node, nd_work); 3330 mtx_unlock_spin(&ng_worklist_mtx); 3331 NG_NODE_UNREF(node); 3332 } else { 3333 mtx_unlock_spin(&ng_worklist_mtx); 3334 } 3335 } 3336 3337 /* 3338 * XXX 3339 * It's posible that a debugging NG_NODE_REF may need 3340 * to be outside the mutex zone 3341 */ 3342 static void 3343 ng_setisr(node_p node) 3344 { 3345 mtx_lock_spin(&ng_worklist_mtx); 3346 if ((node->nd_flags & NG_WORKQ) == 0) { 3347 /* 3348 * If we are not already on the work queue, 3349 * then put us on. 3350 */ 3351 node->nd_flags |= NG_WORKQ; 3352 TAILQ_INSERT_TAIL(&ng_worklist, node, nd_work); 3353 NG_NODE_REF(node); /* XXX fafe in mutex? */ 3354 } 3355 mtx_unlock_spin(&ng_worklist_mtx); 3356 schednetisr(NETISR_NETGRAPH); 3357 } 3358 3359 3360 /*********************************************************************** 3361 * Externally useable functions to set up a queue item ready for sending 3362 ***********************************************************************/ 3363 3364 #ifdef NETGRAPH_DEBUG 3365 #define ITEM_DEBUG_CHECKS \ 3366 do { \ 3367 if (NGI_NODE(item) ) { \ 3368 printf("item already has node"); \ 3369 Debugger("has node"); \ 3370 NGI_CLR_NODE(item); \ 3371 } \ 3372 if (NGI_HOOK(item) ) { \ 3373 printf("item already has hook"); \ 3374 Debugger("has hook"); \ 3375 NGI_CLR_HOOK(item); \ 3376 } \ 3377 } while (0) 3378 #else 3379 #define ITEM_DEBUG_CHECKS 3380 #endif 3381 3382 /* 3383 * Put mbuf into the item. 3384 * Hook and node references will be removed when the item is dequeued. 3385 * (or equivalent) 3386 * (XXX) Unsafe because no reference held by peer on remote node. 3387 * remote node might go away in this timescale. 3388 * We know the hooks can't go away because that would require getting 3389 * a writer item on both nodes and we must have at least a reader 3390 * here to eb able to do this. 3391 * Note that the hook loaded is the REMOTE hook. 3392 * 3393 * This is possibly in the critical path for new data. 3394 */ 3395 item_p 3396 ng_package_data(struct mbuf *m, void *dummy) 3397 { 3398 item_p item; 3399 3400 if ((item = ng_getqblk()) == NULL) { 3401 NG_FREE_M(m); 3402 return (NULL); 3403 } 3404 ITEM_DEBUG_CHECKS; 3405 item->el_flags = NGQF_DATA; 3406 item->el_next = NULL; 3407 NGI_M(item) = m; 3408 return (item); 3409 } 3410 3411 /* 3412 * Allocate a queue item and put items into it.. 3413 * Evaluate the address as this will be needed to queue it and 3414 * to work out what some of the fields should be. 3415 * Hook and node references will be removed when the item is dequeued. 3416 * (or equivalent) 3417 */ 3418 item_p 3419 ng_package_msg(struct ng_mesg *msg) 3420 { 3421 item_p item; 3422 3423 if ((item = ng_getqblk()) == NULL) { 3424 NG_FREE_MSG(msg); 3425 return (NULL); 3426 } 3427 ITEM_DEBUG_CHECKS; 3428 item->el_flags = NGQF_MESG; 3429 item->el_next = NULL; 3430 /* 3431 * Set the current lasthook into the queue item 3432 */ 3433 NGI_MSG(item) = msg; 3434 NGI_RETADDR(item) = 0; 3435 return (item); 3436 } 3437 3438 3439 3440 #define SET_RETADDR(item, here, retaddr) \ 3441 do { /* Data or fn items don't have retaddrs */ \ 3442 if ((item->el_flags & NGQF_TYPE) == NGQF_MESG) { \ 3443 if (retaddr) { \ 3444 NGI_RETADDR(item) = retaddr; \ 3445 } else { \ 3446 /* \ 3447 * The old return address should be ok. \ 3448 * If there isn't one, use the address \ 3449 * here. \ 3450 */ \ 3451 if (NGI_RETADDR(item) == 0) { \ 3452 NGI_RETADDR(item) \ 3453 = ng_node2ID(here); \ 3454 } \ 3455 } \ 3456 } \ 3457 } while (0) 3458 3459 int 3460 ng_address_hook(node_p here, item_p item, hook_p hook, ng_ID_t retaddr) 3461 { 3462 hook_p peer; 3463 node_p peernode; 3464 ITEM_DEBUG_CHECKS; 3465 /* 3466 * Quick sanity check.. 3467 * Since a hook holds a reference on it's node, once we know 3468 * that the peer is still connected (even if invalid,) we know 3469 * that the peer node is present, though maybe invalid. 3470 */ 3471 if ((hook == NULL) 3472 || NG_HOOK_NOT_VALID(hook) 3473 || (NG_HOOK_PEER(hook) == NULL) 3474 || NG_HOOK_NOT_VALID(NG_HOOK_PEER(hook)) 3475 || NG_NODE_NOT_VALID(NG_PEER_NODE(hook))) { 3476 NG_FREE_ITEM(item); 3477 TRAP_ERROR(); 3478 return (ENETDOWN); 3479 } 3480 3481 /* 3482 * Transfer our interest to the other (peer) end. 3483 */ 3484 peer = NG_HOOK_PEER(hook); 3485 NG_HOOK_REF(peer); 3486 NGI_SET_HOOK(item, peer); 3487 peernode = NG_PEER_NODE(hook); 3488 NG_NODE_REF(peernode); 3489 NGI_SET_NODE(item, peernode); 3490 SET_RETADDR(item, here, retaddr); 3491 return (0); 3492 } 3493 3494 int 3495 ng_address_path(node_p here, item_p item, char *address, ng_ID_t retaddr) 3496 { 3497 node_p dest = NULL; 3498 hook_p hook = NULL; 3499 int error; 3500 3501 ITEM_DEBUG_CHECKS; 3502 /* 3503 * Note that ng_path2noderef increments the reference count 3504 * on the node for us if it finds one. So we don't have to. 3505 */ 3506 error = ng_path2noderef(here, address, &dest, &hook); 3507 if (error) { 3508 NG_FREE_ITEM(item); 3509 return (error); 3510 } 3511 NGI_SET_NODE(item, dest); 3512 if ( hook) { 3513 NG_HOOK_REF(hook); /* don't let it go while on the queue */ 3514 NGI_SET_HOOK(item, hook); 3515 } 3516 SET_RETADDR(item, here, retaddr); 3517 return (0); 3518 } 3519 3520 int 3521 ng_address_ID(node_p here, item_p item, ng_ID_t ID, ng_ID_t retaddr) 3522 { 3523 node_p dest; 3524 3525 ITEM_DEBUG_CHECKS; 3526 /* 3527 * Find the target node. 3528 */ 3529 dest = ng_ID2noderef(ID); /* GETS REFERENCE! */ 3530 if (dest == NULL) { 3531 NG_FREE_ITEM(item); 3532 TRAP_ERROR(); 3533 return(EINVAL); 3534 } 3535 /* Fill out the contents */ 3536 item->el_flags = NGQF_MESG; 3537 item->el_next = NULL; 3538 NGI_SET_NODE(item, dest); 3539 NGI_CLR_HOOK(item); 3540 SET_RETADDR(item, here, retaddr); 3541 return (0); 3542 } 3543 3544 /* 3545 * special case to send a message to self (e.g. destroy node) 3546 * Possibly indicate an arrival hook too. 3547 * Useful for removing that hook :-) 3548 */ 3549 item_p 3550 ng_package_msg_self(node_p here, hook_p hook, struct ng_mesg *msg) 3551 { 3552 item_p item; 3553 3554 /* 3555 * Find the target node. 3556 * If there is a HOOK argument, then use that in preference 3557 * to the address. 3558 */ 3559 if ((item = ng_getqblk()) == NULL) { 3560 NG_FREE_MSG(msg); 3561 return (NULL); 3562 } 3563 3564 /* Fill out the contents */ 3565 item->el_flags = NGQF_MESG; 3566 item->el_next = NULL; 3567 NG_NODE_REF(here); 3568 NGI_SET_NODE(item, here); 3569 if (hook) { 3570 NG_HOOK_REF(hook); 3571 NGI_SET_HOOK(item, hook); 3572 } 3573 NGI_MSG(item) = msg; 3574 NGI_RETADDR(item) = ng_node2ID(here); 3575 return (item); 3576 } 3577 3578 int 3579 ng_send_fn(node_p node, hook_p hook, ng_item_fn *fn, void * arg1, int arg2) 3580 { 3581 item_p item; 3582 3583 if ((item = ng_getqblk()) == NULL) { 3584 return (ENOMEM); 3585 } 3586 item->el_flags = NGQF_FN | NGQF_WRITER; 3587 NG_NODE_REF(node); /* and one for the item */ 3588 NGI_SET_NODE(item, node); 3589 if (hook) { 3590 NG_HOOK_REF(hook); 3591 NGI_SET_HOOK(item, hook); 3592 } 3593 NGI_FN(item) = fn; 3594 NGI_ARG1(item) = arg1; 3595 NGI_ARG2(item) = arg2; 3596 return(ng_snd_item(item, 0)); 3597 } 3598 3599 /* 3600 * Official timeout routines for Netgraph nodes. 3601 */ 3602 static void 3603 ng_timeout_trapoline(void *arg) 3604 { 3605 item_p item = arg; 3606 3607 ng_snd_item(item, 0); 3608 } 3609 3610 3611 struct callout_handle 3612 ng_timeout(node_p node, hook_p hook, int ticks, 3613 ng_item_fn *fn, void * arg1, int arg2) 3614 { 3615 item_p item; 3616 3617 if ((item = ng_getqblk()) == NULL) { 3618 struct callout_handle handle; 3619 handle.callout = NULL; 3620 return (handle); 3621 } 3622 item->el_flags = NGQF_FN | NGQF_WRITER; 3623 NG_NODE_REF(node); /* and one for the item */ 3624 NGI_SET_NODE(item, node); 3625 if (hook) { 3626 NG_HOOK_REF(hook); 3627 NGI_SET_HOOK(item, hook); 3628 } 3629 NGI_FN(item) = fn; 3630 NGI_ARG1(item) = arg1; 3631 NGI_ARG2(item) = arg2; 3632 return (timeout(&ng_timeout_trapoline, item, ticks)); 3633 } 3634 3635 /* A special modified version of untimeout() */ 3636 int 3637 ng_untimeout(struct callout_handle handle, node_p node) 3638 { 3639 item_p item; 3640 3641 if (handle.callout == NULL) 3642 return (0); 3643 mtx_lock_spin(&callout_lock); 3644 item = handle.callout->c_arg; /* should be an official way to do this */ 3645 if ((handle.callout->c_func == &ng_timeout_trapoline) && 3646 (NGI_NODE(item) == node) && 3647 (callout_stop(handle.callout))) { 3648 /* 3649 * We successfully removed it from the queue before it ran 3650 * So now we need to unreference everything that was 3651 * given extra references. (NG_FREE_ITEM does this). 3652 */ 3653 mtx_unlock_spin(&callout_lock); 3654 NG_FREE_ITEM(item); 3655 return (1); 3656 } 3657 mtx_unlock_spin(&callout_lock); 3658 return (0); 3659 } 3660 3661 /* 3662 * Set the address, if none given, give the node here. 3663 */ 3664 void 3665 ng_replace_retaddr(node_p here, item_p item, ng_ID_t retaddr) 3666 { 3667 if (retaddr) { 3668 NGI_RETADDR(item) = retaddr; 3669 } else { 3670 /* 3671 * The old return address should be ok. 3672 * If there isn't one, use the address here. 3673 */ 3674 NGI_RETADDR(item) = ng_node2ID(here); 3675 } 3676 } 3677 3678 #define TESTING 3679 #ifdef TESTING 3680 /* just test all the macros */ 3681 void 3682 ng_macro_test(item_p item); 3683 void 3684 ng_macro_test(item_p item) 3685 { 3686 node_p node = NULL; 3687 hook_p hook = NULL; 3688 struct mbuf *m; 3689 struct ng_mesg *msg; 3690 ng_ID_t retaddr; 3691 int error; 3692 3693 NGI_GET_M(item, m); 3694 NGI_GET_MSG(item, msg); 3695 retaddr = NGI_RETADDR(item); 3696 NG_SEND_DATA(error, hook, m, NULL); 3697 NG_SEND_DATA_ONLY(error, hook, m); 3698 NG_FWD_NEW_DATA(error, item, hook, m); 3699 NG_FWD_ITEM_HOOK(error, item, hook); 3700 NG_SEND_MSG_HOOK(error, node, msg, hook, retaddr); 3701 NG_SEND_MSG_ID(error, node, msg, retaddr, retaddr); 3702 NG_SEND_MSG_PATH(error, node, msg, ".:", retaddr); 3703 NG_FWD_MSG_HOOK(error, node, item, hook, retaddr); 3704 } 3705 #endif /* TESTING */ 3706 3707