xref: /freebsd/share/man/man4/ng_ksocket.4 (revision c60bda17f2a9ed4a8c1ef6483ee7b8f207de7129)
1f7045ac0SArchie Cobbs.\" Copyright (c) 1999 Whistle Communications, Inc.
2f7045ac0SArchie Cobbs.\" All rights reserved.
3f7045ac0SArchie Cobbs.\"
4f7045ac0SArchie Cobbs.\" Subject to the following obligations and disclaimer of warranty, use and
5f7045ac0SArchie Cobbs.\" redistribution of this software, in source or object code forms, with or
6f7045ac0SArchie Cobbs.\" without modifications are expressly permitted by Whistle Communications;
7f7045ac0SArchie Cobbs.\" provided, however, that:
8f7045ac0SArchie Cobbs.\" 1. Any and all reproductions of the source or object code must include the
9f7045ac0SArchie Cobbs.\"    copyright notice above and the following disclaimer of warranties; and
10f7045ac0SArchie Cobbs.\" 2. No rights are granted, in any manner or form, to use Whistle
11f7045ac0SArchie Cobbs.\"    Communications, Inc. trademarks, including the mark "WHISTLE
12f7045ac0SArchie Cobbs.\"    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
13f7045ac0SArchie Cobbs.\"    such appears in the above copyright notice or in the software.
14f7045ac0SArchie Cobbs.\"
15f7045ac0SArchie Cobbs.\" THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
16f7045ac0SArchie Cobbs.\" TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
17f7045ac0SArchie Cobbs.\" REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
18f7045ac0SArchie Cobbs.\" INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
19f7045ac0SArchie Cobbs.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
20f7045ac0SArchie Cobbs.\" WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
21f7045ac0SArchie Cobbs.\" REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
22f7045ac0SArchie Cobbs.\" SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
23f7045ac0SArchie Cobbs.\" IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
24f7045ac0SArchie Cobbs.\" RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
25f7045ac0SArchie Cobbs.\" WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
26f7045ac0SArchie Cobbs.\" PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
27f7045ac0SArchie Cobbs.\" SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
28f7045ac0SArchie Cobbs.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29f7045ac0SArchie Cobbs.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30f7045ac0SArchie Cobbs.\" THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
31f7045ac0SArchie Cobbs.\" OF SUCH DAMAGE.
32f7045ac0SArchie Cobbs.\"
33eddc45e7SJeroen Ruigrok van der Werven.\" Author: Archie Cobbs <archie@FreeBSD.org>
34f7045ac0SArchie Cobbs.\"
35f7045ac0SArchie Cobbs.\" $FreeBSD$
36f7045ac0SArchie Cobbs.\"
373e0efd2eSEitan Adler.Dd January 9, 2012
38bec35b9aSArchie Cobbs.Dt NG_KSOCKET 4
393d45e180SRuslan Ermilov.Os
40f7045ac0SArchie Cobbs.Sh NAME
41f7045ac0SArchie Cobbs.Nm ng_ksocket
42f7045ac0SArchie Cobbs.Nd kernel socket netgraph node type
43f7045ac0SArchie Cobbs.Sh SYNOPSIS
44fbad9e2dSRuslan Ermilov.In sys/types.h
4532eef9aeSRuslan Ermilov.In netgraph/ng_ksocket.h
46f7045ac0SArchie Cobbs.Sh DESCRIPTION
47f7045ac0SArchie CobbsA
48f7045ac0SArchie Cobbs.Nm ksocket
49753d686dSRuslan Ermilovnode is both a netgraph node and a
50753d686dSRuslan Ermilov.Bx
51b5e7e999SRuslan Ermilovsocket.
52b5e7e999SRuslan ErmilovThe
5351291597SJulian Elischer.Nm
54f7045ac0SArchie Cobbsnode type allows one to open a socket inside the kernel and have
55b5e7e999SRuslan Ermilovit appear as a Netgraph node.
56b5e7e999SRuslan ErmilovThe
5751291597SJulian Elischer.Nm
58f7045ac0SArchie Cobbsnode type is the reverse of the socket node type (see
59bec35b9aSArchie Cobbs.Xr ng_socket 4 ) :
60f7045ac0SArchie Cobbswhereas the socket node type enables the user-level manipulation (via
618e078873SArchie Cobbsa socket) of what is normally a kernel-level entity (the associated
628e078873SArchie CobbsNetgraph node), the
6351291597SJulian Elischer.Nm
64f7045ac0SArchie Cobbsnode type enables the kernel-level manipulation (via a Netgraph node) of
658e078873SArchie Cobbswhat is normally a user-level entity (the associated socket).
66f7045ac0SArchie Cobbs.Pp
67f7045ac0SArchie CobbsA
6851291597SJulian Elischer.Nm
69b5e7e999SRuslan Ermilovnode allows at most one hook connection.
70b5e7e999SRuslan ErmilovConnecting to the node is
71b5e7e999SRuslan Ermilovequivalent to opening the associated socket.
72b5e7e999SRuslan ErmilovThe name given to the hook
738e078873SArchie Cobbsdetermines what kind of socket the node will open (see below).
74f7045ac0SArchie CobbsWhen the hook is disconnected and/or the node is shutdown, the
75f7045ac0SArchie Cobbsassociated socket is closed.
76f7045ac0SArchie Cobbs.Sh HOOKS
77f7045ac0SArchie CobbsThis node type supports a single hook connection at a time.
78f7045ac0SArchie CobbsThe name of the hook must be of the form
79c2d03ea8SRuslan Ermilov.Em <family>/<type>/<proto> ,
80f7045ac0SArchie Cobbswhere the
81c2d03ea8SRuslan Ermilov.Em family ,
82c2d03ea8SRuslan Ermilov.Em type ,
83f7045ac0SArchie Cobbsand
84c2d03ea8SRuslan Ermilov.Em proto
85f7045ac0SArchie Cobbsare the decimal equivalent of the same arguments to
86f7045ac0SArchie Cobbs.Xr socket 2 .
87f7045ac0SArchie CobbsAlternately, aliases for the commonly used values are accepted as
885203edcdSRuslan Ermilovwell.
895203edcdSRuslan ErmilovFor example
90f7045ac0SArchie Cobbs.Dv inet/dgram/udp
91f7045ac0SArchie Cobbsis a more readable but equivalent version of
92f7045ac0SArchie Cobbs.Dv 2/2/17 .
93327b288eSJulian Elischer.Pp
94327b288eSJulian ElischerData received into socket is sent out via hook.
95327b288eSJulian ElischerData received on hook is sent out from socket, if the latter is
96327b288eSJulian Elischerconnected (an
97327b288eSJulian Elischer.Dv NGM_KSOCKET_CONNECT
98327b288eSJulian Elischerwas sent to node before).
99327b288eSJulian ElischerIf socket is not connected, destination
1005203edcdSRuslan Ermilov.Vt "struct sockaddr"
101327b288eSJulian Elischermust be supplied in an mbuf tag with cookie
102327b288eSJulian Elischer.Dv NGM_KSOCKET_COOKIE
103327b288eSJulian Elischerand type
104327b288eSJulian Elischer.Dv NG_KSOCKET_TAG_SOCKADDR
105327b288eSJulian Elischerattached to data.
106327b288eSJulian ElischerOtherwise
107327b288eSJulian Elischer.Nm
108327b288eSJulian Elischerwill return
1095203edcdSRuslan Ermilov.Er ENOTCONN
110327b288eSJulian Elischerto sender.
111f7045ac0SArchie Cobbs.Sh CONTROL MESSAGES
112f7045ac0SArchie CobbsThis node type supports the generic control messages, plus the following:
113f7045ac0SArchie Cobbs.Bl -tag -width foo
114*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_BIND Pq Ic bind
115f7045ac0SArchie CobbsThis functions exactly like the
116f7045ac0SArchie Cobbs.Xr bind 2
117b5e7e999SRuslan Ermilovsystem call.
118b5e7e999SRuslan ErmilovThe
1195203edcdSRuslan Ermilov.Vt "struct sockaddr"
120f7045ac0SArchie Cobbssocket address parameter should be supplied as an argument.
121*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_LISTEN Pq Ic listen
122f7045ac0SArchie CobbsThis functions exactly like the
123f7045ac0SArchie Cobbs.Xr listen 2
124b5e7e999SRuslan Ermilovsystem call.
125b5e7e999SRuslan ErmilovThe backlog parameter (a single 32 bit
126f7045ac0SArchie Cobbs.Dv int )
127f7045ac0SArchie Cobbsshould be supplied as an argument.
128*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_CONNECT Pq Ic connect
129f7045ac0SArchie CobbsThis functions exactly like the
130f7045ac0SArchie Cobbs.Xr connect 2
131b5e7e999SRuslan Ermilovsystem call.
132b5e7e999SRuslan ErmilovThe
1335203edcdSRuslan Ermilov.Vt "struct sockaddr"
1348e078873SArchie Cobbsdestination address parameter should be supplied as an argument.
135*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_ACCEPT Pq Ic accept
136c2888a85SRuslan ErmilovEquivalent to the
137c2888a85SRuslan Ermilov.Xr accept 2
138c2888a85SRuslan Ermilovsystem call on a non-blocking socket.
139c2888a85SRuslan ErmilovIf there is a pending connection on the queue,
140c2888a85SRuslan Ermilova new socket and a corresponding cloned node are created.
141c2888a85SRuslan ErmilovReturned are the cloned node's ID and a peer name (as
142c2888a85SRuslan Ermilov.Vt "struct sockaddr" ) .
143c2888a85SRuslan ErmilovIf there are no pending connections,
144c2888a85SRuslan Ermilovthis control message returns nothing,
145c2888a85SRuslan Ermilovand a connected node will receive the above message asynchronously,
146c2888a85SRuslan Ermilovwhen a connection is established.
147c2888a85SRuslan Ermilov.Pp
148c2888a85SRuslan ErmilovA cloned node supports a single hook with an arbitrary name.
149c2888a85SRuslan ErmilovIf not connected, a node disappears when its parent node is destroyed.
150c2888a85SRuslan ErmilovOnce connected, it becomes an independent node.
151*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_GETNAME Pq Ic getname
1528e078873SArchie CobbsEquivalent to the
153000d5619SMaxim Sobolev.Xr getsockname 2
154b5e7e999SRuslan Ermilovsystem call.
155b5e7e999SRuslan ErmilovThe name is returned as a
1565203edcdSRuslan Ermilov.Vt "struct sockaddr"
1578e078873SArchie Cobbsin the arguments field of the reply.
158*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_GETPEERNAME Pq Ic getpeername
1598e078873SArchie CobbsEquivalent to the
1608e078873SArchie Cobbs.Xr getpeername 2
161b5e7e999SRuslan Ermilovsystem call.
162b5e7e999SRuslan ErmilovThe name is returned as a
1635203edcdSRuslan Ermilov.Vt "struct sockaddr"
1648e078873SArchie Cobbsin the arguments field of the reply.
165*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_SETOPT Pq Ic setopt
1668e078873SArchie CobbsEquivalent to the
1678e078873SArchie Cobbs.Xr setsockopt 2
1688e078873SArchie Cobbssystem call, except that the option name, level, and value are passed in a
1695203edcdSRuslan Ermilov.Vt "struct ng_ksocket_sockopt" .
170*c60bda17SJoel Dahl.It Dv NGM_KSOCKET_GETOPT Pq Ic getopt
1718e078873SArchie CobbsEquivalent to the
1728e078873SArchie Cobbs.Xr getsockopt 2
1738e078873SArchie Cobbssystem call, except that the option is passed in a
1745203edcdSRuslan Ermilov.Vt "struct ng_ksocket_sockopt" .
1758e078873SArchie CobbsWhen sending this command, the
1768e078873SArchie Cobbs.Dv value
1778e078873SArchie Cobbsfield should be empty; upon return, it will contain the
1788e078873SArchie Cobbsretrieved value.
179f7045ac0SArchie Cobbs.El
1808e078873SArchie Cobbs.Sh ASCII FORM CONTROL MESSAGES
1818e078873SArchie CobbsFor control messages that pass a
1825203edcdSRuslan Ermilov.Vt "struct sockaddr"
18351291597SJulian Elischerin the argument field, the normal
18451291597SJulian Elischer.Tn ASCII
18551291597SJulian Elischerequivalent of the C structure
186b5e7e999SRuslan Ermilovis an acceptable form.
187b5e7e999SRuslan ErmilovFor the
1888e078873SArchie Cobbs.Dv PF_INET
1898e078873SArchie Cobbsand
1908e078873SArchie Cobbs.Dv PF_LOCAL
1918e078873SArchie Cobbsaddress families, a more convenient form is also used, which is
1928e078873SArchie Cobbsthe protocol family name, followed by a slash, followed by the actual
193b5e7e999SRuslan Ermilovaddress.
194b5e7e999SRuslan ErmilovFor
1958e078873SArchie Cobbs.Dv PF_INET ,
1968e078873SArchie Cobbsthe address is an IP address followed by an optional colon and port number.
1978e078873SArchie CobbsFor
1988e078873SArchie Cobbs.Dv PF_LOCAL ,
1998e078873SArchie Cobbsthe address is the pathname as a doubly quoted string.
2008e078873SArchie Cobbs.Pp
2018e078873SArchie CobbsExamples:
202756e2ef0SAlexander V. Chernikov.Bl -tag -width "PF_LOCAL"
2038e078873SArchie Cobbs.It Dv PF_LOCAL
2048e078873SArchie Cobbslocal/"/tmp/foo.socket"
205ef02c1e5SArchie Cobbs.It Dv PF_INET
206ef02c1e5SArchie Cobbsinet/192.168.1.1:1234
2078e078873SArchie Cobbs.It Other
208ef02c1e5SArchie Cobbs.Dv "\&{ family=16 len=16 data=[0x70 0x00 0x01 0x23] \&}"
2098e078873SArchie Cobbs.El
2108e078873SArchie Cobbs.Pp
2118e078873SArchie CobbsFor control messages that pass a
2125203edcdSRuslan Ermilov.Vt "struct ng_ksocket_sockopt" ,
21351291597SJulian Elischerthe normal
21451291597SJulian Elischer.Tn ASCII
215b5e7e999SRuslan Ermilovform for that structure is used.
216b5e7e999SRuslan ErmilovIn the future, more
2178e078873SArchie Cobbsconvenient encoding of the more common socket options may be supported.
218756e2ef0SAlexander V. Chernikov.Pp
219756e2ef0SAlexander V. ChernikovSetting socket options example:
220756e2ef0SAlexander V. Chernikov.Bl -tag -width "PF_LOCAL"
221756e2ef0SAlexander V. Chernikov.It Set FIB 2 for a socket (SOL_SOCKET, SO_SETFIB):
222756e2ef0SAlexander V. Chernikov.Dv "setopt \&{ level=0xffff name=0x1014 data=[ 2 ] \&}"
223756e2ef0SAlexander V. Chernikov.El
224f7045ac0SArchie Cobbs.Sh SHUTDOWN
225f7045ac0SArchie CobbsThis node shuts down upon receipt of a
226f7045ac0SArchie Cobbs.Dv NGM_SHUTDOWN
227f7045ac0SArchie Cobbscontrol message, or when the hook is disconnected.
228f7045ac0SArchie CobbsShutdown of the node closes the associated socket.
229f7045ac0SArchie Cobbs.Sh SEE ALSO
230f7045ac0SArchie Cobbs.Xr socket 2 ,
231f7045ac0SArchie Cobbs.Xr netgraph 4 ,
232bec35b9aSArchie Cobbs.Xr ng_socket 4 ,
233327b288eSJulian Elischer.Xr ngctl 8 ,
23466e7b3a3SRobert Watson.Xr mbuf_tags 9 ,
23566e7b3a3SRobert Watson.Xr socket 9
23651291597SJulian Elischer.Sh HISTORY
23751291597SJulian ElischerThe
23851291597SJulian Elischer.Nm
23951291597SJulian Elischernode type was implemented in
24051291597SJulian Elischer.Fx 4.0 .
24151291597SJulian Elischer.Sh AUTHORS
242eddc45e7SJeroen Ruigrok van der Werven.An Archie Cobbs Aq archie@FreeBSD.org
243