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
|
#!/usr/bin/env python
'''
bcfg2-repo-validate checks all xml files in Bcfg2
repos against their respective XML schemas
'''
__revision__ = '$Revision$'
import glob
import lxml.etree
import os
import sys
import Bcfg2.Options
if __name__ == '__main__':
opts = {'repo': Bcfg2.Options.SERVER_REPOSITORY,
'prefix': Bcfg2.Options.INSTALL_PREFIX,
'verbose': Bcfg2.Options.VERBOSE,
'configfile': Bcfg2.Options.CFILE}
setup = Bcfg2.Options.OptionParser(opts)
setup.parse(sys.argv[1:])
verbose = setup['verbose']
cpath = setup['configfile']
prefix = setup['prefix']
schemadir = "%s/share/bcfg2/schemas" % (prefix)
os.chdir(schemadir)
repo = setup['repo']
# Get a list of all info.xml files in the bcfg2 repository
info_list = []
for infodir in ['Cfg', 'TGenshi', 'TCheetah']:
for root, dirs, files in os.walk('%s/%s' % (repo, infodir)):
for filename in files:
if filename == 'info.xml':
info_list.append(os.path.join(root, filename))
# get metadata list (with all included files)
metadata_list = glob.glob("%s/Metadata/groups.xml" % repo)
ref_bundles = set()
xdata = lxml.etree.parse("%s/Metadata/groups.xml" % repo)
included = set([ent.get('href') for ent in \
xdata.findall('./{http://www.w3.org/2001/XInclude}include')])
while included:
try:
filename = included.pop()
except KeyError:
continue
metadata_list.append("%s/Metadata/%s" % (repo, filename))
groupdata = lxml.etree.parse("%s/Metadata/%s" % (repo, filename))
group_ents = [ent.get('href') for ent in \
groupdata.
findall('./{http://www.w3.org/2001/XInclude}include')]
for ent in group_ents:
included.add(ent)
included.discard(filename)
# get all XIncluded bundles
xdata.xinclude()
for bundle in xdata.findall("//Bundle"):
ref_bundles.add("%s/Bundler/%s" % (repo, bundle.get('name')))
# get lists of all other xml files to validate
clients_list = glob.glob("%s/Metadata/clients.xml" % repo)
bundle_list = glob.glob("%s/Bundler/*.xml" % repo)
genshibundle_list = glob.glob("%s/Bundler/*.genshi" % repo)
pkg_list = glob.glob("%s/Pkgmgr/*.xml" % repo)
base_list = glob.glob("%s/Base/*.xml" % repo)
rules_list = glob.glob("%s/Rules/*.xml" % repo)
imageinfo_list = glob.glob("%s/etc/report-configuration.xml" % repo)
services_list = glob.glob("%s/Svcmgr/*.xml" % repo)
deps_list = glob.glob("%s/Deps/*.xml" % repo)
dec_list = glob.glob("%s/Decisions/*" % repo)
pkgcfg_list = glob.glob("%s/Packages/config.xml" % repo)
gp_list = glob.glob('%s/GroupPatterns/config.xml' % repo)
# warn on duplicate Pkgmgr entries with the same priority
pset = set()
for plist in pkg_list:
try:
xdata = lxml.etree.parse(plist)
except lxml.etree.XMLSyntaxError, e:
print("Failed to parse %s: %s" % (plist, e))
# get priority, type, group
priority = xdata.getroot().get('priority')
ptype = xdata.getroot().get('type')
for pkg in xdata.findall("//Package"):
if pkg.getparent().tag == 'Group':
grp = pkg.getparent().get('name')
else:
grp = 'none'
ptuple = (pkg.get('name'), priority, ptype, grp)
# check if package is already listed with same priority,
# type, grp
if ptuple in pset:
print("Duplicate Package %s, priority:%s, type:%s"\
% (pkg.get('name'), priority, ptype))
else:
pset.add(ptuple)
filesets = {'metadata':(metadata_list, "%s/metadata.xsd"),
'clients':(clients_list, "%s/clients.xsd"),
'info':(info_list, "%s/info.xsd"),
'bundle':(bundle_list, "%s/bundle.xsd"),
'pkglist':(pkg_list, "%s/pkglist.xsd"),
'base':(base_list, "%s/base.xsd"),
'rules':(rules_list, "%s/rules.xsd"),
'imageinfo':(imageinfo_list, "%s/report-configuration.xsd"),
'services':(services_list, "%s/services.xsd"),
'deps':(deps_list, "%s/deps.xsd"),
'decisions': (dec_list, "%s/decisions.xsd"),
'packages': (pkgcfg_list, "%s/packages.xsd"),
'grouppatterns': (gp_list, "%s/grouppatterns.xsd"),
}
failures = 0
for k, (filelist, schemaname) in list(filesets.items()):
try:
schema = lxml.etree.XMLSchema(lxml.etree.parse(open(schemaname%(schemadir))))
except:
print("Failed to process schema %s" % (schemaname%(schemadir)))
failures = 1
continue
for filename in filelist:
try:
datafile = lxml.etree.parse(open(filename))
except SyntaxError:
print("%s ***FAILS*** to parse \t\t<----" % (filename))
os.system("xmllint %s" % filename)
failures = 1
continue
except IOError:
print("Failed to open file %s \t\t<---" % (filename))
failures = 1
continue
if schema.validate(datafile):
if verbose:
print("%s checks out" % (filename))
else:
rc = os.system("xmllint --noout --xinclude --schema \
%s %s > /dev/null 2>/dev/null" % \
(schemaname % schemadir, filename))
if rc:
failures = 1
print("%s ***FAILS*** to verify \t\t<----" % (filename))
os.system("xmllint --noout --xinclude --schema %s %s" % \
(schemaname % schemadir, filename))
elif verbose:
print("%s checks out" % (filename))
# print out missing bundle information
if verbose:
print("")
for bundle in ref_bundles:
# check for both regular and genshi bundles
xmlbundle = "%s.xml" % bundle
genshibundle = "%s.genshi" % bundle
allbundles = bundle_list + genshibundle_list
if xmlbundle not in allbundles and \
genshibundle not in allbundles:
print("*** Warning: Bundle %s referenced, but does not "
"exist." % bundle)
raise SystemExit, failures
|