xref: /freebsd/share/man/man9/mdchain.9 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
1a1a5ca55SBoris Popov.\" -*- nroff -*-
2a1a5ca55SBoris Popov.\"
3a1a5ca55SBoris Popov.\" Copyright (c) 2001 Boris Popov
4a1a5ca55SBoris Popov.\"
5a1a5ca55SBoris Popov.\" Redistribution and use in source and binary forms, with or without
6a1a5ca55SBoris Popov.\" modification, are permitted provided that the following conditions
7a1a5ca55SBoris Popov.\" are met:
8a1a5ca55SBoris Popov.\" 1. Redistributions of source code must retain the above copyright
9a1a5ca55SBoris Popov.\"    notice, this list of conditions and the following disclaimer.
10a1a5ca55SBoris Popov.\" 2. Redistributions in binary form must reproduce the above copyright
11a1a5ca55SBoris Popov.\"    notice, this list of conditions and the following disclaimer in the
12a1a5ca55SBoris Popov.\"    documentation and/or other materials provided with the distribution.
13a1a5ca55SBoris Popov.\"
14a1a5ca55SBoris Popov.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
15a1a5ca55SBoris Popov.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16a1a5ca55SBoris Popov.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17a1a5ca55SBoris Popov.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
18a1a5ca55SBoris Popov.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19a1a5ca55SBoris Popov.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20a1a5ca55SBoris Popov.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21a1a5ca55SBoris Popov.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22a1a5ca55SBoris Popov.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23a1a5ca55SBoris Popov.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24a1a5ca55SBoris Popov.\"
25a1a5ca55SBoris Popov.Dd February 28, 2001
26a1a5ca55SBoris Popov.Dt MDCHAIN 9
27a1a5ca55SBoris Popov.Os
28a1a5ca55SBoris Popov.Sh NAME
29a1a5ca55SBoris Popov.Nm mdchain ,
30a1a5ca55SBoris Popov.Nm md_initm ,
31a1a5ca55SBoris Popov.Nm md_done ,
32a1a5ca55SBoris Popov.Nm md_append_record ,
33a1a5ca55SBoris Popov.Nm md_next_record ,
34a1a5ca55SBoris Popov.Nm md_get_uint8 ,
35a1a5ca55SBoris Popov.Nm md_get_uint16 ,
36a1a5ca55SBoris Popov.Nm md_get_uint16be ,
37a1a5ca55SBoris Popov.Nm md_get_uint16le ,
38a1a5ca55SBoris Popov.Nm md_get_uint32 ,
39a1a5ca55SBoris Popov.Nm md_get_uint32be ,
40a1a5ca55SBoris Popov.Nm md_get_uint32le ,
41a1a5ca55SBoris Popov.Nm md_get_int64 ,
42a1a5ca55SBoris Popov.Nm md_get_int64be ,
43a1a5ca55SBoris Popov.Nm md_get_int64le ,
44a1a5ca55SBoris Popov.Nm md_get_mem ,
45a1a5ca55SBoris Popov.Nm md_get_mbuf ,
46a1a5ca55SBoris Popov.Nm md_get_uio
47a1a5ca55SBoris Popov.Nd "set of functions to dissect an mbuf chain to various data types"
48a1a5ca55SBoris Popov.Sh SYNOPSIS
49a1a5ca55SBoris Popov.Cd options LIBMCHAIN
50a1a5ca55SBoris Popov.Li kldload libmchain
51a1a5ca55SBoris Popov.Pp
5232eef9aeSRuslan Ermilov.In sys/param.h
53f16b3c0dSChad David.In sys/uio.h
5432eef9aeSRuslan Ermilov.In sys/mchain.h
55a1a5ca55SBoris Popov.Ft void
56a1a5ca55SBoris Popov.Fn md_initm "struct mdchain *mdp" "struct mbuf *m"
57a1a5ca55SBoris Popov.Ft void
58a1a5ca55SBoris Popov.Fn md_done "struct mdchain *mdp"
59a1a5ca55SBoris Popov.Ft void
60a1a5ca55SBoris Popov.Fn md_append_record "struct mdchain *mdp" "struct mbuf *top"
61a1a5ca55SBoris Popov.Ft int
62a1a5ca55SBoris Popov.Fn md_next_record "struct mdchain *mdp"
63a1a5ca55SBoris Popov.Ft int
646b99842aSEd Schouten.Fn md_get_uint8 "struct mdchain *mdp" "uint8_t *x"
65a1a5ca55SBoris Popov.Ft int
666b99842aSEd Schouten.Fn md_get_uint16 "struct mdchain *mdp" "uint16_t *x"
67a1a5ca55SBoris Popov.Ft int
686b99842aSEd Schouten.Fn md_get_uint16be "struct mdchain *mdp" "uint16_t *x"
69a1a5ca55SBoris Popov.Ft int
706b99842aSEd Schouten.Fn md_get_uint16le "struct mdchain *mdp" "uint16_t *x"
71a1a5ca55SBoris Popov.Ft int
726b99842aSEd Schouten.Fn md_get_uint32 "struct mdchain *mdp" "uint32_t *x"
73a1a5ca55SBoris Popov.Ft int
746b99842aSEd Schouten.Fn md_get_uint32be "struct mdchain *mdp" "uint32_t *x"
75a1a5ca55SBoris Popov.Ft int
766b99842aSEd Schouten.Fn md_get_uint32le "struct mdchain *mdp" "uint32_t *x"
77a1a5ca55SBoris Popov.Ft int
78d063f1ebSBruce Evans.Fn md_get_int64 "struct mdchain *mdp" "int64_t *x"
79a1a5ca55SBoris Popov.Ft int
80d063f1ebSBruce Evans.Fn md_get_int64be "struct mdchain *mdp" "int64_t *x"
81a1a5ca55SBoris Popov.Ft int
82d063f1ebSBruce Evans.Fn md_get_int64le "struct mdchain *mdp" "int64_t *x"
83a1a5ca55SBoris Popov.Ft int
84a1a5ca55SBoris Popov.Fn md_get_mem "struct mdchain *mdp" "caddr_t target" "int size" "int type"
85a1a5ca55SBoris Popov.Ft int
86d063f1ebSBruce Evans.Fn md_get_mbuf "struct mdchain *mdp" "int size" "struct mbuf **m"
87a1a5ca55SBoris Popov.Ft int
88a1a5ca55SBoris Popov.Fn md_get_uio "struct mdchain *mdp" "struct uio *uiop" "int size"
89a1a5ca55SBoris Popov.Sh DESCRIPTION
90a1a5ca55SBoris PopovThese functions are used to decompose mbuf chains to various data types.
91a1a5ca55SBoris PopovThe
92a1a5ca55SBoris Popov.Vt mdchain
93a1a5ca55SBoris Popovstructure is used as a working context
94e95f5612SBoris Popovand should be initialized through a call of the
95a1a5ca55SBoris Popov.Fn mb_initm
96a1a5ca55SBoris Popovfunction.
97a1a5ca55SBoris PopovIt has the following fields:
98a1a5ca55SBoris Popov.Bl -tag -width "md_top"
99a1a5ca55SBoris Popov.It Va "md_top"
100b0536a9bSRuslan Ermilov.Pq Vt "struct mbuf *"
101b0536a9bSRuslan ErmilovA pointer to the top of the parsed mbuf chain.
102a1a5ca55SBoris Popov.It Va md_cur
103b0536a9bSRuslan Ermilov.Pq Vt "struct mbuf *"
104b0536a9bSRuslan ErmilovA pointer to the currently parsed mbuf.
105a1a5ca55SBoris Popov.It Va md_pas
106b0536a9bSRuslan Ermilov.Pq Vt int
107b0536a9bSRuslan ErmilovOffset in the current mbuf.
108a1a5ca55SBoris Popov.El
109a1a5ca55SBoris Popov.Pp
110a1a5ca55SBoris PopovThe
111a1a5ca55SBoris Popov.Fn md_done
112a1a5ca55SBoris Popovfunction disposes of an mbuf chain pointed to by the
113a1a5ca55SBoris Popov.Fa mdp->md_top
114a1a5ca55SBoris Popovfield and sets the field to
115a1a5ca55SBoris Popov.Dv NULL .
116a1a5ca55SBoris Popov.Pp
117a1a5ca55SBoris PopovThe
118a1a5ca55SBoris Popov.Fn md_append_record
119a1a5ca55SBoris Popovappends a new mbuf chain using
120a1a5ca55SBoris Popov.Va m_nextpkt
121e95f5612SBoris Popovfield to form a single linked list of mbuf chains.
122e95f5612SBoris PopovIf the
12390bd2994SRuslan Ermilov.Fa mdp->md_top
124a1a5ca55SBoris Popovfield is
125a1a5ca55SBoris Popov.Dv NULL ,
126e95f5612SBoris Popovthen this function behaves exactly as the
127a1a5ca55SBoris Popov.Fn md_initm
128a1a5ca55SBoris Popovfunction.
129a1a5ca55SBoris Popov.Pp
130a1a5ca55SBoris PopovThe
131a1a5ca55SBoris Popov.Fn md_next_record
132e95f5612SBoris Popovfunction extracts the next mbuf chain and disposes the current one, if any.
133e95f5612SBoris PopovFor a new mbuf chain it calls the
134a1a5ca55SBoris Popov.Fn md_initm
135a1a5ca55SBoris Popovfunction.
136e95f5612SBoris PopovIf there is no data left the function returns
13790bd2994SRuslan Ermilov.Er ENOENT .
138a1a5ca55SBoris Popov.Pp
139a1a5ca55SBoris PopovAll
140a1a5ca55SBoris Popov.Fn md_get_*
141a1a5ca55SBoris Popovfunctions perform an actual copy of the data from an mbuf chain.
142a1a5ca55SBoris PopovFunctions which have
143a1a5ca55SBoris Popov.Cm le
144a1a5ca55SBoris Popovor
145a1a5ca55SBoris Popov.Cm be
14690bd2994SRuslan Ermilovsuffixes will perform conversion to the little\- or big\-endian data formats.
147a1a5ca55SBoris Popov.Pp
148a1a5ca55SBoris Popov.Fn md_get_mem
149a1a5ca55SBoris Popovfunction copies
150a1a5ca55SBoris Popov.Fa size
151a1a5ca55SBoris Popovbytes of data specified by the
152a1a5ca55SBoris Popov.Fa source
153a1a5ca55SBoris Popovargument from an mbuf chain.
154a1a5ca55SBoris PopovThe
155a1a5ca55SBoris Popov.Fa type
156a1a5ca55SBoris Popovargument specifies the method used to perform a copy,
157a1a5ca55SBoris Popovand can be one of the following:
158b0536a9bSRuslan Ermilov.Bl -tag -width ".Dv MB_MINLINE"
159a1a5ca55SBoris Popov.It Dv MB_MSYSTEM
160e95f5612SBoris PopovUse the
161a1a5ca55SBoris Popov.Fn bcopy
162e95f5612SBoris Popovfunction.
163a1a5ca55SBoris Popov.It Dv MB_MUSER
164e95f5612SBoris PopovUse the
165a1a5ca55SBoris Popov.Xr copyin 9
166e95f5612SBoris Popovfunction.
167a1a5ca55SBoris Popov.It Dv MB_MINLINE
168e95f5612SBoris PopovUse an
169a1a5ca55SBoris Popov.Dq inline
170e95f5612SBoris Popovloop which does not call any function.
171a1a5ca55SBoris Popov.El
172a1a5ca55SBoris Popov.Pp
173a1a5ca55SBoris PopovIf
17490bd2994SRuslan Ermilov.Fa target
175e95f5612SBoris Popovis
176a1a5ca55SBoris Popov.Dv NULL ,
177e95f5612SBoris Popovan actual copy is not performed
178e95f5612SBoris Popovand the function just skips the given number of bytes.
179a1a5ca55SBoris Popov.Sh RETURN VALUES
180a1a5ca55SBoris PopovAll
181a1a5ca55SBoris Popov.Ft int
182a1a5ca55SBoris Popovfunctions return zero if successful,
183a1a5ca55SBoris Popovotherwise an error code is returned.
184a1a5ca55SBoris Popov.Pp
185a1a5ca55SBoris Popov.Em Note :
186a1a5ca55SBoris Popovafter failure of any function,
187e95f5612SBoris Popovan mbuf chain is left in the broken state and only the
188a1a5ca55SBoris Popov.Fn md_done
189a1a5ca55SBoris Popovfunction can safely be called to destroy it.
190a1a5ca55SBoris Popov.Sh EXAMPLES
191a1a5ca55SBoris Popov.Bd -literal
192a1a5ca55SBoris Popovstruct mdchain *mdp;
193a1a5ca55SBoris Popovstruct mbuf *m;
1946b99842aSEd Schoutenuint16_t length;
1956b99842aSEd Schoutenuint8_t byte;
19690bd2994SRuslan Ermilov
197a1a5ca55SBoris Popovreceive(so, &m);
198a1a5ca55SBoris Popovmd_initm(mdp, m);
199a1a5ca55SBoris Popovif (md_get_uint8(mdp, &byte) != 0 ||
200a1a5ca55SBoris Popov    md_get_uint16le(mdp, &length) != 0)
201a1a5ca55SBoris Popov	error = EBADRPC;
202a1a5ca55SBoris Popovmb_done(mdp);
203a1a5ca55SBoris Popov.Ed
204a1a5ca55SBoris Popov.Sh SEE ALSO
2055521ff5aSRuslan Ermilov.Xr mbchain 9 ,
2065521ff5aSRuslan Ermilov.Xr mbuf 9
207a1a5ca55SBoris Popov.Sh AUTHORS
208a1a5ca55SBoris PopovThis manual page was written by
209*8a7314fcSBaptiste Daroussin.An Boris Popov Aq Mt bp@FreeBSD.org .
210