Statistics
| Branch: | Tag: | Revision:

root / common.sh @ a67910c4

History | View | Annotate | Download (5.3 kB)

1
#!/bin/bash
2

    
3
function try {
4

    
5
  $1 &>/dev/null || true 
6

    
7
}
8

    
9
function clear_routed_setup_ipv4 {
10

    
11
 arptables -D OUTPUT -o $INTERFACE --opcode request -j mangle
12
 while ip rule del dev $INTERFACE; do :; done
13
 iptables -D FORWARD -i $INTERFACE -p udp --dport 67 -j DROP
14

    
15
}
16

    
17
function clear_routed_setup_ipv6 {
18

    
19
 while ip -6 rule del dev $INTERFACE; do :; done
20

    
21
}
22

    
23

    
24
function clear_routed_setup_firewall {
25

    
26
  for oldchain in protected unprotected limited; do
27
    iptables  -D FORWARD -o $INTERFACE -j $oldchain
28
    ip6tables -D FORWARD -o $INTERFACE -j $oldchain
29
  done
30

    
31
}
32

    
33
function clear_ebtables {
34

    
35
  runlocked $RUNLOCKED_OPTS ebtables -D FORWARD -i $INTERFACE -j $FROM
36
  runlocked $RUNLOCKED_OPTS ebtables -D INPUT -i $INTERFACE -j $FROM
37
  runlocked $RUNLOCKED_OPTS ebtables -D FORWARD -o $INTERFACE -j $TO
38
  runlocked $RUNLOCKED_OPTS ebtables -D OUTPUT -o $INTERFACE -j $TO
39

    
40
  runlocked $RUNLOCKED_OPTS ebtables -X $FROM
41
  runlocked $RUNLOCKED_OPTS ebtables -X $TO
42
}
43

    
44

    
45
function clear_nfdhcpd {
46

    
47
  rm $NFDHCPD_STATE_DIR/$INTERFACE
48

    
49
}
50

    
51

    
52
function routed_setup_ipv4 {
53

    
54
  if [ -z "$INTERFACE" -o -z "$NETWORK_GATEWAY" -o -z "$IP" -o -z "$TABLE" ]
55
  then
56
    return
57
  fi
58

    
59
	# mangle ARPs to come from the gw's IP
60
	arptables -A OUTPUT -o $INTERFACE --opcode request -j mangle --mangle-ip-s    "$NETWORK_GATEWAY"
61

    
62
	# route interface to the proper routing table
63
	ip rule add dev $INTERFACE table $TABLE
64

    
65
	# static route mapping IP -> INTERFACE
66
	ip route replace $IP proto static dev $INTERFACE table $TABLE
67

    
68
	# Enable proxy ARP
69
	echo 1 > /proc/sys/net/ipv4/conf/$INTERFACE/proxy_arp
70

    
71
  # Send GARP from host to upstream router
72
  get_uplink $TABLE
73
  echo 1 > /proc/sys/net/ipv4/ip_nonlocal_bind
74
  hooks-log $0 "arping  -c3 -I $UPLINK -U $IP"
75
  arping  -c3 -I $UPLINK -U $IP
76
  echo 0 > /proc/sys/net/ipv4/ip_nonlocal_bind
77

    
78
}
79

    
80
function routed_setup_ipv6 {
81
	# Add a routing entry for the eui-64
82
  get_uplink $TABLE "-6"
83
  get_eui64 $MAC $NETWORK_SUBNET6
84

    
85
  if [ -z "$EUI64" -o -z "$TABLE" -o -z "$INTERFACE" -o -z "$UPLINK" ]
86
  then
87
    return
88
  fi
89

    
90
	ip -6 rule add dev $INTERFACE table $TABLE
91
	ip -6 ro replace $EUI64/128 dev $INTERFACE table $TABLE
92
	ip -6 neigh add proxy $EUI64 dev $UPLINK
93

    
94
	# disable proxy NDP since we're handling this on userspace
95
	# this should be the default, but better safe than sorry
96
	echo 0 > /proc/sys/net/ipv6/conf/$INTERFACE/proxy_ndp
97

    
98
  # Send Unsolicited Neighbor Advertisement
99
  hooks-log $0 "ndsend $EUI64 $UPLINK"
100
  ndsend $EUI64 $UPLINK
101

    
102
}
103

    
104
# pick a firewall profile per NIC, based on tags (and apply it)
105
function routed_setup_firewall {
106
	# for latest ganeti there is no need to check other but uuid
107
	ifprefixindex="synnefo:network:$INTERFACE_INDEX:"
108
	ifprefixname="synnefo:network:$INTERFACE_NAME:"
109
	ifprefixuuid="synnefo:network:$INTERFACE_UUID:"
110
	for tag in $TAGS; do
111
		tag=${tag#$ifprefixindex}
112
		tag=${tag#$ifprefixname}
113
		tag=${tag#$ifprefixuuid}
114
		case $tag in
115
		protected)
116
			chain=protected
117
		;;
118
		unprotected)
119
			chain=unprotected
120
		;;
121
		limited)
122
			chain=limited
123
		;;
124
		esac
125
	done
126

    
127
	if [ "x$chain" != "x" ]; then
128
		iptables  -A FORWARD -o $INTERFACE -j $chain
129
		ip6tables -A FORWARD -o $INTERFACE -j $chain
130
	fi
131
}
132

    
133
function init_ebtables {
134

    
135
  runlocked $RUNLOCKED_OPTS ebtables -N $FROM
136
  runlocked $RUNLOCKED_OPTS ebtables -A FORWARD -i $INTERFACE -j $FROM
137
  # This is needed for multicast packets
138
  runlocked $RUNLOCKED_OPTS ebtables -A INPUT -i $INTERFACE -j $FROM
139

    
140
  runlocked $RUNLOCKED_OPTS ebtables -N $TO
141
  runlocked $RUNLOCKED_OPTS ebtables -A FORWARD -o $INTERFACE -j $TO
142
  # This is needed for multicast packets
143
  runlocked $RUNLOCKED_OPTS ebtables -A OUTPUT -o $INTERFACE -j $TO
144

    
145
}
146

    
147

    
148
function setup_ebtables {
149

    
150
  # do not allow changes in ip-mac pair
151
  if [ -n "$IP"]; then
152
    runlocked $RUNLOCKED_OPTS ebtables -A $FROM --ip-source \! $IP -p ipv4 -j DROP
153
  fi
154
  runlocked $RUNLOCKED_OPTS ebtables -A $FROM -s \! $MAC -j DROP
155
  #accept dhcp responses from host (nfdhcpd)
156
  runlocked $RUNLOCKED_OPTS ebtables -A $TO -s $INDEV_MAC -p ipv4 --ip-protocol=udp  --ip-destination-port=68 -j ACCEPT
157
  # allow only packets from the same mac prefix
158
  runlocked $RUNLOCKED_OPTS ebtables -A $TO -s \! $MAC/$MAC_MASK -j DROP
159
}
160

    
161
function setup_masq {
162

    
163
  # allow packets from/to router (for masquerading)
164
  # runlocked $RUNLOCKED_OPTS ebtables -A $TO -s $NODE_MAC -j ACCEPT
165
  # runlocked $RUNLOCKED_OPTS ebtables -A INPUT -i $INTERFACE -j $FROM
166
  # runlocked $RUNLOCKED_OPTS ebtables -A OUTPUT -o $INTERFACE -j $TO
167
  return
168

    
169
}
170

    
171
function setup_nfdhcpd {
172
	umask 022
173
  FILE=$NFDHCPD_STATE_DIR/$INTERFACE
174
  #IFACE is the interface from which the packet seems to arrive
175
  #needed in bridged mode where the packets seems to arrive from the
176
  #bridge and not from the tap
177
	cat >$FILE <<EOF
178
INDEV=$INDEV
179
IP=$IP
180
MAC=$MAC
181
HOSTNAME=$INSTANCE
182
TAGS="$TAGS"
183
GATEWAY=$NETWORK_GATEWAY
184
SUBNET=$NETWORK_SUBNET
185
GATEWAY6=$NETWORK_GATEWAY6
186
SUBNET6=$NETWORK_SUBNET6
187
EUI64=$($MAC2EUI64 $MAC $NETWORK_SUBNET6 2>/dev/null)
188
EOF
189

    
190
}
191

    
192
function get_uplink {
193

    
194
  local table=$1
195
  local version=$2
196
  UPLINK=$(ip "$version" route list table "$table" | grep "default via" | awk '{print $5}')
197

    
198
}
199

    
200
# Because we do not have IPv6 value in our environment
201
# we caclulate it based on the NIC's MAC and the IPv6 subnet (if any)
202
# first argument MAC second IPv6 subnet
203
# Changes global value EUI64
204
get_eui64 () {
205

    
206
  local mac=$1
207
  local prefix=$2
208

    
209
  if [ -z "$prefix" ]; then
210
    EUI64=
211
  else
212
    EUI64=$($MAC2EUI64 $mac $prefix)
213
  fi
214

    
215
}