blob: aa49137cb9193ba99d056511570a95321c89cde8 (
plain)
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
|
#!/sbin/sh
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (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 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Copyright 2016 Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
#
. /lib/svc/share/smf_include.sh
. /lib/svc/share/routing_include.sh
. /lib/svc/share/ipf_include.sh
smf_configure_ip || exit $SMF_EXIT_OK
create_ipf_rules()
{
FMRI=$1
file=`fmri_to_file ${FMRI} $IPF_SUFFIX`
#
# route:default is enabled iff route discovery is required. Allow
# incoming icmp from routers for successful discovery.
echo "# $FMRI" >$file
gen_IRDP_rules $file
#
# A potential router so apply policy to RIP, 520 udp
#
policy=`get_policy $FMRI`
iana_name=`svcprop -p $FW_CONTEXT_PG/name ${FMRI} 2>/dev/null`
tport=`$SERVINFO -p -t -s $iana_name 2>/dev/null`
uport=`$SERVINFO -p -u -s $iana_name 2>/dev/null`
if [ -n "$tport" ]; then
generate_rules $FMRI $policy "tcp" $tport $file
fi
if [ -n "$uport" ]; then
generate_rules $FMRI $policy "udp" $uport $file
fi
}
if [ -n "$1" -a "$1" = "ipfilter" ]; then
create_ipf_rules $2
exit "$SMF_EXIT_OK"
fi
daemon_args=`get_daemon_args $SMF_FMRI`
options="AdghmnqsStvVzT:F:P:"
#
# Handle upgrade - routing/daemon-args property must be mapped to properties
# in routeadm property group. Note that the SMF-incompatible -t option is not
# supported, since it requires that in.routed run in the foreground.
#
if [ -n "$daemon_args" ]; then
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "A" ignore_auth false true
set_daemon_ordered_multivalue_property "$SMF_FMRI" "$daemon_args" \
"$options" "F" minimize_routes
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "g" offer_default_route true false
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "h" advertise_host_routes false true
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "m" advertise_host_routes_primary true false
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "n" install_routes false true
set_daemon_ordered_multivalue_property "$SMF_FMRI" "$daemon_args" \
"$options" "P" parameters
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "q" quiet_mode true false
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "s" supply_routes true false
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "S" default_routes_only true false
set_daemon_value_property "$SMF_FMRI" "$daemon_args" \
"$options" "T" log_file
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "v" debug true false
set_daemon_boolean_property "$SMF_FMRI" "$daemon_args" \
"$options" "z" debug true
clear_daemon_args $SMF_FMRI
fi
#
# Assemble arguments to daemon from properties
#
args="`get_daemon_option_from_boolean_property $SMF_FMRI ignore_auth \
A false`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
offer_default_route g true`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
advertise_host_routes h false`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
advertise_host_routes_primary m true`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
install_routes n false`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
quiet_mode q true`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
supply_routes s true`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
default_routes_only S true`"
args="$args`get_daemon_option_from_boolean_property $SMF_FMRI \
debug z true`"
if [ -n "$args" ]; then
args="-${args}"
fi
args="$args `get_daemon_ordered_multivalue_option_from_property $SMF_FMRI \
minimize_routes F`"
args="$args `get_daemon_ordered_multivalue_option_from_property \
$SMF_FMRI parameters P`"
args="$args `get_daemon_option_from_property $SMF_FMRI \
log_file T`"
/usr/sbin/in.routed $args
[ "$?" = 0 ] || exit $SMF_EXIT_ERR_FATAL
exit "$SMF_EXIT_OK"
|