0d77d65956946de4eb89ef9ffe0678a40845166c
[lede.git] / package / network / services / openvpn / files / openvpn.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2008-2013 OpenWrt.org
3 # Copyright (C) 2008 Jo-Philipp Wich
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6
7 START=90
8 STOP=10
9
10 USE_PROCD=1
11 PROG=/usr/sbin/openvpn
12
13 LIST_SEP="
14 "
15
16 UCI_STARTED=
17 UCI_DISABLED=
18
19 append_param() {
20         local s="$1"
21         local v="$2"
22         case "$v" in
23                 *_*_*_*) v=${v%%_*}-${v#*_}; v=${v%%_*}-${v#*_}; v=${v%%_*}-${v#*_} ;;
24                 *_*_*)   v=${v%%_*}-${v#*_}; v=${v%%_*}-${v#*_} ;;
25                 *_*)     v=${v%%_*}-${v#*_} ;;
26         esac
27         echo -n "$v" >> "/var/etc/openvpn-$s.conf"
28         return 0
29 }
30
31 append_bools() {
32         local p; local v; local s="$1"; shift
33         for p in $*; do
34                 config_get_bool v "$s" "$p"
35                 [ "$v" = 1 ] && append_param "$s" "$p" && echo >> "/var/etc/openvpn-$s.conf"
36         done
37 }
38
39 append_params() {
40         local p; local v; local s="$1"; shift
41         for p in $*; do
42                 config_get v "$s" "$p"
43                 IFS="$LIST_SEP"
44                 for v in $v; do
45                         [ -n "$v" ] && [ "$p" != "push" ] && append_param "$s" "$p" && echo " $v" >> "/var/etc/openvpn-$s.conf"
46                         [ -n "$v" ] && [ "$p" == "push" ] && append_param "$s" "$p" && echo " \"$v\"" >> "/var/etc/openvpn-$s.conf"
47                 done
48                 unset IFS
49         done
50 }
51
52 section_enabled() {
53         config_get_bool enable  "$1" 'enable'  0
54         config_get_bool enabled "$1" 'enabled' 0
55         [ $enable -gt 0 ] || [ $enabled -gt 0 ]
56 }
57
58 openvpn_add_instance() {
59         local name="$1"
60         local dir="$2"
61         local conf="$3"
62
63         procd_open_instance
64         procd_set_param command "$PROG" \
65                 --syslog "openvpn($name)" \
66                 --status "/var/run/openvpn.$name.status" \
67                 --cd "$dir" \
68                 --config "$conf"
69         procd_set_param file "$dir/$conf"
70         procd_set_param respawn
71         procd_close_instance
72 }
73
74 start_instance() {
75         local s="$1"
76
77         config_get config "$s" config
78         config="${config:+$(readlink -f "$config")}"
79
80         section_enabled "$s" || {
81                 append UCI_DISABLED "$config" "$LIST_SEP"
82                 return 1
83         }
84
85         [ ! -d "/var/run" ] && mkdir -p "/var/run"
86
87         if [ ! -z "$config" ]; then
88                 append UCI_STARTED "$config" "$LIST_SEP"
89                 openvpn_add_instance "$s" "${config%/*}" "$config"
90                 return
91         fi
92
93         [ ! -d "/var/etc" ] && mkdir -p "/var/etc"
94         [ -f "/var/etc/openvpn-$s.conf" ] && rm "/var/etc/openvpn-$s.conf"
95
96         append_bools "$s" $OPENVPN_BOOLS
97         append_params "$s" $OPENVPN_PARAMS
98
99         openvpn_add_instance "$s" "/var/etc" "openvpn-$s.conf"
100 }
101
102 start_service() {
103         . /usr/share/openvpn/openvpn.options
104         config_load 'openvpn'
105         config_foreach start_instance 'openvpn'
106
107         local path name
108         for path in /etc/openvpn/*.conf; do
109                 if [ -f "$path" ]; then
110                         name="${path##*/}"; name="${name%.conf}"
111
112                         # don't start configs again that are already started by uci
113                         if echo "$UCI_STARTED" | grep -qxF "$path"; then
114                                 continue
115
116                         # don't start configs which are set to disabled in uci
117                         elif echo "$UCI_DISABLED" | grep -qxF "$path"; then
118                                 logger -t openvpn "$name.conf is disabled in /etc/config/openvpn"
119                                 continue
120                         fi
121
122                         openvpn_add_instance "$name" "${path%/*}" "$path"
123                 fi
124         done
125 }
126
127 service_triggers() {
128         procd_add_reload_trigger openvpn
129 }