You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

204 lines
5.8 KiB

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