]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blame - src/initscripts/helper/aws-setup
aws: Write HOSTNAME and DOMAINNAME when not set
[people/mfischer/ipfire-2.x.git] / src / initscripts / helper / aws-setup
CommitLineData
bd3bcb45
MT
1#!/bin/bash
2
3. /etc/sysconfig/rc
4. ${rc_functions}
5
6get() {
7 local file="${1}"
8
9 wget -qO - "http://169.254.169.254/latest/meta-data/${file}"
10}
11
12to_address() {
13 local n="${1}"
14
15 local o1=$(( (n & 0xff000000) >> 24 ))
16 local o2=$(( (n & 0xff0000) >> 16 ))
17 local o3=$(( (n & 0xff00) >> 8 ))
18 local o4=$(( (n & 0xff) ))
19
20 printf "%d.%d.%d.%d\n" "${o1}" "${o2}" "${o3}" "${o4}"
21}
22
23to_integer() {
24 local address="${1}"
25
26 local integer=0
27
28 local i
29 for i in ${address//\./ }; do
30 integer=$(( (integer << 8) + i ))
31 done
32
33 printf "%d\n" "${integer}"
34}
35
36prefix2netmask() {
37 local prefix=${1}
38
39 local zeros=$(( 32 - prefix ))
40 local netmask=0
41
42 local i
43 for (( i=0; i<${zeros}; i++ )); do
44 netmask=$(( (netmask << 1) ^ 1 ))
45 done
46
47 to_address "$(( netmask ^ 0xffffffff ))"
48}
49
50import_aws_configuration() {
51 local instance_id="$(get instance-id)"
52
53 boot_mesg "Importing AWS configuration for instance ${instance_id}..."
54
55 # Initialise system settings
3273ff48 56 local hostname=$(get local-hostname)
bd3bcb45 57
3273ff48
MT
58 # Set hostname
59 if ! grep -q "^HOSTNAME=" /var/ipfire/main/settings; then
60 echo "HOSTNAME=${hostname%%.*}" >> /var/ipfire/main/settings
61 fi
62
63 # Set domainname
64 if ! grep -q "^DOMAINNAME=" /var/ipfire/main/settings; then
65 echo "DOMAINNAME=${hostname#*.}" >> /var/ipfire/main/settings
bd3bcb45
MT
66 fi
67
68 # Import any DNS server settings
69 eval $(/usr/local/bin/readhash <(grep -E "^DNS([0-9])=" /var/ipfire/ethernet/settings 2>/dev/null))
70
71 # Import network configuration
72 (
73 # RED + GREEN
74 echo "CONFIG_TYPE=1"
75 ) > /var/ipfire/ethernet/settings
76
3273ff48 77 local mac
bd3bcb45
MT
78 for mac in $(get network/interfaces/macs/); do
79 # Remove trailing slash
80 mac="${mac//\//}"
81
82 local device_number="$(get "network/interfaces/macs/${mac}/device-number")"
83 local interface_id="$(get "network/interfaces/macs/${mac}/interface-id")"
84
85 # First IPv4 address
86 local ipv4_address="$(get "network/interfaces/macs/${mac}/local-ipv4s" | head -n1)"
87 local ipv4_address_num="$(to_integer "${ipv4_address}")"
88
89 # Get subnet size
90 local subnet="$(get "network/interfaces/macs/${mac}/subnet-ipv4-cidr-block")"
91
92 local prefix="${subnet#*/}"
93 local netmask="$(prefix2netmask "${prefix}")"
94 local netmask_num="$(to_integer "${netmask}")"
95
96 # Calculate the network and broadcast addresses
97 local netaddress="${subnet%/*}"
98 local netaddress_num="$(to_integer "${netaddress}")"
99 local broadcast="$(to_address $(( ipv4_address_num | (0xffffffff ^ netmask_num) )))"
100
101 # The gateway is always the first IP address in the subnet
102 local gateway="$(to_address $(( netaddress_num + 1 )))"
103
104 # The AWS internal DNS service is available on the fourth IP address of each subnet
105 local dns1="$(to_address $(( netaddress_num + 4 )))"
106 local dns2=
107
108 case "${device_number}" in
109 # RED
110 0)
111 (
112 echo "RED_TYPE=STATIC"
113 echo "RED_DEV=red0"
114 echo "RED_MACADDR=${mac}"
115 echo "RED_DESCRIPTION='${interface_id}'"
116 echo "RED_ADDRESS=${ipv4_address}"
117 echo "RED_NETMASK=${netmask}"
118 echo "RED_NETADDRESS=${netaddress}"
119 echo "RED_BROADCAST=${broadcast}"
120 echo "DEFAULT_GATEWAY=${gateway}"
121 echo "DNS1=${DNS1:-${dns1}}"
122 echo "DNS2=${DNS2:-${dns2}}"
123 ) >> /var/ipfire/ethernet/settings
124
125 # Import aliases for RED
126 for alias in $(get "network/interfaces/macs/${mac}/local-ipv4s" | tail -n +2); do
127 echo "${alias},on,"
128 done > /var/ipfire/ethernet/aliases
129 ;;
130
131 # GREEN
132 1)
133 (
134 echo "GREEN_DEV=green0"
135 echo "GREEN_MACADDR=${mac}"
136 echo "GREEN_DESCRIPTION='${interface_id}'"
137 echo "GREEN_ADDRESS=${ipv4_address}"
138 echo "GREEN_NETMASK=${netmask}"
139 echo "GREEN_NETADDRESS=${netaddress}"
140 echo "GREEN_BROADCAST=${broadcast}"
141 ) >> /var/ipfire/ethernet/settings
142 ;;
143 esac
144 done
145
146 # DEBUG
147 cat /var/ipfire/ethernet/settings
148
149 # Import SSH keys
150 local line
151 for line in $(get "public-keys/"); do
152 local key_no="${line%=*}"
153
154 local key="$(get public-keys/${key_no}/openssh-key)"
155 if [ -n "${key}" ] && ! grep -q "^${key}$" /root/.ssh/authorized_keys 2>/dev/null; then
156 mkdir -p /root/.ssh
157 chmod 700 /root/.ssh
158
159 echo "${key}" >> /root/.ssh/authorized_keys
160 chmod 600 /root/.ssh/authorized_keys
161 fi
162 done
163
bd3bcb45
MT
164 # Actions performed only on the very first start
165 if [ ! -e "/var/ipfire/main/firstsetup_ok" ]; then
7fa83c2f 166 # Enable SSH
8b59ef08
MT
167 sed -e "s/ENABLE_SSH=.*/ENABLE_SSH=on/g" -i /var/ipfire/remote/settings
168
7fa83c2f
MT
169 touch /var/ipfire/remote/enablessh
170 chown nobody:nobody /var/ipfire/remote/enablessh
171
172 # Enable SSH key authentication
173 sed -e "s/^ENABLE_SSH_KEYS=.*/ENABLE_SSH_KEYS=on/" -i /var/ipfire/remote/settings
174
bd3bcb45
MT
175 # Firewall rules for SSH and WEBIF
176 (
177 echo "1,ACCEPT,INPUTFW,ON,std_net_src,ALL,ipfire,RED1,,TCP,,,ON,,,cust_srv,SSH,,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second"
178 echo "2,ACCEPT,INPUTFW,ON,std_net_src,ALL,ipfire,RED1,,TCP,,,ON,,,TGT_PORT,444,,,,,,,,,,,00:00,00:00,,AUTO,,dnat,,,,,second"
179 ) >> /var/ipfire/firewall/input
180
181 # This script has now completed the first steps of setup
182 touch /var/ipfire/main/firstsetup_ok
183 fi
184
185 # All done
186 echo_ok
187}
188
189case "${reason}" in
190 PREINIT)
191 # Bring up the interface
192 ip link set "${interface}" up
193 ;;
194
195 BOUND|RENEW|REBIND|REBOOT)
196 # Remove any previous IP addresses
197 ip addr flush dev "${interface}"
198
199 # Add (or re-add) the new IP address
200 ip addr add "${new_ip_address}/${new_subnet_mask}" dev "${interface}"
201
202 # Add the default route
203 ip route add default via "${new_routers}"
204
205 # Import AWS configuration
206 import_aws_configuration
207 ;;
208
209 EXPIRE|FAIL|RELEASE|STOP)
210 # Remove all IP addresses
211 ip addr flush dev "${interface}"
212 ;;
213
214 *)
215 echo "Unhandled reason: ${reason}" >&2
216 exit 2
217 ;;
218esac
219
220# Terminate
221exit 0