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
20 #define MBUF_THRESH 30
23 * Find a nice value for msize
24 * XXX if_maxlinkhdr already in mtu
26 #define SLIRP_MSIZE (IF_MTU + IF_MAXLINKHDR + offsetof(struct mbuf, m_dat) + 6)
31 slirp->m_freelist.m_next = slirp->m_freelist.m_prev = &slirp->m_freelist;
32 slirp->m_usedlist.m_next = slirp->m_usedlist.m_prev = &slirp->m_usedlist;
35 void m_cleanup(Slirp *slirp)
37 struct mbuf *m, *next;
39 m = slirp->m_usedlist.m_next;
40 while (m != &slirp->m_usedlist) {
42 if (m->m_flags & M_EXT) {
48 m = slirp->m_freelist.m_next;
49 while (m != &slirp->m_freelist) {
57 * Get an mbuf from the free list, if there are none
60 * Because fragmentation can occur if we alloc new mbufs and
61 * free old mbufs, we mark all mbufs above mbuf_thresh as M_DOFREE,
62 * which tells m_free to actually free() it
67 register struct mbuf *m;
72 if (slirp->m_freelist.m_next == &slirp->m_freelist) {
73 m = (struct mbuf *)malloc(SLIRP_MSIZE);
74 if (m == NULL) goto end_error;
75 slirp->mbuf_alloced++;
76 if (slirp->mbuf_alloced > MBUF_THRESH)
80 m = slirp->m_freelist.m_next;
84 /* Insert it in the used list */
85 insque(m,&slirp->m_usedlist);
86 m->m_flags = (flags | M_USEDLIST);
89 m->m_size = SLIRP_MSIZE - offsetof(struct mbuf, m_dat);
94 m->arp_requested = false;
95 m->expiration_date = (uint64_t)-1;
97 DEBUG_ARG("m = %lx", (long )m);
102 m_free(struct mbuf *m)
105 DEBUG_CALL("m_free");
106 DEBUG_ARG("m = %lx", (long )m);
109 /* Remove from m_usedlist */
110 if (m->m_flags & M_USEDLIST)
113 /* If it's M_EXT, free() it */
114 if (m->m_flags & M_EXT)
118 * Either free() it or put it on the free list
120 if (m->m_flags & M_DOFREE) {
121 m->slirp->mbuf_alloced--;
123 } else if ((m->m_flags & M_FREELIST) == 0) {
124 insque(m,&m->slirp->m_freelist);
125 m->m_flags = M_FREELIST; /* Clobber other flags */
131 * Copy data from one mbuf to the end of
132 * the other.. if result is too big for one mbuf, malloc()
133 * an M_EXT data segment
136 m_cat(struct mbuf *m, struct mbuf *n)
139 * If there's no room, realloc
141 if (M_FREEROOM(m) < n->m_len)
142 m_inc(m,m->m_size+MINCSIZE);
144 memcpy(m->m_data+m->m_len, n->m_data, n->m_len);
145 m->m_len += n->m_len;
151 /* make m size bytes large */
153 m_inc(struct mbuf *m, int size)
157 /* some compiles throw up on gotos. This one we can fake. */
158 if(m->m_size>size) return;
160 if (m->m_flags & M_EXT) {
161 datasize = m->m_data - m->m_ext;
162 m->m_ext = (char *)realloc(m->m_ext,size);
163 m->m_data = m->m_ext + datasize;
166 datasize = m->m_data - m->m_dat;
167 dat = (char *)malloc(size);
168 memcpy(dat, m->m_dat, m->m_size);
171 m->m_data = m->m_ext + datasize;
182 m_adj(struct mbuf *m, int len)
199 * Copy len bytes from m, starting off bytes into n
202 m_copy(struct mbuf *n, struct mbuf *m, int off, int len)
204 if (len > M_FREEROOM(n))
207 memcpy((n->m_data + n->m_len), (m->m_data + off), len);
214 * Given a pointer into an mbuf, return the mbuf
215 * XXX This is a kludge, I should eliminate the need for it
216 * Fortunately, it's not used often
219 dtom(Slirp *slirp, void *dat)
224 DEBUG_ARG("dat = %lx", (long )dat);
226 /* bug corrected for M_EXT buffers */
227 for (m = slirp->m_usedlist.m_next; m != &slirp->m_usedlist;
229 if (m->m_flags & M_EXT) {
230 if( (char *)dat>=m->m_ext && (char *)dat<(m->m_ext + m->m_size) )
233 if( (char *)dat >= m->m_dat && (char *)dat<(m->m_dat + m->m_size) )
238 DEBUG_ERROR((dfd, "dtom failed"));
240 return (struct mbuf *)0;