3 """ Script to automate some parts of checking NEW packages """
4 # Copyright (C) 2000, 2001, 2002, 2003, 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 # <Omnic> elmo wrote docs?!!?!?!?!?!?!
23 # <aj> as if he wasn't scary enough before!!
24 # * aj imagines a little red furry toy sitting hunched over a computer
25 # tapping furiously and giggling to himself
26 # <aj> eventually he stops, and his heads slowly spins around and you
27 # see this really evil grin and then he sees you, and picks up a
28 # knife from beside the keyboard and throws it at you, and as you
29 # breathe your last breath, he starts giggling again
30 # <aj> but i should be telling this to my psychiatrist, not you guys,
33 ################################################################################
35 import errno, os, pg, re, sys, md5
36 import apt_pkg, apt_inst
37 from daklib import database
38 from daklib import utils
39 from daklib.regexes import html_escaping, re_html_escaping, re_version, re_spacestrip, \
40 re_contrib, re_nonfree, re_localhost, re_newlinespace, \
41 re_package, re_doc_directory
43 ################################################################################
48 Cnf = utils.get_conf()
49 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
50 database.init(Cnf, projectB)
52 printed_copyrights = {}
54 # default is to not output html.
57 ################################################################################
59 def usage (exit_code=0):
60 print """Usage: dak examine-package [PACKAGE]...
63 -h, --help show this help and exit
64 -H, --html-output output html page with inspection result
65 -f, --file-name filename for the html page
67 PACKAGE can be a .changes, .dsc, .deb or .udeb filename."""
71 ################################################################################
72 # probably xml.sax.saxutils would work as well
74 def escape_if_needed(s):
76 return re_html_escaping.sub(lambda x: html_escaping.get(x.group(0)), s)
80 def headline(s, level=2, bodyelement=None):
84 <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>
85 </thead>"""%{"bodyelement":bodyelement,"title":utils.html_escape(s)}
87 print "<h%d>%s</h%d>" % (level, utils.html_escape(s), level)
89 print "---- %s ----" % (s)
91 # Colour definitions, 'end' isn't really for use
95 'contrib': "\033[33m",
96 'nonfree': "\033[31m",
100 'maintainer': "\033[32m"}
103 'main': ('<span style="color: aqua">',"</span>"),
104 'contrib': ('<span style="color: yellow">',"</span>"),
105 'nonfree': ('<span style="color: red">',"</span>"),
106 'arch': ('<span style="color: green">',"</span>"),
107 'bold': ('<span style="font-weight: bold">',"</span>"),
108 'maintainer': ('<span style="color: green">',"</span>")}
110 def colour_output(s, colour):
112 return ("%s%s%s" % (html_colours[colour][0], utils.html_escape(s), html_colours[colour][1]))
114 return ("%s%s%s" % (ansi_colours[colour], s, ansi_colours['end']))
116 def escaped_text(s, strip=False):
120 return "<pre>%s</pre>" % (s)
124 def formatted_text(s, strip=False):
128 return "<pre>%s</pre>" % (utils.html_escape(s))
134 return """<tr><td>"""+s+"""</td></tr>"""
138 def format_field(k,v):
140 return """<tr><td class="key">%s:</td><td class="val">%s</td></tr>"""%(k,v)
142 return "%s: %s"%(k,v)
144 def foldable_output(title, elementnameprefix, content, norow=False):
145 d = {'elementnameprefix':elementnameprefix}
147 print """<div id="%(elementnameprefix)s-wrap"><a name="%(elementnameprefix)s" />
148 <table class="infobox rfc822">"""%d
149 headline(title, bodyelement="%(elementnameprefix)s-body"%d)
151 print """ <tbody id="%(elementnameprefix)s-body" class="infobody">"""%d
155 print output_row(content)
157 print """</tbody></table></div>"""
159 ################################################################################
161 def get_depends_parts(depend) :
162 v_match = re_version.match(depend)
164 d_parts = { 'name' : v_match.group(1), 'version' : v_match.group(2) }
166 d_parts = { 'name' : depend , 'version' : '' }
169 def get_or_list(depend) :
170 or_list = depend.split("|")
173 def get_comma_list(depend) :
174 dep_list = depend.split(",")
177 def split_depends (d_str) :
178 # creates a list of lists of dictionaries of depends (package,version relation)
180 d_str = re_spacestrip.sub('',d_str)
182 # first split depends string up amongs comma delimiter
183 dep_list = get_comma_list(d_str)
185 while d < len(dep_list):
186 # put depends into their own list
187 depends_tree.append([dep_list[d]])
190 while d < len(depends_tree):
192 # split up Or'd depends into a multi-item list
193 depends_tree[d] = get_or_list(depends_tree[d][0])
194 while k < len(depends_tree[d]):
195 # split depends into {package, version relation}
196 depends_tree[d][k] = get_depends_parts(depends_tree[d][k])
201 def read_control (filename):
208 deb_file = utils.open_file(filename)
210 extracts = apt_inst.debExtractControl(deb_file)
211 control = apt_pkg.ParseSection(extracts)
213 print formatted_text("can't parse control info")
219 control_keys = control.keys()
221 if control.has_key("Depends"):
222 depends_str = control.Find("Depends")
223 # create list of dependancy lists
224 depends = split_depends(depends_str)
226 if control.has_key("Recommends"):
227 recommends_str = control.Find("Recommends")
228 recommends = split_depends(recommends_str)
230 if control.has_key("Section"):
231 section_str = control.Find("Section")
233 c_match = re_contrib.search(section_str)
234 nf_match = re_nonfree.search(section_str)
237 section = colour_output(section_str, 'contrib')
240 section = colour_output(section_str, 'nonfree')
243 section = colour_output(section_str, 'main')
244 if control.has_key("Architecture"):
245 arch_str = control.Find("Architecture")
246 arch = colour_output(arch_str, 'arch')
248 if control.has_key("Maintainer"):
249 maintainer = control.Find("Maintainer")
250 localhost = re_localhost.search(maintainer)
253 maintainer = colour_output(maintainer, 'maintainer')
255 maintainer = escape_if_needed(maintainer)
257 return (control, control_keys, section, depends, recommends, arch, maintainer)
259 def read_changes_or_dsc (suite, filename):
262 dsc_file = utils.open_file(filename)
264 dsc = utils.parse_changes(filename)
266 return formatted_text("can't parse .dsc control info")
269 filecontents = strip_pgp_signature(filename)
271 for l in filecontents.split('\n'):
272 m = re.match(r'([-a-zA-Z0-9]*):', l)
274 keysinorder.append(m.group(1))
277 if k in ("build-depends","build-depends-indep"):
278 dsc[k] = create_depends_string(suite, split_depends(dsc[k]))
279 elif k == "architecture":
280 if (dsc["architecture"] != "any"):
281 dsc['architecture'] = colour_output(dsc["architecture"], 'arch')
282 elif k in ("files","changes","description"):
284 dsc[k] = formatted_text(dsc[k], strip=True)
286 dsc[k] = ('\n'+'\n'.join(map(lambda x: ' '+x, dsc[k].split('\n')))).rstrip()
288 dsc[k] = escape_if_needed(dsc[k])
290 keysinorder = filter(lambda x: not x.lower().startswith('checksums-'), keysinorder)
292 filecontents = '\n'.join(map(lambda x: format_field(x,dsc[x.lower()]), keysinorder))+'\n'
295 def create_depends_string (suite, depends_tree):
297 if suite == 'experimental':
298 suite_where = " in ('experimental','unstable')"
300 suite_where = " ='%s'" % suite
303 for l in depends_tree:
304 if (comma_count >= 2):
310 # doesn't do version lookup yet.
312 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))
318 if d['version'] != '' :
319 adepends += " (%s)" % (d['version'])
321 if i[2] == "contrib":
322 result += colour_output(adepends, "contrib")
323 elif i[2] == "non-free":
324 result += colour_output(adepends, "nonfree")
326 result += colour_output(adepends, "main")
329 if d['version'] != '' :
330 adepends += " (%s)" % (d['version'])
331 result += colour_output(adepends, "bold")
336 def output_deb_info(suite, filename):
337 (control, control_keys, section, depends, recommends, arch, maintainer) = read_control(filename)
340 return formatted_text("no control info")
342 for key in control_keys :
344 field_value = create_depends_string(suite, depends)
345 elif key == 'Recommends':
346 field_value = create_depends_string(suite, recommends)
347 elif key == 'Section':
348 field_value = section
349 elif key == 'Architecture':
351 elif key == 'Maintainer':
352 field_value = maintainer
353 elif key == 'Description':
355 field_value = formatted_text(control.Find(key), strip=True)
357 desc = control.Find(key)
358 desc = re_newlinespace.sub('\n ', desc)
359 field_value = escape_if_needed(desc)
361 field_value = escape_if_needed(control.Find(key))
362 to_print += " "+format_field(key,field_value)+'\n'
365 def do_command (command, filename, escaped=0):
366 o = os.popen("%s %s" % (command, filename))
368 return escaped_text(o.read())
370 return formatted_text(o.read())
372 def do_lintian (filename):
374 return do_command("lintian --show-overrides --color html", filename, 1)
376 return do_command("lintian --show-overrides --color always", filename, 1)
378 def get_copyright (deb_filename):
379 package = re_package.sub(r'\1', deb_filename)
380 o = os.popen("dpkg-deb -c %s | egrep 'usr(/share)?/doc/[^/]*/copyright' | awk '{print $6}' | head -n 1" % (deb_filename))
381 cright = o.read()[:-1]
384 return formatted_text("WARNING: No copyright found, please check package manually.")
386 doc_directory = re_doc_directory.sub(r'\1', cright)
387 if package != doc_directory:
388 return formatted_text("WARNING: wrong doc directory (expected %s, got %s)." % (package, doc_directory))
390 o = os.popen("dpkg-deb --fsys-tarfile %s | tar xvOf - %s 2>/dev/null" % (deb_filename, cright))
392 copyrightmd5 = md5.md5(cright).hexdigest()
395 if printed_copyrights.has_key(copyrightmd5) and printed_copyrights[copyrightmd5] != "%s (%s)" % (package, deb_filename):
396 res += formatted_text( "NOTE: Copyright is the same as %s.\n\n" % \
397 (printed_copyrights[copyrightmd5]))
399 printed_copyrights[copyrightmd5] = "%s (%s)" % (package, deb_filename)
400 return res+formatted_text(cright)
402 def check_dsc (suite, dsc_filename):
403 (dsc) = read_changes_or_dsc(suite, dsc_filename)
404 foldable_output(dsc_filename, "dsc", dsc, norow=True)
405 foldable_output("lintian check for %s" % dsc_filename, "source-lintian", do_lintian(dsc_filename))
407 def check_deb (suite, deb_filename):
408 filename = os.path.basename(deb_filename)
409 packagename = filename.split('_')[0]
411 if filename.endswith(".udeb"):
417 foldable_output("control file for %s" % (filename), "binary-%s-control"%packagename,
418 output_deb_info(suite, deb_filename), norow=True)
421 foldable_output("skipping lintian check for udeb", "binary-%s-lintian"%packagename,
424 foldable_output("lintian check for %s" % (filename), "binary-%s-lintian"%packagename,
425 do_lintian(deb_filename))
427 foldable_output("contents of %s" % (filename), "binary-%s-contents"%packagename,
428 do_command("dpkg -c", deb_filename))
431 foldable_output("skipping copyright for udeb", "binary-%s-copyright"%packagename,
434 foldable_output("copyright of %s" % (filename), "binary-%s-copyright"%packagename,
435 get_copyright(deb_filename))
437 foldable_output("file listing of %s" % (filename), "binary-%s-file-listing"%packagename,
438 do_command("ls -l", deb_filename))
440 # Read a file, strip the signature and return the modified contents as
442 def strip_pgp_signature (filename):
443 inputfile = utils.open_file (filename)
447 for line in inputfile.readlines():
455 if line.startswith("-----BEGIN PGP SIGNED MESSAGE"):
458 if line.startswith("-----BEGIN PGP SIGNATURE"):
461 if line.startswith("-----END PGP SIGNATURE"):
468 def display_changes(suite, changes_filename):
469 changes = read_changes_or_dsc(suite, changes_filename)
470 foldable_output(changes_filename, "changes", changes, norow=True)
472 def check_changes (changes_filename):
474 changes = utils.parse_changes (changes_filename)
475 except ChangesUnicodeError:
476 utils.warn("Encoding problem with changes file %s" % (changes_filename))
477 display_changes(changes['distribution'], changes_filename)
479 files = utils.build_file_list(changes)
480 for f in files.keys():
481 if f.endswith(".deb") or f.endswith(".udeb"):
482 check_deb(changes['distribution'], f)
483 if f.endswith(".dsc"):
484 check_dsc(changes['distribution'], f)
488 global Cnf, projectB, db_files, waste, excluded
490 # Cnf = utils.get_conf()
492 Arguments = [('h',"help","Examine-Package::Options::Help"),
493 ('H',"html-output","Examine-Package::Options::Html-Output"),
495 for i in [ "Help", "Html-Output", "partial-html" ]:
496 if not Cnf.has_key("Examine-Package::Options::%s" % (i)):
497 Cnf["Examine-Package::Options::%s" % (i)] = ""
499 args = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
500 Options = Cnf.SubTree("Examine-Package::Options")
505 stdout_fd = sys.stdout
509 if not Options["Html-Output"]:
510 # Pipe output for each argument through less
511 less_fd = os.popen("less -R -", 'w', 0)
512 # -R added to display raw control chars for colour
515 if f.endswith(".changes"):
517 elif f.endswith(".deb") or f.endswith(".udeb"):
518 # default to unstable when we don't have a .changes file
519 # perhaps this should be a command line option?
520 check_deb('unstable', file)
521 elif f.endswith(".dsc"):
522 check_dsc('unstable', f)
524 utils.fubar("Unrecognised file type: '%s'." % (f))
526 if not Options["Html-Output"]:
527 # Reset stdout here so future less invocations aren't FUBAR
529 sys.stdout = stdout_fd
531 if errno.errorcode[e.errno] == 'EPIPE':
532 utils.warn("[examine-package] Caught EPIPE; skipping.")
536 except KeyboardInterrupt:
537 utils.warn("[examine-package] Caught C-c; skipping.")
540 #######################################################################################
542 if __name__ == '__main__':