5 Adding table to get rid of queue/done checks
7 @contact: Debian FTP Master <ftpmaster@debian.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 ################################################################################
29 ################################################################################
35 from daklib.dak_exceptions import DBUpdateError, InvalidDscError, ChangesUnicodeError
36 from daklib.config import Config
37 from daklib.changes import Changes
38 from daklib.utils import parse_changes, warn, gpgv_get_status_output, process_gpgv_output
40 ################################################################################
42 def check_signature (sig_filename, data_filename=""):
44 "/home/joerg/keyring/keyrings/debian-keyring.gpg",
45 "/home/joerg/keyring/keyrings/debian-maintainers.gpg",
46 "/home/joerg/keyring/keyrings/debian-role-keys.gpg",
47 "/home/joerg/keyring/keyrings/emeritus-keyring.pgp",
48 "/home/joerg/keyring/keyrings/emeritus-keyring.gpg",
49 "/home/joerg/keyring/keyrings/removed-keys.gpg",
50 "/home/joerg/keyring/keyrings/removed-keys.pgp"
53 keyringargs = " ".join(["--keyring %s" % x for x in keyrings ])
55 # Build the command line
56 status_read, status_write = os.pipe()
57 cmd = "gpgv --status-fd %s %s %s" % (status_write, keyringargs, sig_filename)
59 # Invoke gpgv on the file
60 (output, status, exit_status) = gpgv_get_status_output(cmd, status_read, status_write)
62 # Process the status-fd output
63 (keywords, internal_error) = process_gpgv_output(status)
65 # If we failed to parse the status-fd output, let's just whine and bail now
67 warn("Couldn't parse signature")
70 # usually one would check for bad things here. We, however, do not care.
72 # Next check gpgv exited with a zero return code
74 warn("Couldn't parse signature")
77 # Sanity check the good stuff we expect
78 if not keywords.has_key("VALIDSIG"):
79 warn("Couldn't parse signature")
81 args = keywords["VALIDSIG"]
83 warn("Couldn't parse signature")
89 ################################################################################
92 print "Adding known_changes table"
97 CREATE TABLE known_changes (
98 id SERIAL PRIMARY KEY,
99 changesname TEXT NOT NULL,
100 seen TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(),
101 source TEXT NOT NULL,
102 binaries TEXT NOT NULL,
103 architecture TEXT NOT NULL,
104 version TEXT NOT NULL,
105 distribution TEXT NOT NULL,
106 urgency TEXT NOT NULL,
107 maintainer TEXT NOT NULL,
108 fingerprint TEXT NOT NULL,
109 changedby TEXT NOT NULL,
114 c.execute("CREATE INDEX changesname_ind ON known_changes(changesname)")
115 c.execute("CREATE INDEX changestimestamp_ind ON known_changes(seen)")
116 c.execute("CREATE INDEX changessource_ind ON known_changes(source)")
117 c.execute("CREATE INDEX changesdistribution_ind ON known_changes(distribution)")
118 c.execute("CREATE INDEX changesurgency_ind ON known_changes(urgency)")
120 c.execute("GRANT ALL ON known_changes TO ftpmaster;")
121 c.execute("GRANT SELECT ON known_changes TO public;")
123 c.execute("UPDATE config SET value = '18' WHERE name = 'db_revision'")
126 print "Done. Now looking for old changes files"
130 for directory in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
131 checkdir = cnf["Dir::Queue::%s" % (directory) ]
132 if os.path.exists(checkdir):
133 print "Looking into %s" % (checkdir)
134 for filename in os.listdir(checkdir):
135 if not filename.endswith(".changes"):
136 # Only interested in changes files.
140 print "Directory %s, file %7d, failures %3d. (%s)" % (directory, count, failure, filename)
142 changes.changes_file = filename
143 changesfile = os.path.join(checkdir, filename)
144 changes.changes = parse_changes(changesfile, signing_rules=-1)
145 changes.changes["fingerprint"] = check_signature(changesfile)
146 changes.add_known_changes(directory)
147 except InvalidDscError, line:
148 warn("syntax error in .dsc file '%s', line %s." % (f, line))
150 except ChangesUnicodeError:
151 warn("found invalid changes file, not properly utf-8 encoded")
154 except psycopg2.ProgrammingError, msg:
156 raise DBUpdateError, "Unable to apply knownchanges update 18, rollback issued. Error message : %s" % (str(msg))