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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Portions of this source code were derived from Berkeley 4.3 BSD
* under license from the Regents of the University of California.
*/
#ifndef _IN_RIPNGD_DEFS_H
#define _IN_RIPNGD_DEFS_H
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/stream.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <netinet/ip6.h>
#include <netinet/udp.h>
#include <net/if.h>
#include <net/route.h>
#include <protocols/ripngd.h>
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include <netdb.h>
#include <signal.h>
#include <stropts.h>
#include <arpa/inet.h>
#include <strings.h>
#include <unistd.h>
#include <errno.h>
#include <malloc.h>
#include <limits.h>
#include "table.h"
#include "trace.h"
#include "interface.h"
#define PATH_PID "/var/run/in.ripngd.pid"
/*
* Timer values (in seconds) used in managing the routing table.
* Every update forces an entry's timer to be reset. After
* EXPIRE_TIME without updates, the entry is marked invalid,
* but held onto until GARBAGE_TIME so that others may
* see it "be deleted".
*/
#define EXPIRE_TIME 180 /* time to mark entry invalid */
#define GARBAGE_TIME 300 /* time to garbage collect */
#define MIN_SUPPLY_TIME 15 /* min. time to supply tables */
#define MAX_SUPPLY_TIME 45 /* max. time to supply tables */
#define MIN_WAIT_TIME 1 /* min. interval to multicast changes */
#define MAX_WAIT_TIME 5 /* max. time to delay changes */
/*
* Return a random number from a an range inclusive of the endpoints
*/
#define GET_RANDOM(LOW, HIGH) (random() % ((HIGH) - (LOW) + 1) + (LOW))
/*
* When we find any interfaces marked down we rescan the
* kernel every CHECK_INTERVAL seconds to see if they've
* come up.
*/
#define CHECK_INTERVAL 60
#define START_POLL_SIZE 5
#define min(a, b) ((a) > (b) ? (b) : (a))
/*
* The maximum receive buffer size is controlled via Solaris' NDD udp_max_buf
* tunable.
*/
#define RCVBUFSIZ 65536
#define TIME_TO_MSECS(tval) ((tval).tv_sec * 1000 + (tval).tv_usec / 1000)
#define HOPCNT_INFINITY 16 /* RFC 2080, section 2.1 */
#define HOPCNT_NEXTHOP 255 /* RFC 2080, section 2.1.1 */
/*
* XXX Some of these are defined in <inet/ip6.h> under _KERNEL (but should be
* defined in <netinet/ip6.h> for completeness).
*/
#define IPV6_MAX_HOPS 255 /* Max IPv6 hops */
#define IPV6_MAX_PACKET 65535 /* maximum IPv6 packet size */
#define IPV6_MIN_MTU 1280 /* Minimum IPv6 MTU */
extern struct sockaddr_in6 allrouters;
extern struct in6_addr allrouters_in6;
extern char *control;
extern boolean_t dopoison;
extern struct interface *ifnet;
extern boolean_t install;
extern int iocsoc;
extern struct timeval lastfullupdate;
extern struct timeval lastmcast;
extern int max_poll_ifs;
extern struct rip6 *msg;
extern boolean_t needupdate;
extern struct timeval nextmcast;
extern struct timeval now;
extern char *packet;
extern struct pollfd *poll_ifs;
extern int poll_ifs_num;
extern int rip6_port;
extern int supplyinterval;
extern boolean_t supplier;
extern void dynamic_update(struct interface *);
extern void in_data(struct interface *);
extern void initifs(void);
extern void sendpacket(struct sockaddr_in6 *, struct interface *,
int, int);
extern void setup_rtsock(void);
extern void solicitall(struct sockaddr_in6 *);
extern void supply(struct sockaddr_in6 *, struct interface *,
int, boolean_t);
extern void supplyall(struct sockaddr_in6 *, int,
struct interface *, boolean_t);
extern void term(void);
extern void timer(void);
extern void timevaladd(struct timeval *, struct timeval *);
#ifdef __cplusplus
}
#endif
#endif /* _IN_RIPNGD_DEFS_H */
|