xref: /freebsd/share/man/man9/mbuf.9 (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1.\" Copyright (c) 2000 FreeBSD Inc.
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\"
13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16.\" ARE DISCLAIMED.  IN NO EVENT SHALL [your name] OR CONTRIBUTORS BE LIABLE
17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
25.\" $FreeBSD$
26.\"
27.Dd October 17, 2000
28.Dt MBUF 9
29.Os
30.\"
31.Sh NAME
32.Nm mbuf
33.Nd "memory management in the kernel IPC subsystem"
34.\"
35.Sh SYNOPSIS
36.Fd #include <sys/param.h>
37.Fd #include <sys/mbuf.h>
38.\"
39.Ss Mbuf allocation macros
40.Fn MGET "struct mbuf *mbuf" "int how" "short type"
41.Fn MGETHDR "struct mbuf *mbuf" "int how" "short type"
42.Fn MCLGET "struct mbuf *mbuf" "int how"
43.Fo MEXTADD
44.Fa "struct mbuf *mbuf"
45.Fa "caddr_t buf"
46.Fa "u_int size"
47.Fa "void (*free)(void *opt_args)"
48.Fa "void *opt_args"
49.Fa "short flags"
50.Fa "int type"
51.Fc
52.Fn MEXTFREE "struct mbuf *mbuf"
53.Fn MEXT_ADD_REF "struct mbuf *mbuf"
54.Fn MEXT_REM_REF "struct mbuf *mbuf"
55.Fn MFREE "struct mbuf *mbuf" "struct mbuf *successor"
56.\"
57.Ss Mbuf utility macros
58.Fn mtod "struct mbuf *mbuf" "any type"
59.Fn MEXT_IS_REF "struct mbuf *mbuf"
60.Fn M_COPY_PKTHDR "struct mbuf *to" "struct mbuf *from"
61.Fn M_ALIGN "struct mbuf *mbuf" "u_int len"
62.Fn MH_ALIGN "struct mbuf *mbuf" "u_int len"
63.Fn M_LEADINGSPACE "struct mbuf *mbuf"
64.Fn M_TRAILINGSPACE "struct mbuf *mbuf"
65.Fn M_PREPEND "struct mbuf *mbuf" "int len" "int how"
66.Fn MCHTYPE "struct mbuf *mbuf" "u_int type"
67.Fn M_WRITABLE "struct mbuf *mbuf"
68.\"
69.Ss Mbuf allocation functions
70.Ft struct mbuf *
71.Fn m_get "int how" "int type"
72.Ft struct mbuf *
73.Fn m_getm "struct mbuf *orig" "int len" "int how" "int type"
74.Ft struct mbuf *
75.Fn m_getclr "int how" "int type"
76.Ft struct mbuf *
77.Fn m_gethdr "int how" "int type"
78.Ft struct mbuf *
79.Fn m_free "struct mbuf *mbuf"
80.Ft void
81.Fn m_freem "struct mbuf *mbuf"
82.\"
83.Ss Mbuf utility functions
84.Ft void
85.Fn m_adj "struct mbuf *mbuf" "int len"
86.Ft struct mbuf *
87.Fn m_prepend "struct mbuf *mbuf" "int len" "int how"
88.Ft struct mbuf *
89.Fn m_pullup "struct mbuf *mbuf" "int len"
90.Ft struct mbuf *
91.Fn m_copym "struct mbuf *mbuf" "int offset" "int len" "int how"
92.Ft struct mbuf *
93.Fn m_copypacket "struct mbuf *mbuf" "int how"
94.Ft struct mbuf *
95.Fn m_dup "struct mbuf *mbuf" "int how"
96.Ft void
97.Fn m_copydata "struct mbuf *mbuf" "int offset" "int len" "caddr_t buf"
98.Ft void
99.Fn m_copyback "struct mbuf *mbuf" "int offset" "int len" "caddr_t buf"
100.Ft struct mbuf *
101.Fo m_devget
102.Fa "char *buf"
103.Fa "int len"
104.Fa "int offset"
105.Fa "struct ifnet *ifp"
106.Fa "void (*copy)(char *from, caddr_t to, u_int len)"
107.Fc
108.Ft void
109.Fn m_cat "struct mbuf *m" "struct mbuf *n"
110.Ft struct mbuf *
111.Fn m_split "struct mbuf *mbuf" "int len" "int how"
112.\"
113.Sh DESCRIPTION
114An mbuf is a basic unit of memory management in the kernel IPC subsystem.
115Network packets and socket buffers are stored in mbufs.
116A network packet may span multiple mbufs arranged into a chain
117.Pq linked list ,
118which allows adding or trimming
119network headers with little overhead.
120.Pp
121While a developer should not bother with mbuf internals without serious
122reason in order to avoid incompatibilities with future changes, it
123is useful to understand the mbuf's general structure.
124.Pp
125An mbuf consists of a variable-sized header and a small internal
126buffer for data.
127The mbuf's total size,
128.Dv MSIZE ,
129is a machine-dependent constant defined in
130.Pa machine/param.h .
131The mbuf header includes:
132.Pp
133.Bl -tag -width "m_nextpkt" -compact -offset indent
134.It Fa m_next
135a pointer to the next buffer in the chain
136.It Fa m_nextpkt
137a pointer to the next chain in the queue
138.It Fa m_data
139a pointer to the data
140.It Fa m_len
141the length of the data
142.It Fa m_type
143the type of data
144.It Fa m_flags
145the mbuf flags
146.El
147.Pp
148The mbuf flag bits are defined as follows:
149.Bd -literal
150/* mbuf flags */
151#define	M_EXT		0x0001	/* has associated external storage */
152#define	M_PKTHDR	0x0002	/* start of record */
153#define	M_EOR		0x0004	/* end of record */
154#define	M_RDONLY	0x0008	/* associated data marked read-only */
155#define	M_PROTO1	0x0010	/* protocol-specific */
156#define	M_PROTO2	0x0020 	/* protocol-specific */
157#define	M_PROTO3	0x0040	/* protocol-specific */
158#define	M_PROTO4	0x0080	/* protocol-specific */
159#define	M_PROTO5	0x0100	/* protocol-specific */
160
161/* mbuf pkthdr flags, also in m_flags */
162#define	M_BCAST		0x0200	/* send/received as link-level broadcast */
163#define	M_MCAST		0x0400	/* send/received as link-level multicast */
164#define	M_FRAG		0x0800	/* packet is fragment of larger packet */
165#define	M_FIRSTFRAG	0x1000	/* packet is first fragment */
166#define	M_LASTFRAG	0x2000	/* packet is last fragment */
167.Ed
168.Pp
169The available mbuf types are defined as follows:
170.Bd -literal
171/* mbuf types */
172#define	MT_FREE		0	/* should be on free list */
173#define	MT_DATA		1	/* dynamic (data) allocation */
174#define	MT_HEADER	2	/* packet header */
175#define	MT_SONAME	8	/* socket name */
176#define	MT_FTABLE	11	/* fragment reassembly header */
177#define	MT_CONTROL	14	/* extra-data protocol message */
178#define	MT_OOBDATA	15	/* expedited data  */
179.Ed
180.Pp
181If the
182.Dv M_PKTHDR
183flag is set, a
184.Li struct pkthdr m_pkthdr
185is added to the mbuf header.
186It contains a pointer to the interface
187the packet has been received from
188.Pq Fa struct ifnet *rcvif ,
189and the total packet length
190.Pq Fa int len .
191.Pp
192If small enough, data is stored in the mbuf's internal data buffer.
193If the data is sufficiently large, another mbuf may be added to the chain,
194or external storage may be associated with the mbuf.
195.Dv MHLEN
196bytes of data can fit into an mbuf with the
197.Dv M_PKTHDR
198flag set,
199.Dv MLEN
200bytes can otherwise.
201.Pp
202If external storage is being associated with an mbuf, the
203.Dv m_ext
204header is added at the cost of losing the internal data buffer.
205It includes a pointer to external storage, the size of the storage,
206a pointer to a function used for freeing the storage,
207a pointer to an optional argument that can be passed to the function,
208and a pointer to a reference counter.
209An mbuf using external storage has the
210.Dv M_EXT
211flag set.
212.Pp
213The system supplies a macro for allocating the desired external storage
214buffer,
215.Dv MEXTADD .
216.Pp
217The allocation and management of the reference counter is handled by the
218subsystem.
219The developer can check whether the reference count for the
220given mbuf's external storage is greater than 1 with the
221.Dv MEXT_IS_REF
222macro.
223Similarly, the developer can directly add and remove references,
224if absolutely necessary, with the use of the
225.Dv MEXT_ADD_REF
226and
227.Dv MEXT_REM_REF
228macros.
229.Pp
230The system also supplies a default type of external storage buffer called an
231.Dq mbuf cluster .
232Mbuf clusters can be allocated and configured with the use of the
233.Dv MCLGET
234macro.
235Each cluster is
236.Dv MCLBYTES
237in size, where MCLBYTES is a machine-dependent constant.
238The system defines an advisory macro
239.Dv MINCLSIZE ,
240which is the smallest amount of data to put into a cluster.
241It's equal to the sum of
242.Dv MLEN
243and
244.Dv MHLEN .
245It is typically preferable to store data into an mbuf's data region, if size
246permits, as opposed to allocating a separate mbuf cluster to hold the same
247data.
248.\"
249.Ss Macros and Functions
250There are numerous predefined macros and functions that provide the
251developer with common utilities.
252.\"
253.Bl -ohang -offset indent
254.It Fn mtod mbuf type
255Convert an mbuf pointer to a data pointer.
256The macro expands to the data pointer cast to the pointer of the specified type.
257.Sy Note :
258It is advisable to ensure that there is enough contiguous data in the mbuf.
259See
260.Fn m_pullup
261for details.
262.It Fn MGET mbuf how type
263Allocate an mbuf and initialize it to contain internal data.
264.Fa mbuf
265will point to the allocated mbuf on success, or be set to
266.Dv NULL
267on failure.
268The
269.Fa how
270argument is to be set to
271.Dv M_TRYWAIT
272or
273.Dv M_DONTWAIT .
274It specifies whether the caller is willing to block if necessary.
275If
276.Fa how
277is set to
278.Dv M_TRYWAIT ,
279a failed allocation will result in the caller being put
280to sleep for a designated
281kern.ipc.mbuf_wait
282.Po
283.Xr sysctl 8
284tunable
285.Pc
286number of ticks.
287A number of other mbuf-related
288functions and macros have the same argument because they may
289at some point need to allocate new mbufs.
290.It Fn MGETHDR mbuf how type
291Allocate an mbuf and initialize it to contain a packet header
292and internal data.
293See
294.Fn MGET
295for details.
296.It Fn MCLGET mbuf how
297Allocate and attach an mbuf cluster to an mbuf.
298If the macro fails, the
299.Dv M_EXT
300flag won't be set in the mbuf.
301.It Fn M_PREPEND mbuf len how
302This macro operates on an mbuf chain.
303It is an optimized wrapper for
304.Fn m_prepend
305that can make use of possible empty space before data
306.Pq "e.g. left after trimming of a link-layer header" .
307The new chain pointer or
308.Dv NULL
309is in
310.Fa mbuf
311after the call.
312.It Fn M_WRITABLE mbuf
313This macro will evaluate true if the mbuf is not marked
314.Dv M_RDONLY
315and if either the mbuf does not contain external storage or,
316if it does,
317then if the reference count of the storage is not greater than 1.
318The
319.Dv M_RDONLY
320flag can be set in the mbuf's
321.Dv m_flags .
322This can be achieved during setup of the external storage,
323by passing the
324.Dv M_RDONLY
325bit as a
326.Fa flags
327argument to the
328.Fn MEXTADD
329macro, or can be directly set in individual mbufs.
330.El
331.Pp
332The functions are:
333.Bl -ohang -offset indent
334.It Fn m_get how type
335A function version of
336.Fn MGET
337for non-critical paths.
338.It Fn m_getm orig len how type
339Allocate
340.Fa len
341bytes worth of mbufs and mbuf clusters if necessary and append the resulting
342allocated chain to the
343.Fa orig
344mbuf chain, if it is
345.No non- Ns Dv NULL .
346If the allocation fails at any point,
347free whatever was allocated and return
348.Dv NULL .
349If
350.Fa orig
351is
352.No non- Ns Dv NULL ,
353it will not be freed.
354It is possible to use
355.Fn m_getm
356to either append
357.Fa len
358bytes to an existing mbuf or mbuf chain
359(for example, one which may be sitting in a pre-allocated ring)
360or to simply perform an all-or-nothing mbuf and mbuf cluster allocation.
361.It Fn m_gethdr how type
362A function version of
363.Fn MGETHDR
364for non-critical paths.
365.It Fn m_getclr how type
366Allocate an mbuf and zero out the data region.
367.El
368.Pp
369The functions below operate on mbuf chains.
370.Bl -ohang -offset indent
371.It Fn m_freem mbuf
372Free an entire mbuf chain, including any external
373storage.
374.\"
375.It Fn m_adj mbuf len
376Trim
377.Fa len
378bytes from the head of an mbuf chain if
379.Fa len
380is positive, from the tail otherwise.
381.\"
382.It Fn m_prepend mbuf len how
383Allocate a new mbuf and prepend it to the chain, handle
384.Dv M_PKTHDR
385properly.
386.Sy Note :
387It doesn't allocate any clusters, so
388.Fa len
389must be less than
390.Dv MLEN
391or
392.Dv MHLEN ,
393depending on the
394.Dv M_PKTHDR
395flag setting.
396.\"
397.It Fn m_pullup mbuf len
398Arrange that the first
399.Fa len
400bytes of an mbuf chain are contiguous and lay in the data area of
401.Fa mbuf ,
402so they are accessible with
403.Fn mtod mbuf type .
404Return the new chain on success,
405.Dv NULL
406on failure
407.Pq the chain is freed in this case .
408.Sy Note :
409It doesn't allocate any clusters, so
410.Fa len
411must be less than
412.Dv MHLEN .
413.\"
414.It Fn m_copym mbuf offset len how
415Make a copy of an mbuf chain starting
416.Fa offset
417bytes from the beginning, continuing for
418.Fa len
419bytes.
420If
421.Fa len
422is
423.Dv M_COPYALL ,
424copy to the end of the mbuf chain.
425.Sy Note :
426The copy is read-only, because clusters are not
427copied, only their reference counts are incremented.
428.\"
429.It Fn m_copypacket mbuf how
430Copy an entire packet including header, which must be present.
431This is an optimized version of the common case
432.Fn m_copym mbuf 0 M_COPYALL how .
433.Sy Note :
434the copy is read-only, because clusters are not
435copied, only their reference counts are incremented.
436.\"
437.It Fn m_dup mbuf how
438Copy a packet header mbuf chain into a completely new chain, including
439copying any mbuf clusters.
440Use this instead of
441.Fn m_copypacket
442when you need a writable copy of an mbuf chain.
443.\"
444.It Fn m_copydata mbuf offset len buf
445Copy data from an mbuf chain starting
446.Fa off
447bytes from the beginning, continuing for
448.Fa len
449bytes, into the indicated buffer
450.Fa buf .
451.\"
452.It Fn m_copyback mbuf offset len buf
453Copy
454.Fa len
455bytes from the buffer
456.Fa buf
457back into the indicated mbuf chain,
458starting at
459.Fa offset
460bytes from the beginning of the chain, extending the mbuf chain if necessary.
461.Sy Note :
462It doesn't allocate any clusters, just adds mbufs to the chain.
463It's safe to set
464.Fa offset
465beyond the current chain end: zeroed mbufs will be allocated to fill the
466space.
467.\"
468.It Fn m_devget buf len offset ifp copy
469Copy data from a device local memory pointed to by
470.Fa buf
471to an mbuf chain.
472The copy is done using a specified copy routine
473.Fa copy ,
474or
475.Fn bcopy
476if
477.Fa copy
478is
479.Dv NULL .
480.\"
481.It Fn m_cat m n
482Concatenate
483.Fa n
484to
485.Fa m .
486Both chains must be of the same type.
487.Fa N
488is still valid after the function returned.
489.Sy Note :
490It does not handle
491.Dv M_PKTHDR
492and friends.
493.\"
494.It Fn m_split mbuf len how
495Partition an mbuf chain in two pieces, returning the tail:
496all but the first
497.Fa len
498bytes.
499In case of failure, it returns
500.Dv NULL
501and attempts to restore the chain to its original state.
502.El
503.Sh RETURN VALUES
504See above.
505.Sh HISTORY
506.\" Please correct me if I'm wrong
507Mbufs appeared in an early version of BSD.
508Besides for being used for network packets, they were used
509to store various dynamic structures, such as routing table
510entries, interface addresses, protocol control blocks, etc.
511.Sh AUTHORS
512The original mbuf(9) man page was written by Yar Tikhiy.
513