udp.c
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:27k
开发平台:

C/C++

  1. /**
  2.  * @file
  3.  * User Datagram Protocol module
  4.  *
  5.  */
  6. /*
  7.  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  8.  * All rights reserved.
  9.  *
  10.  * Redistribution and use in source and binary forms, with or without modification,
  11.  * are permitted provided that the following conditions are met:
  12.  *
  13.  * 1. Redistributions of source code must retain the above copyright notice,
  14.  *    this list of conditions and the following disclaimer.
  15.  * 2. Redistributions in binary form must reproduce the above copyright notice,
  16.  *    this list of conditions and the following disclaimer in the documentation
  17.  *    and/or other materials provided with the distribution.
  18.  * 3. The name of the author may not be used to endorse or promote products
  19.  *    derived from this software without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  22.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  23.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  24.  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  26.  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  27.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  28.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  29.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  30.  * OF SUCH DAMAGE.
  31.  *
  32.  * This file is part of the lwIP TCP/IP stack.
  33.  *
  34.  * Author: Adam Dunkels <adam@sics.se>
  35.  *
  36.  */
  37. /* udp.c
  38.  *
  39.  * The code for the User Datagram Protocol UDP.
  40.  *
  41.  */
  42. #include <string.h>
  43. #include "lwip/opt.h"
  44. #include "lwip/def.h"
  45. #include "lwip/memp.h"
  46. #include "lwip/inet.h"
  47. #include "lwip/ip_addr.h"
  48. #include "lwip/netif.h"
  49. #include "lwip/udp.h"
  50. #include "lwip/icmp.h"
  51. #include "lwip/stats.h"
  52. #include "arch/perf.h"
  53. #include "lwip/snmp.h"
  54. #include "uart.h"
  55. /* The list of UDP PCBs */
  56. #if LWIP_UDP
  57. /* was static, but we may want to access this from a socket layer */
  58. struct udp_pcb *udp_pcbs = NULL;
  59. static struct udp_pcb *pcb_cache = NULL;
  60. void
  61. udp_init(void)
  62. {
  63.   udp_pcbs = pcb_cache = NULL;
  64. }
  65. /**
  66.  * Process an incoming UDP datagram.
  67.  *
  68.  * Given an incoming UDP datagram (as a chain of pbufs) this function
  69.  * finds a corresponding UDP PCB and
  70.  *
  71.  * @param pbuf pbuf to be demultiplexed to a UDP PCB.
  72.  * @param netif network interface on which the datagram was received.
  73.  *
  74.  */
  75. void
  76. udp_input(struct pbuf *p, struct netif *inp)
  77. {
  78.   struct udp_hdr *udphdr;
  79.   struct udp_pcb *pcb;
  80.   struct ip_hdr *iphdr;
  81.   u16_t src, dest;
  82. #if SO_REUSE
  83.   struct udp_pcb *pcb_temp;
  84.   int reuse = 0;
  85.   int reuse_port_1 = 0;
  86.   int reuse_port_2 = 0;
  87. #endif /* SO_REUSE */
  88.   
  89.   PERF_START;
  90.   DEBUG_FUNCTION("udp_input()");
  91.   UDP_STATS_INC(udp.recv);
  92.   iphdr = p->payload;
  93.   if (pbuf_header(p, -((s16_t)(UDP_HLEN + IPH_HL(iphdr) * 4)))) {
  94.     /* drop short packets */
  95.     LWIP_DEBUGF(UDP_DEBUG, ("udp_input: short UDP datagram (%u bytes) discardedn", p->tot_len));
  96.     UDP_STATS_INC(udp.lenerr);
  97.     UDP_STATS_INC(udp.drop);
  98.     snmp_inc_udpinerrors();
  99.     pbuf_free(p);
  100.     goto end;
  101.   }
  102.   udphdr = (struct udp_hdr *)((u8_t *)p->payload - UDP_HLEN);
  103.   LWIP_DEBUGF(UDP_DEBUG, ("udp_input: received datagram of length %un", p->tot_len));
  104.   src = ntohs(udphdr->src);
  105.   dest = ntohs(udphdr->dest);
  106.   udp_debug_print(udphdr);
  107.   /* print the UDP source and destination */
  108.   LWIP_DEBUGF(UDP_DEBUG, ("udp (%u.%u.%u.%u, %u) <-- (%u.%u.%u.%u, %u)n",
  109.     ip4_addr1(&iphdr->dest), ip4_addr2(&iphdr->dest),
  110.     ip4_addr3(&iphdr->dest), ip4_addr4(&iphdr->dest), ntohs(udphdr->dest),
  111.     ip4_addr1(&iphdr->src), ip4_addr2(&iphdr->src),
  112.     ip4_addr3(&iphdr->src), ip4_addr4(&iphdr->src), ntohs(udphdr->src)));
  113. #if SO_REUSE
  114.   pcb_temp = udp_pcbs;
  115.   
  116.  again_1:
  117.   
  118.   /* Iterate through the UDP pcb list for a fully matching pcb */
  119.   for (pcb = pcb_temp; pcb != NULL; pcb = pcb->next) {
  120. #else  /* SO_REUSE */ 
  121.   /* Iterate through the UDP pcb list for a fully matching pcb */
  122.   for (pcb = udp_pcbs; pcb != NULL; pcb = pcb->next) {
  123. #endif  /* SO_REUSE */ 
  124.     /* print the PCB local and remote address */
  125.     LWIP_DEBUGF(UDP_DEBUG, ("pcb (%u.%u.%u.%u, %u) --- (%u.%u.%u.%u, %u)n",
  126.       ip4_addr1(&pcb->local_ip), ip4_addr2(&pcb->local_ip),
  127.       ip4_addr3(&pcb->local_ip), ip4_addr4(&pcb->local_ip), pcb->local_port,
  128.       ip4_addr1(&pcb->remote_ip), ip4_addr2(&pcb->remote_ip),
  129.       ip4_addr3(&pcb->remote_ip), ip4_addr4(&pcb->remote_ip), pcb->remote_port));
  130.        /* PCB remote port matches UDP source port? */
  131.     if ((pcb->remote_port == src) &&
  132.        /* PCB local port matches UDP destination port? */
  133.        (pcb->local_port == dest) &&
  134.        /* accepting from any remote (source) IP address? or... */
  135.        (ip_addr_isany(&pcb->remote_ip) ||
  136.        /* PCB remote IP address matches UDP source IP address? */
  137.         ip_addr_cmp(&(pcb->remote_ip), &(iphdr->src))) &&
  138.        /* accepting on any local (netif) IP address? or... */
  139.        (ip_addr_isany(&pcb->local_ip) ||
  140.        /* PCB local IP address matches UDP destination IP address? */
  141.         ip_addr_cmp(&(pcb->local_ip), &(iphdr->dest)))) {
  142. #if SO_REUSE
  143.       if (pcb->so_options & SOF_REUSEPORT) {
  144.         if(reuse) {
  145.           /* We processed one PCB already */
  146.           LWIP_DEBUGF(UDP_DEBUG, ("udp_input: second or later PCB and SOF_REUSEPORT set.n"));
  147.         } else {
  148.           /* First PCB with this address */
  149.           LWIP_DEBUGF(UDP_DEBUG, ("udp_input: first PCB and SOF_REUSEPORT set.n"));
  150.           reuse = 1;
  151.         }
  152.         
  153.         reuse_port_1 = 1; 
  154.         p->ref++;
  155.         LWIP_DEBUGF(UDP_DEBUG, ("udp_input: reference counter on PBUF set to %in", p->ref));
  156.       } else {
  157.         if (reuse) {
  158.           /* We processed one PCB already */
  159.           LWIP_DEBUGF(UDP_DEBUG, ("udp_input: second or later PCB but SOF_REUSEPORT not set !n"));
  160.         }
  161.       }
  162. #endif /* SO_REUSE */
  163.       break;
  164.     }
  165.   }
  166.   /* no fully matching pcb found? then look for an unconnected pcb */
  167.   if (pcb == NULL) {
  168.     /* Iterate through the UDP PCB list for a pcb that matches
  169.        the local address. */
  170. #if SO_REUSE
  171.     pcb_temp = udp_pcbs;
  172.     
  173.   again_2:
  174.     for (pcb = pcb_temp; pcb != NULL; pcb = pcb->next) {
  175. #else  /* SO_REUSE */ 
  176.     for (pcb = udp_pcbs; pcb != NULL; pcb = pcb->next) {
  177. #endif  /* SO_REUSE */ 
  178.       LWIP_DEBUGF(UDP_DEBUG, ("pcb (%u.%u.%u.%u, %u) --- (%u.%u.%u.%u, %u)n",
  179.         ip4_addr1(&pcb->local_ip), ip4_addr2(&pcb->local_ip),
  180.         ip4_addr3(&pcb->local_ip), ip4_addr4(&pcb->local_ip), pcb->local_port,
  181.         ip4_addr1(&pcb->remote_ip), ip4_addr2(&pcb->remote_ip),
  182.         ip4_addr3(&pcb->remote_ip), ip4_addr4(&pcb->remote_ip), pcb->remote_port));
  183.       /* unconnected? */
  184.       if (((pcb->flags & UDP_FLAGS_CONNECTED) == 0) &&
  185.          /* destination port matches? */
  186.         (pcb->local_port == dest) &&
  187.         /* not bound to a specific (local) interface address? or... */
  188.         (ip_addr_isany(&pcb->local_ip) ||
  189.         /* ...matching interface address? */
  190.         ip_addr_cmp(&(pcb->local_ip), &(iphdr->dest)))) {
  191. #if SO_REUSE
  192.         if (pcb->so_options & SOF_REUSEPORT) {
  193.           if (reuse) {
  194.             /* We processed one PCB already */
  195.             LWIP_DEBUGF(UDP_DEBUG, ("udp_input: second or later PCB and SOF_REUSEPORT set.n"));
  196.           } else {
  197.             /* First PCB with this address */
  198.             LWIP_DEBUGF(UDP_DEBUG, ("udp_input: first PCB and SOF_REUSEPORT set.n"));
  199.             reuse = 1;
  200.           }
  201.           
  202.           reuse_port_2 = 1; 
  203.           p->ref++;
  204.           LWIP_DEBUGF(UDP_DEBUG, ("udp_input: reference counter on PBUF set to %in", p->ref));
  205.         } else {
  206.           if (reuse) {
  207.             /* We processed one PCB already */
  208.             LWIP_DEBUGF(UDP_DEBUG, ("udp_input: second or later PCB but SOF_REUSEPORT not set !n"));
  209.           }
  210.         }
  211. #endif /* SO_REUSE */
  212.         break;
  213.       }
  214.     }
  215.   }
  216.   /* Check checksum if this is a match or if it was directed at us. */
  217.   if (pcb != NULL  || ip_addr_cmp(&inp->ip_addr, &iphdr->dest))
  218.     {
  219.     LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE, ("udp_input: calculating checksumn"));
  220.     pbuf_header(p, UDP_HLEN);
  221. #ifdef IPv6
  222.     if (iphdr->nexthdr == IP_PROTO_UDPLITE) {
  223. #else
  224.     if (IPH_PROTO(iphdr) == IP_PROTO_UDPLITE) {
  225. #endif /* IPv4 */
  226.       /* Do the UDP Lite checksum */
  227. #if CHECKSUM_CHECK_UDP
  228.       if (inet_chksum_pseudo(p, (struct ip_addr *)&(iphdr->src),
  229.          (struct ip_addr *)&(iphdr->dest),
  230.          IP_PROTO_UDPLITE, ntohs(udphdr->len)) != 0) {
  231.   LWIP_DEBUGF(UDP_DEBUG | 2, ("udp_input: UDP Lite datagram discarded due to failing checksumn"));
  232.   UDP_STATS_INC(udp.chkerr);
  233.   UDP_STATS_INC(udp.drop);
  234.   snmp_inc_udpinerrors();
  235.   pbuf_free(p);
  236.   goto end;
  237.       }
  238. #endif
  239.     } else {
  240. #if CHECKSUM_CHECK_UDP
  241.       if (udphdr->chksum != 0) {
  242.   if (inet_chksum_pseudo(p, (struct ip_addr *)&(iphdr->src),
  243.        (struct ip_addr *)&(iphdr->dest),
  244.         IP_PROTO_UDP, p->tot_len) != 0) {
  245.     LWIP_DEBUGF(UDP_DEBUG | 2, ("udp_input: UDP datagram discarded due to failing checksumn"));
  246.     UDP_STATS_INC(udp.chkerr);
  247.     UDP_STATS_INC(udp.drop);
  248.     snmp_inc_udpinerrors();
  249.     pbuf_free(p);
  250.     goto end;
  251.   }
  252.       }
  253. #endif
  254.     }
  255.     pbuf_header(p, -UDP_HLEN);
  256.     if (pcb != NULL) {
  257.       snmp_inc_udpindatagrams();
  258.   
  259.    /*
  260.     *modified by skier 2006.01.30
  261.     */
  262.       //pcb->recv(pcb->recv_arg, pcb, p, &(iphdr->src), src);
  263.          DEBUG_EVENT("Send reveived packet to udp function")
  264.   pcb->recv(p);
  265.          pbuf_free(p);
  266.    //end
  267. #if SO_REUSE
  268.       /* First socket should receive now */
  269.       if(reuse_port_1 || reuse_port_2) {
  270.         /* We want to search on next socket after receiving */
  271.         pcb_temp = pcb->next;
  272.         
  273.         if(reuse_port_1) {
  274.           /* We are searching connected sockets */
  275.           reuse_port_1 = 0;
  276.           reuse_port_2 = 0;
  277.           goto again_1;
  278.         } else {
  279.           /* We are searching unconnected sockets */
  280.           reuse_port_1 = 0;
  281.           reuse_port_2 = 0;
  282.           goto again_2;
  283.         }
  284.       }
  285. #endif /* SO_REUSE */ 
  286.     } else {
  287. #if SO_REUSE
  288.       if(reuse) {
  289.         LWIP_DEBUGF(UDP_DEBUG, ("udp_input: freeing PBUF with reference counter set to %in", p->ref));
  290.         pbuf_free(p);
  291.         goto end;
  292.       }
  293. #endif /* SO_REUSE */
  294.       LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE, ("udp_input: not for us.n"));
  295.       /* No match was found, send ICMP destination port unreachable unless
  296.       destination address was broadcast/multicast. */
  297.       if (!ip_addr_isbroadcast(&iphdr->dest, inp) &&
  298.           !ip_addr_ismulticast(&iphdr->dest)) {
  299.   /* adjust pbuf pointer */
  300.   p->payload = iphdr;
  301.   icmp_dest_unreach(p, ICMP_DUR_PORT);
  302.       }
  303.       UDP_STATS_INC(udp.proterr);
  304.       UDP_STATS_INC(udp.drop);
  305.     snmp_inc_udpnoports();
  306.       pbuf_free(p);
  307.     }
  308.   } else {
  309.     pbuf_free(p);
  310.   }
  311.   end:
  312.    return;
  313.   //PERF_STOP("udp_input");
  314. }
  315. /**
  316.  * Send data to a specified address using UDP.
  317.  *
  318.  * @param pcb UDP PCB used to send the data.
  319.  * @param pbuf chain of pbuf's to be sent.
  320.  * @param dst_ip Destination IP address.
  321.  * @param dst_port Destination UDP port.
  322.  *
  323.  * If the PCB already has a remote address association, it will
  324.  * be restored after the data is sent.
  325.  * 
  326.  * @return lwIP error code.
  327.  * - ERR_OK. Successful. No error occured.
  328.  * - ERR_MEM. Out of memory.
  329.  * - ERR_RTE. Could not find route to destination address.
  330.  *
  331.  * @see udp_disconnect() udp_send()
  332.  */
  333. err_t
  334. udp_sendto(struct udp_pcb *pcb, struct pbuf *p,
  335.   struct ip_addr *dst_ip, u16_t dst_port)
  336. {
  337.   err_t err;
  338.   /* temporary space for current PCB remote address */
  339.   struct ip_addr pcb_remote_ip;
  340.   u16_t pcb_remote_port;
  341.   /* remember current remote peer address of PCB */
  342.   pcb_remote_ip.addr = pcb->remote_ip.addr;
  343.   pcb_remote_port = pcb->remote_port;
  344.   /* copy packet destination address to PCB remote peer address */
  345.   pcb->remote_ip.addr = dst_ip->addr;
  346.   pcb->remote_port = dst_port;
  347.   /* send to the packet destination address */
  348.   err = udp_send(pcb, p);
  349.   /* restore PCB remote peer address */
  350.   pcb->remote_ip.addr = pcb_remote_ip.addr;
  351.   pcb->remote_port = pcb_remote_port;
  352.   return err;
  353. }
  354. /*
  355. *write some data to UDP peer 
  356. *create by skier 2006.01.30
  357. */
  358. err_t udp_write(u8_t *data, u16_t len)
  359. {
  360.        struct pbuf *p;
  361.  err_t  err;
  362. p = pbuf_alloc(PBUF_RAW , len, PBUF_RAM);
  363. if(p == NULL)
  364. {
  365.               DEBUG_EVENT("write some data to UDP Peer, but pbuf malloc failed!");
  366. return ERR_BUF;
  367. }
  368. memcpy((u8_t*)p->payload,data, len);
  369.  /*
  370.  *because only 1 UDP PCB here
  371.  *so I user udp_pcbs directely
  372.  */
  373. err =  udp_send(udp_pcbs, p);
  374. pbuf_free(p);
  375. return err;
  376. }
  377. /**
  378.  * Send data using UDP.
  379.  *
  380.  * @param pcb UDP PCB used to send the data.
  381.  * @param pbuf chain of pbuf's to be sent.
  382.  *
  383.  * @return lwIP error code.
  384.  * - ERR_OK. Successful. No error occured.
  385.  * - ERR_MEM. Out of memory.
  386.  * - ERR_RTE. Could not find route to destination address.
  387.  *
  388.  * @see udp_disconnect() udp_sendto()
  389.  */
  390. err_t
  391. udp_send(struct udp_pcb *pcb, struct pbuf *p)
  392. {
  393.   struct udp_hdr *udphdr;
  394.   struct netif *netif;
  395.   struct ip_addr *src_ip;
  396.   err_t err;
  397.   struct pbuf *q; /* q will be sent down the stack */
  398.   LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | 3, ("udp_sendn"));
  399.   /* if the PCB is not yet bound to a port, bind it here */
  400.   if (pcb->local_port == 0) {
  401.     LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | 2, ("udp_send: not yet bound to a port, binding nown"));
  402.     err = udp_bind(pcb, &pcb->local_ip, pcb->local_port);
  403.     if (err != ERR_OK) {
  404.       LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | 2, ("udp_send: forced port bind failedn"));
  405.       return err;
  406.     }
  407.   }
  408.   /* not enough space to add an UDP header to first pbuf in given p chain? */
  409.   if (pbuf_header(p, UDP_HLEN)) {
  410.     /* allocate header in a seperate new pbuf */
  411.     q = pbuf_alloc(PBUF_IP, UDP_HLEN, PBUF_RAM);
  412.     /* new header pbuf could not be allocated? */
  413.     if (q == NULL) {
  414.       LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | 2, ("udp_send: could not allocate headern"));
  415.       return ERR_MEM;
  416.     }
  417.     /* chain header q in front of given pbuf p */
  418.     pbuf_chain(q, p);
  419.     /* { first pbuf q points to header pbuf } */
  420.     LWIP_DEBUGF(UDP_DEBUG, ("udp_send: added header pbuf %p before given pbuf %pn", (void *)q, (void *)p));
  421.   /* adding a header within p succeeded */
  422.   } else {
  423.     /* first pbuf q equals given pbuf */
  424.     q = p;
  425.     LWIP_DEBUGF(UDP_DEBUG, ("udp_send: added header in given pbuf %pn", (void *)p));
  426.   }
  427.   /* { q now represents the packet to be sent } */
  428.   udphdr = q->payload;
  429.   udphdr->src = htons(pcb->local_port);
  430.   udphdr->dest = htons(pcb->remote_port);
  431.   /* in UDP, 0 checksum means 'no checksum' */
  432.   udphdr->chksum = 0x0000; 
  433.   /* find the outgoing network interface for this packet */
  434.   netif = ip_route(&(pcb->remote_ip));
  435.   /* no outgoing network interface could be found? */
  436.   if (netif == NULL) {
  437.     LWIP_DEBUGF(UDP_DEBUG | 1, ("udp_send: No route to 0x%lxn", pcb->remote_ip.addr));
  438.     UDP_STATS_INC(udp.rterr);
  439.     return ERR_RTE;
  440.   }
  441.   /* PCB local address is IP_ANY_ADDR? */
  442.   if (ip_addr_isany(&pcb->local_ip)) {
  443.     /* use outgoing network interface IP address as source address */
  444.     src_ip = &(netif->ip_addr);
  445.   } else {
  446.     /* use UDP PCB local IP address as source address */
  447.     src_ip = &(pcb->local_ip);
  448.   }
  449.   LWIP_DEBUGF(UDP_DEBUG, ("udp_send: sending datagram of length %un", q->tot_len));
  450.   /* UDP Lite protocol? */
  451.   if (pcb->flags & UDP_FLAGS_UDPLITE) {
  452.     LWIP_DEBUGF(UDP_DEBUG, ("udp_send: UDP LITE packet length %un", q->tot_len));
  453.     /* set UDP message length in UDP header */
  454.     udphdr->len = htons(pcb->chksum_len);
  455.     /* calculate checksum */
  456. #if CHECKSUM_GEN_UDP
  457.     udphdr->chksum = inet_chksum_pseudo(q, src_ip, &(pcb->remote_ip),
  458.           IP_PROTO_UDP, pcb->chksum_len);
  459.     /* chksum zero must become 0xffff, as zero means 'no checksum' */
  460.     if (udphdr->chksum == 0x0000) udphdr->chksum = 0xffff;
  461. #else
  462.     udphdr->chksum = 0x0000;
  463. #endif
  464.     /* output to IP */
  465.     LWIP_DEBUGF(UDP_DEBUG, ("udp_send: ip_output_if (,,,,IP_PROTO_UDPLITE,)n"));
  466.     err = ip_output_if (q, src_ip, &pcb->remote_ip, pcb->ttl, pcb->tos, IP_PROTO_UDPLITE, netif);    
  467.   /* UDP */
  468.   } else {
  469.     LWIP_DEBUGF(UDP_DEBUG, ("udp_send: UDP packet length %un", q->tot_len));
  470.     udphdr->len = htons(q->tot_len);
  471.     /* calculate checksum */
  472. #if CHECKSUM_GEN_UDP
  473.     if ((pcb->flags & UDP_FLAGS_NOCHKSUM) == 0) {
  474.       udphdr->chksum = inet_chksum_pseudo(q, src_ip, &pcb->remote_ip, IP_PROTO_UDP, q->tot_len);
  475.       /* chksum zero must become 0xffff, as zero means 'no checksum' */
  476.       if (udphdr->chksum == 0x0000) udphdr->chksum = 0xffff;
  477.     }
  478. #else
  479.     udphdr->chksum = 0x0000;
  480. #endif
  481.     LWIP_DEBUGF(UDP_DEBUG, ("udp_send: UDP checksum 0x%04xn", udphdr->chksum));
  482.     LWIP_DEBUGF(UDP_DEBUG, ("udp_send: ip_output_if (,,,,IP_PROTO_UDP,)n"));
  483.     /* output to IP */
  484.     err = ip_output_if(q, src_ip, &pcb->remote_ip, pcb->ttl, pcb->tos, IP_PROTO_UDP, netif);    
  485.   }
  486.   /* TODO: must this be increased even if error occured? */
  487.   snmp_inc_udpoutdatagrams();
  488.   /* did we chain a seperate header pbuf earlier? */
  489.   if (q != p) {
  490.     /* free the header pbuf */
  491.     pbuf_free(q); q = NULL;
  492.     /* { p is still referenced by the caller, and will live on } */
  493.   }
  494.   UDP_STATS_INC(udp.xmit);
  495.   return err;
  496. }
  497. /**
  498.  * Bind an UDP PCB.
  499.  *
  500.  * @param pcb UDP PCB to be bound with a local address ipaddr and port.
  501.  * @param ipaddr local IP address to bind with. Use IP_ADDR_ANY to
  502.  * bind to all local interfaces.
  503.  * @param port local UDP port to bind with.
  504.  *
  505.  * @return lwIP error code.
  506.  * - ERR_OK. Successful. No error occured.
  507.  * - ERR_USE. The specified ipaddr and port are already bound to by
  508.  * another UDP PCB.
  509.  *
  510.  * @see udp_disconnect()
  511.  */
  512. err_t
  513. udp_bind(struct udp_pcb *pcb, struct ip_addr *ipaddr, u16_t port)
  514. {
  515.   struct udp_pcb *ipcb;
  516.   u8_t rebind;
  517. #if SO_REUSE
  518.   int reuse_port_all_set = 1;
  519. #endif /* SO_REUSE */
  520.   LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | 3, ("udp_bind(ipaddr = "));
  521.   ip_addr_debug_print(UDP_DEBUG, ipaddr);
  522.   LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | 3, (", port = %u)n", port));
  523.   rebind = 0;
  524.   /* Check for double bind and rebind of the same pcb */
  525.   for (ipcb = udp_pcbs; ipcb != NULL; ipcb = ipcb->next) {
  526.     /* is this UDP PCB already on active list? */
  527.     if (pcb == ipcb) {
  528.       /* pcb may occur at most once in active list */
  529.       LWIP_ASSERT("rebind == 0", rebind == 0);
  530.       /* pcb already in list, just rebind */
  531.       rebind = 1;
  532.     }
  533. #if SO_REUSE == 0
  534. /* this code does not allow upper layer to share a UDP port for
  535.    listening to broadcast or multicast traffic (See SO_REUSE_ADDR and
  536.    SO_REUSE_PORT under *BSD). TODO: See where it fits instead, OR
  537.    combine with implementation of UDP PCB flags. Leon Woestenberg. */
  538. #ifdef LWIP_UDP_TODO
  539.     /* port matches that of PCB in list? */
  540.     else if ((ipcb->local_port == port) &&
  541.        /* IP address matches, or one is IP_ADDR_ANY? */
  542.        (ip_addr_isany(&(ipcb->local_ip)) ||
  543.        ip_addr_isany(ipaddr) ||
  544.        ip_addr_cmp(&(ipcb->local_ip), ipaddr))) {
  545.       /* other PCB already binds to this local IP and port */
  546.       LWIP_DEBUGF(UDP_DEBUG, ("udp_bind: local port %u already bound by another pcbn", port));
  547.       return ERR_USE;
  548.     }
  549. #endif
  550. #else /* SO_REUSE */
  551.       /* Search through list of PCB's. 
  552.          
  553.       If there is a PCB bound to specified port and IP_ADDR_ANY another PCB can be bound to the interface IP
  554.       or to the loopback address on the same port if SOF_REUSEADDR is set. Any combination of PCB's bound to 
  555.       the same local port, but to one address out of {IP_ADDR_ANY, 127.0.0.1, interface IP} at a time is valid.
  556.       But no two PCB's bound to same local port and same local address is valid.
  557.       
  558.       If SOF_REUSEPORT is set several PCB's can be bound to same local port and same local address also. But then 
  559.       all PCB's must have the SOF_REUSEPORT option set.
  560.       
  561.       When the two options aren't set and specified port is already bound, ERR_USE is returned saying that 
  562.       address is already in use. */
  563.     else if (ipcb->local_port == port) {
  564.       if(ip_addr_cmp(&(ipcb->local_ip), ipaddr)) {
  565.         if(pcb->so_options & SOF_REUSEPORT) {
  566.           LWIP_DEBUGF(UDP_DEBUG, ("udp_bind: in UDP PCB's SO_REUSEPORT set and same address.n"));
  567.           reuse_port_all_set = (reuse_port_all_set && (ipcb->so_options & SOF_REUSEPORT));
  568.         }
  569.         else {
  570.           LWIP_DEBUGF(UDP_DEBUG, ("udp_bind: in UDP PCB's SO_REUSEPORT not set and same address.n"));
  571.           return ERR_USE;
  572.         }
  573.       }
  574.       else if((ip_addr_isany(ipaddr) && !ip_addr_isany(&(ipcb->local_ip))) ||
  575.               (!ip_addr_isany(ipaddr) && ip_addr_isany(&(ipcb->local_ip)))) {
  576.         if(!(pcb->so_options & SOF_REUSEADDR) && !(pcb->so_options & SOF_REUSEPORT)) {
  577.           LWIP_DEBUGF(UDP_DEBUG, ("udp_bind: in UDP PCB's SO_REUSEPORT or SO_REUSEADDR not set and not the same address.n"));
  578.           return ERR_USE;
  579.         }           
  580.       }
  581.     }
  582. #endif /* SO_REUSE */
  583.   }
  584. #if SO_REUSE
  585.   /* If SOF_REUSEPORT isn't set in all PCB's bound to specified port and local address specified then 
  586.      {IP, port} can't be reused. */
  587.   if(!reuse_port_all_set) {
  588.     LWIP_DEBUGF(UDP_DEBUG, ("udp_bind: not all sockets have SO_REUSEPORT set.n"));
  589.     return ERR_USE;
  590.   }
  591. #endif /* SO_REUSE */
  592.   ip_addr_set(&pcb->local_ip, ipaddr);
  593.   /* no port specified? */
  594.   if (port == 0) {
  595. #ifndef UDP_LOCAL_PORT_RANGE_START
  596. #define UDP_LOCAL_PORT_RANGE_START 4096
  597. #define UDP_LOCAL_PORT_RANGE_END   0x7fff
  598. #endif
  599.     port = UDP_LOCAL_PORT_RANGE_START;
  600.     ipcb = udp_pcbs;
  601.     while ((ipcb != NULL) && (port != UDP_LOCAL_PORT_RANGE_END)) {
  602.       if (ipcb->local_port == port) {
  603.         port++;
  604.         ipcb = udp_pcbs;
  605.       } else
  606.         ipcb = ipcb->next;
  607.     }
  608.     if (ipcb != NULL) {
  609.       /* no more ports available in local range */
  610.       LWIP_DEBUGF(UDP_DEBUG, ("udp_bind: out of free UDP portsn"));
  611.       return ERR_USE;
  612.     }
  613.   }
  614.   pcb->local_port = port;
  615.   /* pcb not active yet? */
  616.   if (rebind == 0) {
  617.     /* place the PCB on the active list if not already there */
  618.     pcb->next = udp_pcbs;
  619.     udp_pcbs = pcb;
  620.   }
  621.   LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | DBG_STATE, ("udp_bind: bound to %u.%u.%u.%u, port %un",
  622.    (unsigned int)(ntohl(pcb->local_ip.addr) >> 24 & 0xff),
  623.    (unsigned int)(ntohl(pcb->local_ip.addr) >> 16 & 0xff),
  624.    (unsigned int)(ntohl(pcb->local_ip.addr) >> 8 & 0xff),
  625.    (unsigned int)(ntohl(pcb->local_ip.addr) & 0xff), pcb->local_port));
  626.   return ERR_OK;
  627. }
  628. /**
  629.  * Connect an UDP PCB.
  630.  *
  631.  * This will associate the UDP PCB with the remote address.
  632.  *
  633.  * @param pcb UDP PCB to be connected with remote address ipaddr and port.
  634.  * @param ipaddr remote IP address to connect with.
  635.  * @param port remote UDP port to connect with.
  636.  *
  637.  * @return lwIP error code
  638.  *
  639.  * @see udp_disconnect()
  640.  */
  641. err_t
  642. udp_connect(struct udp_pcb *pcb, struct ip_addr *ipaddr, u16_t port)
  643. {
  644.   struct udp_pcb *ipcb;
  645.   if (pcb->local_port == 0) {
  646.     err_t err = udp_bind(pcb, &pcb->local_ip, pcb->local_port);
  647.     if (err != ERR_OK)
  648.       return err;
  649.   }
  650.   ip_addr_set(&pcb->remote_ip, ipaddr);
  651.   pcb->remote_port = port;
  652.   pcb->flags |= UDP_FLAGS_CONNECTED;
  653. /** TODO: this functionality belongs in upper layers */
  654. #ifdef LWIP_UDP_TODO
  655.   /* Nail down local IP for netconn_addr()/getsockname() */
  656.   if (ip_addr_isany(&pcb->local_ip) && !ip_addr_isany(&pcb->remote_ip)) {
  657.     struct netif *netif;
  658.     if ((netif = ip_route(&(pcb->remote_ip))) == NULL) {
  659.       LWIP_DEBUGF(UDP_DEBUG, ("udp_connect: No route to 0x%lxn", pcb->remote_ip.addr));
  660.         UDP_STATS_INC(udp.rterr);
  661.       return ERR_RTE;
  662.     }
  663.     /** TODO: this will bind the udp pcb locally, to the interface which
  664.         is used to route output packets to the remote address. However, we
  665.         might want to accept incoming packets on any interface! */
  666.     pcb->local_ip = netif->ip_addr;
  667.   } else if (ip_addr_isany(&pcb->remote_ip)) {
  668.     pcb->local_ip.addr = 0;
  669.   }
  670. #endif
  671.   LWIP_DEBUGF(UDP_DEBUG | DBG_TRACE | DBG_STATE, ("udp_connect: connected to %u.%u.%u.%u, port %un",
  672.    (unsigned int)(ntohl(pcb->remote_ip.addr) >> 24 & 0xff),
  673.    (unsigned int)(ntohl(pcb->remote_ip.addr) >> 16 & 0xff),
  674.    (unsigned int)(ntohl(pcb->remote_ip.addr) >> 8 & 0xff),
  675.    (unsigned int)(ntohl(pcb->remote_ip.addr) & 0xff), pcb->remote_port));
  676.   /* Insert UDP PCB into the list of active UDP PCBs. */
  677.   for(ipcb = udp_pcbs; ipcb != NULL; ipcb = ipcb->next) {
  678.     if (pcb == ipcb) {
  679.       /* already on the list, just return */
  680.       return ERR_OK;
  681.     }
  682.   }
  683.   /* PCB not yet on the list, add PCB now */
  684.   pcb->next = udp_pcbs;
  685.   udp_pcbs = pcb;
  686.   return ERR_OK;
  687. }
  688. void
  689. udp_disconnect(struct udp_pcb *pcb)
  690. {
  691.   /* reset remote address association */
  692.   ip_addr_set(&pcb->remote_ip, IP_ADDR_ANY);
  693.   pcb->remote_port = 0;
  694.   /* mark PCB as unconnected */
  695.   pcb->flags &= ~UDP_FLAGS_CONNECTED;
  696. }
  697. //delete by skier 2005.01.30
  698. #if 0
  699. void
  700. udp_recv(struct udp_pcb *pcb,
  701.    void (* recv)(void *arg, struct udp_pcb *upcb, struct pbuf *p,
  702.            struct ip_addr *addr, u16_t port),
  703.    void *recv_arg)
  704. {
  705.   /* remember recv() callback and user data */
  706.   pcb->recv = recv;
  707.   pcb->recv_arg = recv_arg;
  708. }
  709. #endif
  710. /**
  711.  * Remove an UDP PCB.
  712.  *
  713.  * @param pcb UDP PCB to be removed. The PCB is removed from the list of
  714.  * UDP PCB's and the data structure is freed from memory.
  715.  *
  716.  * @see udp_new()
  717.  */
  718. void
  719. udp_remove(struct udp_pcb *pcb)
  720. {
  721.   struct udp_pcb *pcb2;
  722.   /* pcb to be removed is first in list? */
  723.   if (udp_pcbs == pcb) {
  724.     /* make list start at 2nd pcb */
  725.     udp_pcbs = udp_pcbs->next;
  726.   /* pcb not 1st in list */
  727.   } else for(pcb2 = udp_pcbs; pcb2 != NULL; pcb2 = pcb2->next) {
  728.     /* find pcb in udp_pcbs list */
  729.     if (pcb2->next != NULL && pcb2->next == pcb) {
  730.       /* remove pcb from list */
  731.       pcb2->next = pcb->next;
  732.     }
  733.   }
  734.   memp_free(MEMP_UDP_PCB, pcb);
  735. }
  736. /*
  737. *this fun will be called when a valid UDP Packet received
  738. *created by skier 2006.01.30
  739. */
  740. extern void udp_data_ind(u8_t *buf, u16_t len);
  741. void recv_udp(struct pbuf *p)
  742. {
  743.     struct pbuf *temp = p;
  744.     DEBUG_EVENT("recv_udp()")
  745.     while(temp != NULL)
  746.     {
  747.         udp_data_ind((u8_t *)temp->payload, temp->len);
  748.  temp = temp->next;
  749.     }
  750. }
  751. /**
  752.  * Create a UDP PCB.
  753.  *
  754.  * @return The UDP PCB which was created. NULL if the PCB data structure
  755.  * could not be allocated.
  756.  *
  757.  * @see udp_remove()
  758.  */
  759. struct udp_pcb *
  760. udp_new(void) {
  761.   struct udp_pcb *pcb;
  762.   pcb = memp_malloc(MEMP_UDP_PCB);
  763.   /* could allocate UDP PCB? */
  764.   if (pcb != NULL) {
  765.     /* initialize PCB to all zeroes */
  766.     memset(pcb, 0, sizeof(struct udp_pcb));
  767.     pcb->ttl = UDP_TTL;
  768.     pcb->recv = recv_udp;/*new added by skier 2006.01.30*/
  769.   }
  770.   
  771.   
  772.   return pcb;
  773. }
  774. #if UDP_DEBUG
  775. int
  776. udp_debug_print(struct udp_hdr *udphdr)
  777. {
  778.   LWIP_DEBUGF(UDP_DEBUG, ("UDP header:n"));
  779.   LWIP_DEBUGF(UDP_DEBUG, ("+-------------------------------+n"));
  780.   LWIP_DEBUGF(UDP_DEBUG, ("|     %5u     |     %5u     | (src port, dest port)n",
  781.          ntohs(udphdr->src), ntohs(udphdr->dest)));
  782.   LWIP_DEBUGF(UDP_DEBUG, ("+-------------------------------+n"));
  783.   LWIP_DEBUGF(UDP_DEBUG, ("|     %5u     |     0x%04x    | (len, chksum)n",
  784.          ntohs(udphdr->len), ntohs(udphdr->chksum)));
  785.   LWIP_DEBUGF(UDP_DEBUG, ("+-------------------------------+n"));
  786.   return 0;
  787. }
  788. #endif /* UDP_DEBUG */
  789. #endif /* LWIP_UDP */