3 # Various different sanity checks
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006 James Troup <james@nocrew.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 ################################################################################
22 # And, lo, a great and menacing voice rose from the depths, and with
23 # great wrath and vehemence it's voice boomed across the
24 # land... ``hehehehehehe... that *tickles*''
27 ################################################################################
29 import commands, os, pg, stat, sys, time
30 import apt_pkg, apt_inst
31 import daklib.database
34 ################################################################################
43 current_time = time.time()
45 ################################################################################
47 def usage(exit_code=0):
48 print """Usage: dak check-archive MODE
49 Run various sanity checks of the archive and/or database.
51 -h, --help show this help and exit.
53 The following MODEs are available:
55 md5sums - validate the md5sums stored in the database
56 files - check files in the database against what's in the archive
57 dsc-syntax - validate the syntax of .dsc files in the archive
58 missing-overrides - check for missing overrides
59 source-in-one-dir - ensure the source for each package is in one directory
60 timestamps - check for future timestamps in .deb's
61 tar-gz-in-dsc - ensure each .dsc lists a .tar.gz file
62 validate-indices - ensure files mentioned in Packages & Sources exist
63 files-not-symlinks - check files in the database aren't symlinks
64 validate-builddeps - validate build-dependencies of .dsc files in the archive
68 ################################################################################
70 def process_dir (unused, dirname, filenames):
71 global waste, db_files, excluded
73 if dirname.find('/disks-') != -1 or dirname.find('upgrade-') != -1:
75 # hack; can't handle .changes files
76 if dirname.find('proposed-updates') != -1:
78 for name in filenames:
79 filename = os.path.abspath(dirname+'/'+name)
80 filename = filename.replace('potato-proposed-updates', 'proposed-updates')
81 if os.path.isfile(filename) and not os.path.islink(filename) and not db_files.has_key(filename) and not excluded.has_key(filename):
82 waste += os.stat(filename)[stat.ST_SIZE]
83 print "%s" % (filename)
85 ################################################################################
90 print "Building list of database files..."
91 q = projectB.query("SELECT l.path, f.filename, f.last_used FROM files f, location l WHERE f.location = l.id ORDER BY l.path, f.filename")
94 print "Missing files:"
97 filename = os.path.abspath(i[0] + i[1])
98 db_files[filename] = ""
99 if os.access(filename, os.R_OK) == 0:
101 print "(last used: %s) %s" % (i[2], filename)
103 print "%s" % (filename)
106 filename = Cnf["Dir::Override"]+'override.unreferenced'
107 if os.path.exists(filename):
108 file = daklib.utils.open_file(filename)
109 for filename in file.readlines():
110 filename = filename[:-1]
111 excluded[filename] = ""
113 print "Existent files not in db:"
115 os.path.walk(Cnf["Dir::Root"]+'pool/', process_dir, None)
118 print "%s wasted..." % (daklib.utils.size_type(waste))
120 ################################################################################
125 for component in Cnf.SubTree("Component").List():
126 if component == "mixed":
128 component = component.lower()
129 list_filename = '%s%s_%s_source.list' % (Cnf["Dir::Lists"], suite, component)
130 list_file = daklib.utils.open_file(list_filename)
131 for line in list_file.readlines():
134 daklib.utils.parse_changes(file, signing_rules=1)
135 except daklib.utils.invalid_dsc_format_exc, line:
136 daklib.utils.warn("syntax error in .dsc file '%s', line %s." % (file, line))
140 daklib.utils.warn("Found %s invalid .dsc files." % (count))
142 ################################################################################
144 def check_override():
145 for suite in [ "stable", "unstable" ]:
149 suite_id = daklib.database.get_suite_id(suite)
150 q = projectB.query("""
151 SELECT DISTINCT b.package FROM binaries b, bin_associations ba
152 WHERE b.id = ba.bin AND ba.suite = %s AND NOT EXISTS
153 (SELECT 1 FROM override o WHERE o.suite = %s AND o.package = b.package)"""
154 % (suite_id, suite_id))
156 q = projectB.query("""
157 SELECT DISTINCT s.source FROM source s, src_associations sa
158 WHERE s.id = sa.source AND sa.suite = %s AND NOT EXISTS
159 (SELECT 1 FROM override o WHERE o.suite = %s and o.package = s.source)"""
160 % (suite_id, suite_id))
163 ################################################################################
165 # Ensure that the source files for any given package is all in one
166 # directory so that 'apt-get source' works...
168 def check_source_in_one_dir():
169 # Not the most enterprising method, but hey...
171 q = projectB.query("SELECT id FROM source;")
172 for i in q.getresult():
174 q2 = projectB.query("""
175 SELECT l.path, f.filename FROM files f, dsc_files df, location l WHERE df.source = %s AND f.id = df.file AND l.id = f.location"""
180 for j in q2.getresult():
181 filename = j[0] + j[1]
182 path = os.path.dirname(filename)
185 first_filename = filename
186 elif first_path != path:
187 symlink = path + '/' + os.path.basename(first_filename)
188 if not os.path.exists(symlink):
190 print "WOAH, we got a live one here... %s [%s] {%s}" % (filename, source_id, symlink)
193 print "Found %d source packages where the source is not all in one directory." % (broken_count)
195 ################################################################################
198 print "Getting file information from database..."
199 q = projectB.query("SELECT l.path, f.filename, f.md5sum, f.size FROM files f, location l WHERE f.location = l.id")
202 print "Checking file md5sums & sizes..."
204 filename = os.path.abspath(i[0] + i[1])
208 file = daklib.utils.open_file(filename)
210 daklib.utils.warn("can't open '%s'." % (filename))
212 md5sum = apt_pkg.md5sum(file)
213 size = os.stat(filename)[stat.ST_SIZE]
214 if md5sum != db_md5sum:
215 daklib.utils.warn("**WARNING** md5sum mismatch for '%s' ('%s' [current] vs. '%s' [db])." % (filename, md5sum, db_md5sum))
217 daklib.utils.warn("**WARNING** size mismatch for '%s' ('%s' [current] vs. '%s' [db])." % (filename, size, db_size))
221 ################################################################################
223 # Check all files for timestamps in the future; common from hardware
224 # (e.g. alpha) which have far-future dates as their default dates.
226 def Ent(Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
229 if MTime > current_time:
230 future_files[current_file] = MTime
231 print "%s: %s '%s','%s',%u,%u,%u,%u,%u,%u,%u" % (current_file, Kind,Name,Link,Mode,UID,GID,Size, MTime, Major, Minor)
233 def check_timestamps():
236 q = projectB.query("SELECT l.path, f.filename FROM files f, location l WHERE f.location = l.id AND f.filename ~ '.deb$'")
241 filename = os.path.abspath(i[0] + i[1])
242 if os.access(filename, os.R_OK):
243 file = daklib.utils.open_file(filename)
244 current_file = filename
245 sys.stderr.write("Processing %s.\n" % (filename))
246 apt_inst.debExtract(file,Ent,"control.tar.gz")
248 apt_inst.debExtract(file,Ent,"data.tar.gz")
250 print "Checked %d files (out of %d)." % (count, len(db_files.keys()))
252 ################################################################################
254 def check_missing_tar_gz_in_dsc():
257 print "Building list of database files..."
258 q = projectB.query("SELECT l.path, f.filename FROM files f, location l WHERE f.location = l.id AND f.filename ~ '.dsc$'")
261 print "Checking %d files..." % len(ql)
263 print "No files to check."
265 filename = os.path.abspath(i[0] + i[1])
267 # NB: don't enforce .dsc syntax
268 dsc = daklib.utils.parse_changes(filename)
270 daklib.utils.fubar("error parsing .dsc file '%s'." % (filename))
271 dsc_files = daklib.utils.build_file_list(dsc, is_a_dsc=1)
273 for file in dsc_files.keys():
274 m = daklib.utils.re_issource.match(file)
276 daklib.utils.fubar("%s not recognised as source." % (file))
278 if type == "orig.tar.gz" or type == "tar.gz":
281 daklib.utils.warn("%s has no .tar.gz in the .dsc file." % (file))
285 daklib.utils.warn("Found %s invalid .dsc files." % (count))
288 ################################################################################
290 def validate_sources(suite, component):
291 filename = "%s/dists/%s/%s/source/Sources.gz" % (Cnf["Dir::Root"], suite, component)
292 print "Processing %s..." % (filename)
293 # apt_pkg.ParseTagFile needs a real file handle and can't handle a GzipFile instance...
294 temp_filename = daklib.utils.temp_filename()
295 (result, output) = commands.getstatusoutput("gunzip -c %s > %s" % (filename, temp_filename))
297 sys.stderr.write("Gunzip invocation failed!\n%s\n" % (output))
299 sources = daklib.utils.open_file(temp_filename)
300 Sources = apt_pkg.ParseTagFile(sources)
301 while Sources.Step():
302 source = Sources.Section.Find('Package')
303 directory = Sources.Section.Find('Directory')
304 files = Sources.Section.Find('Files')
305 for i in files.split('\n'):
306 (md5, size, name) = i.split()
307 filename = "%s/%s/%s" % (Cnf["Dir::Root"], directory, name)
308 if not os.path.exists(filename):
309 if directory.find("potato") == -1:
310 print "W: %s missing." % (filename)
312 pool_location = daklib.utils.poolify (source, component)
313 pool_filename = "%s/%s/%s" % (Cnf["Dir::Pool"], pool_location, name)
314 if not os.path.exists(pool_filename):
315 print "E: %s missing (%s)." % (filename, pool_filename)
318 pool_filename = os.path.normpath(pool_filename)
319 filename = os.path.normpath(filename)
320 src = daklib.utils.clean_symlink(pool_filename, filename, Cnf["Dir::Root"])
321 print "Symlinking: %s -> %s" % (filename, src)
322 #os.symlink(src, filename)
324 os.unlink(temp_filename)
326 ########################################
328 def validate_packages(suite, component, architecture):
329 filename = "%s/dists/%s/%s/binary-%s/Packages.gz" \
330 % (Cnf["Dir::Root"], suite, component, architecture)
331 print "Processing %s..." % (filename)
332 # apt_pkg.ParseTagFile needs a real file handle and can't handle a GzipFile instance...
333 temp_filename = daklib.utils.temp_filename()
334 (result, output) = commands.getstatusoutput("gunzip -c %s > %s" % (filename, temp_filename))
336 sys.stderr.write("Gunzip invocation failed!\n%s\n" % (output))
338 packages = daklib.utils.open_file(temp_filename)
339 Packages = apt_pkg.ParseTagFile(packages)
340 while Packages.Step():
341 filename = "%s/%s" % (Cnf["Dir::Root"], Packages.Section.Find('Filename'))
342 if not os.path.exists(filename):
343 print "W: %s missing." % (filename)
345 os.unlink(temp_filename)
347 ########################################
349 def check_indices_files_exist():
350 for suite in [ "stable", "testing", "unstable" ]:
351 for component in Cnf.ValueList("Suite::%s::Components" % (suite)):
352 architectures = Cnf.ValueList("Suite::%s::Architectures" % (suite))
353 for arch in [ i.lower() for i in architectures ]:
355 validate_sources(suite, component)
359 validate_packages(suite, component, arch)
361 ################################################################################
363 def check_files_not_symlinks():
364 print "Building list of database files... ",
366 q = projectB.query("SELECT l.path, f.filename, f.id FROM files f, location l WHERE f.location = l.id")
367 print "done. (%d seconds)" % (int(time.time()-before))
368 q_files = q.getresult()
371 # q = projectB.query("SELECT l.path, c.name, l.id FROM location l, component c WHERE l.component = c.id")
372 # for i in q.getresult():
373 # path = os.path.normpath(i[0] + i[1])
374 # locations[path] = (i[0], i[2])
376 # q = projectB.query("BEGIN WORK")
378 filename = os.path.normpath(i[0] + i[1])
380 if os.access(filename, os.R_OK) == 0:
381 daklib.utils.warn("%s: doesn't exist." % (filename))
383 if os.path.islink(filename):
384 daklib.utils.warn("%s: is a symlink." % (filename))
385 # You probably don't want to use the rest of this...
386 # print "%s: is a symlink." % (filename)
387 # dest = os.readlink(filename)
388 # if not os.path.isabs(dest):
389 # dest = os.path.normpath(os.path.join(os.path.dirname(filename), dest))
390 # print "--> %s" % (dest)
391 # # Determine suitable location ID
392 # # [in what must be the suckiest way possible?]
394 # for path in locations.keys():
395 # if dest.find(path) == 0:
396 # (location, location_id) = locations[path]
398 # if not location_id:
399 # daklib.utils.fubar("Can't find location for %s (%s)." % (dest, filename))
400 # new_filename = dest.replace(location, "")
401 # q = projectB.query("UPDATE files SET filename = '%s', location = %s WHERE id = %s" % (new_filename, location_id, file_id))
402 # q = projectB.query("COMMIT WORK")
404 ################################################################################
406 def chk_bd_process_dir (unused, dirname, filenames):
407 for name in filenames:
408 if not name.endswith(".dsc"):
410 filename = os.path.abspath(dirname+'/'+name)
411 dsc = daklib.utils.parse_changes(filename)
412 for field_name in [ "build-depends", "build-depends-indep" ]:
413 field = dsc.get(field_name)
416 apt_pkg.ParseSrcDepends(field)
418 print "E: [%s] %s: %s" % (filename, field_name, field)
421 ################################################################################
423 def check_build_depends():
424 os.path.walk(Cnf["Dir::Root"], chk_bd_process_dir, None)
426 ################################################################################
429 global Cnf, projectB, db_files, waste, excluded
431 Cnf = daklib.utils.get_conf()
432 Arguments = [('h',"help","Check-Archive::Options::Help")]
434 if not Cnf.has_key("Check-Archive::Options::%s" % (i)):
435 Cnf["Check-Archive::Options::%s" % (i)] = ""
437 args = apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
439 Options = Cnf.SubTree("Check-Archive::Options")
444 daklib.utils.warn("dak check-archive requires at least one argument")
447 daklib.utils.warn("dak check-archive accepts only one argument")
449 mode = args[0].lower()
451 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
452 daklib.database.init(Cnf, projectB)
454 if mode == "md5sums":
456 elif mode == "files":
458 elif mode == "dsc-syntax":
460 elif mode == "missing-overrides":
462 elif mode == "source-in-one-dir":
463 check_source_in_one_dir()
464 elif mode == "timestamps":
466 elif mode == "tar-gz-in-dsc":
467 check_missing_tar_gz_in_dsc()
468 elif mode == "validate-indices":
469 check_indices_files_exist()
470 elif mode == "files-not-symlinks":
471 check_files_not_symlinks()
472 elif mode == "validate-builddeps":
473 check_build_depends()
475 daklib.utils.warn("unknown mode '%s'" % (mode))
478 ################################################################################
480 if __name__ == '__main__':