1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
|
/* $OpenBSD: snmpd.h,v 1.22 2008/12/08 11:34:55 reyk Exp $ */
/*
* Copyright (c) 2007, 2008 Reyk Floeter <reyk@vantronix.net>
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _SNMPD_H
#define _SNMPD_H
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <net/route.h>
#include <ber.h>
#include <snmp.h>
/*
* common definitions for snmpd
*/
#define CONF_FILE "/etc/snmpd.conf"
#define SNMPD_SOCKET "/var/run/snmpd.sock"
#define SNMPD_USER "_snmpd"
#define SNMPD_PORT 161
#define SNMPD_TRAPPORT 162
#define SNMPD_MAXSTRLEN 484
#define SNMPD_MAXCOMMUNITYLEN SNMPD_MAXSTRLEN
#define SNMPD_MAXVARBIND 0x7fffffff
#define SNMPD_MAXVARBINDLEN 1210
#define SMALL_READ_BUF_SIZE 1024
#define READ_BUF_SIZE 65535
#define RT_BUF_SIZE 16384
#define MAX_RTSOCK_BUF (128 * 1024)
/*
* imsg framework and privsep
*/
struct buf {
TAILQ_ENTRY(buf) entry;
u_char *buf;
size_t size;
size_t max;
size_t wpos;
size_t rpos;
int fd;
};
struct msgbuf {
TAILQ_HEAD(, buf) bufs;
u_int32_t queued;
int fd;
};
#define IMSG_HEADER_SIZE sizeof(struct imsg_hdr)
#define MAX_IMSGSIZE 8192
struct buf_read {
u_char buf[READ_BUF_SIZE];
u_char *rptr;
size_t wpos;
};
struct imsg_fd {
TAILQ_ENTRY(imsg_fd) entry;
int fd;
};
struct imsgbuf {
TAILQ_HEAD(, imsg_fd) fds;
struct buf_read r;
struct msgbuf w;
struct event ev;
void (*handler)(int, short, void *);
int fd;
pid_t pid;
short events;
};
enum imsg_type {
IMSG_NONE,
IMSG_CTL_OK, /* answer to snmpctl requests */
IMSG_CTL_FAIL,
IMSG_CTL_END,
IMSG_CTL_NOTIFY
};
struct imsg_hdr {
u_int16_t type;
u_int16_t len;
u_int32_t peerid;
pid_t pid;
};
struct imsg {
struct imsg_hdr hdr;
void *data;
};
enum {
PROC_PARENT, /* Parent process and application interface */
PROC_SNMPE /* SNMP engine */
} snmpd_process;
/* initially control.h */
struct control_sock {
const char *cs_name;
struct event cs_ev;
int cs_fd;
int cs_restricted;
};
enum blockmodes {
BM_NORMAL,
BM_NONBLOCK
};
struct ctl_conn {
TAILQ_ENTRY(ctl_conn) entry;
u_int8_t flags;
#define CTL_CONN_NOTIFY 0x01
#define CTL_CONN_LOCKED 0x02 /* restricted mode */
struct imsgbuf ibuf;
};
TAILQ_HEAD(ctl_connlist, ctl_conn);
extern struct ctl_connlist ctl_conns;
/*
* kroute
*/
struct kroute {
struct in_addr prefix;
struct in_addr nexthop;
u_int16_t flags;
u_int16_t rtlabel;
u_short if_index;
u_int8_t prefixlen;
u_long ticks;
};
struct kif_addr {
u_short if_index;
struct in_addr addr;
struct in_addr mask;
struct in_addr dstbrd;
TAILQ_ENTRY(kif_addr) entry;
RB_ENTRY(kif_addr) node;
};
struct kif {
char if_name[IF_NAMESIZE];
char if_descr[IFDESCRSIZE];
u_int8_t if_lladdr[ETHER_ADDR_LEN];
int if_flags;
u_short if_index;
u_int8_t if_nhreachable; /* for nexthop verification */
u_long if_ticks;
struct if_data if_data;
};
#define F_OSPFD_INSERTED 0x0001
#define F_KERNEL 0x0002
#define F_BGPD_INSERTED 0x0004
#define F_CONNECTED 0x0008
#define F_DOWN 0x0010
#define F_STATIC 0x0020
#define F_DYNAMIC 0x0040
#define F_REDISTRIBUTED 0x0100
/*
* Message Processing Subsystem (mps)
*/
struct oid {
struct ber_oid o_id;
#define o_oid o_id.bo_id
#define o_oidlen o_id.bo_n
char *o_name;
u_int o_flags;
int (*o_get)(struct oid *, struct ber_oid *,
struct ber_element **);
int (*o_set)(struct oid *, struct ber_oid *,
struct ber_element **);
struct ber_oid *(*o_table)(struct oid *, struct ber_oid *,
struct ber_oid *);
long long o_val;
void *o_data;
RB_ENTRY(oid) o_element;
};
#define OID_ROOT 0x00
#define OID_RD 0x01
#define OID_WR 0x02
#define OID_IFSET 0x04 /* only if user-specified value */
#define OID_DYNAMIC 0x08 /* free allocated data */
#define OID_TABLE 0x10 /* dynamic sub-elements */
#define OID_MIB 0x20 /* root-OID of a supported MIB */
#define OID_KEY 0x40 /* lookup tables */
#define OID_RS (OID_RD|OID_IFSET)
#define OID_WS (OID_WR|OID_IFSET)
#define OID_RW (OID_RD|OID_WR)
#define OID_RWS (OID_RW|OID_IFSET)
#define OID_TRD (OID_RD|OID_TABLE)
#define OID_TWR (OID_WR|OID_TABLE)
#define OID_TRS (OID_RD|OID_IFSET|OID_TABLE)
#define OID_TWS (OID_WR|OID_IFSET|OID_TABLE)
#define OID_TRW (OID_RD|OID_WR|OID_TABLE)
#define OID_TRWS (OID_RW|OID_IFSET|OID_TABLE)
#define OID_NOTSET(_oid) \
(((_oid)->o_flags & OID_IFSET) && \
((_oid)->o_data == NULL) && ((_oid)->o_val == 0))
#define OID(...) { { __VA_ARGS__ } }
#define MIBDECL(...) { { MIB_##__VA_ARGS__ } }, #__VA_ARGS__
#define MIB(...) { { MIB_##__VA_ARGS__ } }, NULL
#define MIBEND { { 0 } }, NULL
/*
* daemon structures
*/
struct snmp_message {
u_int sm_version;
char sm_community[SNMPD_MAXCOMMUNITYLEN];
u_int sm_context;
struct ber_element *sm_header;
struct ber_element *sm_headerend;
long long sm_request;
long long sm_error;
#define sm_nonrepeaters sm_error
long long sm_errorindex;
#define sm_maxrepetitions sm_errorindex
struct ber_element *sm_pdu;
struct ber_element *sm_pduend;
struct ber_element *sm_varbind;
struct ber_element *sm_varbindresp;
};
/* Defined in SNMPv2-MIB.txt (RFC 3418) */
struct snmp_stats {
u_int32_t snmp_inpkts;
u_int32_t snmp_outpkts;
u_int32_t snmp_inbadversions;
u_int32_t snmp_inbadcommunitynames;
u_int32_t snmp_inbadcommunityuses;
u_int32_t snmp_inasnparseerrs;
u_int32_t snmp_intoobigs;
u_int32_t snmp_innosuchnames;
u_int32_t snmp_inbadvalues;
u_int32_t snmp_inreadonlys;
u_int32_t snmp_ingenerrs;
u_int32_t snmp_intotalreqvars;
u_int32_t snmp_intotalsetvars;
u_int32_t snmp_ingetrequests;
u_int32_t snmp_ingetnexts;
u_int32_t snmp_insetrequests;
u_int32_t snmp_ingetresponses;
u_int32_t snmp_intraps;
u_int32_t snmp_outtoobigs;
u_int32_t snmp_outnosuchnames;
u_int32_t snmp_outbadvalues;
u_int32_t snmp_outgenerrs;
u_int32_t snmp_outgetrequests;
u_int32_t snmp_outgetnexts;
u_int32_t snmp_outsetrequests;
u_int32_t snmp_outgetresponses;
u_int32_t snmp_outtraps;
int snmp_enableauthentraps;
u_int32_t snmp_silentdrops;
u_int32_t snmp_proxydrops;
};
struct address {
struct sockaddr_storage ss;
in_port_t port;
TAILQ_ENTRY(address) entry;
/* For SNMP trap receivers etc. */
char *sa_community;
struct ber_oid *sa_oid;
};
TAILQ_HEAD(addresslist, address);
struct snmpd {
u_int8_t sc_flags;
#define SNMPD_F_VERBOSE 0x01
#define SNMPD_F_NONAMES 0x02
const char *sc_confpath;
struct address sc_address;
int sc_sock;
struct event sc_ev;
struct timeval sc_starttime;
struct control_sock sc_csock;
struct control_sock sc_rcsock;
char sc_rdcommunity[SNMPD_MAXCOMMUNITYLEN];
char sc_rwcommunity[SNMPD_MAXCOMMUNITYLEN];
char sc_trcommunity[SNMPD_MAXCOMMUNITYLEN];
struct snmp_stats sc_stats;
struct addresslist sc_trapreceivers;
int sc_ncpu;
int64_t *sc_cpustates;
};
/* control.c */
int control_init(struct control_sock *);
int control_listen(struct control_sock *);
void control_accept(int, short, void *);
void control_dispatch_imsg(int, short, void *);
void control_imsg_forward(struct imsg *);
void control_cleanup(struct control_sock *);
void session_socket_blockmode(int, enum blockmodes);
/* parse.y */
struct snmpd *parse_config(const char *, u_int);
int cmdline_symset(char *);
/* log.c */
void log_init(int);
void log_warn(const char *, ...);
void log_warnx(const char *, ...);
void log_info(const char *, ...);
void log_debug(const char *, ...);
__dead void fatal(const char *);
__dead void fatalx(const char *);
const char *print_host(struct sockaddr_storage *, char *, size_t);
/* buffer.c */
struct buf *buf_open(size_t);
struct buf *buf_dynamic(size_t, size_t);
int buf_add(struct buf *, void *, size_t);
void *buf_reserve(struct buf *, size_t);
int buf_close(struct msgbuf *, struct buf *);
void buf_free(struct buf *);
void msgbuf_init(struct msgbuf *);
void msgbuf_clear(struct msgbuf *);
int msgbuf_write(struct msgbuf *);
/* imsg.c */
void imsg_init(struct imsgbuf *, int, void (*)(int, short, void *));
ssize_t imsg_read(struct imsgbuf *);
ssize_t imsg_get(struct imsgbuf *, struct imsg *);
int imsg_compose(struct imsgbuf *, enum imsg_type, u_int32_t,
pid_t, int, void *, u_int16_t);
int imsg_composev(struct imsgbuf *, enum imsg_type , u_int32_t,
pid_t, int, const struct iovec *, int);
struct buf *imsg_create(struct imsgbuf *, enum imsg_type, u_int32_t,
pid_t, u_int16_t);
int imsg_add(struct buf *, void *, u_int16_t);
int imsg_close(struct imsgbuf *, struct buf *);
void imsg_free(struct imsg *);
void imsg_event_add(struct imsgbuf *); /* provided externally */
int imsg_get_fd(struct imsgbuf *);
/* kroute.c */
int kr_init(void);
void kr_shutdown(void);
int kr_updateif(u_int);
u_int kr_ifnumber(void);
u_long kr_iflastchange(void);
struct kif *kr_getif(u_short);
struct kif *kr_getnextif(u_short);
struct kif_addr *kr_getaddr(struct in_addr *);
struct kif_addr *kr_getnextaddr(struct in_addr *);
/* snmpe.c */
pid_t snmpe(struct snmpd *, int [2]);
void snmpe_debug_elements(struct ber_element *);
/* trap.c */
void trap_init(void);
int trap_imsg(struct imsgbuf *, pid_t);
int trap_send(struct ber_oid *, struct ber_element *);
/* mps.c */
struct ber_element *
mps_getreq(struct ber_element *, struct ber_oid *);
struct ber_element *
mps_getnextreq(struct ber_element *, struct ber_oid *);
int mps_setreq(struct ber_element *, struct ber_oid *);
int mps_set(struct ber_oid *, void *, long long);
int mps_getstr(struct oid *, struct ber_oid *,
struct ber_element **);
int mps_setstr(struct oid *, struct ber_oid *,
struct ber_element **);
int mps_getint(struct oid *, struct ber_oid *,
struct ber_element **);
int mps_setint(struct oid *, struct ber_oid *,
struct ber_element **);
int mps_getts(struct oid *, struct ber_oid *,
struct ber_element **);
void mps_encodeinaddr(struct ber_oid *, struct in_addr *, int);
void mps_decodeinaddr(struct ber_oid *, struct in_addr *, int);
/* smi.c */
int smi_init(void);
u_long smi_getticks(void);
void smi_mibtree(struct oid *);
struct oid *smi_find(struct oid *);
struct oid *smi_next(struct oid *);
struct oid *smi_foreach(struct oid *, u_int);
void smi_oidlen(struct ber_oid *);
char *smi_oidstring(struct ber_oid *, char *, size_t);
void smi_delete(struct oid *);
void smi_insert(struct oid *);
int smi_oid_cmp(struct oid *, struct oid *);
/* timer.c */
void timer_init(void);
/* snmpd.c */
int snmpd_socket_af(struct sockaddr_storage *, in_port_t);
#endif /* _SNMPD_H */
|