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.

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