VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/sbuf.c@ 29980

Last change on this file since 29980 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.3 KB
Line 
1/* $Id: sbuf.c 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * NAT - sbuf implemenation.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*
19 * This code is based on:
20 *
21 * Copyright (c) 1995 Danny Gasparovski.
22 *
23 * Please read the file COPYRIGHT for the
24 * terms and conditions of the copyright.
25 */
26
27#include <slirp.h>
28
29/* Done as a macro in socket.h */
30/* int
31 * sbspace(struct sockbuff *sb)
32 * {
33 * return SB_DATALEN - sb->sb_cc;
34 * }
35 */
36
37void
38sbfree(struct sbuf *sb)
39{
40 /*
41 * Catch double frees. Actually tcp_close() already filters out listening sockets
42 * passing NULL.
43 */
44 Assert((sb->sb_data));
45
46 /*
47 * Don't call RTMemFree() for an already freed buffer, the EFence could complain
48 */
49 if (sb->sb_data)
50 {
51 RTMemFree(sb->sb_data);
52 sb->sb_data = NULL;
53 }
54}
55
56void
57sbdrop(struct sbuf *sb, int num)
58{
59 /*
60 * We can only drop how much we have
61 * This should never succeed
62 */
63 if (num > sb->sb_cc)
64 num = sb->sb_cc;
65 sb->sb_cc -= num;
66 sb->sb_rptr += num;
67 if (sb->sb_rptr >= sb->sb_data + sb->sb_datalen)
68 sb->sb_rptr -= sb->sb_datalen;
69
70}
71
72void
73sbreserve(PNATState pData, struct sbuf *sb, int size)
74{
75 if (sb->sb_data)
76 {
77 /* Already alloced, realloc if necessary */
78 if (sb->sb_datalen != size)
79 {
80 sb->sb_wptr =
81 sb->sb_rptr =
82 sb->sb_data = (char *)RTMemRealloc(sb->sb_data, size);
83 sb->sb_cc = 0;
84 if (sb->sb_wptr)
85 sb->sb_datalen = size;
86 else
87 sb->sb_datalen = 0;
88 }
89 }
90 else
91 {
92 sb->sb_wptr = sb->sb_rptr = sb->sb_data = (char *)RTMemAlloc(size);
93 sb->sb_cc = 0;
94 if (sb->sb_wptr)
95 sb->sb_datalen = size;
96 else
97 sb->sb_datalen = 0;
98 }
99}
100
101/*
102 * Try and write() to the socket, whatever doesn't get written
103 * append to the buffer... for a host with a fast net connection,
104 * this prevents an unnecessary copy of the data
105 * (the socket is non-blocking, so we won't hang)
106 */
107void
108sbappend(PNATState pData, struct socket *so, struct mbuf *m)
109{
110 int ret = 0;
111#ifdef VBOX_WITH_SLIRP_BSD_MBUF
112 int mlen = 0;
113 caddr_t buf = NULL;
114#endif
115
116 STAM_PROFILE_START(&pData->StatIOSBAppend_pf, a);
117 DEBUG_CALL("sbappend");
118 DEBUG_ARG("so = %lx", (long)so);
119 DEBUG_ARG("m = %lx", (long)m);
120 DEBUG_ARG("m->m_len = %d", m ? m->m_len : 0);
121
122 STAM_COUNTER_INC(&pData->StatIOSBAppend);
123 /* Shouldn't happen, but... e.g. foreign host closes connection */
124#ifndef VBOX_WITH_SLIRP_BSD_MBUF
125 if (m->m_len <= 0)
126#else
127 mlen = m_length(m, NULL);
128 if (mlen <= 0)
129#endif
130 {
131 STAM_COUNTER_INC(&pData->StatIOSBAppend_zm);
132 goto done;
133 }
134
135 /*
136 * If there is urgent data, call sosendoob
137 * if not all was sent, sowrite will take care of the rest
138 * (The rest of this function is just an optimisation)
139 */
140 if (so->so_urgc)
141 {
142 sbappendsb(pData, &so->so_rcv, m);
143 m_free(pData, m);
144 sosendoob(so);
145 return;
146 }
147
148 /*
149 * We only write if there's nothing in the buffer,
150 * ottherwise it'll arrive out of order, and hence corrupt
151 */
152#ifndef VBOX_WITH_SLIRP_BSD_MBUF
153 if(!so->so_rcv.sb_cc)
154 ret = send(so->s, m->m_data, m->m_len, 0);
155#else
156 buf = RTMemAlloc(mlen);
157 if (buf == NULL)
158 {
159 ret = 0;
160 goto no_sent;
161 }
162 m_copydata(m, 0, mlen, buf);
163 if(!so->so_rcv.sb_cc)
164 ret = send(so->s, buf, mlen, 0);
165 RTMemFree(buf);
166no_sent:
167#endif
168
169 if (ret <= 0)
170 {
171 STAM_COUNTER_INC(&pData->StatIOSBAppend_wf);
172 /*
173 * Nothing was written
174 * It's possible that the socket has closed, but
175 * we don't need to check because if it has closed,
176 * it will be detected in the normal way by soread()
177 */
178 sbappendsb(pData, &so->so_rcv, m);
179 STAM_PROFILE_STOP(&pData->StatIOSBAppend_pf_wf, a);
180 goto done;
181 }
182#ifndef VBOX_WITH_SLIRP_BSD_MBUF
183 else if (ret != m->m_len)
184#else
185 else if (ret != mlen)
186#endif
187 {
188 STAM_COUNTER_INC(&pData->StatIOSBAppend_wp);
189 /*
190 * Something was written, but not everything..
191 * sbappendsb the rest
192 */
193#ifndef VBOX_WITH_SLIRP_BSD_MBUF
194 m->m_len -= ret;
195 m->m_data += ret;
196#else
197 m_adj(m, ret);
198#endif
199 sbappendsb(pData, &so->so_rcv, m);
200 STAM_PROFILE_STOP(&pData->StatIOSBAppend_pf_wp, a);
201 goto done;
202 } /* else */
203 /* Whatever happened, we free the mbuf */
204 STAM_COUNTER_INC(&pData->StatIOSBAppend_wa);
205 STAM_PROFILE_STOP(&pData->StatIOSBAppend_pf_wa, a);
206done:
207 m_free(pData, m);
208}
209
210/*
211 * Copy the data from m into sb
212 * The caller is responsible to make sure there's enough room
213 */
214void
215sbappendsb(PNATState pData, struct sbuf *sb, struct mbuf *m)
216{
217 int len, n, nn;
218
219#ifndef VBOX_WITH_SLIRP_BSD_MBUF
220 len = m->m_len;
221#else
222 len = m_length(m, NULL);
223#endif
224
225 STAM_COUNTER_INC(&pData->StatIOSBAppendSB);
226 if (sb->sb_wptr < sb->sb_rptr)
227 {
228 STAM_COUNTER_INC(&pData->StatIOSBAppendSB_w_l_r);
229 n = sb->sb_rptr - sb->sb_wptr;
230 if (n > len)
231 n = len;
232#ifndef VBOX_WITH_SLIRP_BSD_MBUF
233 memcpy(sb->sb_wptr, m->m_data, n);
234#else
235 m_copydata(m, 0, n, sb->sb_wptr);
236#endif
237 }
238 else
239 {
240 STAM_COUNTER_INC(&pData->StatIOSBAppendSB_w_ge_r);
241 /* Do the right edge first */
242 n = sb->sb_data + sb->sb_datalen - sb->sb_wptr;
243 if (n > len)
244 n = len;
245#ifndef VBOX_WITH_SLIRP_BSD_MBUF
246 memcpy(sb->sb_wptr, m->m_data, n);
247#else
248 m_copydata(m, 0, n, sb->sb_wptr);
249#endif
250 len -= n;
251 if (len)
252 {
253 /* Now the left edge */
254 nn = sb->sb_rptr - sb->sb_data;
255 if (nn > len)
256 nn = len;
257#ifndef VBOX_WITH_SLIRP_BSD_MBUF
258 memcpy(sb->sb_data, m->m_data+n, nn);
259#else
260 m_copydata(m, n, nn, sb->sb_data);
261#endif
262 n += nn;
263 }
264 }
265
266 sb->sb_cc += n;
267 sb->sb_wptr += n;
268 if (sb->sb_wptr >= sb->sb_data + sb->sb_datalen)
269 {
270 STAM_COUNTER_INC(&pData->StatIOSBAppendSB_w_alter);
271 sb->sb_wptr -= sb->sb_datalen;
272 }
273}
274
275/*
276 * Copy data from sbuf to a normal, straight buffer
277 * Don't update the sbuf rptr, this will be
278 * done in sbdrop when the data is acked
279 */
280void
281sbcopy(struct sbuf *sb, int off, int len, char *to)
282{
283 char *from;
284
285 from = sb->sb_rptr + off;
286 if (from >= sb->sb_data + sb->sb_datalen)
287 from -= sb->sb_datalen;
288
289 if (from < sb->sb_wptr)
290 {
291 if (len > sb->sb_cc)
292 len = sb->sb_cc;
293 memcpy(to, from, len);
294 }
295 else
296 {
297 /* re-use off */
298 off = (sb->sb_data + sb->sb_datalen) - from;
299 if (off > len)
300 off = len;
301 memcpy(to, from, off);
302 len -= off;
303 if (len)
304 memcpy(to+off, sb->sb_data, len);
305 }
306}
307
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette