OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [lwIP_Demo_Rowley_ARM7/] [lwip-1.1.0/] [src/] [core/] [raw.c] - Blame information for rev 583

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 583 jeremybenn
/**
2
 * @file
3
 *
4
 * Implementation of raw protocol PCBs for low-level handling of
5
 * different types of protocols besides (or overriding) those
6
 * already available in lwIP.
7
 *
8
 */
9
/*
10
 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
11
 * All rights reserved.
12
 *
13
 * Redistribution and use in source and binary forms, with or without modification,
14
 * are permitted provided that the following conditions are met:
15
 *
16
 * 1. Redistributions of source code must retain the above copyright notice,
17
 *    this list of conditions and the following disclaimer.
18
 * 2. Redistributions in binary form must reproduce the above copyright notice,
19
 *    this list of conditions and the following disclaimer in the documentation
20
 *    and/or other materials provided with the distribution.
21
 * 3. The name of the author may not be used to endorse or promote products
22
 *    derived from this software without specific prior written permission.
23
 *
24
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
25
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
27
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
29
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
32
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
33
 * OF SUCH DAMAGE.
34
 *
35
 * This file is part of the lwIP TCP/IP stack.
36
 *
37
 * Author: Adam Dunkels <adam@sics.se>
38
 *
39
 */
40
 
41
#include <string.h>
42
 
43
#include "lwip/opt.h"
44
 
45
#include "lwip/def.h"
46
#include "lwip/memp.h"
47
#include "lwip/inet.h"
48
#include "lwip/ip_addr.h"
49
#include "lwip/netif.h"
50
#include "lwip/raw.h"
51
 
52
#include "lwip/stats.h"
53
 
54
#include "arch/perf.h"
55
#include "lwip/snmp.h"
56
 
57
#if LWIP_RAW
58
 
59
/** The list of RAW PCBs */
60
static struct raw_pcb *raw_pcbs = NULL;
61
 
62
void
63
raw_init(void)
64
{
65
  raw_pcbs = NULL;
66
}
67
 
68
/**
69
 * Determine if in incoming IP packet is covered by a RAW PCB
70
 * and if so, pass it to a user-provided receive callback function.
71
 *
72
 * Given an incoming IP datagram (as a chain of pbufs) this function
73
 * finds a corresponding RAW PCB and calls the corresponding receive
74
 * callback function.
75
 *
76
 * @param pbuf pbuf to be demultiplexed to a RAW PCB.
77
 * @param netif network interface on which the datagram was received.
78
 * @Return - 1 if the packet has been eaten by a RAW PCB receive
79
 *           callback function. The caller MAY NOT not reference the
80
 *           packet any longer, and MAY NOT call pbuf_free().
81
 * @return - 0 if packet is not eaten (pbuf is still referenced by the
82
 *           caller).
83
 *
84
 */
85
u8_t
86
raw_input(struct pbuf *p, struct netif *inp)
87
{
88
  struct raw_pcb *pcb;
89
  struct ip_hdr *iphdr;
90
  int proto;
91
  u8_t eaten = 0;
92
 
93
  ( void ) inp;
94
 
95
  iphdr = p->payload;
96
  proto = IPH_PROTO(iphdr);
97
 
98
  pcb = raw_pcbs;
99
  /* loop through all raw pcbs until the packet is eaten by one */
100
  /* this allows multiple pcbs to match against the packet by design */
101
  while ((eaten == 0) && (pcb != NULL)) {
102
    if (pcb->protocol == proto) {
103
      /* receive callback function available? */
104
      if (pcb->recv != NULL) {
105
        /* the receive callback function did not eat the packet? */
106
        if (pcb->recv(pcb->recv_arg, pcb, p, &(iphdr->src)) != 0)
107
        {
108
          /* receive function ate the packet */
109
          p = NULL;
110
          eaten = 1;
111
        }
112
      }
113
      /* no receive callback function was set for this raw PCB */
114
      /* drop the packet */
115
    }
116
    pcb = pcb->next;
117
  }
118
  return eaten;
119
}
120
 
