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
46*10465441SEvalZero /** SNMP netconn API worker thread */
47*10465441SEvalZero static void
snmp_netconn_thread(void * arg)48*10465441SEvalZero snmp_netconn_thread(void *arg)
49*10465441SEvalZero {
50*10465441SEvalZero struct netconn *conn;
51*10465441SEvalZero struct netbuf *buf;
52*10465441SEvalZero err_t err;
53*10465441SEvalZero LWIP_UNUSED_ARG(arg);
54*10465441SEvalZero
55*10465441SEvalZero /* Bind to SNMP port with default IP address */
56*10465441SEvalZero #if LWIP_IPV6
57*10465441SEvalZero conn = netconn_new(NETCONN_UDP_IPV6);
58*10465441SEvalZero netconn_bind(conn, IP6_ADDR_ANY, SNMP_IN_PORT);
59*10465441SEvalZero #else /* LWIP_IPV6 */
60*10465441SEvalZero conn = netconn_new(NETCONN_UDP);
61*10465441SEvalZero netconn_bind(conn, IP4_ADDR_ANY, SNMP_IN_PORT);
62*10465441SEvalZero #endif /* LWIP_IPV6 */
63*10465441SEvalZero LWIP_ERROR("snmp_netconn: invalid conn", (conn != NULL), return;);
64*10465441SEvalZero
65*10465441SEvalZero snmp_traps_handle = conn;
66*10465441SEvalZero
67*10465441SEvalZero do {
68*10465441SEvalZero err = netconn_recv(conn, &buf);
69*10465441SEvalZero
70*10465441SEvalZero if (err == ERR_OK) {
71*10465441SEvalZero snmp_receive(conn, buf->p, &buf->addr, buf->port);
72*10465441SEvalZero }
73*10465441SEvalZero
74*10465441SEvalZero if (buf != NULL) {
75*10465441SEvalZero netbuf_delete(buf);
76*10465441SEvalZero }
77*10465441SEvalZero } while(1);
78*10465441SEvalZero }
79*10465441SEvalZero
80*10465441SEvalZero err_t
snmp_sendto(void * handle,struct pbuf * p,const ip_addr_t * dst,u16_t port)81*10465441SEvalZero snmp_sendto(void *handle, struct pbuf *p, const ip_addr_t *dst, u16_t port)
82*10465441SEvalZero {
83*10465441SEvalZero err_t result;
84*10465441SEvalZero struct netbuf buf;
85*10465441SEvalZero
86*10465441SEvalZero memset(&buf, 0, sizeof(buf));
87*10465441SEvalZero buf.p = p;
88*10465441SEvalZero result = netconn_sendto((struct netconn*)handle, &buf, dst, port);
89*10465441SEvalZero
90*10465441SEvalZero return result;
91*10465441SEvalZero }
92*10465441SEvalZero
93*10465441SEvalZero u8_t
snmp_get_local_ip_for_dst(void * handle,const ip_addr_t * dst,ip_addr_t * result)94*10465441SEvalZero snmp_get_local_ip_for_dst(void* handle, const ip_addr_t *dst, ip_addr_t *result)
95*10465441SEvalZero {
96*10465441SEvalZero struct netconn* conn = (struct netconn*)handle;
97*10465441SEvalZero struct netif *dst_if;
98*10465441SEvalZero const ip_addr_t* dst_ip;
99*10465441SEvalZero
100*10465441SEvalZero LWIP_UNUSED_ARG(conn); /* unused in case of IPV4 only configuration */
101*10465441SEvalZero
102*10465441SEvalZero ip_route_get_local_ip(&conn->pcb.udp->local_ip, dst, dst_if, dst_ip);
103*10465441SEvalZero
104*10465441SEvalZero if ((dst_if != NULL) && (dst_ip != NULL)) {
105*10465441SEvalZero ip_addr_copy(*result, *dst_ip);
106*10465441SEvalZero return 1;
107*10465441SEvalZero } else {
108*10465441SEvalZero return 0;
109*10465441SEvalZero }
110*10465441SEvalZero }
111*10465441SEvalZero
112*10465441SEvalZero /**
113*10465441SEvalZero * Starts SNMP Agent.
114*10465441SEvalZero */
115*10465441SEvalZero void
snmp_init(void)116*10465441SEvalZero snmp_init(void)
117*10465441SEvalZero {
118*10465441SEvalZero sys_thread_new("snmp_netconn", snmp_netconn_thread, NULL, SNMP_STACK_SIZE, SNMP_THREAD_PRIO);
119*10465441SEvalZero }
120*10465441SEvalZero
121*10465441SEvalZero #endif /* LWIP_SNMP && SNMP_USE_NETCONN */
122