1 .\" Copyright (c) 1996-1999 Whistle Communications, Inc.
2 .\" All rights reserved.
4 .\" Subject to the following obligations and disclaimer of warranty, use and
5 .\" redistribution of this software, in source or object code forms, with or
6 .\" without modifications are expressly permitted by Whistle Communications;
7 .\" provided, however, that:
8 .\" 1. Any and all reproductions of the source or object code must include the
9 .\" copyright notice above and the following disclaimer of warranties; and
10 .\" 2. No rights are granted, in any manner or form, to use Whistle
11 .\" Communications, Inc. trademarks, including the mark "WHISTLE
12 .\" COMMUNICATIONS" on advertising, endorsements, or otherwise except as
13 .\" such appears in the above copyright notice or in the software.
15 .\" THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
16 .\" TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
17 .\" REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
18 .\" INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
19 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
20 .\" WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
21 .\" REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
22 .\" SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
23 .\" IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
24 .\" RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
25 .\" WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
26 .\" PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
27 .\" SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
28 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 .\" THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
33 .\" Author: Archie Cobbs <archie@whistle.com>
35 .\" $FreeBSD: src/lib/libnetgraph/netgraph.3,v 1.4.2.10 2002/12/29 16:35:36 schweikh Exp $
36 .\" $Whistle: netgraph.3,v 1.7 1999/01/25 07:14:06 archie Exp $
50 .Nm NgAllocRecvAsciiMsg ,
56 .Nd netgraph user library
62 .Fn NgMkSockNode "const char *name" "int *csp" "int *dsp"
64 .Fn NgNameNode "int cs" "const char *path" "const char *fmt" ...
67 .Fa "int cs" "const char *path" "int cookie" "int cmd" "const void *arg"
71 .Fn NgSendAsciiMsg "int cs" "const char *path" "const char *fmt" ...
74 .Fa "int cs" "const char *path" "const struct ng_mesg *msg" "const void *arg"
78 .Fn NgRecvMsg "int cs" "struct ng_mesg *rep" "size_t replen" "char *path"
80 .Fn NgAllocRecvMsg "int cs" "struct ng_mesg **rep" "char *path"
82 .Fn NgRecvAsciiMsg "int cs" "struct ng_mesg *rep" "size_t replen" "char *path"
84 .Fn NgAllocRecvAsciiMsg "int cs" "struct ng_mesg **rep" "char *path"
86 .Fn NgSendData "int ds" "const char *hook" "const u_char *buf" "size_t len"
88 .Fn NgRecvData "int ds" "u_char *buf" "size_t len" "char *hook"
90 .Fn NgAllocRecvData "int ds" "u_char **buf" "char *hook"
92 .Fn NgSetDebug "int level"
95 .Fa "void (*log)(const char *fmt, ...)"
96 .Fa "void (*logx)(const char *fmt, ...)"
99 These functions facilitate user-mode program participation in the kernel
101 graph-based networking system, by utilizing the netgraph
108 function should be called first, to create a new
110 type netgraph node with associated control and data sockets.
114 .No non- Ns Dv NULL ,
115 the node will have that global name assigned to it.
120 arguments will be set to the newly opened control and data sockets
121 associated with the node; either
127 if only one socket is desired.
132 node type KLD if it is not already loaded.
136 function assigns a global name to the node addressed by
141 function sends a binary control message from the
143 node associated with control socket
145 to the node addressed by
149 indicates how to interpret
151 which indicates a specific command.
152 Extra argument data (if any) is specified by
158 and argument data are defined by the header file corresponding
159 to the type of the node being addressed.
160 The unique, non-negative token value chosen for use in the message
162 This value is typically used to associate replies.
166 to send reply to a previously received control message.
167 The original message header should be pointed to by
172 function performs the same function as
176 encoding of control messages.
179 function formats its input a la
181 and then sends the resulting
183 string to the node in a
186 The node returns a binary version of the
187 message, which is then sent back to the node just as with
191 the message token value is returned.
194 conversion may not be supported by all node types.
198 function reads the next control message received by the node associated with
201 The message and any extra argument data must fit in
207 .No non- Ns Dv NULL ,
208 it must point to a buffer of at least
210 bytes, which will be filled in (and
212 terminated) with the path to
213 the node from which the message was received.
215 The length of the control message is returned.
216 A return value of zero indicates that the socket was closed.
220 function works exactly like
222 except that the buffer for a message is dynamically allocated
223 to guarantee that a message is not truncated.
224 The size of the buffer is equal to the socket's receive buffer size.
225 The caller is responsible for freeing the buffer when it is no longer required.
229 function works exactly like
231 except that after the message is received, any binary arguments
236 request back to the originating node.
237 The result is the same as
239 with the exception that the reply arguments field will contain a
240 .Dv NUL Ns -terminated
242 version of the arguments (and the reply
243 header argument length field will be adjusted).
246 .Fn NgAllocRecvAsciiMsg
247 function works exactly like
249 except that the buffer for a message is dynamically allocated
250 to guarantee that a message is not truncated.
251 The size of the buffer is equal to the socket's receive buffer size.
252 The caller is responsible for freeing the buffer when it is no longer required.
256 function writes a data packet out on the specified hook of the node
257 corresponding to data socket
259 The node must already be connected to some other node via that hook.
263 function reads the next data packet (of up to
265 bytes) received by the node corresponding to data socket
269 which must be large enough to hold the entire packet.
273 .No non- Ns Dv NULL ,
274 it must point to a buffer of at least
276 bytes, which will be filled in (and
278 terminated) with the name of
279 the hook on which the data was received.
281 The length of the packet is returned.
282 A return value of zero indicates that the socket was closed.
286 function works exactly like
288 except that the buffer for a data packet is dynamically allocated
289 to guarantee that a data packet is not truncated.
290 The size of the buffer is equal to the socket's receive buffer size.
291 The caller is responsible for freeing the buffer when it is no longer required.
297 functions are used for debugging.
300 function sets the debug level (if non-negative), and returns the old setting.
301 Higher debug levels result in more verbosity.
303 All debug and error messages are logged via the functions
304 specified in the most recent call to
306 The default logging functions are
311 At debug level 3, the library attempts to display control message arguments
314 format; however, this results in additional messages being
315 sent which may interfere with debugging.
316 At even higher levels,
317 even these additional messages will be displayed, etc.
321 can be used on the data and the control sockets to detect the presence of
322 incoming data and control messages, respectively.
323 Data and control packets are always written and read atomically, i.e.,
326 User mode programs must be linked with the
328 flag to link in this library.
330 To enable netgraph in your kernel, either your kernel must be
332 .Cd "options NETGRAPH"
333 in the kernel configuration
338 KLD modules must have been loaded via
343 function returns the previous debug setting.
347 function has no return value.
349 All other functions return \-1 if there was an error and set
353 A return value of zero from
357 indicates that the netgraph socket has been closed.
363 the following additional errors are possible:
366 The node type does not know how to encode or decode the control message.
368 The encoded or decoded arguments were too long for the supplied buffer.
370 An unknown structure field was seen in an
374 The same structure field was specified twice in an
379 control message parse error or illegal value.
381 ASCII control message array or fixed width string buffer overflow.
393 system was designed and first implemented at Whistle Communications, Inc.\& in
396 customized for the Whistle InterJet.
398 .An Archie Cobbs Aq Mt archie@FreeBSD.org