4 Script to automate some parts of checking NEW packages
6 @contact: Debian FTP Master <ftpmaster@debian.org>
7 @copyright: 2000, 2001, 2002, 2003, 2006 James Troup <james@nocrew.org>
8 @copyright: 2009 Joerg Jaspert <joerg@debian.org>
9 @license: GNU General Public License version 2 or later
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 ################################################################################
28 # <Omnic> elmo wrote docs?!!?!?!?!?!?!
29 # <aj> as if he wasn't scary enough before!!
30 # * aj imagines a little red furry toy sitting hunched over a computer
31 # tapping furiously and giggling to himself
32 # <aj> eventually he stops, and his heads slowly spins around and you
33 # see this really evil grin and then he sees you, and picks up a
34 # knife from beside the keyboard and throws it at you, and as you
35 # breathe your last breath, he starts giggling again
36 # <aj> but i should be telling this to my psychiatrist, not you guys,
39 ################################################################################
51 from daklib import database
52 from daklib import utils
53 from daklib.regexes import html_escaping, re_html_escaping, re_version, re_spacestrip, \
54 re_contrib, re_nonfree, re_localhost, re_newlinespace, \
55 re_package, re_doc_directory
57 ################################################################################
62 Cnf = utils.get_conf()
63 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
64 database.init(Cnf, projectB)
66 printed_copyrights = {}
67 package_relations = {} #: Store relations of packages for later output
69 # default is to not output html.
72 ################################################################################
74 def usage (exit_code=0):
75 print """Usage: dak examine-package [PACKAGE]...
78 -h, --help show this help and exit
79 -H, --html-output output html page with inspection result
80 -f, --file-name filename for the html page
82 PACKAGE can be a .changes, .dsc, .deb or .udeb filename."""
86 ################################################################################
87 # probably xml.sax.saxutils would work as well
89 def escape_if_needed(s):
91 return re_html_escaping.sub(lambda x: html_escaping.get(x.group(0)), s)
95 def headline(s, level=2, bodyelement=None):
99 <tr><th colspan="2" class="title" onclick="toggle('%(bodyelement)s', 'table-row-group', 'table-row-group')">%(title)s <span class="toggle-msg">(click to toggle)</span></th></tr>
100 </thead>"""%{"bodyelement":bodyelement,"title":utils.html_escape(s)}
102 print "<h%d>%s</h%d>" % (level, utils.html_escape(s), level)
104 print "---- %s ----" % (s)
106 # Colour definitions, 'end' isn't really for use
110 'contrib': "\033[33m",
111 'nonfree': "\033[31m",
115 'maintainer': "\033[32m"}
118 'main': ('<span style="color: aqua">',"</span>"),
119 'contrib': ('<span style="color: yellow">',"</span>"),
120 'nonfree': ('<span style="color: red">',"</span>"),
121 'arch': ('<span style="color: green">',"</span>"),
122 'bold': ('<span style="font-weight: bold">',"</span>"),
123 'maintainer': ('<span style="color: green">',"</span>")}
125 def colour_output(s, colour):
127 return ("%s%s%s" % (html_colours[colour][0], utils.html_escape(s), html_colours[colour][1]))
129 return ("%s%s%s" % (ansi_colours[colour], s, ansi_colours['end']))
131 def escaped_text(s, strip=False):
135 return "<pre>%s</pre>" % (s)
139 def formatted_text(s, strip=False):
143 return "<pre>%s</pre>" % (utils.html_escape(s))
149 return """<tr><td>"""+s+"""</td></tr>"""
153 def format_field(k,v):
155 return """<tr><td class="key">%s:</td><td class="val">%s</td></tr>"""%(k,v)
157 return "%s: %s"%(k,v)
159 def foldable_output(title, elementnameprefix, content, norow=False):
160 d = {'elementnameprefix':elementnameprefix}
162 print """<div id="%(elementnameprefix)s-wrap"><a name="%(elementnameprefix)s" />
163 <table class="infobox rfc822">"""%d
164 headline(title, bodyelement="%(elementnameprefix)s-body"%d)
166 print """ <tbody id="%(elementnameprefix)s-body" class="infobody">"""%d
170 print output_row(content)
172 print """</tbody></table></div>"""
174 ################################################################################
176 def get_depends_parts(depend) :
177 v_match = re_version.match(depend)
179 d_parts = { 'name' : v_match.group(1), 'version' : v_match.group(2) }
181 d_parts = { 'name' : depend , 'version' : '' }
184 def get_or_list(depend) :
185 or_list = depend.split("|")
188 def get_comma_list(depend) :
189 dep_list = depend.split(",")
192 def split_depends (d_str) :
193 # creates a list of lists of dictionaries of depends (package,version relation)
195 d_str = re_spacestrip.sub('',d_str)
197 # first split depends string up amongs comma delimiter
198 dep_list = get_comma_list(d_str)
200 while d < len(dep_list):
201 # put depends into their own list
202 depends_tree.append([dep_list[d]])
205 while d < len(depends_tree):
207 # split up Or'd depends into a multi-item list
208 depends_tree[d] = get_or_list(depends_tree[d][0])
209 while k < len(depends_tree[d]):
210 # split depends into {package, version relation}
211 depends_tree[d][k] = get_depends_parts(depends_tree[d][k])
216 def read_control (filename):
223 deb_file = utils.open_file(filename)
225 extracts = apt_inst.debExtractControl(deb_file)
226 control = apt_pkg.ParseSection(extracts)
228 print formatted_text("can't parse control info")
234 control_keys = control.keys()
236 if control.has_key("Depends"):
237 depends_str = control.Find("Depends")
238 # create list of dependancy lists
239 depends = split_depends(depends_str)
241 if control.has_key("Recommends"):
242 recommends_str = control.Find("Recommends")
243 recommends = split_depends(recommends_str)
245 if control.has_key("Section"):
246 section_str = control.Find("Section")
248 c_match = re_contrib.search(section_str)
249 nf_match = re_nonfree.search(section_str)
252 section = colour_output(section_str, 'contrib')
255 section = colour_output(section_str, 'nonfree')
258 section = colour_output(section_str, 'main')
259 if control.has_key("Architecture"):
260 arch_str = control.Find("Architecture")
261 arch = colour_output(arch_str, 'arch')
263 if control.has_key("Maintainer"):
264 maintainer = control.Find("Maintainer")
265 localhost = re_localhost.search(maintainer)
268 maintainer = colour_output(maintainer, 'maintainer')
270 maintainer = escape_if_needed(maintainer)
272 return (control, control_keys, section, depends, recommends, arch, maintainer)
274 def read_changes_or_dsc (suite, filename):
277 dsc_file = utils.open_file(filename)
279 dsc = utils.parse_changes(filename)
281 return formatted_text("can't parse .dsc control info")
284 filecontents = strip_pgp_signature(filename)
286 for l in filecontents.split('\n'):
287 m = re.match(r'([-a-zA-Z0-9]*):', l)
289 keysinorder.append(m.group(1))
292 if k in ("build-depends","build-depends-indep"):
293 dsc[k] = create_depends_string(suite, split_depends(dsc[k]))
294 elif k == "architecture":
295 if (dsc["architecture"] != "any"):
296 dsc['architecture'] = colour_output(dsc["architecture"], 'arch')
297 elif k in ("files","changes","description"):
299 dsc[k] = formatted_text(dsc[k], strip=True)
301 dsc[k] = ('\n'+'\n'.join(map(lambda x: ' '+x, dsc[k].split('\n')))).rstrip()
303 dsc[k] = escape_if_needed(dsc[k])
305 keysinorder = filter(lambda x: not x.lower().startswith('checksums-'), keysinorder)
307 filecontents = '\n'.join(map(lambda x: format_field(x,dsc[x.lower()]), keysinorder))+'\n'
310 def create_depends_string (suite, depends_tree):
312 if suite == 'experimental':
313 suite_where = " in ('experimental','unstable')"
315 suite_where = " ='%s'" % suite
318 for l in depends_tree:
319 if (comma_count >= 2):
325 # doesn't do version lookup yet.
327 q = projectB.query("SELECT DISTINCT(b.package), b.version, c.name, su.suite_name FROM binaries b, files fi, location l, component c, bin_associations ba, suite su WHERE b.package='%s' AND b.file = fi.id AND fi.location = l.id AND l.component = c.id AND ba.bin=b.id AND ba.suite = su.id AND su.suite_name %s ORDER BY b.version desc" % (d['name'], suite_where))
333 if d['version'] != '' :
334 adepends += " (%s)" % (d['version'])
336 if i[2] == "contrib":
337 result += colour_output(adepends, "contrib")
338 elif i[2] == "non-free":
339 result += colour_output(adepends, "nonfree")
341 result += colour_output(adepends, "main")
344 if d['version'] != '' :
345 adepends += " (%s)" % (d['version'])
346 result += colour_output(adepends, "bold")
351 def output_package_relations ():
353 Output the package relations, if there is more than one package checked in this run.
356 if len(package_relations) < 2:
357 # Only list something if we have more than one binary to compare
361 for package in package_relations:
362 for relation in package_relations[package]:
363 to_print += "%-15s: (%s) %s\n" % (package, relation, package_relations[package][relation])
365 package_relations.clear()
366 foldable_output("Package relations", "relations", to_print)
368 def output_deb_info(suite, filename, packagename):
369 (control, control_keys, section, depends, recommends, arch, maintainer) = read_control(filename)
372 return formatted_text("no control info")
374 if not package_relations.has_key(packagename):
375 package_relations[packagename] = {}
376 for key in control_keys :
378 field_value = create_depends_string(suite, depends)
379 package_relations[packagename][key] = field_value
380 elif key == 'Recommends':
381 field_value = create_depends_string(suite, recommends)
382 package_relations[packagename][key] = field_value
383 elif key == 'Section':
384 field_value = section
385 elif key == 'Architecture':
387 elif key == 'Maintainer':
388 field_value = maintainer
389 elif key == 'Description':
391 field_value = formatted_text(control.Find(key), strip=True)
393 desc = control.Find(key)
394 desc = re_newlinespace.sub('\n ', desc)
395 field_value = escape_if_needed(desc)
397 field_value = escape_if_needed(control.Find(key))
398 to_print += " "+format_field(key,field_value)+'\n'
401 def do_command (command, filename, escaped=0):
402 o = os.popen("%s %s" % (command, filename))
404 return escaped_text(o.read())
406 return formatted_text(o.read())
408 def do_lintian (filename):
410 return do_command("lintian --show-overrides --color html", filename, 1)
412 return do_command("lintian --show-overrides --color always", filename, 1)
414 def get_copyright (deb_filename):
415 package = re_package.sub(r'\1', deb_filename)
416 o = os.popen("dpkg-deb -c %s | egrep 'usr(/share)?/doc/[^/]*/copyright' | awk '{print $6}' | head -n 1" % (deb_filename))
417 cright = o.read()[:-1]
420 return formatted_text("WARNING: No copyright found, please check package manually.")
422 doc_directory = re_doc_directory.sub(r'\1', cright)
423 if package != doc_directory:
424 return formatted_text("WARNING: wrong doc directory (expected %s, got %s)." % (package, doc_directory))
426 o = os.popen("dpkg-deb --fsys-tarfile %s | tar xvOf - %s 2>/dev/null" % (deb_filename, cright))
428 copyrightmd5 = md5.md5(cright).hexdigest()
431 if printed_copyrights.has_key(copyrightmd5) and printed_copyrights[copyrightmd5] != "%s (%s)" % (package, deb_filename):
432 res += formatted_text( "NOTE: Copyright is the same as %s.\n\n" % \
433 (printed_copyrights[copyrightmd5]))
435 printed_copyrights[copyrightmd5] = "%s (%s)" % (package, deb_filename)
436 return res+formatted_text(cright)
438 def get_readme_source (dsc_filename):
439 tempdir = utils.temp_dirname()
442 cmd = "dpkg-source --no-check --no-copy -x %s %s" % (dsc_filename, tempdir)
443 (result, output) = commands.getstatusoutput(cmd)
445 res = "How is education supposed to make me feel smarter? Besides, every time I learn something new, it pushes some\n old stuff out of my brain. Remember when I took that home winemaking course, and I forgot how to drive?\n"
446 res += "Error, couldn't extract source, WTF?\n"
447 res += "'dpkg-source -x' failed. return code: %s.\n\n" % (result)
451 path = os.path.join(tempdir, 'debian/README.source')
453 if os.path.exists(path):
454 res += do_command("cat", path)
456 res += "No README.source in this package\n\n"
459 shutil.rmtree(tempdir)
461 if errno.errorcode[e.errno] != 'EACCES':
462 res += "%s: couldn't remove tmp dir %s for source tree." % (dsc_filename, tempdir)
466 def check_dsc (suite, dsc_filename):
467 (dsc) = read_changes_or_dsc(suite, dsc_filename)
468 foldable_output(dsc_filename, "dsc", dsc, norow=True)
469 foldable_output("lintian check for %s" % dsc_filename, "source-lintian", do_lintian(dsc_filename))
470 foldable_output("README.source for %s" % dsc_filename, "source-readmesource", get_readme_source(dsc_filename))
472 def check_deb (suite, deb_filename):
473 filename = os.path.basename(deb_filename)
474 packagename = filename.split('_')[0]
476 if filename.endswith(".udeb"):
482 foldable_output("control file for %s" % (filename), "binary-%s-control"%packagename,
483 output_deb_info(suite, deb_filename, packagename), norow=True)
486 foldable_output("skipping lintian check for udeb", "binary-%s-lintian"%packagename,
489 foldable_output("lintian check for %s" % (filename), "binary-%s-lintian"%packagename,
490 do_lintian(deb_filename))
492 foldable_output("contents of %s" % (filename), "binary-%s-contents"%packagename,
493 do_command("dpkg -c", deb_filename))
496 foldable_output("skipping copyright for udeb", "binary-%s-copyright"%packagename,
499 foldable_output("copyright of %s" % (filename), "binary-%s-copyright"%packagename,
500 get_copyright(deb_filename))
502 foldable_output("file listing of %s" % (filename), "binary-%s-file-listing"%packagename,
503 do_command("ls -l", deb_filename))
505 # Read a file, strip the signature and return the modified contents as
507 def strip_pgp_signature (filename):
508 inputfile = utils.open_file (filename)
512 for line in inputfile.readlines():
520 if line.startswith("-----BEGIN PGP SIGNED MESSAGE"):
523 if line.startswith("-----BEGIN PGP SIGNATURE"):
526 if line.startswith("-----END PGP SIGNATURE"):
533 def display_changes(suite, changes_filename):
534 changes = read_changes_or_dsc(suite, changes_filename)
535 foldable_output(changes_filename, "changes", changes, norow=True)
537 def check_changes (changes_filename):
539 changes = utils.parse_changes (changes_filename)
540 except ChangesUnicodeError:
541 utils.warn("Encoding problem with changes file %s" % (changes_filename))
542 display_changes(changes['distribution'], changes_filename)
544 files = utils.build_file_list(changes)
545 for f in files.keys():
546 if f.endswith(".deb") or f.endswith(".udeb"):
547 check_deb(changes['distribution'], f)
548 if f.endswith(".dsc"):
549 check_dsc(changes['distribution'], f)
553 global Cnf, projectB, db_files, waste, excluded
555 # Cnf = utils.get_conf()
557 Arguments = [('h',"help","Examine-Package::Options::Help"),
558 ('H',"html-output","Examine-Package::Options::Html-Output"),
560 for i in [ "Help", "Html-Output", "partial-html" ]:
561 if not Cnf.has_key("Examine-Package::Options::%s" % (i)):
562 Cnf["Examine-Package::Options::%s" % (i)] = ""
564 args = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
565 Options = Cnf.SubTree("Examine-Package::Options")
570 stdout_fd = sys.stdout
574 if not Options["Html-Output"]:
575 # Pipe output for each argument through less
576 less_fd = os.popen("less -R -", 'w', 0)
577 # -R added to display raw control chars for colour
580 if f.endswith(".changes"):
582 elif f.endswith(".deb") or f.endswith(".udeb"):
583 # default to unstable when we don't have a .changes file
584 # perhaps this should be a command line option?
585 check_deb('unstable', file)
586 elif f.endswith(".dsc"):
587 check_dsc('unstable', f)
589 utils.fubar("Unrecognised file type: '%s'." % (f))
591 output_package_relations()
592 if not Options["Html-Output"]:
593 # Reset stdout here so future less invocations aren't FUBAR
595 sys.stdout = stdout_fd
597 if errno.errorcode[e.errno] == 'EPIPE':
598 utils.warn("[examine-package] Caught EPIPE; skipping.")
602 except KeyboardInterrupt:
603 utils.warn("[examine-package] Caught C-c; skipping.")
606 #######################################################################################
608 if __name__ == '__main__':