2 * Copyright (c) 1995 Danny Gasparovski
4 * Please read the file COPYRIGHT for the
5 * terms and conditions of the copyright.
9 * mbuf's in SLiRP are much simpler than the real mbufs in
10 * FreeBSD. They are fixed size, determined by the MTU,
11 * so that one whole packet can fit. Mbuf's cannot be
12 * chained together. If there's more data than the mbuf
13 * could hold, an external malloced buffer is pointed to
14 * by m_ext (and the data pointers) and M_EXT is set in
18 #include "qemu/osdep.h"
21 #define MBUF_THRESH 30
24 * Find a nice value for msize
27 (offsetof(struct mbuf, m_dat) + IF_MAXLINKHDR + TCPIPHDR_DELTA + IF_MTU)
32 slirp->m_freelist.qh_link = slirp->m_freelist.qh_rlink = &slirp->m_freelist;
33 slirp->m_usedlist.qh_link = slirp->m_usedlist.qh_rlink = &slirp->m_usedlist;
36 void m_cleanup(Slirp *slirp)
38 struct mbuf *m, *next;
40 m = (struct mbuf *) slirp->m_usedlist.qh_link;
41 while ((struct quehead *) m != &slirp->m_usedlist) {
43 if (m->m_flags & M_EXT) {
49 m = (struct mbuf *) slirp->m_freelist.qh_link;
50 while ((struct quehead *) m != &slirp->m_freelist) {
58 * Get an mbuf from the free list, if there are none
61 * Because fragmentation can occur if we alloc new mbufs and
62 * free old mbufs, we mark all mbufs above mbuf_thresh as M_DOFREE,
63 * which tells m_free to actually free() it
68 register struct mbuf *m;
73 if (slirp->m_freelist.qh_link == &slirp->m_freelist) {
74 m = (struct mbuf *)malloc(SLIRP_MSIZE);
75 if (m == NULL) goto end_error;
76 slirp->mbuf_alloced++;
77 if (slirp->mbuf_alloced > MBUF_THRESH)
81 m = (struct mbuf *) slirp->m_freelist.qh_link;
85 /* Insert it in the used list */
86 insque(m,&slirp->m_usedlist);
87 m->m_flags = (flags | M_USEDLIST);
90 m->m_size = SLIRP_MSIZE - offsetof(struct mbuf, m_dat);
95 m->resolution_requested = false;
96 m->expiration_date = (uint64_t)-1;
98 DEBUG_ARG("m = %p", m);
103 m_free(struct mbuf *m)
106 DEBUG_CALL("m_free");
107 DEBUG_ARG("m = %p", m);
110 /* Remove from m_usedlist */
111 if (m->m_flags & M_USEDLIST)
114 /* If it's M_EXT, free() it */
115 if (m->m_flags & M_EXT)
119 * Either free() it or put it on the free list
121 if (m->m_flags & M_DOFREE) {
122 m->slirp->mbuf_alloced--;
124 } else if ((m->m_flags & M_FREELIST) == 0) {
125 insque(m,&m->slirp->m_freelist);
126 m->m_flags = M_FREELIST; /* Clobber other flags */
132 * Copy data from one mbuf to the end of
133 * the other.. if result is too big for one mbuf, malloc()
134 * an M_EXT data segment
137 m_cat(struct mbuf *m, struct mbuf *n)
140 * If there's no room, realloc
142 if (M_FREEROOM(m) < n->m_len)
143 m_inc(m,m->m_size+MINCSIZE);
145 memcpy(m->m_data+m->m_len, n->m_data, n->m_len);
146 m->m_len += n->m_len;
152 /* make m size bytes large */
154 m_inc(struct mbuf *m, int size)
158 /* some compiles throw up on gotos. This one we can fake. */
159 if(m->m_size>size) return;
161 if (m->m_flags & M_EXT) {
162 datasize = m->m_data - m->m_ext;
163 m->m_ext = (char *)realloc(m->m_ext,size);
164 m->m_data = m->m_ext + datasize;
167 datasize = m->m_data - m->m_dat;
168 dat = (char *)malloc(size);
169 memcpy(dat, m->m_dat, m->m_size);
172 m->m_data = m->m_ext + datasize;
183 m_adj(struct mbuf *m, int len)
200 * Copy len bytes from m, starting off bytes into n
203 m_copy(struct mbuf *n, struct mbuf *m, int off, int len)
205 if (len > M_FREEROOM(n))
208 memcpy((n->m_data + n->m_len), (m->m_data + off), len);
215 * Given a pointer into an mbuf, return the mbuf
216 * XXX This is a kludge, I should eliminate the need for it
217 * Fortunately, it's not used often
220 dtom(Slirp *slirp, void *dat)
225 DEBUG_ARG("dat = %p", dat);
227 /* bug corrected for M_EXT buffers */
228 for (m = (struct mbuf *) slirp->m_usedlist.qh_link;
229 (struct quehead *) m != &slirp->m_usedlist;
231 if (m->m_flags & M_EXT) {
232 if( (char *)dat>=m->m_ext && (char *)dat<(m->m_ext + m->m_size) )
235 if( (char *)dat >= m->m_dat && (char *)dat<(m->m_dat + m->m_size) )
240 DEBUG_ERROR((dfd, "dtom failed"));
242 return (struct mbuf *)0;