9c27b3c280b5680cd56f3d8b18437e5d6e3b0c4d
[lede.git] / package / network / services / ppp / files / ppp.sh
1 #!/bin/sh
2
3 [ -x /usr/sbin/pppd ] || exit 0
4
5 [ -n "$INCLUDE_ONLY" ] || {
6         . /lib/functions.sh
7         . /lib/functions/network.sh
8         . ../netifd-proto.sh
9         init_proto "$@"
10 }
11
12 ppp_select_ipaddr()
13 {
14         local subnets=$1
15         local res
16         local res_mask
17
18         for subnet in $subnets; do
19                 local addr="${subnet%%/*}"
20                 local mask="${subnet#*/}"
21
22                 if [ -n "$res_mask" -a "$mask" != 32 ]; then
23                         [ "$mask" -gt "$res_mask" ] || [ "$res_mask" = 32 ] && {
24                                 res="$addr"
25                                 res_mask="$mask"
26                         }
27                 elif [ -z "$res_mask" ]; then
28                         res="$addr"
29                         res_mask="$mask"
30                 fi
31         done
32
33         echo "$res"
34 }
35
36 ppp_exitcode_tostring()
37 {
38         local errorcode=$1
39         [ -n "$errorcode" ] || errorcode=5
40
41         case "$errorcode" in
42                 0) echo "OK" ;;
43                 1) echo "FATAL_ERROR" ;;
44                 2) echo "OPTION_ERROR" ;;
45                 3) echo "NOT_ROOT" ;;
46                 4) echo "NO_KERNEL_SUPPORT" ;;
47                 5) echo "USER_REQUEST" ;;
48                 6) echo "LOCK_FAILED" ;;
49                 7) echo "OPEN_FAILED" ;;
50                 8) echo "CONNECT_FAILED" ;;
51                 9) echo "PTYCMD_FAILED" ;;
52                 10) echo "NEGOTIATION_FAILED" ;;
53                 11) echo "PEER_AUTH_FAILED" ;;
54                 12) echo "IDLE_TIMEOUT" ;;
55                 13) echo "CONNECT_TIME" ;;
56                 14) echo "CALLBACK" ;;
57                 15) echo "PEER_DEAD" ;;
58                 16) echo "HANGUP" ;;
59                 17) echo "LOOPBACK" ;;
60                 18) echo "INIT_FAILED" ;;
61                 19) echo "AUTH_TOPEER_FAILED" ;;
62                 20) echo "TRAFFIC_LIMIT" ;;
63                 21) echo "CNID_AUTH_FAILED";;
64                 *) echo "UNKNOWN_ERROR" ;;
65         esac
66 }
67
68 ppp_generic_init_config() {
69         proto_config_add_string username
70         proto_config_add_string password
71         proto_config_add_string keepalive
72         proto_config_add_boolean keepalive_adaptive
73         proto_config_add_int demand
74         proto_config_add_string pppd_options
75         proto_config_add_string 'connect:file'
76         proto_config_add_string 'disconnect:file'
77         proto_config_add_string ipv6
78         proto_config_add_boolean authfail
79         proto_config_add_int mtu
80         proto_config_add_string pppname
81         proto_config_add_string unnumbered
82         proto_config_add_boolean persist
83         proto_config_add_int maxfail
84         proto_config_add_int holdoff
85 }
86
87 ppp_generic_setup() {
88         local config="$1"; shift
89         local localip
90
91         json_get_vars ipv6 ip6table demand keepalive keepalive_adaptive username password pppd_options pppname unnumbered persist maxfail holdoff
92         if [ "$ipv6" = 0 ]; then
93                 ipv6=""
94         elif [ -z "$ipv6" -o "$ipv6" = auto ]; then
95                 ipv6=1
96                 autoipv6=1
97         fi
98
99         if [ "${demand:-0}" -gt 0 ]; then
100                 demand="precompiled-active-filter /etc/ppp/filter demand idle $demand"
101         else
102                 demand=""
103         fi
104         if [ -n "$persist" ]; then
105                 [ "${persist}" -lt 1 ] && persist="nopersist" || persist="persist"
106         fi
107         if [ -z "$maxfail" ]; then
108                 [ "$persist" = "persist" ] && maxfail=0 || maxfail=1
109         fi
110         [ -n "$mtu" ] || json_get_var mtu mtu
111         [ -n "$pppname" ] || pppname="${proto:-ppp}-$config"
112         [ -n "$unnumbered" ] && {
113                 local subnets
114                 ( proto_add_host_dependency "$config" "" "$unnumbered" )
115                 network_get_subnets subnets "$unnumbered"
116                 localip=$(ppp_select_ipaddr "$subnets")
117                 [ -n "$localip" ] || {
118                         proto_block_restart "$config"
119                         return
120                 }
121         }
122
123         local lcp_failure="${keepalive%%[, ]*}"
124         local lcp_interval="${keepalive##*[, ]}"
125         local lcp_adaptive="lcp-echo-adaptive"
126         [ "${lcp_failure:-0}" -lt 1 ] && lcp_failure=""
127         [ "$lcp_interval" != "$keepalive" ] || lcp_interval=5
128         [ "${keepalive_adaptive:-1}" -lt 1 ] && lcp_adaptive=""
129         [ -n "$connect" ] || json_get_var connect connect
130         [ -n "$disconnect" ] || json_get_var disconnect disconnect
131
132         proto_run_command "$config" /usr/sbin/pppd \
133                 nodetach ipparam "$config" \
134                 ifname "$pppname" \
135                 ${localip:+$localip:} \
136                 ${lcp_failure:+lcp-echo-interval $lcp_interval lcp-echo-failure $lcp_failure $lcp_adaptive} \
137                 ${ipv6:++ipv6} \
138                 ${autoipv6:+set AUTOIPV6=1} \
139                 ${ip6table:+set IP6TABLE=$ip6table} \
140                 nodefaultroute \
141                 usepeerdns \
142                 $demand $persist maxfail $maxfail \
143                 ${holdoff:+holdoff "$holdoff"} \
144                 ${username:+user "$username" password "$password"} \
145                 ${connect:+connect "$connect"} \
146                 ${disconnect:+disconnect "$disconnect"} \
147                 ip-up-script /lib/netifd/ppp-up \
148                 ipv6-up-script /lib/netifd/ppp6-up \
149                 ip-down-script /lib/netifd/ppp-down \
150                 ipv6-down-script /lib/netifd/ppp-down \
151                 ${mtu:+mtu $mtu mru $mtu} \
152                 "$@" $pppd_options
153 }
154
155 ppp_generic_teardown() {
156         local interface="$1"
157         local errorstring=$(ppp_exitcode_tostring $ERROR)
158
159         case "$ERROR" in
160                 0)
161                 ;;
162                 2)
163                         proto_notify_error "$interface" "$errorstring"
164                         proto_block_restart "$interface"
165                 ;;
166                 11|19)
167                         json_get_var authfail authfail
168                         proto_notify_error "$interface" "$errorstring"
169                         if [ "${authfail:-0}" -gt 0 ]; then
170                                 proto_block_restart "$interface"
171                         fi
172                 ;;
173                 *)
174                         proto_notify_error "$interface" "$errorstring"
175                 ;;
176         esac
177
178         proto_kill_command "$interface"
179 }
180
181 # PPP on serial device
182
183 proto_ppp_init_config() {
184         proto_config_add_string "device"
185         ppp_generic_init_config
186         no_device=1
187         available=1
188         lasterror=1
189 }
190
191 proto_ppp_setup() {
192         local config="$1"
193
194         json_get_var device device
195         ppp_generic_setup "$config" "$device"
196 }
197
198 proto_ppp_teardown() {
199         ppp_generic_teardown "$@"
200 }
201
202 proto_pppoe_init_config() {
203         ppp_generic_init_config
204         proto_config_add_string "ac"
205         proto_config_add_string "service"
206         proto_config_add_string "host_uniq"
207         lasterror=1
208 }
209
210 proto_pppoe_setup() {
211         local config="$1"
212         local iface="$2"
213
214         for module in slhc ppp_generic pppox pppoe; do
215                 /sbin/insmod $module 2>&- >&-
216         done
217
218         json_get_var mtu mtu
219         mtu="${mtu:-1492}"
220
221         json_get_var ac ac
222         json_get_var service service
223         json_get_var host_uniq host_uniq
224
225         ppp_generic_setup "$config" \
226                 plugin rp-pppoe.so \
227                 ${ac:+rp_pppoe_ac "$ac"} \
228                 ${service:+rp_pppoe_service "$service"} \
229                 ${host_uniq:+host-uniq "$host_uniq"} \
230                 "nic-$iface"
231 }
232
233 proto_pppoe_teardown() {
234         ppp_generic_teardown "$@"
235 }
236
237 proto_pppoa_init_config() {
238         ppp_generic_init_config
239         proto_config_add_int "atmdev"
240         proto_config_add_int "vci"
241         proto_config_add_int "vpi"
242         proto_config_add_string "encaps"
243         no_device=1
244         available=1
245         lasterror=1
246 }
247
248 proto_pppoa_setup() {
249         local config="$1"
250         local iface="$2"
251
252         for module in slhc ppp_generic pppox pppoatm; do
253                 /sbin/insmod $module 2>&- >&-
254         done
255
256         json_get_vars atmdev vci vpi encaps
257
258         case "$encaps" in
259                 1|vc) encaps="vc-encaps" ;;
260                 *) encaps="llc-encaps" ;;
261         esac
262
263         ppp_generic_setup "$config" \
264                 plugin pppoatm.so \
265                 ${atmdev:+$atmdev.}${vpi:-8}.${vci:-35} \
266                 ${encaps}
267 }
268
269 proto_pppoa_teardown() {
270         ppp_generic_teardown "$@"
271 }
272
273 proto_pptp_init_config() {
274         ppp_generic_init_config
275         proto_config_add_string "server"
276         proto_config_add_string "interface"
277         available=1
278         no_device=1
279         lasterror=1
280 }
281
282 proto_pptp_setup() {
283         local config="$1"
284         local iface="$2"
285
286         local ip serv_addr server interface
287         json_get_vars interface server
288         [ -n "$server" ] && {
289                 for ip in $(resolveip -t 5 "$server"); do
290                         ( proto_add_host_dependency "$config" "$ip" $interface )
291                         serv_addr=1
292                 done
293         }
294         [ -n "$serv_addr" ] || {
295                 echo "Could not resolve server address"
296                 sleep 5
297                 proto_setup_failed "$config"
298                 exit 1
299         }
300
301         local load
302         for module in slhc ppp_generic ppp_async ppp_mppe ip_gre gre pptp; do
303                 grep -q "^$module " /proc/modules && continue
304                 /sbin/insmod $module 2>&- >&-
305                 load=1
306         done
307         [ "$load" = "1" ] && sleep 1
308
309         ppp_generic_setup "$config" \
310                 plugin pptp.so \
311                 pptp_server $server \
312                 file /etc/ppp/options.pptp
313 }
314
315 proto_pptp_teardown() {
316         ppp_generic_teardown "$@"
317 }
318
319 [ -n "$INCLUDE_ONLY" ] || {
320         add_protocol ppp
321         [ -f /usr/lib/pppd/*/rp-pppoe.so ] && add_protocol pppoe
322         [ -f /usr/lib/pppd/*/pppoatm.so ] && add_protocol pppoa
323         [ -f /usr/lib/pppd/*/pptp.so ] && add_protocol pptp
324 }
325