Merge pull request #12229 from aaronjg/bugfix/mwan3-ipv6
[feed/packages.git] / net / miniupnpd / files / miniupnpd.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006-2014 OpenWrt.org
3
4 START=94
5 STOP=15
6 USE_PROCD=1
7 PROG=/usr/sbin/miniupnpd
8
9 upnpd_get_port_range() {
10 local var="$1"; shift
11 local val
12
13 config_get val "$@"
14
15 case "$val" in
16 [0-9]*[:-][0-9]*)
17 export -n -- "${var}_start=${val%%[:-]*}"
18 export -n -- "${var}_end=${val##*[:-]}"
19 ;;
20 [0-9]*)
21 export -n -- "${var}_start=$val"
22 export -n -- "${var}_end="
23 ;;
24 esac
25 }
26
27 conf_rule_add() {
28 local cfg="$1"
29 local action int_addr
30 local ext_start ext_end int_start int_end comment
31
32 config_get action "$cfg" action "deny" # allow or deny
33 upnpd_get_port_range "ext" "$cfg" ext_ports "0-65535" # external ports: x, x-y, x:y
34 config_get int_addr "$cfg" int_addr "0.0.0.0/0" # ip or network and subnet mask (internal)
35 upnpd_get_port_range "int" "$cfg" int_ports "0-65535" # internal ports: x, x-y, x:y or range
36 config_get comment "$cfg" comment "ACL" # comment
37
38 # Make a single IP IP/32 so that miniupnpd.conf can use it.
39 [ "${int_addr%/*}" = "$int_addr" ] && int_addr="$int_addr/32"
40
41 echo "$action $ext_start${ext_end:+-}$ext_end $int_addr $int_start${int_end:+-}$int_end #$comment"
42 }
43
44 upnpd_write_bool() {
45 local opt="$1"
46 local def="${2:-0}"
47 local alt="${3:-$opt}"
48 local val
49
50 config_get_bool val config "$opt" "$def"
51 if [ "$val" -eq 0 ]; then
52 echo "$alt=no"
53 else
54 echo "$alt=yes"
55 fi
56 }
57
58 upnpd() {
59 config_load "upnpd"
60 local external_iface external_iface6 external_zone external_ip internal_iface
61 local upload download log_output port config_file serial_number model_number
62 local use_stun stun_host stun_port uuid notify_interval presentation_url
63 local upnp_lease_file clean_ruleset_threshold clean_ruleset_interval
64
65 local enabled
66 config_get_bool enabled config enabled 1
67 [ "$enabled" -eq 0 ] && return 1
68
69 config_get external_iface config external_iface
70 config_get external_iface6 config external_iface6
71 config_get external_zone config external_zone
72 config_get external_ip config external_ip
73 config_get internal_iface config internal_iface
74 config_get port config port 5000
75 config_get upload config upload
76 config_get download config download
77 config_get_bool log_output config log_output 0
78 config_get config_file config config_file
79 config_get serial_number config serial_number
80 config_get model_number config model_number
81 config_get uuid config uuid
82 config_get use_stun config use_stun 0
83 config_get stun_host config stun_host
84 config_get stun_port config stun_port
85 config_get notify_interval config notify_interval
86 config_get presentation_url config presentation_url
87 config_get upnp_lease_file config upnp_lease_file
88 config_get clean_ruleset_threshold config clean_ruleset_threshold
89 config_get clean_ruleset_interval config clean_ruleset_interval
90
91 local conf ifname ifname6
92
93 . /lib/functions/network.sh
94
95 if [ -n "$external_iface" ] ; then
96 network_get_device ifname "$external_iface"
97 else
98 if [ -n "$external_zone" ] ; then
99 ifname=$(fw3 -q zone "$external_zone" 2>/dev/null | head -1)
100 else
101 network_find_wan external_iface && \
102 network_get_device ifname "$external_iface"
103 fi
104 fi
105 if [ -n "$external_iface6" ] ; then
106 network_get_device ifname6 "$external_iface6"
107 else
108 if [ -n "$external_zone" ] ; then
109 ifname6=$(fw3 -q zone "$external_zone" 2>/dev/null | head -1)
110 else
111 network_find_wan6 external_iface6 && \
112 network_get_device ifname6 "$external_iface6"
113 fi
114 fi
115
116 if [ -n "$config_file" ]; then
117 conf="$config_file"
118 else
119 local tmpconf="/var/etc/miniupnpd.conf"
120 conf="$tmpconf"
121 mkdir -p /var/etc
122
123 {
124 echo "ext_ifname=$ifname"
125 echo "ext_ifname6=$ifname6"
126 [ -n "$external_ip" ] && echo "ext_ip=$external_ip"
127
128 local iface
129 for iface in ${internal_iface:-lan}; do
130 local device
131 network_get_device device "$iface" && echo "listening_ip=$device"
132 network_get_device device "$iface" && echo "ipv6_listening_ip=$device"
133 done
134
135 config_load "upnpd"
136 upnpd_write_bool enable_natpmp 1
137 upnpd_write_bool enable_upnp 1
138 upnpd_write_bool secure_mode 1
139 upnpd_write_bool system_uptime 1
140 upnpd_write_bool igdv1 0 force_igd_desc_v1
141 upnpd_write_bool use_stun 0 ext_perform_stun
142
143 [ "$use_stun" -eq 0 ] || {
144 [ -n "$stun_host" ] && echo "ext_stun_host=$stun_host"
145 [ -n "$stun_port" ] && echo "ext_stun_port=$stun_port"
146 }
147
148 [ -n "$upload" ] && [ -n "$download" ] && {
149 echo "bitrate_down=$((download * 1024 * 8))"
150 echo "bitrate_up=$((upload * 1024 * 8))"
151 }
152
153 [ -n "$upnp_lease_file" ] && touch "$upnp_lease_file" && echo "lease_file=$upnp_lease_file"
154 [ -n "$presentation_url" ] && echo "presentation_url=$presentation_url"
155 [ -n "$notify_interval" ] && echo "notify_interval=$notify_interval"
156 [ -n "$clean_ruleset_threshold" ] && echo "clean_ruleset_threshold=$clean_ruleset_threshold"
157 [ -n "$clean_ruleset_interval" ] && echo "clean_ruleset_interval=$clean_ruleset_interval"
158 [ -n "$serial_number" ] && echo "serial=$serial_number"
159 [ -n "$model_number" ] && echo "model_number=$model_number"
160 [ -n "$port" ] && echo "port=$port"
161
162 [ -z "$uuid" ] && {
163 uuid="$(cat /proc/sys/kernel/random/uuid)"
164 uci set upnpd.config.uuid="$uuid"
165 uci commit upnpd
166 }
167
168 [ "$uuid" = "nocli" ] || echo "uuid=$uuid"
169
170 config_foreach conf_rule_add perm_rule
171
172 } > "$tmpconf"
173 fi
174
175 if [ -n "$ifname" ]; then
176 # start firewall
177 iptables -L MINIUPNPD >/dev/null 2>&1 || fw3 reload
178 else
179 logger -t "upnp daemon" "external interface not found, not starting"
180 fi
181
182 procd_open_instance
183 procd_set_param command "$PROG"
184 procd_append_param command -f "$conf"
185 [ "$log_output" = "1" ] && procd_append_param command -d
186 procd_close_instance
187 }
188
189 stop_service() {
190 iptables -t nat -F MINIUPNPD 2>/dev/null
191 iptables -t nat -F MINIUPNPD-POSTROUTING 2>/dev/null
192 iptables -t filter -F MINIUPNPD 2>/dev/null
193
194 [ -x /usr/sbin/ip6tables ] && ip6tables -t filter -F MINIUPNPD 2>/dev/null
195 }
196
197 start_service() {
198 config_load "upnpd"
199 config_foreach upnpd "upnpd"
200 }
201
202 service_triggers() {
203 procd_add_reload_trigger "upnpd"
204 }