slirp: remove now useless QEMU headers inclusions
[qemu/ar7.git] / slirp / sbuf.c
blobc83e4dd8ed1d9653360aa2871708dbb252b6dfcc
1 /*
2 * Copyright (c) 1995 Danny Gasparovski.
4 * Please read the file COPYRIGHT for the
5 * terms and conditions of the copyright.
6 */
8 #include "qemu/osdep.h"
9 #include "slirp.h"
11 static void sbappendsb(struct sbuf *sb, struct mbuf *m);
13 void
14 sbfree(struct sbuf *sb)
16 free(sb->sb_data);
19 bool
20 sbdrop(struct sbuf *sb, int num)
22 int limit = sb->sb_datalen / 2;
25 * We can only drop how much we have
26 * This should never succeed
28 if(num > sb->sb_cc)
29 num = sb->sb_cc;
30 sb->sb_cc -= num;
31 sb->sb_rptr += num;
32 if(sb->sb_rptr >= sb->sb_data + sb->sb_datalen)
33 sb->sb_rptr -= sb->sb_datalen;
35 if (sb->sb_cc < limit && sb->sb_cc + num >= limit) {
36 return true;
39 return false;
42 void
43 sbreserve(struct sbuf *sb, int size)
45 if (sb->sb_data) {
46 /* Already alloced, realloc if necessary */
47 if (sb->sb_datalen != size) {
48 sb->sb_wptr = sb->sb_rptr = sb->sb_data = (char *)realloc(sb->sb_data, size);
49 sb->sb_cc = 0;
50 if (sb->sb_wptr)
51 sb->sb_datalen = size;
52 else
53 sb->sb_datalen = 0;
55 } else {
56 sb->sb_wptr = sb->sb_rptr = sb->sb_data = (char *)malloc(size);
57 sb->sb_cc = 0;
58 if (sb->sb_wptr)
59 sb->sb_datalen = size;
60 else
61 sb->sb_datalen = 0;
66 * Try and write() to the socket, whatever doesn't get written
67 * append to the buffer... for a host with a fast net connection,
68 * this prevents an unnecessary copy of the data
69 * (the socket is non-blocking, so we won't hang)
71 void
72 sbappend(struct socket *so, struct mbuf *m)
74 int ret = 0;
76 DEBUG_CALL("sbappend");
77 DEBUG_ARG("so = %p", so);
78 DEBUG_ARG("m = %p", m);
79 DEBUG_ARG("m->m_len = %d", m->m_len);
81 /* Shouldn't happen, but... e.g. foreign host closes connection */
82 if (m->m_len <= 0) {
83 m_free(m);
84 return;
88 * If there is urgent data, call sosendoob
89 * if not all was sent, sowrite will take care of the rest
90 * (The rest of this function is just an optimisation)
92 if (so->so_urgc) {
93 sbappendsb(&so->so_rcv, m);
94 m_free(m);
95 (void)sosendoob(so);
96 return;
100 * We only write if there's nothing in the buffer,
101 * ottherwise it'll arrive out of order, and hence corrupt
103 if (!so->so_rcv.sb_cc)
104 ret = slirp_send(so, m->m_data, m->m_len, 0);
106 if (ret <= 0) {
108 * Nothing was written
109 * It's possible that the socket has closed, but
110 * we don't need to check because if it has closed,
111 * it will be detected in the normal way by soread()
113 sbappendsb(&so->so_rcv, m);
114 } else if (ret != m->m_len) {
116 * Something was written, but not everything..
117 * sbappendsb the rest
119 m->m_len -= ret;
120 m->m_data += ret;
121 sbappendsb(&so->so_rcv, m);
122 } /* else */
123 /* Whatever happened, we free the mbuf */
124 m_free(m);
128 * Copy the data from m into sb
129 * The caller is responsible to make sure there's enough room
131 static void
132 sbappendsb(struct sbuf *sb, struct mbuf *m)
134 int len, n, nn;
136 len = m->m_len;
138 if (sb->sb_wptr < sb->sb_rptr) {
139 n = sb->sb_rptr - sb->sb_wptr;
140 if (n > len) n = len;
141 memcpy(sb->sb_wptr, m->m_data, n);
142 } else {
143 /* Do the right edge first */
144 n = sb->sb_data + sb->sb_datalen - sb->sb_wptr;
145 if (n > len) n = len;
146 memcpy(sb->sb_wptr, m->m_data, n);
147 len -= n;
148 if (len) {
149 /* Now the left edge */
150 nn = sb->sb_rptr - sb->sb_data;
151 if (nn > len) nn = len;
152 memcpy(sb->sb_data,m->m_data+n,nn);
153 n += nn;
157 sb->sb_cc += n;
158 sb->sb_wptr += n;
159 if (sb->sb_wptr >= sb->sb_data + sb->sb_datalen)
160 sb->sb_wptr -= sb->sb_datalen;
164 * Copy data from sbuf to a normal, straight buffer
165 * Don't update the sbuf rptr, this will be
166 * done in sbdrop when the data is acked
168 void
169 sbcopy(struct sbuf *sb, int off, int len, char *to)
171 char *from;
173 from = sb->sb_rptr + off;
174 if (from >= sb->sb_data + sb->sb_datalen)
175 from -= sb->sb_datalen;
177 if (from < sb->sb_wptr) {
178 if (len > sb->sb_cc) len = sb->sb_cc;
179 memcpy(to,from,len);
180 } else {
181 /* re-use off */
182 off = (sb->sb_data + sb->sb_datalen) - from;
183 if (off > len) off = len;
184 memcpy(to,from,off);
185 len -= off;
186 if (len)
187 memcpy(to+off,sb->sb_data,len);