STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
snmp_netconn.c
Go to the documentation of this file.
1 
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  * Author: Dirk Ziegelmeier <dziegel@gmx.de>
33  */
34 
35 #include "lwip/apps/snmp_opts.h"
36 
37 #if LWIP_SNMP && SNMP_USE_NETCONN
38 
39 #include "lwip/api.h"
40 #include "lwip/ip.h"
41 #include "lwip/udp.h"
42 #include "snmp_msg.h"
43 #include "lwip/sys.h"
44 
46 static void
47 snmp_netconn_thread(void *arg)
48 {
49  struct netconn *conn;
50  struct netbuf *buf;
51  err_t err;
52  LWIP_UNUSED_ARG(arg);
53 
54  conn = netconn_new(NETCONN_UDP);
55  LWIP_ERROR("snmp_netconn: invalid conn", (conn != NULL), return;);
56 
57  snmp_traps_handle = conn;
58 
59  /* Bind to SNMP port with default IP address */
60  netconn_bind(conn, IP_ADDR_ANY, SNMP_IN_PORT);
61 
62  do {
63  err = netconn_recv(conn, &buf);
64 
65  if (err == ERR_OK) {
66  snmp_receive(conn, buf->p, &buf->addr, buf->port);
67  }
68 
69  if(buf != NULL) {
70  netbuf_delete(buf);
71  }
72  } while(1);
73 }
74 
75 err_t
76 snmp_sendto(void *handle, struct pbuf *p, const ip_addr_t *dst, u16_t port)
77 {
78  err_t result;
79  struct netbuf buf;
80 
81  memset(&buf, 0, sizeof(buf));
82  buf.p = p;
83  result = netconn_sendto((struct netconn*)handle, &buf, dst, port);
84 
85  return result;
86 }
87 
88 u8_t
89 snmp_get_local_ip_for_dst(void* handle, const ip_addr_t *dst, ip_addr_t *result)
90 {
91  struct netconn* conn = (struct netconn*)handle;
92  struct netif *dst_if;
93  const ip_addr_t* dst_ip;
94 
95  LWIP_UNUSED_ARG(conn); /* unused in case of IPV4 only configuration */
96 
97  ip_route_get_local_ip(IP_IS_V6_VAL(conn->pcb.udp->local_ip), &conn->pcb.udp->local_ip, dst, dst_if, dst_ip);
98 
99  if((dst_if != NULL) && (dst_ip != NULL)) {
100  ip_addr_copy(*result, *dst_ip);
101  return 1;
102  } else {
103  return 0;
104  }
105 }
106 
110 void
111 snmp_init(void)
112 {
113  sys_thread_new("snmp_netconn", snmp_netconn_thread, NULL, SNMP_STACK_SIZE, SNMP_THREAD_PRIO);
114 }
115 
116 #endif /* LWIP_SNMP && SNMP_USE_NETCONN */
sys_thread_t sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio)
Definition: sys_arch.c:391
#define ip_route_get_local_ip(isipv6, src, dest, netif, ipaddr)
Definition: ip.h:302
#define NULL
Definition: usbd_def.h:53
#define ip_addr_copy(dest, src)
Definition: ip_addr.h:203
#define ERR_OK
Definition: err.h:52
#define IP_IS_V6_VAL(ipaddr)
Definition: ip_addr.h:196
Definition: pbuf.h:108
s8_t err_t
Definition: err.h:47
Definition: netif.h:182
unsigned char u8_t
Definition: cc.h:38
ip6_addr_t ip_addr_t
Definition: ip_addr.h:194
#define LWIP_ERROR(message, expression, handler)
Definition: debug.h:89
#define LWIP_UNUSED_ARG(x)
Definition: arch.h:89
unsigned short u16_t
Definition: cc.h:40