aboutsummaryrefslogtreecommitdiff
path: root/ipv6/aiccu/files/aiccu.sh
blob: 38d8191f502fdc3ab9e3e1508238532081c874c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/bin/sh
# aiccu.sh - AICCU proto
# Copyright (c) 2014 OpenWrt.org

[ -n "$INCLUDE_ONLY" ] || {
	. /lib/functions.sh
	. /lib/functions/network.sh
	. ../netifd-proto.sh
	init_proto "$@"
}

proto_aiccu_setup() {
	local cfg="$1"
	local iface="$2"
	local link="aiccu-$cfg"

	local username password protocol server ip6prefix tunnelid requiretls defaultroute nat heartbeat verbose sourcerouting ip6addr ntpsynctimeout
	json_get_vars username password protocol server ip6prefix tunnelid requiretls defaultroute nat heartbeat verbose sourcerouting ip6addr ntpsynctimeout

	[ -z "$username" -o -z "$password" ] && {
		proto_notify_error "$cfg" "MISSING_USERNAME_OR_PASSWORD"
		proto_block_restart "$cfg"
		return
	}

	( proto_add_host_dependency "$cfg" 0.0.0.0 )

	CFGFILE="/var/etc/${link}.conf"
	PIDFILE="/var/run/${link}.pid"
	NTPSTRATUMFILE="/var/run/aiccu_ntp_stratum"
	mkdir -p /var/run /var/etc

	echo "username $username" > "$CFGFILE"
	echo "password $password" >> "$CFGFILE"
	echo "ipv6_interface $link" >> "$CFGFILE"
	[ -n "$server" ] && echo "server $server" >> "$CFGFILE"
	[ -n "$protocol" ] && echo "protocol $protocol" >> "$CFGFILE"
	[ -n "$tunnelid" ] && echo "tunnel_id $tunnelid" >> "$CFGFILE"
	[ -n "$requiretls" ] && echo "requiretls $requiretls" >> "$CFGFILE"
	[ "$nat" == 1 ] && echo "behindnat true" >> "$CFGFILE"
	[ "$heartbeat" == 1 ] && echo "makebeats true" >> "$CFGFILE"
	[ "$verbose" == 1 ] && echo "verbose true" >> "$CFGFILE"
	echo "defaultroute false" >> "$CFGFILE"
	echo "daemonize true" >> "$CFGFILE"
	echo "pidfile $PIDFILE" >> "$CFGFILE"

	# By default, wait at most 90 seconds for NTP sync
	[ -z "$ntpsynctimeout" ] && ntpsynctimeout=90
	for i in $(seq 1 $ntpsynctimeout); do
		[ -f "$NTPSTRATUMFILE" ] && \
		[ "$(cat $NTPSTRATUMFILE)" -lt 16 ] && \
		echo "NTP synced, stratum $(cat $NTPSTRATUMFILE)" && break
		[ "$(( $i % 10 ))" -eq 0 ] && echo "Waiting ${i} secs for NTP sync..."
		sleep 1
	done

	aiccu start "$CFGFILE"

	[ "$?" -ne 0 ] && {
		proto_notify_error "$cfg" "AICCU_FAILED_SEE_LOG"
		proto_block_restart "$cfg"
		return
	}

	proto_init_update "$link" 1

	local source=""
	[ "$sourcerouting" != "0" ] && source="::/128"
	[ "$defaultroute" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$source"

	[ -n "$ip6addr" ] && {
		local local6="${ip6addr%%/*}"
		local mask6="${ip6addr##*/}"
		[[ "$local6" = "$mask6" ]] && mask6=
		proto_add_ipv6_address "$local6" "$mask6"
		[ "$defaultroute" != "0" -a "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$local6/$mask6"
	}

	[ -n "$ip6prefix" ] && {
		proto_add_ipv6_prefix "$ip6prefix"
		[ "$defaultroute" != "0" -a "$sourcerouting" != "0" ] && proto_add_ipv6_route "::" 0 "" "" "" "$ip6prefix"
	}

	proto_send_update "$cfg"

}

proto_aiccu_teardown() {
	local cfg="$1"
	local link="aiccu-$cfg"
	CFGFILE="/var/etc/${link}.conf"
	PIDFILE="/var/run/${link}.pid"
	[ -f "$CFGFILE" -a -f "$PIDFILE" ] && {
		local pid="$(cat "$PIDFILE")"
		[ -d /proc/$pid -a $(cat /proc/$pid/comm) = "aiccu" ] && \
		aiccu stop "$CFGFILE"
	}
}

proto_aiccu_init_config() {
	no_device=1
	available=1
	proto_config_add_string "username"
	proto_config_add_string "password"
	proto_config_add_string "protocol"
	proto_config_add_string "server"
	proto_config_add_string "ip6addr:ip6addr"
	proto_config_add_string "ip6prefix:ip6addr"
	proto_config_add_string "tunnelid"
	proto_config_add_boolean "requiretls"
	proto_config_add_boolean "defaultroute"
	proto_config_add_boolean "sourcerouting"
	proto_config_add_boolean "nat"
	proto_config_add_boolean "heartbeat"
	proto_config_add_boolean "verbose"
	proto_config_add_int "ntpsynctimeout"
}

[ -n "$INCLUDE_ONLY" ] || {
	add_protocol aiccu
}