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-keyring.pgp",
46 "/home/joerg/keyring/keyrings/debian-maintainers.gpg",
47 "/home/joerg/keyring/keyrings/debian-role-keys.gpg",
48 "/home/joerg/keyring/keyrings/emeritus-keyring.pgp",
49 "/home/joerg/keyring/keyrings/emeritus-keyring.gpg",
50 "/home/joerg/keyring/keyrings/removed-keys.gpg",
51 "/home/joerg/keyring/keyrings/removed-keys.pgp"
54 keyringargs = " ".join(["--keyring %s" % x for x in keyrings ])
56 # Build the command line
57 status_read, status_write = os.pipe()
58 cmd = "gpgv --status-fd %s %s %s" % (status_write, keyringargs, sig_filename)
60 # Invoke gpgv on the file
61 (output, status, exit_status) = gpgv_get_status_output(cmd, status_read, status_write)
63 # Process the status-fd output
64 (keywords, internal_error) = process_gpgv_output(status)
66 # If we failed to parse the status-fd output, let's just whine and bail now
68 warn("Couldn't parse signature")
71 # usually one would check for bad things here. We, however, do not care.
73 # Next check gpgv exited with a zero return code
75 warn("Couldn't parse signature")
78 # Sanity check the good stuff we expect
79 if not keywords.has_key("VALIDSIG"):
80 warn("Couldn't parse signature")
82 args = keywords["VALIDSIG"]
84 warn("Couldn't parse signature")
90 ################################################################################
93 print "Adding known_changes table"
98 CREATE TABLE known_changes (
99 id SERIAL PRIMARY KEY,
100 changesname TEXT NOT NULL,
101 seen TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(),
102 source TEXT NOT NULL,
103 binaries TEXT NOT NULL,
104 architecture TEXT NOT NULL,
105 version TEXT NOT NULL,
106 distribution TEXT NOT NULL,
107 urgency TEXT NOT NULL,
108 maintainer TEXT NOT NULL,
109 fingerprint TEXT NOT NULL,
110 changedby TEXT NOT NULL,
115 c.execute("CREATE INDEX changesname_ind ON known_changes(changesname)")
116 c.execute("CREATE INDEX changestimestamp_ind ON known_changes(seen)")
117 c.execute("CREATE INDEX changessource_ind ON known_changes(source)")
118 c.execute("CREATE INDEX changesdistribution_ind ON known_changes(distribution)")
119 c.execute("CREATE INDEX changesurgency_ind ON known_changes(urgency)")
121 c.execute("GRANT ALL ON known_changes TO ftpmaster;")
122 c.execute("GRANT SELECT ON known_changes TO public;")
124 c.execute("UPDATE config SET value = '18' WHERE name = 'db_revision'")
127 print "Done. Now looking for old changes files"
131 for directory in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
132 checkdir = cnf["Dir::Queue::%s" % (directory) ]
133 if os.path.exists(checkdir):
134 print "Looking into %s" % (checkdir)
135 for filename in os.listdir(checkdir):
136 if not filename.endswith(".changes"):
137 # Only interested in changes files.
141 print "Directory %s, file %7d, failures %3d. (%s)" % (directory, count, failure, filename)
143 changes.changes_file = filename
144 changesfile = os.path.join(checkdir, filename)
145 changes.changes = parse_changes(changesfile, signing_rules=-1)
146 changes.changes["fingerprint"] = check_signature(changesfile)
147 changes.add_known_changes(directory)
148 except InvalidDscError, line:
149 warn("syntax error in .dsc file '%s', line %s." % (f, line))
151 except ChangesUnicodeError:
152 warn("found invalid changes file, not properly utf-8 encoded")
155 except psycopg2.ProgrammingError, msg:
157 raise DBUpdateError, "Unable to apply knownchanges update 18, rollback issued. Error message : %s" % (str(msg))