-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathipvsadm.py
299 lines (235 loc) · 9.44 KB
/
ipvsadm.py
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
import subprocess
import sys
from twisted.internet import reactor
from twisted.internet.protocol import ProcessProtocol
import external
from enums import *
def initial_ipvs_setup(virtuals, global_config):
global_config.log.debug("Beginning initial ipvs table setup")
for virtual in virtuals:
virtual_hostname = virtual.ip.exploded + ":" + str(virtual.port)
# delete the virtual service in case it might be present
try:
delete_virtual_service(virtual, global_config, True)
except subprocess.CalledProcessError:
global_config.log.debug(
"Deleting the virtual service for " + virtual_hostname + " failed during initialization (probably ok)")
# add the virtual service
global_config.log.info("Adding virtual service for " + virtual_hostname)
try:
add_virtual_service(virtual, global_config, True)
except subprocess.CalledProcessError:
global_config.log.critical(
"Adding the virtual service for " + virtual_hostname + " failed during initialization")
sys.exit(1)
# loop all real servers and set them up if we quiescent
if virtual.quiescent:
for real in virtual.real:
real_hostname = real.ip.exploded + ":" + str(real.port)
global_config.log.info("Adding real server " + real_hostname)
try:
add_real_server(virtual, real, global_config, True)
except subprocess.CalledProcessError:
global_config.log.critical(
"Adding the real server " + real_hostname + " failed during initialization")
sys.exit(1)
# add the fallback if it exists
if virtual.fallback is not None:
global_config.log.info("Adding fallback server for " + virtual_hostname)
try:
add_real_server(virtual, virtual.fallback, global_config, True)
except:
global_config.log.critical(
"Adding the fallback server for " + virtual_hostname + " failed during initialization")
sys.exit(1)
global_config.log.debug("Initial ipvs table setup done")
def add_virtual_service(virtual, global_config, sync=False):
args = [external.ipvsadm_name, "-A"]
# use correct protocol
if virtual.protocol == Protocol.tcp:
args.append("-t")
elif virtual.protocol == Protocol.udp:
args.append("-u")
elif virtual.protocol == Protocol.fwm:
raise NotImplementedError("firewall-marks are not implemented yet")
else:
raise ValueError
# set virtual hostname
virtual_hostname = virtual.ip.exploded + ":" + str(virtual.port)
args.append(virtual_hostname)
# set scheduler
args.append("-s")
args.append(virtual.scheduler.name)
global_config.log.debug(args)
# execute the prepared command
if sync:
args[0] = external.ipvsadm_path
subprocess.run(args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).check_returncode()
else:
reactor.spawnProcess(__IPVSProcessProtocol(global_config), external.ipvsadm_path, args, {})
# set is_present
virtual.is_present = True
def delete_virtual_service(virtual, global_config, sync=False):
args = [external.ipvsadm_name, "-D"]
# use correct protocol
if virtual.protocol == Protocol.tcp:
args.append("-t")
elif virtual.protocol == Protocol.udp:
args.append("-u")
elif virtual.protocol == Protocol.fwm:
raise NotImplementedError("firewall-marks are not implemented yet")
else:
raise ValueError
# set virtual hostname
virtual_hostname = virtual.ip.exploded + ":" + str(virtual.port)
args.append(virtual_hostname)
global_config.log.debug(args)
# execute the prepared command
if sync:
args[0] = external.ipvsadm_path
subprocess.run(args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).check_returncode()
else:
reactor.spawnProcess(__IPVSProcessProtocol(global_config), external.ipvsadm_path, args, {})
# set is_present
virtual.is_present = False
def edit_virtual_service(virtual, global_config, sync=False):
args = [external.ipvsadm_name, "-E"]
# use correct protocol
if virtual.protocol == Protocol.tcp:
args.append("-t")
elif virtual.protocol == Protocol.udp:
args.append("-u")
elif virtual.protocol == Protocol.fwm:
raise NotImplementedError("firewall-marks are not implemented yet")
else:
raise ValueError
# set virtual hostname
virtual_hostname = virtual.ip.exploded + ":" + str(virtual.port)
args.append(virtual_hostname)
# set scheduler
args.append("-s")
args.append(virtual.scheduler.name)
global_config.log.debug(args)
# execute the prepared command
if sync:
args[0] = external.ipvsadm_path
subprocess.run(args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).check_returncode()
else:
reactor.spawnProcess(__IPVSProcessProtocol(global_config), external.ipvsadm_path, args, {})
# set is_present
virtual.is_present = True
def add_real_server(virtual, real, global_config, sync=False):
args = [external.ipvsadm_name, "-a"]
# use correct protocol
if virtual.protocol == Protocol.tcp:
args.append("-t")
elif virtual.protocol == Protocol.udp:
args.append("-u")
elif virtual.protocol == Protocol.fwm:
raise NotImplementedError("firewall-marks are not implemented yet")
else:
raise ValueError
# set virtual hostname
virtual_hostname = virtual.ip.exploded + ":" + str(virtual.port)
args.append(virtual_hostname)
# set real hostname
args.append("-r")
real_hostname = real.ip.exploded + ":" + str(real.port)
args.append(real_hostname)
# set forwarding method
if real.method == ForwardingMethod.gate:
args.append("-g")
elif real.method == ForwardingMethod.masq:
args.append("-m")
elif real.method == ForwardingMethod.ipip:
args.append("-i")
else:
raise ValueError
# set weight
args.append("-w")
args.append(str(real.current_weight))
global_config.log.debug(args)
# execute the prepared command
if sync:
args[0] = external.ipvsadm_path
subprocess.run(args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).check_returncode()
else:
reactor.spawnProcess(__IPVSProcessProtocol(global_config), external.ipvsadm_path, args, {})
# set is_present
real.is_present = True
def delete_real_server(virtual, real, global_config, sync=False):
args = [external.ipvsadm_name, "-d"]
# use correct protocol
if virtual.protocol == Protocol.tcp:
args.append("-t")
elif virtual.protocol == Protocol.udp:
args.append("-u")
elif virtual.protocol == Protocol.fwm:
raise NotImplementedError("firewall-marks are not implemented yet")
else:
raise ValueError
# set virtual hostname
virtual_hostname = virtual.ip.exploded + ":" + str(virtual.port)
args.append(virtual_hostname)
# set real hostname
args.append("-r")
real_hostname = real.ip.exploded + ":" + str(real.port)
args.append(real_hostname)
global_config.log.debug(args)
# execute the prepared command
if sync:
args[0] = external.ipvsadm_path
subprocess.run(args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).check_returncode()
else:
reactor.spawnProcess(__IPVSProcessProtocol(global_config), external.ipvsadm_path, args, {})
# set is_present
real.is_present = False
def edit_real_server(virtual, real, global_config, sync=False):
args = [external.ipvsadm_name, "-e"]
# use correct protocol
if virtual.protocol == Protocol.tcp:
args.append("-t")
elif virtual.protocol == Protocol.udp:
args.append("-u")
elif virtual.protocol == Protocol.fwm:
raise NotImplementedError("firewall-marks are not implemented yet")
else:
raise ValueError
# set virtual hostname
virtual_hostname = virtual.ip.exploded + ":" + str(virtual.port)
args.append(virtual_hostname)
# set real hostname
args.append("-r")
real_hostname = real.ip.exploded + ":" + str(real.port)
args.append(real_hostname)
# set forwarding method
if real.method == ForwardingMethod.gate:
args.append("-g")
elif real.method == ForwardingMethod.masq:
args.append("-m")
elif real.method == ForwardingMethod.ipip:
args.append("-i")
else:
raise ValueError
# set weight
args.append("-w")
args.append(str(real.current_weight))
global_config.log.debug(args)
# execute the prepared command
if sync:
args[0] = external.ipvsadm_path
subprocess.run(args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).check_returncode()
else:
reactor.spawnProcess(__IPVSProcessProtocol(global_config), external.ipvsadm_path, args, {})
# set is_present
real.is_present = True
class __IPVSProcessProtocol(ProcessProtocol):
def __init__(self, global_config):
self.global_config = global_config
def connectionMade(self):
self.transport.closeStdin()
def errReceived(self, data):
self.global_config.log.error("Error from 'ipvsadm': " + str(data))
def outReceived(self, data):
if data is not None:
self.global_config.log.warning("From 'ipvsadm': " + str(data))