714d6294169de3466253489567f8871b0654d54a
[openwrt.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 url="http://ipv4.tunnelbroker.net/nic/update?username=$username&password=$password&hostname=$tunnelid"
70                 local try=0
71                 local max=3
72
73                 while [ $((++try)) -le $max ]; do
74                         ( exec wget -qO/dev/null "$url" 2>/dev/null ) &
75                         local pid=$!
76                         ( sleep 5; kill $pid 2>/dev/null ) &
77                         wait $pid && break
78                 done
79         }
80 }
81
82 proto_6in4_teardown() {
83         local cfg="$1"
84 }
85
86 proto_6in4_init_config() {
87         no_device=1             
88         available=1
89
90         proto_config_add_string "ipaddr"
91         proto_config_add_string "ip6addr"
92         proto_config_add_string "ip6prefix"
93         proto_config_add_string "peeraddr"
94         proto_config_add_string "tunnelid"
95         proto_config_add_string "username"
96         proto_config_add_string "password"
97         proto_config_add_string "updatekey"
98         proto_config_add_int "mtu"
99         proto_config_add_int "ttl"
100         proto_config_add_string "tos"
101         proto_config_add_boolean "sourcerouting"
102 }
103
104 [ -n "$INCLUDE_ONLY" ] || {
105         add_protocol 6in4
106 }