1 2 /* 3 * netgraph.h 4 * 5 * Copyright (c) 1996-1999 Whistle Communications, Inc. 6 * All rights reserved. 7 * 8 * Subject to the following obligations and disclaimer of warranty, use and 9 * redistribution of this software, in source or object code forms, with or 10 * without modifications are expressly permitted by Whistle Communications; 11 * provided, however, that: 12 * 1. Any and all reproductions of the source or object code must include the 13 * copyright notice above and the following disclaimer of warranties; and 14 * 2. No rights are granted, in any manner or form, to use Whistle 15 * Communications, Inc. trademarks, including the mark "WHISTLE 16 * COMMUNICATIONS" on advertising, endorsements, or otherwise except as 17 * such appears in the above copyright notice or in the software. 18 * 19 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND 20 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO 21 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE, 22 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF 23 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. 24 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY 25 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS 26 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE. 27 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES 28 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING 29 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 30 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR 31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY 32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY 35 * OF SUCH DAMAGE. 36 * 37 * Author: Julian Elischer <julian@whistle.com> 38 * 39 * $FreeBSD$ 40 * $Whistle: netgraph.h,v 1.29 1999/11/01 07:56:13 julian Exp $ 41 */ 42 43 #ifndef _NETGRAPH_NETGRAPH_H_ 44 #define _NETGRAPH_NETGRAPH_H_ 1 45 46 #include <sys/queue.h> 47 #include <sys/malloc.h> 48 #include <sys/module.h> 49 50 #ifndef KERNEL 51 #error "This file should not be included in user level programs" 52 #endif 53 54 /* 55 * Structure of a hook 56 */ 57 struct ng_hook { 58 char *name; /* what this node knows this link as */ 59 void *private; /* node dependant ID for this hook */ 60 int flags; /* info about this hook/link */ 61 int refs; /* dont actually free this till 0 */ 62 struct ng_hook *peer; /* the other end of this link */ 63 struct ng_node *node; /* The node this hook is attached to */ 64 LIST_ENTRY(ng_hook) hooks; /* linked list of all hooks on node */ 65 }; 66 typedef struct ng_hook *hook_p; 67 68 /* Flags for a hook */ 69 #define HK_INVALID 0x0001 /* don't trust it! */ 70 71 /* 72 * Structure of a node 73 */ 74 struct ng_node { 75 char *name; /* optional globally unique name */ 76 struct ng_type *type; /* the installed 'type' */ 77 int flags; /* see below for bit definitions */ 78 int sleepers; /* #procs sleeping on this node */ 79 int refs; /* number of references to this node */ 80 int numhooks; /* number of hooks */ 81 int colour; /* for graph colouring algorithms */ 82 void *private; /* node type dependant node ID */ 83 ng_ID_t ID; /* Unique per node */ 84 LIST_HEAD(hooks, ng_hook) hooks; /* linked list of node hooks */ 85 LIST_ENTRY(ng_node) nodes; /* linked list of all nodes */ 86 LIST_ENTRY(ng_node) idnodes; /* ID hash collision list */ 87 }; 88 typedef struct ng_node *node_p; 89 90 /* Flags for a node */ 91 #define NG_INVALID 0x001 /* free when all sleepers and refs go to 0 */ 92 #define NG_BUSY 0x002 /* callers should sleep or wait */ 93 #define NG_TOUCHED 0x004 /* to avoid cycles when 'flooding' */ 94 #define NGF_TYPE1 0x10000000 /* reserved for type specific storage */ 95 #define NGF_TYPE2 0x20000000 /* reserved for type specific storage */ 96 #define NGF_TYPE3 0x40000000 /* reserved for type specific storage */ 97 #define NGF_TYPE4 0x80000000 /* reserved for type specific storage */ 98 99 /* 100 * The structure that holds meta_data about a data packet (e.g. priority) 101 * Nodes might add or subtract options as needed if there is room. 102 * They might reallocate the struct to make more room if they need to. 103 * Meta-data is still experimental. 104 */ 105 struct meta_field_header { 106 u_long cookie; /* cookie for the field. Skip fields you don't 107 * know about (same cookie as in messgaes) */ 108 u_short type; /* field ID */ 109 u_short len; /* total len of this field including extra 110 * data */ 111 char data[0]; /* data starts here */ 112 }; 113 114 /* To zero out an option 'in place' set it's cookie to this */ 115 #define INVALID_COOKIE 865455152 116 117 /* This part of the metadata is always present if the pointer is non NULL */ 118 struct ng_meta { 119 char priority; /* -ve is less priority, 0 is default */ 120 char discardability; /* higher is less valuable.. discard first */ 121 u_short allocated_len; /* amount malloc'd */ 122 u_short used_len; /* sum of all fields, options etc. */ 123 u_short flags; /* see below.. generic flags */ 124 struct meta_field_header options[0]; /* add as (if) needed */ 125 }; 126 typedef struct ng_meta *meta_p; 127 128 /* Flags for meta-data */ 129 #define NGMF_TEST 0x01 /* discard at the last moment before sending */ 130 #define NGMF_TRACE 0x02 /* trace when handing this data to a node */ 131 132 /* node method definitions */ 133 typedef int ng_constructor_t(node_p *node); 134 typedef int ng_rcvmsg_t(node_p node, struct ng_mesg *msg, 135 const char *retaddr, struct ng_mesg **resp); 136 typedef int ng_shutdown_t(node_p node); 137 typedef int ng_newhook_t(node_p node, hook_p hook, const char *name); 138 typedef hook_p ng_findhook_t(node_p node, const char *name); 139 typedef int ng_connect_t(hook_p hook); 140 typedef int ng_rcvdata_t(hook_p hook, struct mbuf *m, meta_p meta); 141 typedef int ng_disconnect_t(hook_p hook); 142 143 /* 144 * Structure of a node type 145 */ 146 struct ng_type { 147 148 u_int32_t version; /* must equal NG_VERSION */ 149 const char *name; /* Unique type name */ 150 modeventhand_t mod_event; /* Module event handler (optional) */ 151 ng_constructor_t *constructor; /* Node constructor */ 152 ng_rcvmsg_t *rcvmsg; /* control messages come here */ 153 ng_shutdown_t *shutdown; /* reset, and free resources */ 154 ng_newhook_t *newhook; /* first notification of new hook */ 155 ng_findhook_t *findhook; /* only if you have 23000 hooks */ 156 ng_connect_t *connect; /* final notification of new hook */ 157 ng_rcvdata_t *rcvdata; /* date comes here */ 158 ng_rcvdata_t *rcvdataq; /* or here if been queued */ 159 ng_disconnect_t *disconnect; /* notify on disconnect */ 160 161 /* R/W data private to the base netgraph code DON'T TOUCH!*/ 162 LIST_ENTRY(ng_type) types; /* linked list of all types */ 163 int refs; /* number of instances */ 164 }; 165 166 /* Send data packet with meta-data */ 167 #define NG_SEND_DATA(error, hook, m, a) \ 168 do { \ 169 (error) = ng_send_data((hook), (m), (a)); \ 170 (m) = NULL; \ 171 (a) = NULL; \ 172 } while (0) 173 174 /* Send queued data packet with meta-data */ 175 #define NG_SEND_DATAQ(error, hook, m, a) \ 176 do { \ 177 (error) = ng_send_dataq((hook), (m), (a)); \ 178 (m) = NULL; \ 179 (a) = NULL; \ 180 } while (0) 181 182 /* Free metadata */ 183 #define NG_FREE_META(a) \ 184 do { \ 185 if ((a)) { \ 186 FREE((a), M_NETGRAPH); \ 187 a = NULL; \ 188 } \ 189 } while (0) 190 191 /* Free any data packet and/or meta-data */ 192 #define NG_FREE_DATA(m, a) \ 193 do { \ 194 if ((m)) { \ 195 m_freem((m)); \ 196 m = NULL; \ 197 } \ 198 NG_FREE_META((a)); \ 199 } while (0) 200 201 /* 202 * Use the NETGRAPH_INIT() macro to link a node type into the 203 * netgraph system. This works for types compiled into the kernel 204 * as well as KLD modules. The first argument should be the type 205 * name (eg, echo) and the second a pointer to the type struct. 206 * 207 * If a different link time is desired, e.g., a device driver that 208 * needs to install its netgraph type before probing, use the 209 * NETGRAPH_INIT_ORDERED() macro instead. Deivce drivers probably 210 * want to use SI_SUB_DRIVERS instead of SI_SUB_PSEUDO. 211 */ 212 213 #define NETGRAPH_INIT_ORDERED(typename, typestructp, sub, order) \ 214 static moduledata_t ng_##typename##_mod = { \ 215 "ng_" #typename, \ 216 ng_mod_event, \ 217 (typestructp) \ 218 }; \ 219 DECLARE_MODULE(ng_##typename, ng_##typename##_mod, sub, order) 220 221 #define NETGRAPH_INIT(tn, tp) \ 222 NETGRAPH_INIT_ORDERED(tn, tp, SI_SUB_PSEUDO, SI_ORDER_ANY) 223 224 /* Special malloc() type for netgraph structs and ctrl messages */ 225 MALLOC_DECLARE(M_NETGRAPH); 226 227 int ng_bypass(hook_p hook1, hook_p hook2); 228 void ng_cutlinks(node_p node); 229 int ng_con_nodes(node_p node, 230 const char *name, node_p node2, const char *name2); 231 void ng_destroy_hook(hook_p hook); 232 node_p ng_findname(node_p node, const char *name); 233 struct ng_type *ng_findtype(const char *type); 234 int ng_make_node(const char *type, node_p *nodepp); 235 int ng_make_node_common(struct ng_type *typep, node_p *nodep); 236 int ng_mkpeer(node_p node, const char *name, const char *name2, char *type); 237 int ng_mod_event(module_t mod, int what, void *arg); 238 int ng_name_node(node_p node, const char *name); 239 int ng_newtype(struct ng_type *tp); 240 ng_ID_t ng_node2ID(node_p node); 241 int ng_path2node(node_p here, const char *path, node_p *dest, char **rtnp); 242 int ng_path_parse(char *addr, char **node, char **path, char **hook); 243 int ng_queue_data(hook_p hook, struct mbuf *m, meta_p meta); 244 int ng_queue_msg(node_p here, struct ng_mesg *msg, int len, 245 const char *address); 246 void ng_release_node(node_p node); 247 void ng_rmnode(node_p node); 248 int ng_send_data(hook_p hook, struct mbuf *m, meta_p meta); 249 int ng_send_dataq(hook_p hook, struct mbuf *m, meta_p meta); 250 int ng_send_msg(node_p here, struct ng_mesg *msg, 251 const char *address, struct ng_mesg **resp); 252 void ng_unname(node_p node); 253 void ng_unref(node_p node); 254 int ng_wait_node(node_p node, char *msg); 255 256 #endif /* _NETGRAPH_NETGRAPH_H_ */ 257 258