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@freebsd.org> 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 NGM_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 hook_p lasthook); 137 typedef int ng_shutdown_t(node_p node); 138 typedef int ng_newhook_t(node_p node, hook_p hook, const char *name); 139 typedef hook_p ng_findhook_t(node_p node, const char *name); 140 typedef int ng_connect_t(hook_p hook); 141 typedef int ng_rcvdata_t(hook_p hook, struct mbuf *m, meta_p meta, 142 struct mbuf **ret_m, meta_p *ret_meta); 143 typedef int ng_disconnect_t(hook_p hook); 144 145 /* 146 * Command list -- each node type specifies the command that it knows 147 * how to convert between ASCII and binary using an array of these. 148 * The last element in the array must be a terminator with cookie=0. 149 */ 150 151 struct ng_cmdlist { 152 u_int32_t cookie; /* command typecookie */ 153 int cmd; /* command number */ 154 const char *name; /* command name */ 155 const struct ng_parse_type *mesgType; /* args if !NGF_RESP */ 156 const struct ng_parse_type *respType; /* args if NGF_RESP */ 157 }; 158 159 /* 160 * Structure of a node type 161 */ 162 struct ng_type { 163 164 u_int32_t version; /* must equal NG_VERSION */ 165 const char *name; /* Unique type name */ 166 modeventhand_t mod_event; /* Module event handler (optional) */ 167 ng_constructor_t *constructor; /* Node constructor */ 168 ng_rcvmsg_t *rcvmsg; /* control messages come here */ 169 ng_shutdown_t *shutdown; /* reset, and free resources */ 170 ng_newhook_t *newhook; /* first notification of new hook */ 171 ng_findhook_t *findhook; /* only if you have lots of hooks */ 172 ng_connect_t *connect; /* final notification of new hook */ 173 ng_rcvdata_t *rcvdata; /* date comes here */ 174 ng_rcvdata_t *rcvdataq; /* or here if being queued */ 175 ng_disconnect_t *disconnect; /* notify on disconnect */ 176 177 const struct ng_cmdlist *cmdlist; /* commands we can convert */ 178 179 /* R/W data private to the base netgraph code DON'T TOUCH! */ 180 LIST_ENTRY(ng_type) types; /* linked list of all types */ 181 int refs; /* number of instances */ 182 }; 183 184 /* Send data packet with meta-data */ 185 #define NG_SEND_DATA(error, hook, m, a) \ 186 do { \ 187 (error) = ng_send_data((hook), (m), (a), NULL, NULL); \ 188 (m) = NULL; \ 189 (a) = NULL; \ 190 } while (0) 191 192 /* Send queued data packet with meta-data */ 193 #define NG_SEND_DATAQ(error, hook, m, a) \ 194 do { \ 195 (error) = ng_send_dataq((hook), (m), (a), NULL, NULL); \ 196 (m) = NULL; \ 197 (a) = NULL; \ 198 } while (0) 199 200 #define NG_SEND_DATA_RET(error, hook, m, a) \ 201 do { \ 202 struct mbuf *rm = NULL; \ 203 meta_p ra = NULL; \ 204 (error) = ng_send_data((hook), (m), (a), &rm, &ra); \ 205 (m) = rm; \ 206 (a) = ra; \ 207 } while (0) 208 209 /* Free metadata */ 210 #define NG_FREE_META(a) \ 211 do { \ 212 if ((a)) { \ 213 FREE((a), M_NETGRAPH); \ 214 a = NULL; \ 215 } \ 216 } while (0) 217 218 /* Free any data packet and/or meta-data */ 219 #define NG_FREE_DATA(m, a) \ 220 do { \ 221 if ((m)) { \ 222 m_freem((m)); \ 223 m = NULL; \ 224 } \ 225 NG_FREE_META((a)); \ 226 } while (0) 227 228 /* 229 * Use the NETGRAPH_INIT() macro to link a node type into the 230 * netgraph system. This works for types compiled into the kernel 231 * as well as KLD modules. The first argument should be the type 232 * name (eg, echo) and the second a pointer to the type struct. 233 * 234 * If a different link time is desired, e.g., a device driver that 235 * needs to install its netgraph type before probing, use the 236 * NETGRAPH_INIT_ORDERED() macro instead. Deivce drivers probably 237 * want to use SI_SUB_DRIVERS instead of SI_SUB_PSEUDO. 238 */ 239 240 #define NETGRAPH_INIT_ORDERED(typename, typestructp, sub, order) \ 241 static moduledata_t ng_##typename##_mod = { \ 242 "ng_" #typename, \ 243 ng_mod_event, \ 244 (typestructp) \ 245 }; \ 246 DECLARE_MODULE(ng_##typename, ng_##typename##_mod, sub, order); \ 247 MODULE_DEPEND(ng_##typename, netgraph, 1, 1, 1) 248 249 #define NETGRAPH_INIT(tn, tp) \ 250 NETGRAPH_INIT_ORDERED(tn, tp, SI_SUB_PSEUDO, SI_ORDER_ANY) 251 252 /* Special malloc() type for netgraph structs and ctrl messages */ 253 MALLOC_DECLARE(M_NETGRAPH); 254 255 int ng_bypass(hook_p hook1, hook_p hook2); 256 void ng_cutlinks(node_p node); 257 int ng_con_nodes(node_p node, 258 const char *name, node_p node2, const char *name2); 259 meta_p ng_copy_meta(meta_p meta); 260 void ng_destroy_hook(hook_p hook); 261 hook_p ng_findhook(node_p node, const char *name); 262 node_p ng_findname(node_p node, const char *name); 263 struct ng_type *ng_findtype(const char *type); 264 int ng_make_node(const char *type, node_p *nodepp); 265 int ng_make_node_common(struct ng_type *typep, node_p *nodep); 266 int ng_mkpeer(node_p node, const char *name, const char *name2, char *type); 267 int ng_mod_event(module_t mod, int what, void *arg); 268 int ng_name_node(node_p node, const char *name); 269 int ng_newtype(struct ng_type *tp); 270 ng_ID_t ng_node2ID(node_p node); 271 int ng_path2node(node_p here, const char *path, node_p *dest, char **rtnp, 272 hook_p *lasthook); 273 int ng_path_parse(char *addr, char **node, char **path, char **hook); 274 int ng_queue_data(hook_p hook, struct mbuf *m, meta_p meta); 275 int ng_queue_msg(node_p here, struct ng_mesg *msg, const char *address); 276 void ng_release_node(node_p node); 277 void ng_rmnode(node_p node); 278 int ng_send_data(hook_p hook, struct mbuf *m, meta_p meta, 279 struct mbuf **ret_m, meta_p *ret_meta); 280 int ng_send_dataq(hook_p hook, struct mbuf *m, meta_p meta, 281 struct mbuf **ret_m, meta_p *ret_meta); 282 int ng_send_msg(node_p here, struct ng_mesg *msg, 283 const char *address, struct ng_mesg **resp); 284 void ng_unname(node_p node); 285 void ng_unref(node_p node); 286 int ng_wait_node(node_p node, char *msg); 287 288 #endif /* _NETGRAPH_NETGRAPH_H_ */ 289 290