blob: 713a292f5bd777f9c283d98544207cd986d5c701 (
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
|
import re
import os
import yaml
import sys
import traceback
def init(file):
with open (file) as fd:
try:
return yaml.load(fd)
except:
traceback.print_exc()
return None
def err_print(info):
print '\033[0;31m%s\033[0m' %info
def check_ip(ip):
if not ip:
return False
res=re.search("^(0?\d{1,2}|1\d\d|2[0-4]\d|25[0-5])(\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])){3}(\/(\d|[1-2]\d|3[0-2]))?$",ip)!=None
return res
def check_mac(mac):
if not mac:
return False
res=re.search("^([a-zA-Z0-9]{2}:){5}[a-zA-Z0-9]{2}$",mac)!=None
return res
def check_network(network):
for i in network.get('ip_settings'):
if not (check_ip(i['cidr']) and check_ip(i['ip_ranges'][0][0]) and check_ip(i['ip_ranges'][0][1])):
return False
if i['name'] == 'external' and not check_ip(i['gw']):
return False
if not check_ip(network['internal_vip']['ip']):
return False
if not check_ip(network['public_vip']['ip']):
return False
if not check_ip(network['public_net_info']['external_gw']):
return False
if not check_ip(network['public_net_info']['floating_ip_cidr']):
return False
if not check_ip(network['public_net_info']['floating_ip_start']):
return False
if not check_ip(network['public_net_info']['floating_ip_end']):
return False
return True
def check_dha(dha):
if dha['TYPE'] == 'baremetal':
for i in dha['hosts']:
if not (check_mac(i['mac']) and check_mac(i['interfaces'][0]['eth1']) and check_ip(i['ipmiIp'])):
return False
return True
if __name__ == "__main__":
flag = 0
if len(sys.argv) != 3:
err_print('input file error')
sys.exit(1)
_, dha_file, network_file = sys.argv
if not os.path.exists(dha_file):
sys.exit(1)
else:
dha = init(dha_file)
if not dha:
err_print('format error in DHA')
else:
if not check_dha(dha):
err_print('invalid address in DHA')
flag = 1
if not os.path.exists(network_file):
sys.exit(1)
else:
network = init(network_file)
if not network:
err_print('format error in NETWORK')
else:
if not check_network(network):
err_print('invalid address in NETWORK')
flag = 1
if flag == 1:
sys.exit(1)
|