ReactOS 0.4.16-dev-937-g7afcd2a
netbuf.c
Go to the documentation of this file.
1
13/*
14 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without modification,
18 * are permitted provided that the following conditions are met:
19 *
20 * 1. Redistributions of source code must retain the above copyright notice,
21 * this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright notice,
23 * this list of conditions and the following disclaimer in the documentation
24 * and/or other materials provided with the distribution.
25 * 3. The name of the author may not be used to endorse or promote products
26 * derived from this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
29 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
30 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
31 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
32 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
33 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
36 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
37 * OF SUCH DAMAGE.
38 *
39 * This file is part of the lwIP TCP/IP stack.
40 *
41 * Author: Adam Dunkels <adam@sics.se>
42 *
43 */
44
45#include "lwip/opt.h"
46
47#if LWIP_NETCONN /* don't build if not configured for use in lwipopts.h */
48
49#include "lwip/netbuf.h"
50#include "lwip/memp.h"
51
52#include <string.h>
53
62struct
63netbuf *netbuf_new(void)
64{
65 struct netbuf *buf;
66
67 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF);
68 if (buf != NULL) {
69 memset(buf, 0, sizeof(struct netbuf));
70 }
71 return buf;
72}
73
80void
81netbuf_delete(struct netbuf *buf)
82{
83 if (buf != NULL) {
84 if (buf->p != NULL) {
85 pbuf_free(buf->p);
86 buf->p = buf->ptr = NULL;
87 }
88 memp_free(MEMP_NETBUF, buf);
89 }
90}
91
101void *
102netbuf_alloc(struct netbuf *buf, u16_t size)
103{
104 LWIP_ERROR("netbuf_alloc: invalid buf", (buf != NULL), return NULL;);
105
106 /* Deallocate any previously allocated memory. */
107 if (buf->p != NULL) {
108 pbuf_free(buf->p);
109 }
111 if (buf->p == NULL) {
112 return NULL;
113 }
114 LWIP_ASSERT("check that first pbuf can hold size",
115 (buf->p->len >= size));
116 buf->ptr = buf->p;
117 return buf->p->payload;
118}
119
126void
127netbuf_free(struct netbuf *buf)
128{
129 LWIP_ERROR("netbuf_free: invalid buf", (buf != NULL), return;);
130 if (buf->p != NULL) {
131 pbuf_free(buf->p);
132 }
133 buf->p = buf->ptr = NULL;
134#if LWIP_CHECKSUM_ON_COPY
135 buf->flags = 0;
136 buf->toport_chksum = 0;
137#endif /* LWIP_CHECKSUM_ON_COPY */
138}
139
150err_t
151netbuf_ref(struct netbuf *buf, const void *dataptr, u16_t size)
152{
153 LWIP_ERROR("netbuf_ref: invalid buf", (buf != NULL), return ERR_ARG;);
154 if (buf->p != NULL) {
155 pbuf_free(buf->p);
156 }
158 if (buf->p == NULL) {
159 buf->ptr = NULL;
160 return ERR_MEM;
161 }
162 ((struct pbuf_rom *)buf->p)->payload = dataptr;
163 buf->p->len = buf->p->tot_len = size;
164 buf->ptr = buf->p;
165 return ERR_OK;
166}
167
175void
176netbuf_chain(struct netbuf *head, struct netbuf *tail)
177{
178 LWIP_ERROR("netbuf_chain: invalid head", (head != NULL), return;);
179 LWIP_ERROR("netbuf_chain: invalid tail", (tail != NULL), return;);
180 pbuf_cat(head->p, tail->p);
181 head->ptr = head->p;
182 memp_free(MEMP_NETBUF, tail);
183}
184
195err_t
196netbuf_data(struct netbuf *buf, void **dataptr, u16_t *len)
197{
198 LWIP_ERROR("netbuf_data: invalid buf", (buf != NULL), return ERR_ARG;);
199 LWIP_ERROR("netbuf_data: invalid dataptr", (dataptr != NULL), return ERR_ARG;);
200 LWIP_ERROR("netbuf_data: invalid len", (len != NULL), return ERR_ARG;);
201
202 if (buf->ptr == NULL) {
203 return ERR_BUF;
204 }
205 *dataptr = buf->ptr->payload;
206 *len = buf->ptr->len;
207 return ERR_OK;
208}
209
221s8_t
222netbuf_next(struct netbuf *buf)
223{
224 LWIP_ERROR("netbuf_next: invalid buf", (buf != NULL), return -1;);
225 if (buf->ptr->next == NULL) {
226 return -1;
227 }
228 buf->ptr = buf->ptr->next;
229 if (buf->ptr->next == NULL) {
230 return 1;
231 }
232 return 0;
233}
234
243void
244netbuf_first(struct netbuf *buf)
245{
246 LWIP_ERROR("netbuf_first: invalid buf", (buf != NULL), return;);
247 buf->ptr = buf->p;
248}
249
250#endif /* LWIP_NETCONN */
struct outqueuenode * tail
Definition: adnsresfilter.c:66
struct outqueuenode * head
Definition: adnsresfilter.c:66
#define NULL
Definition: types.h:112
#define LWIP_ERROR(message, expression, handler)
Definition: debug.h:130
#define LWIP_ASSERT(message, assertion)
Definition: debug.h:116
#define ERR_MEM
Definition: fontsub.h:52
GLsizeiptr size
Definition: glext.h:5919
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
GLenum GLsizei len
Definition: glext.h:6722
uint16_t u16_t
Definition: arch.h:127
int8_t s8_t
Definition: arch.h:126
s8_t err_t
Definition: err.h:96
@ ERR_BUF
Definition: err.h:59
@ ERR_OK
Definition: err.h:55
@ ERR_ARG
Definition: err.h:88
void pbuf_cat(struct pbuf *h, struct pbuf *t)
Definition: pbuf.c:855
struct pbuf * pbuf_alloc(pbuf_layer layer, u16_t length, pbuf_type type)
Definition: pbuf.c:224
u8_t pbuf_free(struct pbuf *p)
Definition: pbuf.c:727
@ PBUF_RAM
Definition: pbuf.h:152
@ PBUF_REF
Definition: pbuf.h:160
@ PBUF_TRANSPORT
Definition: pbuf.h:93
int const JOCTET * dataptr
Definition: jpeglib.h:1031
void * memp_malloc(memp_t type)
Definition: memp.c:337
void memp_free(memp_t type, void *mem)
Definition: memp.c:420
#define memset(x, y, z)
Definition: compat.h:39
struct define * next
Definition: compiler.c:65
Definition: types.h:144
Definition: pbuf.h:232