6in4: https support for he.net tunnel api
[openwrt/staging/chunkeey.git] / package / network / ipv6 / 6in4 / files / 6in4.sh
1 #!/bin/sh
2 # 6in4.sh - IPv6-in-IPv4 tunnel backend
3 # Copyright (c) 2010-2014 OpenWrt.org
4
5 [ -n "$INCLUDE_ONLY" ] || {
6 . /lib/functions.sh
7 . /lib/functions/network.sh
8 . ../netifd-proto.sh
9 init_proto "$@"
10 }
11
12 proto_6in4_setup() {
13 local cfg="$1"
14 local iface="$2"
15 local link="6in4-$cfg"
16
17 local mtu ttl tos ipaddr peeraddr ip6addr ip6prefix tunnelid username password updatekey sourcerouting
18 json_get_vars mtu ttl tos ipaddr peeraddr ip6addr ip6prefix tunnelid username password updatekey sourcerouting
19
20 [ -z "$peeraddr" ] && {
21 proto_notify_error "$cfg" "MISSING_ADDRESS"
22 proto_block_restart "$cfg"
23 return
24 }
25
26 ( proto_add_host_dependency "$cfg" 0.0.0.0 )
27
28 [ -z "$ipaddr" ] && {
29 local wanif
30 if ! network_find_wan wanif || ! network_get_ipaddr ipaddr "$wanif"; then
31 proto_notify_error "$cfg" "NO_WAN_LINK"
32 return
33 fi
34 }
35
36 proto_init_update "$link" 1
37
38 local source=""
39 [ "$sourcerouting" != "0" ] && source="::/128"
40 proto_add_ipv6_route "::" 0 "" "" "" "$source"
41
42 [ -n "$ip6addr" ] && {
43 local local6="${ip6addr%%/*}"
44 local mask6="${ip6addr##*/}"
45 [[ "$local6" = "$mask6" ]] && mask6=
46 proto_add_ipv6_address "$local6" "$mask6"
47 [ "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$local6/$mask6"
48 }
49
50 [ -n "$ip6prefix" ] && {
51 proto_add_ipv6_prefix "$ip6prefix"
52 [ "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$ip6prefix"
53 }
54
55 proto_add_tunnel
56 json_add_string mode sit
57 json_add_int mtu "${mtu:-1280}"
58 json_add_int ttl "${ttl:-64}"
59 [ -n "$tos" ] && json_add_string tos "$tos"
60 json_add_string local "$ipaddr"
61 json_add_string remote "$peeraddr"
62 proto_close_tunnel
63
64 proto_send_update "$cfg"
65
66 [ -n "$tunnelid" -a -n "$username" -a \( -n "$password" -o -n "$updatekey" \) ] && {
67 [ -n "$updatekey" ] && password="$updatekey"
68
69 local http="http"
70 local wget_opts="-qO/dev/null"
71 if wget --version | grep -qF "+https"; then
72 http="https"
73 [ -z "$(find ${SSL_CERT_DIR-/etc/ssl/certs} -name "*.0" 2>/dev/null)" ] && {
74 wget_opts="$wget_opts --no-check-certificate"
75 }
76 fi
77
78 local url="$http://ipv4.tunnelbroker.net/nic/update?username=$username&password=$password&hostname=$tunnelid"
79 local try=0
80 local max=3
81
82 while [ $((++try)) -le $max ]; do
83 ( exec wget $wget_opts "$url" 2>/dev/null ) &
84 local pid=$!
85 ( sleep 5; kill $pid 2>/dev/null ) &
86 wait $pid && break
87 done
88 }
89 }
90
91 proto_6in4_teardown() {
92 local cfg="$1"
93 }
94
95 proto_6in4_init_config() {
96 no_device=1
97 available=1
98
99 proto_config_add_string "ipaddr"
100 proto_config_add_string "ip6addr"
101 proto_config_add_string "ip6prefix"
102 proto_config_add_string "peeraddr"
103 proto_config_add_string "tunnelid"
104 proto_config_add_string "username"
105 proto_config_add_string "password"
106 proto_config_add_string "updatekey"
107 proto_config_add_int "mtu"
108 proto_config_add_int "ttl"
109 proto_config_add_string "tos"
110 proto_config_add_boolean "sourcerouting"
111 }
112
113 [ -n "$INCLUDE_ONLY" ] || {
114 add_protocol 6in4
115 }