summaryrefslogtreecommitdiff
path: root/net/pptpclient/files/pptp.in
blob: 80a29491f052971444143d59b83ce15e71e3a9cb (plain) (blame)
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
#!/bin/sh
#
# Copyright (c) 2015-2016 Devin Teske
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $FreeBSD$
#

# PROVIDE: pptp
# REQUIRE: DAEMON LOGIN FILESYSTEMS
# KEYWORD: shutdown

. /etc/rc.subr

name="pptp"
rcvar="${name}_enable"
command="%%PREFIX%%/sbin/${name}"
pidfile="/var/run/${name}.pid"
: ${pptp_timeout=10}
extra_commands="iface inet"

pptp_query()
{
	local qtype="$1"
	ifconfig -l | awk '{
		n = split($0, a)
		for (i = 1; i <= n; i++)
			if (a[i] ~ /^tun[[:digit:]]+/) print a[i]
	}' | xargs -rn1 -Iif ifconfig if inet | awk -v qtype="$qtype" '
	BEGIN { qtype = tolower(qtype) }
	/^[^[:space:]]/ { iface = $1; next }
	iface && $1 == "inet" && $3 == "-->" { inet[iface] = $2; next }
	$1$2$3 == "OpenedbyPID" { pid[iface] = $4 }
	END {
		for (iface in pid) {
			(cmd = "ps -o ucomm= -p " pid[iface]) | getline ucomm
			close(cmd)
			if (ucomm != "ppp") continue
			if (qtype == "iface") {
				sub(/:.*/, "", iface)
				print iface
				found = 1
			} else if (qtype == "inet" && inet[iface]) {
				print inet[iface]
				found = 1
			} else if (qtype != "inet") {
				print pid[iface]
				found = 1
			}
		}
		exit !found
	}'
}

pptp_start()
{
	local pid inet timeout="$pptp_timeout"
	if pid=$( pptp_query pid ); then
		echo "$name already running as pid $pid."
		return 1
	fi

	debug "$command $pptp_flags &"
	eval $command $pptp_flags \&
	echo -n "Waiting for pptp to start"
	if [ $timeout -gt 0 ] 2> /dev/null; then
		while [ $timeout -gt 0 ] && ! pid=$( pptp_query pid ); do
			sleep 1
			echo -n .
			timeout=$(( $timeout - 1 ))
		done
	else
		while ! pid=$( pptp_query pid ); do sleep 1; echo -n .; done
	fi
	echo
	echo -n "Waiting for ppp session"
	while pid=$( pptp_query pid ); do
		inet=$( pptp_query inet ) && break
		sleep 1
		echo -n .
	done
	echo
	if ! inet=$( pptp_query inet ); then
		rm -f "$pidfile"
		echo "pptp failed to start."
		return 1
	fi
	echo "$pid" > "$pidfile"
}

pptp_stop()
{
	local pid
	if ! pid=$( pptp_query pid ); then
		echo "$name is not running."
		return 1
	fi

	kill $pid
	echo -n "Waiting for pid $pid to exit"
	while pid=$( pptp_query pid ); do sleep 1; echo -n .; done
	echo
	rm -f "$pidfile"
	echo "$name stopped."
}

pptp_status()
{
	local pid
	if ! pid=$( pptp_query pid ); then
		echo "$name is not running."
		return 1
	fi
	echo "$name is running as pid $pid."
}

pptp_iface()
{
	local pid iface
	if ! pid=$( pptp_query pid ); then
		echo "$name is not running." >&2
		return 1
	fi
	if ! iface=$( pptp_query iface ); then
		echo "$name not associated with any interface." >&2
		return 1
	fi
	echo "$iface"
}

pptp_inet()
{
	local pid inet
	if ! pid=$( pptp_query pid ) || ! inet=$( pptp_query inet ); then
		echo "$name is not running." >&2
		return 1
	fi
	echo "$inet"
}

start_cmd=pptp_start
stop_cmd=pptp_stop
status_cmd=pptp_status
iface_cmd=pptp_iface
inet_cmd=pptp_inet

load_rc_config $name
run_rc_command "$1"