121
/**
122
 * Bind a RAW PCB.
123
 *
124
 * @param pcb RAW PCB to be bound with a local address ipaddr.
125
 * @param ipaddr local IP address to bind with. Use IP_ADDR_ANY to
126
 * bind to all local interfaces.
127
 *
128
 * @return lwIP error code.
129
 * - ERR_OK. Successful. No error occured.
130
 * - ERR_USE. The specified IP address is already bound to by
131
 * another RAW PCB.
132
 *
133
 * @see raw_disconnect()
134
 */
135
err_t
136
raw_bind(struct raw_pcb *pcb, struct ip_addr *ipaddr)
137
{
138
  ip_addr_set(&pcb->local_ip, ipaddr);
139
  return ERR_OK;
140
}
141
 
142
/**
143
 * Connect an RAW PCB. This function is required by upper layers
144
 * of lwip. Using the raw api you could use raw_sendto() instead
145
 *
146
 * This will associate the RAW PCB with the remote address.
147
 *
148
 * @param pcb RAW PCB to be connected with remote address ipaddr and port.
149
 * @param ipaddr remote IP address to connect with.
150
 *
151
 * @return lwIP error code
152
 *
153
 * @see raw_disconnect() and raw_sendto()
154
 */
155
err_t
156
raw_connect(struct raw_pcb *pcb, struct ip_addr *ipaddr)
157
{
158
  ip_addr_set(&pcb->remote_ip, ipaddr);
159
  return ERR_OK;
160
}
161
 
162
 
163
/**
164
 * Set the callback function for received packets that match the
165
 * raw PCB's protocol and binding.
166
 *
167
 * The callback function MUST either
168
 * - eat the packet by calling pbuf_free() and returning non-zero. The
169
 *   packet will not be passed to other raw PCBs or other protocol layers.
170
 * - not free the packet, and return zero. The packet will be matched
171
 *   against further PCBs and/or forwarded to another protocol layers.
172
 *
173
 * @return non-zero if the packet was free()d, zero if the packet remains
174
 * available for others.
175
 */
176
void
177
raw_recv(struct raw_pcb *pcb,
178
         u8_t (* recv)(void *arg, struct raw_pcb *upcb, struct pbuf *p,
179
                      struct ip_addr *addr),
180
         void *recv_arg)
181
{
182
  /* remember recv() callback and user data */
183
  pcb->recv = recv;
184
  pcb->recv_arg = recv_arg;
185
}
186
 
187
/**
188
 * Send the raw IP packet to the given address. Note that actually you cannot
189
 * modify the IP headers (this is inconsistent with the receive callback where
190
 * you actually get the IP headers), you can only specify the IP payload here.
191
 * It requires some more changes in lwIP. (there will be a raw_send() function
192
 * then.)
193
 *
194
 * @param pcb the raw pcb which to send
195
 * @param p the IP payload to send
196
 * @param ipaddr the destination address of the IP packet
197
 *
198
 */
