summaryrefslogtreecommitdiff
path: root/usr/src/cmd/ypcmd/yp.sh
blob: 773f74810e416c4f7884c487b535fd9117adf008 (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
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
#!/bin/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 (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
# Copyright 2016 Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
#

. /lib/svc/share/smf_include.sh
. /lib/svc/share/ipf_include.sh

YPDIR=/usr/lib/netsvc/yp

create_client_ipf_rules()
{
	FMRI=$1
	file=`fmri_to_file $FMRI $IPF_SUFFIX`
	file6=`fmri_to_file $FMRI $IPF6_SUFFIX`
	iana_name=`svcprop -p $FW_CONTEXT_PG/name $FMRI`
	domain=`domainname`
	block_policy=$GLOBAL_BLOCK_POLICY

	if [ "$block_policy" = "return" ]; then
		block_policy_tcp="return-rst"
		block_policy_udp="return-icmp-as-dest"
	fi

	if [ -z "$domain" ]; then
		return 0
	fi

	if [ ! -d /var/yp/binding/$domain ]; then
		return
	fi
	echo "# $FMRI" >$file
	echo "# $FMRI" >$file6

	ypfile="/var/yp/binding/$domain/ypservers"
	if [ -f $ypfile ]; then
		tports=`$SERVINFO -R -p -t -s $iana_name 2>/dev/null`
		uports=`$SERVINFO -R -p -u -s $iana_name 2>/dev/null`
		tports_6=`$SERVINFO -R -p -t6 -s $iana_name 2>/dev/null`
		uports_6=`$SERVINFO -R -p -u6 -s $iana_name 2>/dev/null`

		server_addrs=""
                server_addrs_6=""
		for ypsvr in `grep -v '^[ ]*#' $ypfile`; do
			#
			# Get corresponding IPv4/IPv6 addresses
			#
			servers=`getent ipnodes $ypsvr | \
			    /usr/xpg4/bin/awk '$1 ~ !/:/{ print $1 }'`
			servers_6=`getent ipnodes $ypsvr | \
			    /usr/xpg4/bin/awk '$1 ~ /:/{ print $1 }'`

			if [ -n "$servers" ]; then
				server_addrs="$server_addrs $servers"
			fi

			if [ -n "$servers_6" ]; then
				server_addrs_6="$server_addrs_6 $servers_6"
			fi
		done

		if [ -n "$tports" -o -n "$tports_6" ]; then
			for tport in $tports $tports_6; do
				echo "block $block_policy_tcp in log" \
				    "proto tcp from any to any" \
				    "port = $tport" >>$file
				if [ -n "$server_addrs"  ]; then
					for s in $server_addrs; do
						echo "pass in log quick" \
						    "proto tcp from $s" \
						    "to any port = $tport" \
						    >>$file
					done
				fi
			done
		fi

		if [ -n "$uports" -o -n "$uports_6" ]; then
			for uport in $uports $uports_6; do
				echo "block $block_policy_udp in log" \
				    "proto udp from any to any" \
				    "port = $uport" >>$file
				if [ -n "$server_addrs"  ]; then
					for s in $server_addrs; do
						echo "pass in log quick" \
						    "proto udp from $s" \
						    "to any port = $uport" \
						     >>$file
					done
				fi
			done
		fi

		if [ -n "$tports_6" ]; then
			for tport in $tports_6; do
				echo "block $block_policy_tcp in log" \
				    "proto tcp from any to any" \
				    "port = $tport" >>$file6
				if [ -n "$server_addrs_6"  ]; then
					for s in $server_addrs_6; do
						echo "pass in log quick" \
						    "proto tcp from $s" \
						    "to any port = $tport" \
						    >>$file6
					done
				fi
			done
		fi

		if [ -n "$uports_6" ]; then
			for uport in $uports_6; do
				echo "block $block_policy_udp in log" \
				    "proto udp from any to any" \
				    "port = $uport" >>$file6
				if [ -n "$server_addrs_6"  ]; then
					for s in $server_addrs_6; do
						echo "pass in log quick" \
						    "proto udp from $s" \
						    "to any port = $uport" \
						     >>$file6
					done
				fi
			done
		fi
	else
		#
		# How do we handle the client broadcast case? Server replies
		# to the outgoing port that sent the broadcast, but there's
		# no way the client know a packet is the reply.
		#
		# Nis server should be specified and clients shouldn't be
		# doing broadcasts but if it does, no choice but to allow
		# all traffic.
		#
		echo "pass in log quick proto udp from any to any" \
		    "port > 32768" >>$file
		echo "pass in log quick proto udp from any to any" \
		    "port > 32768" >>$file6
	fi
}

#
# Ipfilter method
#
if [ -n "$1" -a "$1" = "ipfilter" ]; then
	create_client_ipf_rules $2
	exit $SMF_EXIT_OK
fi

case $SMF_FMRI in
	'svc:/network/nis/client:default')
		domain=`domainname`

		if [ -z "$domain" ]; then
			echo "$0: domainname not set"
			exit $SMF_EXIT_ERR_CONFIG
		fi

		if [ ! -d /var/yp/binding/$domain ]; then
			echo "$0: /var/yp/binding/$domain is not a directory"
			exit $SMF_EXIT_ERR_CONFIG
		fi

		# Since two ypbinds will cause ypwhich to hang...
		if pgrep -z `/sbin/zonename` ypbind >/dev/null; then
			echo "$0: ypbind is already running."
			exit $SMF_EXIT_ERR_CONFIG
		fi

		if [ -f /var/yp/binding/$domain/ypservers ]; then
			$YPDIR/ypbind > /dev/null 2>&1
		else
			$YPDIR/ypbind -broadcast > /dev/null 2>&1
		fi

		rc=$?
		if [ $rc != 0 ]; then
			echo "$0: ypbind failed with $rc"
			exit 1
		fi
		;;

	'svc:/network/nis/server:default')
		domain=`domainname`

		if [ -z "$domain" ]; then
			echo "$0: domainname not set"
			exit $SMF_EXIT_ERR_CONFIG
		fi

		if [ ! -d /var/yp/$domain ]; then
			echo "$0: domain directory missing"
			exit $SMF_EXIT_ERR_CONFIG
		fi

		if [ -f /etc/resolv.conf ]; then
			$YPDIR/ypserv -d
		else
			$YPDIR/ypserv
		fi

		rc=$?
		if [ $rc != 0 ]; then
			echo "$0: ypserv failed with $rc"
			exit 1
		fi
		;;

	'svc:/network/nis/passwd:default')
		PWDIR=`grep "^PWDIR" /var/yp/Makefile 2> /dev/null` \
		    && PWDIR=`expr "$PWDIR" : '.*=[ 	]*\([^ 	]*\)'`
		if [ "$PWDIR" ]; then
			if [ "$PWDIR" = "/etc" ]; then
				unset PWDIR
			else
				PWDIR="-D $PWDIR"
			fi
		fi
		$YPDIR/rpc.yppasswdd $PWDIR -m

		rc=$?
		if [ $rc != 0 ]; then
			echo "$0: rpc.yppasswdd failed with $rc"
			exit 1
		fi
		;;

	*)
		echo "$0: Unknown service \"$SMF_FMRI\"."
		exit $SMF_EXIT_ERR_CONFIG
		;;
esac
exit $SMF_EXIT_OK