]> git.decadent.org.uk Git - dak.git/blob - jennifer
2005-01-14 Anthony Towns <ajt@debian.org> * kelly: when UNACCEPTing, don't double...
[dak.git] / jennifer
1 #!/usr/bin/env python
2
3 # Checks Debian packages from Incoming
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004  James Troup <james@nocrew.org>
5 # $Id: jennifer,v 1.55 2005-01-14 14:07:17 ajt Exp $
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21 # Originally based on dinstall by Guy Maor <maor@debian.org>
22
23 ################################################################################
24
25 # Computer games don't affect kids. I mean if Pacman affected our generation as
26 # kids, we'd all run around in a darkened room munching pills and listening to
27 # repetitive music.
28 #         -- Unknown
29
30 ################################################################################
31
32 import commands, errno, fcntl, os, re, shutil, stat, sys, time, tempfile, traceback;
33 import apt_inst, apt_pkg;
34 import db_access, katie, logging, utils;
35
36 from types import *;
37
38 ################################################################################
39
40 re_valid_version = re.compile(r"^([0-9]+:)?[0-9A-Za-z\.\-\+:]+$");
41 re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$");
42 re_changelog_versions = re.compile(r"^\w[-+0-9a-z.]+ \([^\(\) \t]+\)");
43 re_strip_revision = re.compile(r"-([^-]+)$");
44
45 ################################################################################
46
47 # Globals
48 jennifer_version = "$Revision: 1.55 $";
49
50 Cnf = None;
51 Options = None;
52 Logger = None;
53 Katie = None;
54
55 reprocess = 0;
56 in_holding = {};
57
58 # Aliases to the real vars in the Katie class; hysterical raisins.
59 reject_message = "";
60 changes = {};
61 dsc = {};
62 dsc_files = {};
63 files = {};
64 pkg = {};
65
66 ###############################################################################
67
68 def init():
69     global Cnf, Options, Katie, changes, dsc, dsc_files, files, pkg;
70
71     apt_pkg.init();
72
73     Cnf = apt_pkg.newConfiguration();
74     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
75
76     Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
77                  ('h',"help","Dinstall::Options::Help"),
78                  ('n',"no-action","Dinstall::Options::No-Action"),
79                  ('p',"no-lock", "Dinstall::Options::No-Lock"),
80                  ('s',"no-mail", "Dinstall::Options::No-Mail"),
81                  ('V',"version","Dinstall::Options::Version")];
82
83     for i in ["automatic", "help", "no-action", "no-lock", "no-mail",
84               "override-distribution", "version"]:
85         Cnf["Dinstall::Options::%s" % (i)] = "";
86
87     changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
88     Options = Cnf.SubTree("Dinstall::Options")
89
90     if Options["Help"]:
91         usage();
92     elif Options["Version"]:
93         print "jennifer %s" % (jennifer_version);
94         sys.exit(0);
95
96     Katie = katie.Katie(Cnf);
97
98     changes = Katie.pkg.changes;
99     dsc = Katie.pkg.dsc;
100     dsc_files = Katie.pkg.dsc_files;
101     files = Katie.pkg.files;
102     pkg = Katie.pkg;
103
104     return changes_files;
105
106 ################################################################################
107
108 def usage (exit_code=0):
109     print """Usage: dinstall [OPTION]... [CHANGES]...
110   -a, --automatic           automatic run
111   -h, --help                show this help and exit.
112   -n, --no-action           don't do anything
113   -p, --no-lock             don't check lockfile !! for cron.daily only !!
114   -s, --no-mail             don't send any mail
115   -V, --version             display the version number and exit"""
116     sys.exit(exit_code)
117
118 ################################################################################
119
120 def reject (str, prefix="Rejected: "):
121     global reject_message;
122     if str:
123         reject_message += prefix + str + "\n";
124
125 ################################################################################
126
127 def copy_to_holding(filename):
128     global in_holding;
129
130     base_filename = os.path.basename(filename);
131
132     dest = Cnf["Dir::Queue::Holding"] + '/' + base_filename;
133     try:
134         fd = os.open(dest, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0640);
135         os.close(fd);
136     except OSError, e:
137         # Shouldn't happen, but will if, for example, someone lists a
138         # file twice in the .changes.
139         if errno.errorcode[e.errno] == 'EEXIST':
140             reject("%s: already exists in holding area; can not overwrite." % (base_filename));
141             return;
142         raise;
143
144     try:
145         shutil.copy(filename, dest);
146     except IOError, e:
147         # In either case (ENOENT or EACCES) we want to remove the
148         # O_CREAT | O_EXCLed ghost file, so add the file to the list
149         # of 'in holding' even if it's not the real file.
150         if errno.errorcode[e.errno] == 'ENOENT':
151             reject("%s: can not copy to holding area: file not found." % (base_filename));
152             os.unlink(dest);
153             return;
154         elif errno.errorcode[e.errno] == 'EACCES':
155             reject("%s: can not copy to holding area: read permission denied." % (base_filename));
156             os.unlink(dest);
157             return;
158         raise;
159
160     in_holding[base_filename] = "";
161
162 ################################################################################
163
164 def clean_holding():
165     global in_holding;
166
167     cwd = os.getcwd();
168     os.chdir(Cnf["Dir::Queue::Holding"]);
169     for file in in_holding.keys():
170         if os.path.exists(file):
171             if file.find('/') != -1:
172                 utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (file));
173             else:
174                 os.unlink(file);
175     in_holding = {};
176     os.chdir(cwd);
177
178 ################################################################################
179
180 def check_changes():
181     filename = pkg.changes_file;
182
183     # Parse the .changes field into a dictionary
184     try:
185         changes.update(utils.parse_changes(filename));
186     except utils.cant_open_exc:
187         reject("%s: can't read file." % (filename));
188         return 0;
189     except utils.changes_parse_error_exc, line:
190         reject("%s: parse error, can't grok: %s." % (filename, line));
191         return 0;
192
193     # Parse the Files field from the .changes into another dictionary
194     try:
195         files.update(utils.build_file_list(changes));
196     except utils.changes_parse_error_exc, line:
197         reject("%s: parse error, can't grok: %s." % (filename, line));
198     except utils.nk_format_exc, format:
199         reject("%s: unknown format '%s'." % (filename, format));
200         return 0;
201
202     # Check for mandatory fields
203     for i in ("source", "binary", "architecture", "version", "distribution",
204               "maintainer", "files", "changes"):
205         if not changes.has_key(i):
206             reject("%s: Missing mandatory field `%s'." % (filename, i));
207             return 0    # Avoid <undef> errors during later tests
208
209     # Split multi-value fields into a lower-level dictionary
210     for i in ("architecture", "distribution", "binary", "closes"):
211         o = changes.get(i, "")
212         if o != "":
213             del changes[i]
214         changes[i] = {}
215         for j in o.split():
216             changes[i][j] = 1
217
218     # Fix the Maintainer: field to be RFC822/2047 compatible
219     try:
220         (changes["maintainer822"], changes["maintainer2047"],
221          changes["maintainername"], changes["maintaineremail"]) = \
222          utils.fix_maintainer (changes["maintainer"]);
223     except utils.ParseMaintError, msg:
224         reject("%s: Maintainer field ('%s') failed to parse: %s" \
225                % (filename, changes["maintainer"], msg));
226
227     # ...likewise for the Changed-By: field if it exists.
228     try:
229         (changes["changedby822"], changes["changedby2047"],
230          changes["changedbyname"], changes["changedbyemail"]) = \
231          utils.fix_maintainer (changes.get("changed-by", ""));
232     except utils.ParseMaintError, msg:
233         reject("%s: Changed-By field ('%s') failed to parse: %s" \
234                % (filename, changes["changed-by"], msg));
235
236     # Ensure all the values in Closes: are numbers
237     if changes.has_key("closes"):
238         for i in changes["closes"].keys():
239             if katie.re_isanum.match (i) == None:
240                 reject("%s: `%s' from Closes field isn't a number." % (filename, i));
241
242
243     # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
244     changes["chopversion"] = utils.re_no_epoch.sub('', changes["version"])
245     changes["chopversion2"] = utils.re_no_revision.sub('', changes["chopversion"])
246
247     # Check there isn't already a changes file of the same name in one
248     # of the queue directories.
249     base_filename = os.path.basename(filename);
250     for dir in [ "Accepted", "Byhand", "Done", "New" ]:
251         if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+base_filename):
252             reject("%s: a file with this name already exists in the %s directory." % (base_filename, dir));
253
254     # Check the .changes is non-empty
255     if not files:
256         reject("%s: nothing to do (Files field is empty)." % (base_filename))
257         return 0;
258
259     return 1;
260
261 ################################################################################
262
263 def check_distributions():
264     "Check and map the Distribution field of a .changes file."
265
266     # Handle suite mappings
267     for map in Cnf.ValueList("SuiteMappings"):
268         args = map.split();
269         type = args[0];
270         if type == "map" or type == "silent-map":
271             (source, dest) = args[1:3];
272             if changes["distribution"].has_key(source):
273                 del changes["distribution"][source]
274                 changes["distribution"][dest] = 1;
275                 if type != "silent-map":
276                     reject("Mapping %s to %s." % (source, dest),"");
277             if changes.has_key("distribution-version"):
278                 if changes["distribution-version"].has_key(source):
279                     changes["distribution-version"][source]=dest
280         elif type == "map-unreleased":
281             (source, dest) = args[1:3];
282             if changes["distribution"].has_key(source):
283                 for arch in changes["architecture"].keys():
284                     if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
285                         reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"");
286                         del changes["distribution"][source];
287                         changes["distribution"][dest] = 1;
288                         break;
289         elif type == "ignore":
290             suite = args[1];
291             if changes["distribution"].has_key(suite):
292                 del changes["distribution"][suite];
293                 reject("Ignoring %s as a target suite." % (suite), "Warning: ");
294         elif type == "reject":
295             suite = args[1];
296             if changes["distribution"].has_key(suite):
297                 reject("Uploads to %s are not accepted." % (suite));
298         elif type == "propup-version":
299             # give these as "uploaded-to(non-mapped) suites-to-add-when-upload-obsoletes"
300             #
301             # changes["distribution-version"] looks like: {'testing': 'testing-proposed-updates'}
302             if args[1] in changes["distribution"]:
303                 changes.setdefault("distribution-version", {})
304                 for suite in args[2:]: changes["distribution-version"][suite]=suite
305
306     # Ensure there is (still) a target distribution
307     if changes["distribution"].keys() == []:
308         reject("no valid distribution.");
309
310     # Ensure target distributions exist
311     for suite in changes["distribution"].keys():
312         if not Cnf.has_key("Suite::%s" % (suite)):
313             reject("Unknown distribution `%s'." % (suite));
314
315 ################################################################################
316
317 def check_files():
318     global reprocess
319
320     archive = utils.where_am_i();
321     file_keys = files.keys();
322
323     # if reprocess is 2 we've already done this and we're checking
324     # things again for the new .orig.tar.gz.
325     # [Yes, I'm fully aware of how disgusting this is]
326     if not Options["No-Action"] and reprocess < 2:
327         cwd = os.getcwd();
328         os.chdir(pkg.directory);
329         for file in file_keys:
330             copy_to_holding(file);
331         os.chdir(cwd);
332
333     # Check there isn't already a .changes or .katie file of the same name in
334     # the proposed-updates "CopyChanges" or "CopyKatie" storage directories.
335     # [NB: this check must be done post-suite mapping]
336     base_filename = os.path.basename(pkg.changes_file);
337     katie_filename = base_filename[:-8]+".katie"
338     for suite in changes["distribution"].keys():
339         copychanges = "Suite::%s::CopyChanges" % (suite);
340         if Cnf.has_key(copychanges) and \
341                os.path.exists(Cnf[copychanges]+"/"+base_filename):
342             reject("%s: a file with this name already exists in %s" \
343                    % (base_filename, Cnf[copychanges]));
344
345         copykatie = "Suite::%s::CopyKatie" % (suite);
346         if Cnf.has_key(copykatie) and \
347                os.path.exists(Cnf[copykatie]+"/"+katie_filename):
348             reject("%s: a file with this name already exists in %s" \
349                    % (katie_filename, Cnf[copykatie]));
350
351     reprocess = 0;
352     has_binaries = 0;
353     has_source = 0;
354
355     for file in file_keys:
356         # Ensure the file does not already exist in one of the accepted directories
357         for dir in [ "Accepted", "Byhand", "New" ]:
358             if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
359                 reject("%s file already exists in the %s directory." % (file, dir));
360         if not utils.re_taint_free.match(file):
361             reject("!!WARNING!! tainted filename: '%s'." % (file));
362         # Check the file is readable
363         if os.access(file,os.R_OK) == 0:
364             # When running in -n, copy_to_holding() won't have
365             # generated the reject_message, so we need to.
366             if Options["No-Action"]:
367                 if os.path.exists(file):
368                     reject("Can't read `%s'. [permission denied]" % (file));
369                 else:
370                     reject("Can't read `%s'. [file not found]" % (file));
371             files[file]["type"] = "unreadable";
372             continue;
373         # If it's byhand skip remaining checks
374         if files[file]["section"] == "byhand":
375             files[file]["byhand"] = 1;
376             files[file]["type"] = "byhand";
377         # Checks for a binary package...
378         elif utils.re_isadeb.match(file):
379             has_binaries = 1;
380             files[file]["type"] = "deb";
381
382             # Extract package control information
383             deb_file = utils.open_file(file);
384             try:
385                 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file));
386             except:
387                 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type));
388                 deb_file.close();
389                 # Can't continue, none of the checks on control would work.
390                 continue;
391             deb_file.close();
392
393             # Check for mandatory fields
394             for field in [ "Package", "Architecture", "Version" ]:
395                 if control.Find(field) == None:
396                     reject("%s: No %s field in control." % (file, field));
397                     # Can't continue
398                     continue;
399
400             # Ensure the package name matches the one give in the .changes
401             if not changes["binary"].has_key(control.Find("Package", "")):
402                 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")));
403
404             # Validate the package field
405             package = control.Find("Package");
406             if not re_valid_pkg_name.match(package):
407                 reject("%s: invalid package name '%s'." % (file, package));
408
409             # Validate the version field
410             version = control.Find("Version");
411             if not re_valid_version.match(version):
412                 reject("%s: invalid version number '%s'." % (file, version));
413
414             # Ensure the architecture of the .deb is one we know about.
415             default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
416             architecture = control.Find("Architecture");
417             if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
418                 reject("Unknown architecture '%s'." % (architecture));
419
420             # Ensure the architecture of the .deb is one of the ones
421             # listed in the .changes.
422             if not changes["architecture"].has_key(architecture):
423                 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture));
424
425             # Sanity-check the Depends field
426             depends = control.Find("Depends");
427             if depends == '':
428                 reject("%s: Depends field is empty." % (file));
429
430             # Check the section & priority match those given in the .changes (non-fatal)
431             if control.Find("Section") and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
432                 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ");
433             if control.Find("Priority") and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
434                 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ");
435
436             files[file]["package"] = package;
437             files[file]["architecture"] = architecture;
438             files[file]["version"] = version;
439             files[file]["maintainer"] = control.Find("Maintainer", "");
440             if file.endswith(".udeb"):
441                 files[file]["dbtype"] = "udeb";
442             elif file.endswith(".deb"):
443                 files[file]["dbtype"] = "deb";
444             else:
445                 reject("%s is neither a .deb or a .udeb." % (file));
446             files[file]["source"] = control.Find("Source", files[file]["package"]);
447             # Get the source version
448             source = files[file]["source"];
449             source_version = "";
450             if source.find("(") != -1:
451                 m = utils.re_extract_src_version.match(source);
452                 source = m.group(1);
453                 source_version = m.group(2);
454             if not source_version:
455                 source_version = files[file]["version"];
456             files[file]["source package"] = source;
457             files[file]["source version"] = source_version;
458
459             # Ensure the filename matches the contents of the .deb
460             m = utils.re_isadeb.match(file);
461             #  package name
462             file_package = m.group(1);
463             if files[file]["package"] != file_package:
464                 reject("%s: package part of filename (%s) does not match package name in the %s (%s)." % (file, file_package, files[file]["dbtype"], files[file]["package"]));
465             epochless_version = utils.re_no_epoch.sub('', control.Find("Version"));
466             #  version
467             file_version = m.group(2);
468             if epochless_version != file_version:
469                 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version));
470             #  architecture
471             file_architecture = m.group(3);
472             if files[file]["architecture"] != file_architecture:
473                 reject("%s: architecture part of filename (%s) does not match package architecture in the %s (%s)." % (file, file_architecture, files[file]["dbtype"], files[file]["architecture"]));
474
475             # Check for existent source
476             source_version = files[file]["source version"];
477             source_package = files[file]["source package"];
478             if changes["architecture"].has_key("source"):
479                 if source_version != changes["version"]:
480                     reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]));
481             else:
482                 # Check in the SQL database
483                 if not Katie.source_exists(source_package, source_version, changes["distribution"].keys()):
484                     # Check in one of the other directories
485                     source_epochless_version = utils.re_no_epoch.sub('', source_version);
486                     dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version);
487                     if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
488                         files[file]["byhand"] = 1;
489                     elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
490                         files[file]["new"] = 1;
491                     elif not os.path.exists(Cnf["Dir::Queue::Accepted"] + '/' + dsc_filename):
492                         reject("no source found for %s %s (%s)." % (source_package, source_version, file));
493             # Check the version and for file overwrites
494             reject(Katie.check_binary_against_db(file),"");
495
496         # Checks for a source package...
497         else:
498             m = utils.re_issource.match(file);
499             if m:
500                 has_source = 1;
501                 files[file]["package"] = m.group(1);
502                 files[file]["version"] = m.group(2);
503                 files[file]["type"] = m.group(3);
504
505                 # Ensure the source package name matches the Source filed in the .changes
506                 if changes["source"] != files[file]["package"]:
507                     reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]));
508
509                 # Ensure the source version matches the version in the .changes file
510                 if files[file]["type"] == "orig.tar.gz":
511                     changes_version = changes["chopversion2"];
512                 else:
513                     changes_version = changes["chopversion"];
514                 if changes_version != files[file]["version"]:
515                     reject("%s: should be %s according to changes file." % (file, changes_version));
516
517                 # Ensure the .changes lists source in the Architecture field
518                 if not changes["architecture"].has_key("source"):
519                     reject("%s: changes file doesn't list `source' in Architecture field." % (file));
520
521                 # Check the signature of a .dsc file
522                 if files[file]["type"] == "dsc":
523                     dsc["fingerprint"] = utils.check_signature(file, reject);
524
525                 files[file]["architecture"] = "source";
526
527             # Not a binary or source package?  Assume byhand...
528             else:
529                 files[file]["byhand"] = 1;
530                 files[file]["type"] = "byhand";
531
532         # Per-suite file checks
533         files[file]["oldfiles"] = {};
534         for suite in changes["distribution"].keys():
535             # Skip byhand
536             if files[file].has_key("byhand"):
537                 continue;
538
539             # Handle component mappings
540             for map in Cnf.ValueList("ComponentMappings"):
541                 (source, dest) = map.split();
542                 if files[file]["component"] == source:
543                     files[file]["original component"] = source;
544                     files[file]["component"] = dest;
545
546             # Ensure the component is valid for the target suite
547             if Cnf.has_key("Suite:%s::Components" % (suite)) and \
548                files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
549                 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite));
550                 continue;
551
552             # Validate the component
553             component = files[file]["component"];
554             component_id = db_access.get_component_id(component);
555             if component_id == -1:
556                 reject("file '%s' has unknown component '%s'." % (file, component));
557                 continue;
558
559             # See if the package is NEW
560             if not Katie.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
561                 files[file]["new"] = 1;
562
563             # Validate the priority
564             if files[file]["priority"].find('/') != -1:
565                 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]));
566
567             # Determine the location
568             location = Cnf["Dir::Pool"];
569             location_id = db_access.get_location_id (location, component, archive);
570             if location_id == -1:
571                 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive));
572             files[file]["location id"] = location_id;
573
574             # Check the md5sum & size against existing files (if any)
575             files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"]);
576             files_id = db_access.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]);
577             if files_id == -1:
578                 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file));
579             elif files_id == -2:
580                 reject("md5sum and/or size mismatch on existing copy of %s." % (file));
581             files[file]["files id"] = files_id
582
583             # Check for packages that have moved from one component to another
584             q = Katie.projectB.query("""
585 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
586                    component c, architecture a, files f
587  WHERE b.package = '%s' AND s.suite_name = '%s'
588    AND (a.arch_string = '%s' OR a.arch_string = 'all')
589    AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
590    AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
591                                % (files[file]["package"], suite,
592                                   files[file]["architecture"]));
593             ql = q.getresult();
594             if ql:
595                 files[file]["othercomponents"] = ql[0][0];
596
597     # If the .changes file says it has source, it must have source.
598     if changes["architecture"].has_key("source"):
599         if not has_source:
600             reject("no source found and Architecture line in changes mention source.");
601
602         if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
603             reject("source only uploads are not supported.");
604
605 ###############################################################################
606
607 def check_dsc():
608     global reprocess;
609
610     # Ensure there is source to check
611     if not changes["architecture"].has_key("source"):
612         return 1;
613
614     # Find the .dsc
615     dsc_filename = None;
616     for file in files.keys():
617         if files[file]["type"] == "dsc":
618             if dsc_filename:
619                 reject("can not process a .changes file with multiple .dsc's.");
620                 return 0;
621             else:
622                 dsc_filename = file;
623
624     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
625     if not dsc_filename:
626         return 0;
627
628     # Parse the .dsc file
629     try:
630         dsc.update(utils.parse_changes(dsc_filename, signing_rules=1));
631     except utils.cant_open_exc:
632         # if not -n copy_to_holding() will have done this for us...
633         if Options["No-Action"]:
634             reject("%s: can't read file." % (dsc_filename));
635     except utils.changes_parse_error_exc, line:
636         reject("%s: parse error, can't grok: %s." % (dsc_filename, line));
637     except utils.invalid_dsc_format_exc, line:
638         reject("%s: syntax error on line %s." % (dsc_filename, line));
639     # Build up the file list of files mentioned by the .dsc
640     try:
641         dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1));
642     except utils.no_files_exc:
643         reject("%s: no Files: field." % (dsc_filename));
644         return 0;
645     except utils.changes_parse_error_exc, line:
646         reject("%s: parse error, can't grok: %s." % (dsc_filename, line));
647         return 0;
648
649     # Enforce mandatory fields
650     for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
651         if not dsc.has_key(i):
652             reject("%s: missing mandatory field `%s'." % (dsc_filename, i));
653             return 0;
654
655     # Validate the source and version fields
656     if not re_valid_pkg_name.match(dsc["source"]):
657         reject("%s: invalid source name '%s'." % (dsc_filename, dsc["source"]));
658     if not re_valid_version.match(dsc["version"]):
659         reject("%s: invalid version number '%s'." % (dsc_filename, dsc["version"]));
660
661     # Bumping the version number of the .dsc breaks extraction by stable's
662     # dpkg-source.  So let's not do that...
663     if dsc["format"] != "1.0":
664         reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename));
665
666     # Validate the Maintainer field
667     try:
668         utils.fix_maintainer (dsc["maintainer"]);
669     except utils.ParseMaintError, msg:
670         reject("%s: Maintainer field ('%s') failed to parse: %s" \
671                % (dsc_filename, dsc["maintainer"], msg));
672
673     # Validate the build-depends field(s)
674     for field_name in [ "build-depends", "build-depends-indep" ]:
675         field = dsc.get(field_name);
676         if field:
677             # Check for broken dpkg-dev lossage...
678             if field.startswith("ARRAY"):
679                 reject("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % (dsc_filename, field_name.title()));
680
681             # Have apt try to parse them...
682             try:
683                 apt_pkg.ParseSrcDepends(field);
684             except:
685                 reject("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()));
686                 pass;
687
688     # Ensure the version number in the .dsc matches the version number in the .changes
689     epochless_dsc_version = utils.re_no_epoch.sub('', dsc["version"]);
690     changes_version = files[dsc_filename]["version"];
691     if epochless_dsc_version != files[dsc_filename]["version"]:
692         reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version));
693
694     # Ensure there is a .tar.gz in the .dsc file
695     has_tar = 0;
696     for f in dsc_files.keys():
697         m = utils.re_issource.match(f);
698         if not m:
699             reject("%s: %s in Files field not recognised as source." % (dsc_filename, f));
700         type = m.group(3);
701         if type == "orig.tar.gz" or type == "tar.gz":
702             has_tar = 1;
703     if not has_tar:
704         reject("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename));
705
706     # Ensure source is newer than existing source in target suites
707     reject(Katie.check_source_against_db(dsc_filename),"");
708
709     (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(dsc_filename);
710     reject(reject_msg, "");
711     if is_in_incoming:
712         if not Options["No-Action"]:
713             copy_to_holding(is_in_incoming);
714         orig_tar_gz = os.path.basename(is_in_incoming);
715         files[orig_tar_gz] = {};
716         files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE];
717         files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"];
718         files[orig_tar_gz]["section"] = files[dsc_filename]["section"];
719         files[orig_tar_gz]["priority"] = files[dsc_filename]["priority"];
720         files[orig_tar_gz]["component"] = files[dsc_filename]["component"];
721         files[orig_tar_gz]["type"] = "orig.tar.gz";
722         reprocess = 2;
723
724     return 1;
725
726 ################################################################################
727
728 def get_changelog_versions(source_dir):
729     """Extracts a the source package and (optionally) grabs the
730     version history out of debian/changelog for the BTS."""
731
732     # Find the .dsc (again)
733     dsc_filename = None;
734     for file in files.keys():
735         if files[file]["type"] == "dsc":
736             dsc_filename = file;
737
738     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
739     if not dsc_filename:
740         return;
741
742     # Create a symlink mirror of the source files in our temporary directory
743     for f in files.keys():
744         m = utils.re_issource.match(f);
745         if m:
746             src = os.path.join(source_dir, f);
747             # If a file is missing for whatever reason, give up.
748             if not os.path.exists(src):
749                 return;
750             type = m.group(3);
751             if type == "orig.tar.gz" and pkg.orig_tar_gz:
752                 continue;
753             dest = os.path.join(os.getcwd(), f);
754             os.symlink(src, dest);
755
756     # If the orig.tar.gz is not a part of the upload, create a symlink to the
757     # existing copy.
758     if pkg.orig_tar_gz:
759         dest = os.path.join(os.getcwd(), os.path.basename(pkg.orig_tar_gz));
760         os.symlink(pkg.orig_tar_gz, dest);
761
762     # Extract the source
763     cmd = "dpkg-source -sn -x %s" % (dsc_filename);
764     (result, output) = commands.getstatusoutput(cmd);
765     if (result != 0):
766         reject("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result));
767         reject(utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "");
768         return;
769
770     if not Cnf.Find("Dir::Queue::BTSVersionTrack"):
771         return;
772
773     # Get the upstream version
774     upstr_version = utils.re_no_epoch.sub('', dsc["version"]);
775     if re_strip_revision.search(upstr_version):
776         upstr_version = re_strip_revision.sub('', upstr_version);
777
778     # Ensure the changelog file exists
779     changelog_filename = "%s-%s/debian/changelog" % (dsc["source"], upstr_version);
780     if not os.path.exists(changelog_filename):
781         reject("%s: debian/changelog not found in extracted source." % (dsc_filename));
782         return;
783
784     # Parse the changelog
785     dsc["bts changelog"] = "";
786     changelog_file = utils.open_file(changelog_filename);
787     for line in changelog_file.readlines():
788         m = re_changelog_versions.match(line);
789         if m:
790             dsc["bts changelog"] += line;
791     changelog_file.close();
792
793     # Check we found at least one revision in the changelog
794     if not dsc["bts changelog"]:
795         reject("%s: changelog format not recognised (empty version tree)." % (dsc_filename));
796
797 ########################################
798
799 def check_source():
800     # Bail out if:
801     #    a) there's no source 
802     # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
803     # or c) the orig.tar.gz is MIA
804     if not changes["architecture"].has_key("source") or reprocess == 2 \
805        or pkg.orig_tar_gz == -1:
806         return;
807
808     # Create a temporary directory to extract the source into
809     if Options["No-Action"]:
810         tmpdir = tempfile.mktemp();
811     else:
812         # We're in queue/holding and can create a random directory.
813         tmpdir = "%s" % (os.getpid());
814     os.mkdir(tmpdir);
815
816     # Move into the temporary directory
817     cwd = os.getcwd();
818     os.chdir(tmpdir);
819
820     # Get the changelog version history
821     get_changelog_versions(cwd);
822
823     # Move back and cleanup the temporary tree
824     os.chdir(cwd);
825     try:
826         shutil.rmtree(tmpdir);
827     except OSError, e:
828         if errno.errorcode[e.errno] != 'EACCES':
829             utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]));
830
831         reject("%s: source tree could not be cleanly removed." % (dsc["source"]));
832         # We probably have u-r or u-w directories so chmod everything
833         # and try again.
834         cmd = "chmod -R u+rwx %s" % (tmpdir)
835         result = os.system(cmd)
836         if result != 0:
837             utils.fubar("'%s' failed with result %s." % (cmd, result));
838         shutil.rmtree(tmpdir);
839     except:
840         utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]));
841
842 ################################################################################
843
844 # FIXME: should be a debian specific check called from a hook
845
846 def check_urgency ():
847     if changes["architecture"].has_key("source"):
848         if not changes.has_key("urgency"):
849             changes["urgency"] = Cnf["Urgency::Default"];
850         if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
851             reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ");
852             changes["urgency"] = Cnf["Urgency::Default"];
853         changes["urgency"] = changes["urgency"].lower();
854
855 ################################################################################
856
857 def check_md5sums ():
858     for file in files.keys():
859         try:
860             file_handle = utils.open_file(file);
861         except utils.cant_open_exc:
862             continue;
863
864         # Check md5sum
865         if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
866             reject("%s: md5sum check failed." % (file));
867         file_handle.close();
868         # Check size
869         actual_size = os.stat(file)[stat.ST_SIZE];
870         size = int(files[file]["size"]);
871         if size != actual_size:
872             reject("%s: actual file size (%s) does not match size (%s) in .changes"
873                    % (file, actual_size, size));
874
875     for file in dsc_files.keys():
876         try:
877             file_handle = utils.open_file(file);
878         except utils.cant_open_exc:
879             continue;
880
881         # Check md5sum
882         if apt_pkg.md5sum(file_handle) != dsc_files[file]["md5sum"]:
883             reject("%s: md5sum check failed." % (file));
884         file_handle.close();
885         # Check size
886         actual_size = os.stat(file)[stat.ST_SIZE];
887         size = int(dsc_files[file]["size"]);
888         if size != actual_size:
889             reject("%s: actual file size (%s) does not match size (%s) in .dsc"
890                    % (file, actual_size, size));
891
892 ################################################################################
893
894 # Sanity check the time stamps of files inside debs.
895 # [Files in the near future cause ugly warnings and extreme time
896 #  travel can cause errors on extraction]
897
898 def check_timestamps():
899     class Tar:
900         def __init__(self, future_cutoff, past_cutoff):
901             self.reset();
902             self.future_cutoff = future_cutoff;
903             self.past_cutoff = past_cutoff;
904
905         def reset(self):
906             self.future_files = {};
907             self.ancient_files = {};
908
909         def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
910             if MTime > self.future_cutoff:
911                 self.future_files[Name] = MTime;
912             if MTime < self.past_cutoff:
913                 self.ancient_files[Name] = MTime;
914     ####
915
916     future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"]);
917     past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"));
918     tar = Tar(future_cutoff, past_cutoff);
919     for filename in files.keys():
920         if files[filename]["type"] == "deb":
921             tar.reset();
922             try:
923                 deb_file = utils.open_file(filename);
924                 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz");
925                 deb_file.seek(0);
926                 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz");
927                 deb_file.close();
928                 #
929                 future_files = tar.future_files.keys();
930                 if future_files:
931                     num_future_files = len(future_files);
932                     future_file = future_files[0];
933                     future_date = tar.future_files[future_file];
934                     reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
935                            % (filename, num_future_files, future_file,
936                               time.ctime(future_date)));
937                 #
938                 ancient_files = tar.ancient_files.keys();
939                 if ancient_files:
940                     num_ancient_files = len(ancient_files);
941                     ancient_file = ancient_files[0];
942                     ancient_date = tar.ancient_files[ancient_file];
943                     reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
944                            % (filename, num_ancient_files, ancient_file,
945                               time.ctime(ancient_date)));
946             except:
947                 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value));
948
949 ################################################################################
950 ################################################################################
951
952 # If any file of an upload has a recent mtime then chances are good
953 # the file is still being uploaded.
954
955 def upload_too_new():
956     too_new = 0;
957     # Move back to the original directory to get accurate time stamps
958     cwd = os.getcwd();
959     os.chdir(pkg.directory);
960     file_list = pkg.files.keys();
961     file_list.extend(pkg.dsc_files.keys());
962     file_list.append(pkg.changes_file);
963     for file in file_list:
964         try:
965             last_modified = time.time()-os.path.getmtime(file);
966             if last_modified < int(Cnf["Dinstall::SkipTime"]):
967                 too_new = 1;
968                 break;
969         except:
970             pass;
971     os.chdir(cwd);
972     return too_new;
973
974 ################################################################################
975
976 def action ():
977     # changes["distribution"] may not exist in corner cases
978     # (e.g. unreadable changes files)
979     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
980         changes["distribution"] = {};
981
982     (summary, short_summary) = Katie.build_summaries();
983
984     byhand = new = "";
985     for file in files.keys():
986         if files[file].has_key("byhand"):
987             byhand = 1
988         elif files[file].has_key("new"):
989             new = 1
990
991     (prompt, answer) = ("", "XXX")
992     if Options["No-Action"] or Options["Automatic"]:
993         answer = 'S'
994
995     if reject_message.find("Rejected") != -1:
996         if upload_too_new():
997             print "SKIP (too new)\n" + reject_message,;
998             prompt = "[S]kip, Quit ?";
999         else:
1000             print "REJECT\n" + reject_message,;
1001             prompt = "[R]eject, Skip, Quit ?";
1002             if Options["Automatic"]:
1003                 answer = 'R';
1004     elif new:
1005         print "NEW to %s\n%s%s" % (", ".join(changes["distribution"].keys()), reject_message, summary),;
1006         prompt = "[N]ew, Skip, Quit ?";
1007         if Options["Automatic"]:
1008             answer = 'N';
1009     elif byhand:
1010         print "BYHAND\n" + reject_message + summary,;
1011         prompt = "[B]yhand, Skip, Quit ?";
1012         if Options["Automatic"]:
1013             answer = 'B';
1014     else:
1015         print "ACCEPT\n" + reject_message + summary,;
1016         prompt = "[A]ccept, Skip, Quit ?";
1017         if Options["Automatic"]:
1018             answer = 'A';
1019
1020     while prompt.find(answer) == -1:
1021         answer = utils.our_raw_input(prompt);
1022         m = katie.re_default_answer.match(prompt);
1023         if answer == "":
1024             answer = m.group(1);
1025         answer = answer[:1].upper();
1026
1027     if answer == 'R':
1028         os.chdir (pkg.directory);
1029         Katie.do_reject(0, reject_message);
1030     elif answer == 'A':
1031         accept(summary, short_summary);
1032     elif answer == 'B':
1033         do_byhand(summary);
1034     elif answer == 'N':
1035         acknowledge_new (summary);
1036     elif answer == 'Q':
1037         sys.exit(0)
1038
1039 ################################################################################
1040
1041 def accept (summary, short_summary):
1042     Katie.accept(summary, short_summary);
1043     Katie.check_override();
1044
1045     # Finally, remove the originals from the unchecked directory
1046     os.chdir (pkg.directory);
1047     for file in files.keys():
1048         os.unlink(file);
1049     os.unlink(pkg.changes_file);
1050
1051 ################################################################################
1052
1053 def do_byhand (summary):
1054     print "Moving to BYHAND holding area."
1055     Logger.log(["Moving to byhand", pkg.changes_file]);
1056
1057     Katie.dump_vars(Cnf["Dir::Queue::Byhand"]);
1058
1059     file_keys = files.keys();
1060
1061     # Move all the files into the byhand directory
1062     utils.move (pkg.changes_file, Cnf["Dir::Queue::Byhand"]);
1063     for file in file_keys:
1064         utils.move (file, Cnf["Dir::Queue::Byhand"], perms=0660);
1065
1066     # Check for override disparities
1067     Katie.Subst["__SUMMARY__"] = summary;
1068     Katie.check_override();
1069
1070     # Finally remove the originals.
1071     os.chdir (pkg.directory);
1072     for file in file_keys:
1073         os.unlink(file);
1074     os.unlink(pkg.changes_file);
1075
1076 ################################################################################
1077
1078 def acknowledge_new (summary):
1079     Subst = Katie.Subst;
1080
1081     print "Moving to NEW holding area."
1082     Logger.log(["Moving to new", pkg.changes_file]);
1083
1084     Katie.dump_vars(Cnf["Dir::Queue::New"]);
1085
1086     file_keys = files.keys();
1087
1088     # Move all the files into the 'new' directory
1089     utils.move (pkg.changes_file, Cnf["Dir::Queue::New"]);
1090     for file in file_keys:
1091         utils.move (file, Cnf["Dir::Queue::New"], perms=0660);
1092
1093     if not Options["No-Mail"]:
1094         print "Sending new ack.";
1095         Subst["__SUMMARY__"] = summary;
1096         new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/jennifer.new");
1097         utils.send_mail(new_ack_message);
1098
1099     # Finally remove the originals.
1100     os.chdir (pkg.directory);
1101     for file in file_keys:
1102         os.unlink(file);
1103     os.unlink(pkg.changes_file);
1104
1105 ################################################################################
1106
1107 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1108 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1109 # Katie.check_dsc_against_db() can find the .orig.tar.gz but it will
1110 # not have processed it during it's checks of -2.  If -1 has been
1111 # deleted or otherwise not checked by jennifer, the .orig.tar.gz will
1112 # not have been checked at all.  To get round this, we force the
1113 # .orig.tar.gz into the .changes structure and reprocess the .changes
1114 # file.
1115
1116 def process_it (changes_file):
1117     global reprocess, reject_message;
1118
1119     # Reset some globals
1120     reprocess = 1;
1121     Katie.init_vars();
1122     # Some defaults in case we can't fully process the .changes file
1123     changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"];
1124     changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"];
1125     reject_message = "";
1126
1127     # Absolutize the filename to avoid the requirement of being in the
1128     # same directory as the .changes file.
1129     pkg.changes_file = os.path.abspath(changes_file);
1130
1131     # Remember where we are so we can come back after cd-ing into the
1132     # holding directory.
1133     pkg.directory = os.getcwd();
1134
1135     try:
1136         # If this is the Real Thing(tm), copy things into a private
1137         # holding directory first to avoid replacable file races.
1138         if not Options["No-Action"]:
1139             os.chdir(Cnf["Dir::Queue::Holding"]);
1140             copy_to_holding(pkg.changes_file);
1141             # Relativize the filename so we use the copy in holding
1142             # rather than the original...
1143             pkg.changes_file = os.path.basename(pkg.changes_file);
1144         changes["fingerprint"] = utils.check_signature(pkg.changes_file, reject);
1145         if changes["fingerprint"]:
1146             valid_changes_p = check_changes();
1147         else:
1148             valid_changes_p = 0;
1149         if valid_changes_p:
1150             while reprocess:
1151                 check_distributions();
1152                 check_files();
1153                 valid_dsc_p = check_dsc();
1154                 if valid_dsc_p:
1155                     check_source();
1156                 check_md5sums();
1157                 check_urgency();
1158                 check_timestamps();
1159         Katie.update_subst(reject_message);
1160         action();
1161     except SystemExit:
1162         raise;
1163     except:
1164         print "ERROR";
1165         traceback.print_exc(file=sys.stderr);
1166         pass;
1167
1168     # Restore previous WD
1169     os.chdir(pkg.directory);
1170
1171 ###############################################################################
1172
1173 def main():
1174     global Cnf, Options, Logger;
1175
1176     changes_files = init();
1177
1178     # -n/--dry-run invalidates some other options which would involve things happening
1179     if Options["No-Action"]:
1180         Options["Automatic"] = "";
1181
1182     # Ensure all the arguments we were given are .changes files
1183     for file in changes_files:
1184         if not file.endswith(".changes"):
1185             utils.warn("Ignoring '%s' because it's not a .changes file." % (file));
1186             changes_files.remove(file);
1187
1188     if changes_files == []:
1189         utils.fubar("Need at least one .changes file as an argument.");
1190
1191     # Check that we aren't going to clash with the daily cron job
1192
1193     if not Options["No-Action"] and os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::Root"])) and not Options["No-Lock"]:
1194         utils.fubar("Archive maintenance in progress.  Try again later.");
1195
1196     # Obtain lock if not in no-action mode and initialize the log
1197
1198     if not Options["No-Action"]:
1199         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT);
1200         try:
1201             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB);
1202         except IOError, e:
1203             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1204                 utils.fubar("Couldn't obtain lock; assuming another jennifer is already running.");
1205             else:
1206                 raise;
1207         Logger = Katie.Logger = logging.Logger(Cnf, "jennifer");
1208
1209     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1210     bcc = "X-Katie: %s" % (jennifer_version);
1211     if Cnf.has_key("Dinstall::Bcc"):
1212         Katie.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
1213     else:
1214         Katie.Subst["__BCC__"] = bcc;
1215
1216
1217     # Sort the .changes files so that we process sourceful ones first
1218     changes_files.sort(utils.changes_compare);
1219
1220     # Process the changes files
1221     for changes_file in changes_files:
1222         print "\n" + changes_file;
1223         try:
1224             process_it (changes_file);
1225         finally:
1226             if not Options["No-Action"]:
1227                 clean_holding();
1228
1229     accept_count = Katie.accept_count;
1230     accept_bytes = Katie.accept_bytes;
1231     if accept_count:
1232         sets = "set"
1233         if accept_count > 1:
1234             sets = "sets";
1235         print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)));
1236         Logger.log(["total",accept_count,accept_bytes]);
1237
1238     if not Options["No-Action"]:
1239         Logger.close();
1240
1241 ################################################################################
1242
1243 if __name__ == '__main__':
1244     main()
1245