]> git.proxmox.com Git - mirror_frr.git/blob - lib/agentx.c
Merge pull request #2848 from donaldsharp/more_init
[mirror_frr.git] / lib / agentx.c
1 /* SNMP support
2 * Copyright (C) 2012 Vincent Bernat <bernat@luffy.cx>
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #ifdef SNMP_AGENTX
24 #include <net-snmp/net-snmp-config.h>
25 #include <net-snmp/net-snmp-includes.h>
26 #include <net-snmp/agent/net-snmp-agent-includes.h>
27 #include <net-snmp/agent/snmp_vars.h>
28
29 #include "command.h"
30 #include "smux.h"
31 #include "memory.h"
32 #include "linklist.h"
33 #include "version.h"
34 #include "lib_errors.h"
35
36 static int agentx_enabled = 0;
37
38 static struct thread_master *agentx_tm;
39 static struct thread *timeout_thr = NULL;
40 static struct list *events = NULL;
41
42 static void agentx_events_update(void);
43
44 static int agentx_timeout(struct thread *t)
45 {
46 timeout_thr = NULL;
47
48 snmp_timeout();
49 run_alarms();
50 netsnmp_check_outstanding_agent_requests();
51 agentx_events_update();
52 return 0;
53 }
54
55 static int agentx_read(struct thread *t)
56 {
57 fd_set fds;
58 struct listnode *ln = THREAD_ARG(t);
59 list_delete_node(events, ln);
60
61 FD_ZERO(&fds);
62 FD_SET(THREAD_FD(t), &fds);
63 snmp_read(&fds);
64
65 netsnmp_check_outstanding_agent_requests();
66 agentx_events_update();
67 return 0;
68 }
69
70 static void agentx_events_update(void)
71 {
72 int maxfd = 0;
73 int block = 1;
74 struct timeval timeout = {.tv_sec = 0, .tv_usec = 0};
75 fd_set fds;
76 struct listnode *ln;
77 struct thread *thr;
78 int fd, thr_fd;
79
80 THREAD_OFF(timeout_thr);
81
82 FD_ZERO(&fds);
83 snmp_select_info(&maxfd, &fds, &timeout, &block);
84
85 if (!block) {
86 timeout_thr = NULL;
87 thread_add_timer_tv(agentx_tm, agentx_timeout, NULL, &timeout,
88 &timeout_thr);
89 }
90
91 ln = listhead(events);
92 thr = ln ? listgetdata(ln) : NULL;
93 thr_fd = thr ? THREAD_FD(thr) : -1;
94
95 /* "two-pointer" / two-list simultaneous iteration
96 * ln/thr/thr_fd point to the next existing event listener to hit while
97 * fd counts to catch up */
98 for (fd = 0; fd < maxfd; fd++) {
99 /* caught up */
100 if (thr_fd == fd) {
101 struct listnode *nextln = listnextnode(ln);
102 if (!FD_ISSET(fd, &fds)) {
103 thread_cancel(thr);
104 list_delete_node(events, ln);
105 }
106 ln = nextln;
107 thr = ln ? listgetdata(ln) : NULL;
108 thr_fd = thr ? THREAD_FD(thr) : -1;
109 }
110 /* need listener, but haven't hit one where it would be */
111 else if (FD_ISSET(fd, &fds)) {
112 struct listnode *newln;
113 thr = NULL;
114 thread_add_read(agentx_tm, agentx_read, NULL, fd, &thr);
115 newln = listnode_add_before(events, ln, thr);
116 thr->arg = newln;
117 }
118 }
119
120 /* leftover event listeners at this point have fd > maxfd, delete them
121 */
122 while (ln) {
123 struct listnode *nextln = listnextnode(ln);
124 thread_cancel(listgetdata(ln));
125 list_delete_node(events, ln);
126 ln = nextln;
127 }
128 }
129
130 /* AgentX node. */
131 static struct cmd_node agentx_node = {SMUX_NODE,
132 "", /* AgentX has no interface. */
133 1};
134
135 /* Logging NetSNMP messages */
136 static int agentx_log_callback(int major, int minor, void *serverarg,
137 void *clientarg)
138 {
139 struct snmp_log_message *slm = (struct snmp_log_message *)serverarg;
140 char *msg = XSTRDUP(MTYPE_TMP, slm->msg);
141 if (msg)
142 msg[strlen(msg) - 1] = '\0';
143 switch (slm->priority) {
144 case LOG_EMERG:
145 flog_err(LIB_ERR_SNMP,
146 "snmp[emerg]: %s", msg ? msg : slm->msg);
147 break;
148 case LOG_ALERT:
149 flog_err(LIB_ERR_SNMP,
150 "snmp[alert]: %s", msg ? msg : slm->msg);
151 break;
152 case LOG_CRIT:
153 flog_err(LIB_ERR_SNMP,
154 "snmp[crit]: %s", msg ? msg : slm->msg);
155 break;
156 case LOG_ERR:
157 flog_err(LIB_ERR_SNMP,
158 "snmp[err]: %s", msg ? msg : slm->msg);
159 break;
160 case LOG_WARNING:
161 zlog_warn("snmp[warning]: %s", msg ? msg : slm->msg);
162 break;
163 case LOG_NOTICE:
164 zlog_notice("snmp[notice]: %s", msg ? msg : slm->msg);
165 break;
166 case LOG_INFO:
167 zlog_info("snmp[info]: %s", msg ? msg : slm->msg);
168 break;
169 case LOG_DEBUG:
170 zlog_debug("snmp[debug]: %s", msg ? msg : slm->msg);
171 break;
172 }
173 XFREE(MTYPE_TMP, msg);
174 return SNMP_ERR_NOERROR;
175 }
176
177 static int config_write_agentx(struct vty *vty)
178 {
179 if (agentx_enabled)
180 vty_out(vty, "agentx\n");
181 return 1;
182 }
183
184 DEFUN (agentx_enable,
185 agentx_enable_cmd,
186 "agentx",
187 "SNMP AgentX protocol settings\n")
188 {
189 if (!agentx_enabled) {
190 init_snmp(FRR_SMUX_NAME);
191 events = list_new();
192 agentx_events_update();
193 agentx_enabled = 1;
194 return CMD_SUCCESS;
195 }
196 vty_out(vty, "SNMP AgentX already enabled\n");
197 return CMD_SUCCESS;
198 }
199
200 DEFUN (no_agentx,
201 no_agentx_cmd,
202 "no agentx",
203 NO_STR
204 "SNMP AgentX protocol settings\n")
205 {
206 if (!agentx_enabled)
207 return CMD_SUCCESS;
208 vty_out(vty, "SNMP AgentX support cannot be disabled once enabled\n");
209 return CMD_WARNING_CONFIG_FAILED;
210 }
211
212 void smux_init(struct thread_master *tm)
213 {
214 agentx_tm = tm;
215
216 netsnmp_enable_subagent();
217 snmp_disable_log();
218 snmp_enable_calllog();
219 snmp_register_callback(SNMP_CALLBACK_LIBRARY, SNMP_CALLBACK_LOGGING,
220 agentx_log_callback, NULL);
221 init_agent(FRR_SMUX_NAME);
222
223 install_node(&agentx_node, config_write_agentx);
224 install_element(CONFIG_NODE, &agentx_enable_cmd);
225 install_element(CONFIG_NODE, &no_agentx_cmd);
226 }
227
228 void smux_register_mib(const char *descr, struct variable *var, size_t width,
229 int num, oid name[], size_t namelen)
230 {
231 register_mib(descr, var, width, num, name, namelen);
232 }
233
234 int smux_trap(struct variable *vp, size_t vp_len, const oid *ename,
235 size_t enamelen, const oid *name, size_t namelen,
236 const oid *iname, size_t inamelen,
237 const struct trap_object *trapobj, size_t trapobjlen,
238 uint8_t sptrap)
239 {
240 oid objid_snmptrap[] = {1, 3, 6, 1, 6, 3, 1, 1, 4, 1, 0};
241 size_t objid_snmptrap_len = sizeof objid_snmptrap / sizeof(oid);
242 oid notification_oid[MAX_OID_LEN];
243 size_t notification_oid_len;
244 unsigned int i;
245
246 netsnmp_variable_list *notification_vars = NULL;
247 if (!agentx_enabled)
248 return 0;
249
250 /* snmpTrapOID */
251 oid_copy(notification_oid, ename, enamelen);
252 notification_oid[enamelen] = sptrap;
253 notification_oid_len = enamelen + 1;
254 snmp_varlist_add_variable(&notification_vars, objid_snmptrap,
255 objid_snmptrap_len, ASN_OBJECT_ID,
256 (uint8_t *)notification_oid,
257 notification_oid_len * sizeof(oid));
258
259 /* Provided bindings */
260 for (i = 0; i < trapobjlen; i++) {
261 unsigned int j;
262 oid oid[MAX_OID_LEN];
263 size_t oid_len, onamelen;
264 uint8_t *val;
265 size_t val_len;
266 WriteMethod *wm = NULL;
267 struct variable cvp;
268
269 /* Make OID. */
270 if (trapobj[i].namelen > 0) {
271 /* Columnar object */
272 onamelen = trapobj[i].namelen;
273 oid_copy(oid, name, namelen);
274 oid_copy(oid + namelen, trapobj[i].name, onamelen);
275 oid_copy(oid + namelen + onamelen, iname, inamelen);
276 oid_len = namelen + onamelen + inamelen;
277 } else {
278 /* Scalar object */
279 onamelen = trapobj[i].namelen * (-1);
280 oid_copy(oid, name, namelen);
281 oid_copy(oid + namelen, trapobj[i].name, onamelen);
282 oid[onamelen + namelen] = 0;
283 oid_len = namelen + onamelen + 1;
284 }
285
286 /* Locate the appropriate function and type in the MIB registry.
287 */
288 for (j = 0; j < vp_len; j++) {
289 if (oid_compare(trapobj[i].name, onamelen, vp[j].name,
290 vp[j].namelen)
291 != 0)
292 continue;
293 /* We found the appropriate variable in the MIB
294 * registry. */
295 oid_copy(cvp.name, name, namelen);
296 oid_copy(cvp.name + namelen, vp[j].name, vp[j].namelen);
297 cvp.namelen = namelen + vp[j].namelen;
298 cvp.type = vp[j].type;
299 cvp.magic = vp[j].magic;
300 cvp.acl = vp[j].acl;
301 cvp.findVar = vp[j].findVar;
302 /* Grab the result. */
303 val = cvp.findVar(&cvp, oid, &oid_len, 1, &val_len,
304 &wm);
305 if (!val)
306 break;
307 snmp_varlist_add_variable(&notification_vars, oid,
308 oid_len, vp[j].type, val,
309 val_len);
310 break;
311 }
312 }
313
314
315 send_v2trap(notification_vars);
316 snmp_free_varbind(notification_vars);
317 agentx_events_update();
318 return 1;
319 }
320
321 #endif /* SNMP_AGENTX */