Revert "miniupnpd: bump to latest git source"
[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 local ipv6_disable
65
66 local enabled
67 config_get_bool enabled config enabled 1
68 [ "$enabled" -eq 0 ] && return 1
69
70 config_get external_iface config external_iface
71 config_get external_iface6 config external_iface6
72 config_get external_zone config external_zone
73 config_get external_ip config external_ip
74 config_get internal_iface config internal_iface
75 config_get port config port 5000
76 config_get upload config upload
77 config_get download config download
78 config_get_bool log_output config log_output 0
79 config_get config_file config config_file
80 config_get serial_number config serial_number
81 config_get model_number config model_number
82 config_get uuid config uuid
83 config_get use_stun config use_stun 0
84 config_get stun_host config stun_host
85 config_get stun_port config stun_port
86 config_get notify_interval config notify_interval
87 config_get presentation_url config presentation_url
88 config_get upnp_lease_file config upnp_lease_file
89 config_get clean_ruleset_threshold config clean_ruleset_threshold
90 config_get clean_ruleset_interval config clean_ruleset_interval
91 config_get ipv6_disable config ipv6_disable 0
92
93 local conf ifname ifname6
94
95 . /lib/functions/network.sh
96
97 if [ -n "$external_iface" ] ; then
98 network_get_device ifname "$external_iface"
99 else
100 if [ -n "$external_zone" ] ; then
101 ifname=$(fw3 -q zone "$external_zone" 2>/dev/null | head -1)
102 else
103 network_find_wan external_iface && \
104 network_get_device ifname "$external_iface"
105 fi
106 fi
107 if [ -n "$external_iface6" ] ; then
108 network_get_device ifname6 "$external_iface6"
109 else
110 if [ -n "$external_zone" ] ; then
111 ifname6=$(fw3 -q zone "$external_zone" 2>/dev/null | head -1)
112 else
113 network_find_wan6 external_iface6 && \
114 network_get_device ifname6 "$external_iface6"
115 fi
116 fi
117
118 if [ -n "$config_file" ]; then
119 conf="$config_file"
120 else
121 local tmpconf="/var/etc/miniupnpd.conf"
122 conf="$tmpconf"
123 mkdir -p /var/etc
124
125 {
126 echo "ext_ifname=$ifname"
127 echo "ext_ifname6=$ifname6"
128 [ -n "$external_ip" ] && echo "ext_ip=$external_ip"
129
130 local iface
131 for iface in ${internal_iface:-lan}; do
132 local device
133 network_get_device device "$iface" && echo "listening_ip=$device"
134 done
135
136 config_load "upnpd"
137 upnpd_write_bool enable_natpmp 1
138 upnpd_write_bool enable_upnp 1
139 upnpd_write_bool secure_mode 1
140 upnpd_write_bool system_uptime 1
141 upnpd_write_bool igdv1 0 force_igd_desc_v1
142 upnpd_write_bool use_stun 0 ext_perform_stun
143 upnpd_write_bool ipv6_disable $ipv6_disable
144
145 [ "$use_stun" -eq 0 ] || {
146 [ -n "$stun_host" ] && echo "ext_stun_host=$stun_host"
147 [ -n "$stun_port" ] && echo "ext_stun_port=$stun_port"
148 }
149
150 [ -n "$upload" ] && [ -n "$download" ] && {
151 echo "bitrate_down=$((download * 1024 * 8))"
152 echo "bitrate_up=$((upload * 1024 * 8))"
153 }
154
155 [ -n "$upnp_lease_file" ] && touch "$upnp_lease_file" && echo "lease_file=$upnp_lease_file"
156 [ -n "$presentation_url" ] && echo "presentation_url=$presentation_url"
157 [ -n "$notify_interval" ] && echo "notify_interval=$notify_interval"
158 [ -n "$clean_ruleset_threshold" ] && echo "clean_ruleset_threshold=$clean_ruleset_threshold"
159 [ -n "$clean_ruleset_interval" ] && echo "clean_ruleset_interval=$clean_ruleset_interval"
160 [ -n "$serial_number" ] && echo "serial=$serial_number"
161 [ -n "$model_number" ] && echo "model_number=$model_number"
162 [ -n "$port" ] && echo "port=$port"
163
164 [ -z "$uuid" ] && {
165 uuid="$(cat /proc/sys/kernel/random/uuid)"
166 uci set upnpd.config.uuid="$uuid"
167 uci commit upnpd
168 }
169
170 [ "$uuid" = "nocli" ] || echo "uuid=$uuid"
171
172 config_foreach conf_rule_add perm_rule
173
174 } > "$tmpconf"
175 fi
176
177 if [ -n "$ifname" ]; then
178 # start firewall
179 iptables -L MINIUPNPD >/dev/null 2>&1 || fw3 reload
180 else
181 logger -t "upnp daemon" "external interface not found, not starting"
182 fi
183
184 procd_open_instance
185 procd_set_param command "$PROG"
186 procd_append_param command -f "$conf"
187 [ "$log_output" = "1" ] && procd_append_param command -d
188 procd_close_instance
189 }
190
191 stop_service() {
192 iptables -t nat -F MINIUPNPD 2>/dev/null
193 iptables -t nat -F MINIUPNPD-POSTROUTING 2>/dev/null
194 iptables -t filter -F MINIUPNPD 2>/dev/null
195
196 [ -x /usr/sbin/ip6tables ] && ip6tables -t filter -F MINIUPNPD 2>/dev/null
197 }
198
199 start_service() {
200 config_load "upnpd"
201 config_foreach upnpd "upnpd"
202 }
203
204 service_triggers() {
205 procd_add_reload_trigger "upnpd"
206 }