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.

193 lines
5.7 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_zone config external_zone
  58. config_get external_ip config external_ip
  59. config_get internal_iface config internal_iface
  60. config_get port config port 5000
  61. config_get upload config upload
  62. config_get download config download
  63. config_get_bool log_output config log_output 0
  64. config_get config_file config config_file
  65. config_get serial_number config serial_number
  66. config_get model_number config model_number
  67. config_get uuid config uuid
  68. config_get stun_host config stun_host
  69. config_get stun_port config stun_port
  70. config_get notify_interval config notify_interval
  71. config_get presentation_url config presentation_url
  72. config_get upnp_lease_file config upnp_lease_file
  73. config_get clean_ruleset_threshold config clean_ruleset_threshold
  74. config_get clean_ruleset_interval config clean_ruleset_interval
  75. local conf ifname ifname6
  76. . /lib/functions/network.sh
  77. # manual external interface overrides everything
  78. [ -z "$external_iface" ] && {
  79. # manual external zone (if dynamically find interfaces
  80. # belonging to it) overrides network_find_wan*
  81. [ -n "$external_zone" ] && ifname=$(fw3 -q zone "$external_zone" | head -1)
  82. [ -z "$external_iface" ] && network_find_wan external_iface
  83. [ -z "$external_iface6" ] && network_find_wan6 external_iface6
  84. }
  85. [ -z "$ifname" ] && network_get_device ifname "$external_iface"
  86. [ -z "$ifname6" ] && network_get_device ifname6 "$external_iface6"
  87. if [ -n "$config_file" ]; then
  88. conf="$config_file"
  89. else
  90. local tmpconf="/var/etc/miniupnpd.conf"
  91. conf="$tmpconf"
  92. mkdir -p /var/etc
  93. {
  94. echo "ext_ifname=$ifname"
  95. echo "ext_ifname6=$ifname6"
  96. [ -n "$external_ip" ] && echo "ext_ip=$external_ip"
  97. local iface
  98. for iface in ${internal_iface:-lan}; do
  99. local device
  100. network_get_device device "$iface" && echo "listening_ip=$device"
  101. network_get_device device "$iface" && echo "ipv6_listening_ip=$device"
  102. done
  103. config_load "upnpd"
  104. upnpd_write_bool enable_natpmp 1
  105. upnpd_write_bool enable_upnp 1
  106. upnpd_write_bool secure_mode 1
  107. upnpd_write_bool system_uptime 1
  108. upnpd_write_bool igdv1 0 force_igd_desc_v1
  109. upnpd_write_bool use_stun 0 ext_perform_stun
  110. [ "$use_stun" -eq 0 ] || {
  111. [ -n "$stun_host" ] && echo "ext_stun_host=$stun_host"
  112. [ -n "$stun_port" ] && echo "ext_stun_port=$stun_port"
  113. }
  114. [ -n "$upload" ] && [ -n "$download" ] && {
  115. echo "bitrate_down=$((download * 1024 * 8))"
  116. echo "bitrate_up=$((upload * 1024 * 8))"
  117. }
  118. [ -n "$upnp_lease_file" ] && touch "$upnp_lease_file" && echo "lease_file=$upnp_lease_file"
  119. [ -n "$presentation_url" ] && echo "presentation_url=$presentation_url"
  120. [ -n "$notify_interval" ] && echo "notify_interval=$notify_interval"
  121. [ -n "$clean_ruleset_threshold" ] && echo "clean_ruleset_threshold=$clean_ruleset_threshold"
  122. [ -n "$clean_ruleset_interval" ] && echo "clean_ruleset_interval=$clean_ruleset_interval"
  123. [ -n "$serial_number" ] && echo "serial=$serial_number"
  124. [ -n "$model_number" ] && echo "model_number=$model_number"
  125. [ -n "$port" ] && echo "port=$port"
  126. [ -z "$uuid" ] && {
  127. uuid="$(cat /proc/sys/kernel/random/uuid)"
  128. uci set upnpd.config.uuid="$uuid"
  129. uci commit upnpd
  130. }
  131. [ "$uuid" = "nocli" ] || echo "uuid=$uuid"
  132. config_foreach conf_rule_add perm_rule
  133. } > "$tmpconf"
  134. fi
  135. if [ -n "$ifname" ]; then
  136. # start firewall
  137. iptables -L MINIUPNPD >/dev/null 2>&1 || fw3 reload
  138. else
  139. logger -t "upnp daemon" "external interface not found, not starting"
  140. fi
  141. procd_open_instance
  142. procd_set_param command "$PROG"
  143. procd_append_param command -f "$conf"
  144. [ "$log_output" = "1" ] && procd_append_param command -d
  145. procd_close_instance
  146. }
  147. stop_service() {
  148. iptables -t nat -F MINIUPNPD 2>/dev/null
  149. iptables -t nat -F MINIUPNPD-POSTROUTING 2>/dev/null
  150. iptables -t filter -F MINIUPNPD 2>/dev/null
  151. [ -x /usr/sbin/ip6tables ] && ip6tables -t filter -F MINIUPNPD 2>/dev/null
  152. }
  153. start_service() {
  154. config_load "upnpd"
  155. config_foreach upnpd "upnpd"
  156. }
  157. service_triggers() {
  158. procd_add_reload_trigger "upnpd"
  159. }