parser.h revision 1.28
1/*	$OpenBSD: parser.h,v 1.28 2016/10/14 16:05:35 phessler Exp $ */
2
3/*
4 * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19#include <sys/types.h>
20
21#include "bgpd.h"
22
23enum actions {
24	NONE,
25	SHOW,
26	SHOW_SUMMARY,
27	SHOW_SUMMARY_TERSE,
28	SHOW_NEIGHBOR,
29	SHOW_NEIGHBOR_TIMERS,
30	SHOW_NEIGHBOR_TERSE,
31	SHOW_FIB,
32	SHOW_FIB_TABLES,
33	SHOW_RIB,
34	SHOW_MRT,
35	SHOW_RIB_MEM,
36	SHOW_NEXTHOP,
37	SHOW_INTERFACE,
38	RELOAD,
39	FIB,
40	FIB_COUPLE,
41	FIB_DECOUPLE,
42	LOG_VERBOSE,
43	LOG_BRIEF,
44	NEIGHBOR,
45	NEIGHBOR_UP,
46	NEIGHBOR_DOWN,
47	NEIGHBOR_CLEAR,
48	NEIGHBOR_RREFRESH,
49	NEIGHBOR_DESTROY,
50	NETWORK_ADD,
51	NETWORK_REMOVE,
52	NETWORK_FLUSH,
53	NETWORK_SHOW,
54	NETWORK_MRT,
55	IRRFILTER,
56	NETWORK_BULK_ADD,
57	NETWORK_BULK_REMOVE
58};
59
60struct parse_result {
61	struct bgpd_addr	 addr;
62	struct bgpd_addr	 peeraddr;
63	struct filter_as	 as;
64	struct filter_set_head	 set;
65	struct filter_community  community;
66	struct filter_largecommunity  large_community;
67	char			 peerdesc[PEER_DESCR_LEN];
68	char			 rib[PEER_DESCR_LEN];
69	char			*irr_outdir;
70	int			 flags;
71	u_int			 rtableid;
72	enum actions		 action;
73	u_int8_t		 prefixlen;
74	u_int8_t		 aid;
75	int			 mrtfd;
76};
77
78__dead void		 usage(void);
79struct parse_result	*parse(int, char *[]);
80int			 parse_prefix(const char *, size_t, struct bgpd_addr *,
81			     u_int8_t *);
82