xref: /nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/apps/snmp/snmp_netconn.c (revision 104654410c56c573564690304ae786df310c91fc)
1*10465441SEvalZero /**
2*10465441SEvalZero  * @file
3*10465441SEvalZero  * SNMP netconn frontend.
4*10465441SEvalZero  */
5*10465441SEvalZero 
6*10465441SEvalZero /*
7*10465441SEvalZero  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
8*10465441SEvalZero  * All rights reserved.
9*10465441SEvalZero  *
10*10465441SEvalZero  * Redistribution and use in source and binary forms, with or without modification,
11*10465441SEvalZero  * are permitted provided that the following conditions are met:
12*10465441SEvalZero  *
13*10465441SEvalZero  * 1. Redistributions of source code must retain the above copyright notice,
14*10465441SEvalZero  *    this list of conditions and the following disclaimer.
15*10465441SEvalZero  * 2. Redistributions in binary form must reproduce the above copyright notice,
16*10465441SEvalZero  *    this list of conditions and the following disclaimer in the documentation
17*10465441SEvalZero  *    and/or other materials provided with the distribution.
18*10465441SEvalZero  * 3. The name of the author may not be used to endorse or promote products
19*10465441SEvalZero  *    derived from this software without specific prior written permission.
20*10465441SEvalZero  *
21*10465441SEvalZero  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
22*10465441SEvalZero  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23*10465441SEvalZero  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
24*10465441SEvalZero  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25*10465441SEvalZero  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
26*10465441SEvalZero  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27*10465441SEvalZero  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28*10465441SEvalZero  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29*10465441SEvalZero  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
30*10465441SEvalZero  * OF SUCH DAMAGE.
31*10465441SEvalZero  *
32*10465441SEvalZero  * Author: Dirk Ziegelmeier <[email protected]>
33*10465441SEvalZero  */
34*10465441SEvalZero 
35*10465441SEvalZero #include "lwip/apps/snmp_opts.h"
36*10465441SEvalZero 
37*10465441SEvalZero #if LWIP_SNMP && SNMP_USE_NETCONN
38*10465441SEvalZero 
39*10465441SEvalZero #include <string.h>
40*10465441SEvalZero #include "lwip/api.h"
41*10465441SEvalZero #include "lwip/ip.h"
42*10465441SEvalZero #include "lwip/udp.h"
43*10465441SEvalZero #include "snmp_msg.h"
44*10465441SEvalZero #include "lwip/sys.h"
45*10465441SEvalZero #include "lwip/prot/iana.h"
46*10465441SEvalZero 
47*10465441SEvalZero /** SNMP netconn API worker thread */
48*10465441SEvalZero static void
snmp_netconn_thread(void * arg)49*10465441SEvalZero snmp_netconn_thread(void *arg)
50*10465441SEvalZero {
51*10465441SEvalZero   struct netconn *conn;
52*10465441SEvalZero   struct netbuf *buf;
53*10465441SEvalZero   err_t err;
54*10465441SEvalZero   LWIP_UNUSED_ARG(arg);
55*10465441SEvalZero 
56*10465441SEvalZero   /* Bind to SNMP port with default IP address */
57*10465441SEvalZero #if LWIP_IPV6
58*10465441SEvalZero   conn = netconn_new(NETCONN_UDP_IPV6);
59*10465441SEvalZero   netconn_bind(conn, IP6_ADDR_ANY, LWIP_IANA_PORT_SNMP);
60*10465441SEvalZero #else /* LWIP_IPV6 */
61*10465441SEvalZero   conn = netconn_new(NETCONN_UDP);
62*10465441SEvalZero   netconn_bind(conn, IP4_ADDR_ANY, LWIP_IANA_PORT_SNMP);
63*10465441SEvalZero #endif /* LWIP_IPV6 */
64*10465441SEvalZero   LWIP_ERROR("snmp_netconn: invalid conn", (conn != NULL), return;);
65*10465441SEvalZero 
66*10465441SEvalZero   snmp_traps_handle = conn;
67*10465441SEvalZero 
68*10465441SEvalZero   do {
69*10465441SEvalZero     err = netconn_recv(conn, &buf);
70*10465441SEvalZero 
71*10465441SEvalZero     if (err == ERR_OK) {
72*10465441SEvalZero       snmp_receive(conn, buf->p, &buf->addr, buf->port);
73*10465441SEvalZero     }
74*10465441SEvalZero 
75*10465441SEvalZero     if (buf != NULL) {
76*10465441SEvalZero       netbuf_delete(buf);
77*10465441SEvalZero     }
78*10465441SEvalZero   } while (1);
79*10465441SEvalZero }
80*10465441SEvalZero 
81*10465441SEvalZero err_t
snmp_sendto(void * handle,struct pbuf * p,const ip_addr_t * dst,u16_t port)82*10465441SEvalZero snmp_sendto(void *handle, struct pbuf *p, const ip_addr_t *dst, u16_t port)
83*10465441SEvalZero {
84*10465441SEvalZero   err_t result;
85*10465441SEvalZero   struct netbuf buf;
86*10465441SEvalZero 
87*10465441SEvalZero   memset(&buf, 0, sizeof(buf));
88*10465441SEvalZero   buf.p = p;
89*10465441SEvalZero   result = netconn_sendto((struct netconn *)handle, &buf, dst, port);
90*10465441SEvalZero 
91*10465441SEvalZero   return result;
92*10465441SEvalZero }
93*10465441SEvalZero 
94*10465441SEvalZero u8_t
snmp_get_local_ip_for_dst(void * handle,const ip_addr_t * dst,ip_addr_t * result)95*10465441SEvalZero snmp_get_local_ip_for_dst(void *handle, const ip_addr_t *dst, ip_addr_t *result)
96*10465441SEvalZero {
97*10465441SEvalZero   struct netconn *conn = (struct netconn *)handle;
98*10465441SEvalZero   struct netif *dst_if;
99*10465441SEvalZero   const ip_addr_t *dst_ip;
100*10465441SEvalZero 
101*10465441SEvalZero   LWIP_UNUSED_ARG(conn); /* unused in case of IPV4 only configuration */
102*10465441SEvalZero 
103*10465441SEvalZero   ip_route_get_local_ip(&conn->pcb.udp->local_ip, dst, dst_if, dst_ip);
104*10465441SEvalZero 
105*10465441SEvalZero   if ((dst_if != NULL) && (dst_ip != NULL)) {
106*10465441SEvalZero     ip_addr_copy(*result, *dst_ip);
107*10465441SEvalZero     return 1;
108*10465441SEvalZero   } else {
109*10465441SEvalZero     return 0;
110*10465441SEvalZero   }
111*10465441SEvalZero }
112*10465441SEvalZero 
113*10465441SEvalZero /**
114*10465441SEvalZero  * Starts SNMP Agent.
115*10465441SEvalZero  */
116*10465441SEvalZero void
snmp_init(void)117*10465441SEvalZero snmp_init(void)
118*10465441SEvalZero {
119*10465441SEvalZero   LWIP_ASSERT_CORE_LOCKED();
120*10465441SEvalZero   sys_thread_new("snmp_netconn", snmp_netconn_thread, NULL, SNMP_STACK_SIZE, SNMP_THREAD_PRIO);
121*10465441SEvalZero }
122*10465441SEvalZero 
123*10465441SEvalZero #endif /* LWIP_SNMP && SNMP_USE_NETCONN */
124