WARNS6 cleanups
[dragonfly.git] / sys / netgraph / ng_message.h
1
2 /*
3  * ng_message.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: src/sys/netgraph/ng_message.h,v 1.4.2.5 2002/07/02 23:44:02 archie Exp $
40  * $DragonFly: src/sys/netgraph/ng_message.h,v 1.4 2006/05/20 02:42:11 dillon Exp $
41  * $Whistle: ng_message.h,v 1.12 1999/01/25 01:17:44 archie Exp $
42  */
43
44 #ifndef _NETGRAPH_NG_MESSAGE_H_
45 #define _NETGRAPH_NG_MESSAGE_H_
46
47 #ifndef _SYS_TYPES_H_
48 #include <sys/types.h>
49 #endif
50
51 /* ASCII string size limits */
52 #define NG_TYPELEN      15      /* max type name len (16 with null) */
53 #define NG_HOOKLEN      15      /* max hook name len (16 with null) */
54 #define NG_NODELEN      15      /* max node name len (16 with null) */
55 #define NG_PATHLEN      511     /* max path len     (512 with null) */
56 #define NG_CMDSTRLEN    15      /* max command string (16 with null) */
57 #define NG_TEXTRESPONSE 1024    /* allow this length for a text response */
58
59 /* A netgraph message */
60 struct ng_mesg {
61         struct  ng_msghdr {
62                 u_char          version;                /* must == NG_VERSION */
63                 u_char          spare;                  /* pad to 2 bytes */
64                 u_int16_t       arglen;                 /* length of data */
65                 u_int32_t       flags;                  /* message status */
66                 u_int32_t       token;                  /* match with reply */
67                 u_int32_t       typecookie;             /* node's type cookie */
68                 u_int32_t       cmd;                    /* command identifier */
69                 u_char          cmdstr[NG_CMDSTRLEN+1]; /* cmd string + \0 */
70         } header;
71         char    data[0];                /* placeholder for actual data */
72 };
73
74 /* Keep this in sync with the above structure definition */
75 #define NG_GENERIC_NG_MESG_INFO(dtype)  {                       \
76           { "version",          &ng_parse_uint8_type    },      \
77           { "spare",            &ng_parse_uint8_type    },      \
78           { "arglen",           &ng_parse_uint16_type   },      \
79           { "flags",            &ng_parse_hint32_type   },      \
80           { "token",            &ng_parse_uint32_type   },      \
81           { "typecookie",       &ng_parse_uint32_type   },      \
82           { "cmd",              &ng_parse_uint32_type   },      \
83           { "cmdstr",           &ng_parse_cmdbuf_type   },      \
84           { "data",             (dtype)                 },      \
85           { NULL }                                              \
86 }
87
88 /* Negraph type binary compatibility field */
89 #define NG_VERSION      2
90
91 /* Flags field flags */
92 #define NGF_ORIG        0x0000          /* the msg is the original request */
93 #define NGF_RESP        0x0001          /* the message is a response */
94
95 /* Type of a unique node ID */
96 #define ng_ID_t unsigned int
97
98 /*
99  * Here we describe the "generic" messages that all nodes inherently
100  * understand. With the exception of NGM_TEXT_STATUS, these are handled
101  * automatically by the base netgraph code.
102  */
103
104 /* Generic message type cookie */
105 #define NGM_GENERIC_COOKIE      851672668
106
107 /* Generic messages defined for this type cookie */
108 #define NGM_SHUTDOWN            1       /* shut down node */
109 #define NGM_MKPEER              2       /* create and attach a peer node */
110 #define NGM_CONNECT             3       /* connect two nodes */
111 #define NGM_NAME                4       /* give a node a name */
112 #define NGM_RMHOOK              5       /* break a connection btw. two nodes */
113 #define NGM_NODEINFO            6       /* get nodeinfo for the target */
114 #define NGM_LISTHOOKS           7       /* get list of hooks on node */
115 #define NGM_LISTNAMES           8       /* list all globally named nodes */
116 #define NGM_LISTNODES           9       /* list all nodes, named and unnamed */
117 #define NGM_LISTTYPES           10      /* list all installed node types */
118 #define NGM_TEXT_STATUS         11      /* (optional) get text status report */
119 #define NGM_BINARY2ASCII        12      /* convert struct ng_mesg to ascii */
120 #define NGM_ASCII2BINARY        13      /* convert ascii to struct ng_mesg */
121 #define NGM_TEXT_CONFIG         14      /* (optional) get/set text config */
122
123 /* Structure used for NGM_MKPEER */
124 struct ngm_mkpeer {
125         char    type[NG_TYPELEN + 1];                   /* peer type */
126         char    ourhook[NG_HOOKLEN + 1];                /* hook name */
127         char    peerhook[NG_HOOKLEN + 1];               /* peer hook name */
128 };
129
130 /* Keep this in sync with the above structure definition */
131 #define NG_GENERIC_MKPEER_INFO()        {                       \
132           { "type",             &ng_parse_typebuf_type  },      \
133           { "ourhook",          &ng_parse_hookbuf_type  },      \
134           { "peerhook",         &ng_parse_hookbuf_type  },      \
135           { NULL }                                              \
136 }
137
138 /* Structure used for NGM_CONNECT */
139 struct ngm_connect {
140         char    path[NG_PATHLEN + 1];                   /* peer path */
141         char    ourhook[NG_HOOKLEN + 1];                /* hook name */
142         char    peerhook[NG_HOOKLEN + 1];               /* peer hook name */
143 };
144
145 /* Keep this in sync with the above structure definition */
146 #define NG_GENERIC_CONNECT_INFO()       {                       \
147           { "path",             &ng_parse_pathbuf_type  },      \
148           { "ourhook",          &ng_parse_hookbuf_type  },      \
149           { "peerhook",         &ng_parse_hookbuf_type  },      \
150           { NULL }                                              \
151 }
152
153 /* Structure used for NGM_NAME */
154 struct ngm_name {
155         char    name[NG_NODELEN + 1];                   /* node name */
156 };
157
158 /* Keep this in sync with the above structure definition */
159 #define NG_GENERIC_NAME_INFO()  {                               \
160           { "name",             &ng_parse_nodebuf_type  },      \
161           { NULL }                                              \
162 }
163
164 /* Structure used for NGM_RMHOOK */
165 struct ngm_rmhook {
166         char    ourhook[NG_HOOKLEN + 1];                /* hook name */
167 };
168
169 /* Keep this in sync with the above structure definition */
170 #define NG_GENERIC_RMHOOK_INFO()        {                       \
171           { "hook",             &ng_parse_hookbuf_type  },      \
172           { NULL }                                              \
173 }
174
175 /* Structure used for NGM_NODEINFO */
176 struct nodeinfo {
177         char            name[NG_NODELEN + 1];   /* node name (if any) */
178         char            type[NG_TYPELEN + 1];   /* peer type */
179         ng_ID_t         id;                     /* unique identifier */
180         u_int32_t       hooks;                  /* number of active hooks */
181 };
182
183 /* Keep this in sync with the above structure definition */
184 #define NG_GENERIC_NODEINFO_INFO()      {                       \
185           { "name",             &ng_parse_nodebuf_type  },      \
186           { "type",             &ng_parse_typebuf_type  },      \
187           { "id",               &ng_parse_hint32_type   },      \
188           { "hooks",            &ng_parse_uint32_type   },      \
189           { NULL }                                              \
190 }
191
192 /* Structure used for NGM_LISTHOOKS */
193 struct linkinfo {
194         char            ourhook[NG_HOOKLEN + 1];        /* hook name */
195         char            peerhook[NG_HOOKLEN + 1];       /* peer hook */
196         struct nodeinfo nodeinfo;
197 };
198
199 /* Keep this in sync with the above structure definition */
200 #define NG_GENERIC_LINKINFO_INFO(nitype)        {               \
201           { "ourhook",          &ng_parse_hookbuf_type  },      \
202           { "peerhook",         &ng_parse_hookbuf_type  },      \
203           { "nodeinfo",         (nitype)                },      \
204           { NULL }                                              \
205 }
206
207 struct hooklist {
208         struct nodeinfo nodeinfo;               /* node information */
209         struct linkinfo link[0];                /* info about each hook */
210 };
211
212 /* Keep this in sync with the above structure definition */
213 #define NG_GENERIC_HOOKLIST_INFO(nitype,litype) {               \
214           { "nodeinfo",         (nitype)                },      \
215           { "linkinfo",         (litype)                },      \
216           { NULL }                                              \
217 }
218
219 /* Structure used for NGM_LISTNAMES/NGM_LISTNODES */
220 struct namelist {
221         u_int32_t       numnames;
222         struct nodeinfo nodeinfo[0];
223 };
224
225 /* Keep this in sync with the above structure definition */
226 #define NG_GENERIC_LISTNODES_INFO(niarraytype)  {               \
227           { "numnames",         &ng_parse_uint32_type   },      \
228           { "nodeinfo",         (niarraytype)           },      \
229           { NULL }                                              \
230 }
231
232 /* Structure used for NGM_LISTTYPES */
233 struct typeinfo {
234         char            type_name[NG_TYPELEN + 1];      /* name of type */
235         u_int32_t       numnodes;                       /* number alive */
236 };
237
238 /* Keep this in sync with the above structure definition */
239 #define NG_GENERIC_TYPEINFO_INFO()              {               \
240           { "typename",         &ng_parse_typebuf_type  },      \
241           { "numnodes",         &ng_parse_uint32_type   },      \
242           { NULL }                                              \
243 }
244
245 struct typelist {
246         u_int32_t       numtypes;
247         struct typeinfo typeinfo[0];
248 };
249
250 /* Keep this in sync with the above structure definition */
251 #define NG_GENERIC_TYPELIST_INFO(tiarraytype)   {               \
252           { "numtypes",         &ng_parse_uint32_type   },      \
253           { "typeinfo",         (tiarraytype)           },      \
254           { NULL }                                              \
255 }
256
257 /*
258  * For netgraph nodes that are somehow associated with file descriptors
259  * (e.g., a device that has a /dev entry and is also a netgraph node),
260  * we define a generic ioctl for requesting the corresponding nodeinfo
261  * structure and for assigning a name (if there isn't one already).
262  *
263  * For these to you need to also #include <sys/ioccom.h>.
264  */
265
266 #define NGIOCGINFO      _IOR('N', 40, struct nodeinfo)  /* get node info */
267 #define NGIOCSETNAME    _IOW('N', 41, struct ngm_name)  /* set node name */
268
269 #ifdef _KERNEL
270 /*
271  * Allocate and initialize a netgraph message "msg" with "len"
272  * extra bytes of argument. Sets "msg" to NULL if fails.
273  * Does not initialize token.
274  */
275 #define NG_MKMESSAGE(msg, cookie, cmdid, len, how)                      \
276         do {                                                            \
277           MALLOC((msg), struct ng_mesg *, sizeof(struct ng_mesg)        \
278             + (len), M_NETGRAPH, (how));                                \
279           if ((msg) == NULL)                                            \
280             break;                                                      \
281           bzero((msg), sizeof(struct ng_mesg) + (len));                 \
282           (msg)->header.version = NG_VERSION;                           \
283           (msg)->header.typecookie = (cookie);                          \
284           (msg)->header.cmd = (cmdid);                                  \
285           (msg)->header.arglen = (len);                                 \
286           strncpy((msg)->header.cmdstr, #cmdid,                         \
287             sizeof((msg)->header.cmdstr) - 1);                          \
288         } while (0)
289
290 /*
291  * Allocate and initialize a response "rsp" to a message "msg"
292  * with "len" extra bytes of argument. Sets "rsp" to NULL if fails.
293  */
294 #define NG_MKRESPONSE(rsp, msg, len, how)                               \
295         do {                                                            \
296           MALLOC((rsp), struct ng_mesg *, sizeof(struct ng_mesg)        \
297             + (len), M_NETGRAPH, (how) | M_ZERO);                       \
298           if ((rsp) == NULL)                                            \
299             break;                                                      \
300           (rsp)->header.version = NG_VERSION;                           \
301           (rsp)->header.arglen = (len);                                 \
302           (rsp)->header.token = (msg)->header.token;                    \
303           (rsp)->header.typecookie = (msg)->header.typecookie;          \
304           (rsp)->header.cmd = (msg)->header.cmd;                        \
305           bcopy((msg)->header.cmdstr, (rsp)->header.cmdstr,             \
306             sizeof((rsp)->header.cmdstr));                              \
307           (rsp)->header.flags |= NGF_RESP;                              \
308         } while (0)
309 #endif /* _KERNEL */
310
311 #endif /* _NETGRAPH_NG_MESSAGE_H_ */
312