199
err_t
200
raw_sendto(struct raw_pcb *pcb, struct pbuf *p, struct ip_addr *ipaddr)
201
{
202
  err_t err;
203
  struct netif *netif;
204
  struct ip_addr *src_ip;
205
  struct pbuf *q; /* q will be sent down the stack */
206
 
207
  LWIP_DEBUGF(RAW_DEBUG | DBG_TRACE | 3, ("raw_sendto\n"));
208
 
209
  /* not enough space to add an IP header to first pbuf in given p chain? */
210
  if (pbuf_header(p, IP_HLEN)) {
211
    /* allocate header in new pbuf */
212
    q = pbuf_alloc(PBUF_IP, 0, PBUF_RAM);
213
    /* new header pbuf could not be allocated? */
214
    if (q == NULL) {
215
      LWIP_DEBUGF(RAW_DEBUG | DBG_TRACE | 2, ("raw_sendto: could not allocate header\n"));
216
      return ERR_MEM;
217
    }
218
    /* chain header q in front of given pbuf p */
219
    pbuf_chain(q, p);
220
    /* { first pbuf q points to header pbuf } */
221
    LWIP_DEBUGF(RAW_DEBUG, ("raw_sendto: added header pbuf %p before given pbuf %p\n", (void *)q, (void *)p));
222
  }  else {
223
    /* first pbuf q equals given pbuf */
224
    q = p;
225
    pbuf_header(q, -IP_HLEN);
226
  }
227
 
228
  if ((netif = ip_route(ipaddr)) == NULL) {
229
    LWIP_DEBUGF(RAW_DEBUG | 1, ("raw_sendto: No route to 0x%lx\n", ipaddr->addr));
230
#if RAW_STATS
231
    /*    ++lwip_stats.raw.rterr;*/
232
#endif /* RAW_STATS */
233
    /* free any temporary header pbuf allocated by pbuf_header() */
234
    if (q != p) {
235
      pbuf_free(q);
236
    }
237
    return ERR_RTE;
238
  }
239
 
240
  if (ip_addr_isany(&pcb->local_ip)) {
241
    /* use outgoing network interface IP address as source address */
242
    src_ip = &(netif->ip_addr);
243
  } else {
244
    /* use RAW PCB local IP address as source address */
245
    src_ip = &(pcb->local_ip);
246
  }
247
 
248
  err = ip_output_if (q, src_ip, ipaddr, pcb->ttl, pcb->tos, pcb->protocol, netif);
249
 
250
  /* did we chain a header earlier? */
251
  if (q != p) {
252
    /* free the header */
253
    pbuf_free(q);
254
  }
255
  return err;
256
}
257
 
258
/**
259
 * Send the raw IP packet to the address given by raw_connect()
260
 *
261
 * @param pcb the raw pcb which to send
262
 * @param p the IP payload to send
263
 * @param ipaddr the destination address of the IP packet
264
 *
265
 */
266
err_t
267
raw_send(struct raw_pcb *pcb, struct pbuf *p)
268
{
269
  return raw_sendto(pcb, p, &pcb->remote_ip);
270
}
271
 
272
/**
273
 * Remove an RAW PCB.
274
 *
275
 * @param pcb RAW PCB to be removed. The PCB is removed from the list of
276
 * RAW PCB's and the data structure is freed from memory.
277
 *
278
 * @see raw_new()
279
 */
280
void
281
raw_remove(struct raw_pcb *pcb)
282
{
283
  struct raw_pcb *pcb2;
284
  /* pcb to be removed is first in list? */
285
  if (raw_pcbs == pcb) {
286
    /* make list start at 2nd pcb */
287
    raw_pcbs = raw_pcbs->next;
288
    /* pcb not 1st in list */
289
  } else for(pcb2 = raw_pcbs; pcb2 != NULL; pcb2 = pcb2->next) {
290
    /* find pcb in raw_pcbs list */
291
    if (pcb2->next != NULL && pcb2->next == pcb) {
292
      /* remove pcb from list */
293
      pcb2->next = pcb->next;
294
    }
295
  }
296
  memp_free(MEMP_RAW_PCB, pcb);
297
}
298
 
299
/**
300
 * Create a RAW PCB.
301
 *
302
 * @return The RAW PCB which was created. NULL if the PCB data structure
303
 * could not be allocated.
304
 *
305
 * @param proto the protocol number of the IPs payload (e.g. IP_PROTO_ICMP)
306
 *
307
 * @see raw_remove()
308
 */
309
struct raw_pcb *
310
raw_new(u16_t proto) {
311
  struct raw_pcb *pcb;
312
 
313
  LWIP_DEBUGF(RAW_DEBUG | DBG_TRACE | 3, ("raw_new\n"));
314
 
315
  pcb = memp_malloc(MEMP_RAW_PCB);
316
  /* could allocate RAW PCB? */
317
  if (pcb != NULL) {
318
    /* initialize PCB to all zeroes */
319
    memset(pcb, 0, sizeof(struct raw_pcb));
320
    pcb->protocol = proto;
321
    pcb->ttl = RAW_TTL;
322
    pcb->next = raw_pcbs;
323
    raw_pcbs = pcb;
324
  }
325
  return pcb;
326
}
327
 
328
#endif /* LWIP_RAW */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.