-
Notifications
You must be signed in to change notification settings - Fork 2
/
piuparts-slave.py
891 lines (756 loc) · 31.7 KB
/
piuparts-slave.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
#!/usr/bin/python
#
# Copyright 2005 Lars Wirzenius (liw@iki.fi)
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
"""Distributed piuparts processing, slave program
Lars Wirzenius <liw@iki.fi>
"""
import os
import sys
import stat
import time
import logging
from signal import alarm, signal, SIGALRM, SIGINT, SIGKILL, SIGHUP
import subprocess
import fcntl
import random
import ConfigParser
import piupartslib.conf
import piupartslib.packagesdb
CONFIG_FILE = "/etc/piuparts/piuparts.conf"
DISTRO_CONFIG_FILE = "/etc/piuparts/distros.conf"
MAX_WAIT_TEST_RUN = 45*60
interrupted = False
old_sigint_handler = None
got_sighup = False
def setup_logging(log_level, log_file_name):
logger = logging.getLogger()
logger.setLevel(log_level)
formatter = logging.Formatter(fmt="%(asctime)s %(message)s",
datefmt="%H:%M")
handler = logging.StreamHandler(sys.stderr)
handler.setFormatter(formatter)
logger.addHandler(handler)
if log_file_name:
handler = logging.FileHandler(log_file_name)
logger.addHandler(handler)
class Config(piupartslib.conf.Config):
def __init__(self, section="slave", defaults_section=None):
self.section = section
piupartslib.conf.Config.__init__(self, section,
{
"sections": "slave",
"idle-sleep": 300,
"max-tgz-age": 2592000,
"min-tgz-retry-delay": 21600,
"master-host": None,
"master-user": None,
"master-directory": ".",
"master-command": None,
"log-file": "piuparts-master.log",
"proxy": None,
"mirror": None,
"piuparts-command": "sudo piuparts",
"piuparts-flags": "",
"tmpdir": None,
"distro": None,
"area": None,
"chroot-tgz": None,
"upgrade-test-distros": None,
"basetgz-directory": ".",
"max-reserved": 1,
"debug": "no",
"keep-sources-list": "no",
"arch": None,
"precedence": "1",
"slave-load-max": None,
},
defaults_section=defaults_section)
class Alarm(Exception):
pass
def alarm_handler(signum, frame):
raise Alarm
def sigint_handler(signum, frame):
global interrupted
interrupted = True
print '\nSlave interrupted by the user, waiting for the current test to finish.'
print 'Press Ctrl-C again to abort now.'
signal(SIGINT, old_sigint_handler)
def sighup_handler(signum, frame):
global got_sighup
got_sighup = True
print 'SIGHUP: Will flush finished logs.'
class MasterIsBusy(Exception):
def __init__(self):
self.args = "Master is busy, retry later"
class MasterNotOK(Exception):
def __init__(self):
self.args = "Master did not respond with 'ok'"
class MasterDidNotGreet(Exception):
def __init__(self):
self.args = "Master did not start with 'hello'"
class MasterCommunicationFailed(Exception):
def __init__(self):
self.args = "Communication with master failed"
class MasterIsCrazy(Exception):
def __init__(self):
self.args = "Master said something unexpected"
class MasterCantRecycle(Exception):
def __init__(self):
self.args = "Master has nothing to recycle"
class Slave:
def __init__(self):
self._to_master = None
self._from_master = None
self._master_host = None
self._master_user = None
self._master_directory = "."
self._master_command = None
self._section = None
def _readline(self):
try:
line = self._from_master.readline()
except IOError:
raise MasterCommunicationFailed()
logging.debug("<< " + line.rstrip())
return line
def _writeline(self, *words):
line = " ".join(words)
logging.debug(">> " + line)
try:
self._to_master.write(line + "\n")
self._to_master.flush()
except IOError:
raise MasterCommunicationFailed()
def set_master_host(self, host):
logging.debug("Setting master host to %s" % host)
self._master_host = host
def set_master_user(self, user):
logging.debug("Setting master user to %s" % user)
self._master_user = user
def set_master_directory(self, dir):
logging.debug("Setting master directory to %s" % dir)
self._master_directory = dir
def set_master_command(self, cmd):
logging.debug("Setting master command to %s" % cmd)
self._master_command = cmd
def set_section(self, section):
logging.debug("Setting section to %s" % section)
self._section = section
def connect_to_master(self, log_file):
logging.info("Connecting to %s" % self._master_host)
if self._master_user:
user = self._master_user + "@"
else:
user = ""
ssh_cmdline = "cd %s; %s %s 2> %s.$$ && rm %s.$$" % \
(self._master_directory or ".",
self._master_command, self._section, log_file, log_file)
p = subprocess.Popen(["ssh", "-x", user + self._master_host, ssh_cmdline],
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
self._to_master = p.stdin
self._from_master = p.stdout
line = self._readline()
if line == "busy\n":
raise MasterIsBusy()
if line != "hello\n":
raise MasterDidNotGreet()
logging.debug("Connected to master")
def close(self):
logging.debug("Closing connection to master")
if self._from_master is not None:
self._from_master.close()
if self._to_master is not None:
self._to_master.close()
self._from_master = self._to_master = None
logging.info("Connection to master closed")
def send_log(self, section, pass_or_fail, filename):
logging.info("Sending log file %s/%s" % (section, filename))
basename = os.path.basename(filename)
package, rest = basename.split("_", 1)
version = rest[:-len(".log")]
self._writeline(pass_or_fail, package, version)
f = file(filename, "r")
for line in f:
if line.endswith("\n"):
line = line[:-1]
self._writeline(" " + line)
f.close()
self._writeline(".")
line = self._readline()
if line != "ok\n":
raise MasterNotOK()
def get_status(self, section):
self._writeline("status")
line = self._readline()
words = line.split()
if words and words[0] == "ok":
logging.info("Master " + section + " status: " + " ".join(words[1:]))
else:
raise MasterIsCrazy()
def enable_recycling(self):
self._writeline("recycle")
line = self._readline()
words = line.split()
if line != "ok\n":
raise MasterCantRecycle()
def get_idle(self):
self._writeline("idle")
line = self._readline()
words = line.split()
if words and words[0] == "ok":
return int(words[1])
else:
raise MasterIsCrazy()
def reserve(self):
self._writeline("reserve")
line = self._readline()
words = line.split()
if words and words[0] == "ok":
logging.info("Reserved for us: %s %s" % (words[1], words[2]))
self.remember_reservation(words[1], words[2])
return True
elif words and words[0] == "error":
logging.info("Master didn't reserve anything (more) for us")
return False
else:
raise MasterIsCrazy()
def unreserve(self, filename):
basename = os.path.basename(filename)
package, rest = basename.split("_", 1)
version = rest[:-len(".log")]
logging.info("Unreserve: %s %s" % (package, version))
self._writeline("unreserve", package, version)
line = self._readline()
if line != "ok\n":
raise MasterNotOK()
def _reserved_filename(self, name, version):
return os.path.join("reserved", "%s_%s.log" % (name, version))
def remember_reservation(self, name, version):
create_file(self._reserved_filename(name, version), "")
def get_reserved(self):
vlist = []
for basename in os.listdir("reserved"):
if "_" in basename and basename.endswith(".log"):
name, version = basename[:-len(".log")].split("_", 1)
vlist.append((name, version))
return vlist
def forget_reserved(self, name, version):
try:
os.remove(self._reserved_filename(name, version))
except os.error:
pass
class Section:
def __init__(self, section):
self._config = Config(section=section, defaults_section="global")
self._config.read(CONFIG_FILE)
self._distro_config = piupartslib.conf.DistroConfig(
DISTRO_CONFIG_FILE, self._config["mirror"])
self._error_wait_until = 0
self._idle_wait_until = 0
self._recycle_wait_until = 0
self._slave_directory = os.path.abspath(section)
if not os.path.exists(self._slave_directory):
os.makedirs(self._slave_directory)
if self._config["debug"] in ["yes", "true"]:
self._logger = logging.getLogger()
self._logger.setLevel(logging.DEBUG)
if int(self._config["max-reserved"]) > 0:
self._check_tarball()
for rdir in ["new", "pass", "fail", "untestable", "reserved"]:
rdir = os.path.join(self._slave_directory, rdir)
if not os.path.exists(rdir):
os.mkdir(rdir)
self._slave = Slave()
def _throttle_if_overloaded(self):
global interrupted
if interrupted or got_sighup:
return
if self._config["slave-load-max"] is None:
return
load_max = float(self._config["slave-load-max"])
if load_max < 1.0:
return
if os.getloadavg()[0] <= load_max:
return
load_resume = max(load_max - 1.0, 0.9)
secs = random.randrange(30, 90)
while True:
load = os.getloadavg()[0]
if load <= load_resume:
break
logging.info("Sleeping due to high load (%.2f)" % load)
try:
time.sleep(secs)
except KeyboardInterrupt:
interrupted = True
if interrupted or got_sighup:
break
if secs < 300:
secs += random.randrange(30, 90)
def _connect_to_master(self, recycle=False):
self._slave.set_master_host(self._config["master-host"])
self._slave.set_master_user(self._config["master-user"])
self._slave.set_master_directory(self._config["master-directory"])
self._slave.set_master_command(self._config["master-command"])
self._slave.set_section(self._config.section)
self._slave.connect_to_master(self._config["log-file"])
if recycle:
self._slave.enable_recycling()
def _get_tarball(self):
basetgz = self._config["chroot-tgz"] or \
self._distro_config.get_basetgz(self._config.get_start_distro())
return os.path.join(self._config["basetgz-directory"], basetgz)
def _check_tarball(self):
oldcwd = os.getcwd()
os.chdir(self._slave_directory)
create_or_replace_chroot_tgz(self._config, self._get_tarball(),
self._config.get_start_distro())
os.chdir(oldcwd)
def _count_submittable_logs(self):
files = 0
subdirs = ["pass", "fail", "untestable"]
if interrupted:
subdirs += ["reserved", "new"]
for logdir in subdirs:
for basename in os.listdir(os.path.join(self._slave_directory, logdir)):
if basename.endswith(".log"):
files += 1
return files
def precedence(self):
return int(self._config["precedence"])
def sleep_until(self, recycle=False):
if recycle:
return max(self._error_wait_until, self._recycle_wait_until)
return max(self._error_wait_until, self._idle_wait_until)
def run(self, do_processing=True, recycle=False):
if time.time() < self.sleep_until(recycle=recycle):
return 0
self._throttle_if_overloaded()
if interrupted or got_sighup:
do_processing = False
if not do_processing and self._count_submittable_logs() == 0:
return 0
logging.info("-------------------------------------------")
action = "Running"
if recycle:
action = "Recycling"
if not do_processing:
action = "Flushing"
logging.info("%s section %s (precedence=%d)" \
% (action, self._config.section, self.precedence()))
self._config = Config(section=self._config.section, defaults_section="global")
self._config.read(CONFIG_FILE)
self._distro_config = piupartslib.conf.DistroConfig(
DISTRO_CONFIG_FILE, self._config["mirror"])
if int(self._config["max-reserved"]) == 0:
logging.info("disabled")
self._error_wait_until = time.time() + 12 * 3600
return 0
if not self._config.get_distro() and not self._config.get_distros():
logging.error("neither 'distro' nor 'upgrade-test-distros' configured")
self._error_wait_until = time.time() + 3600
return 0
with open(os.path.join(self._slave_directory, "slave.lock"), "we") as lock:
oldcwd = os.getcwd()
os.chdir(self._slave_directory)
try:
fcntl.flock(lock, fcntl.LOCK_EX | fcntl.LOCK_NB)
except IOError:
logging.info("busy")
self._error_wait_until = time.time() + 900
else:
if self._talk_to_master(fetch=do_processing, recycle=recycle, unreserve=interrupted):
if do_processing:
if not self._slave.get_reserved():
self._idle_wait_until = time.time() + int(self._config["idle-sleep"])
if recycle:
self._recycle_wait_until = self._idle_wait_until + 3600
else:
processed = self._process()
if got_sighup and self._slave.get_reserved():
# keep this section at the front of the round-robin runnable queue
self._idle_wait_until = 0
self._recycle_wait_until = 0
else:
# put this section at the end of the round-robin runnable queue
self._idle_wait_until = time.time()
self._recycle_wait_until = time.time()
return processed
finally:
os.chdir(oldcwd)
return 0
def _talk_to_master(self, fetch=False, unreserve=False, recycle=False):
flush = self._count_submittable_logs() > 0
fetch = fetch and not self._slave.get_reserved()
if not flush and not fetch:
return True
try:
self._connect_to_master(recycle=recycle)
except KeyboardInterrupt:
raise
except MasterIsBusy:
logging.error("master is busy")
self._error_wait_until = time.time() + random.randrange(60, 180)
except MasterCantRecycle:
logging.error("master has nothing to recycle")
self._recycle_wait_until = max(time.time(), self._idle_wait_until) + 3600
except (MasterDidNotGreet, MasterIsCrazy, MasterCommunicationFailed):
logging.error("connection to master failed")
self._error_wait_until = time.time() + 900
else:
try:
for logdir in ["pass", "fail", "untestable"]:
for basename in os.listdir(logdir):
if basename.endswith(".log"):
fullname = os.path.join(logdir, basename)
self._slave.send_log(self._config.section, logdir, fullname)
os.remove(fullname)
if unreserve:
for logdir in ["new", "reserved"]:
for basename in os.listdir(logdir):
if basename.endswith(".log"):
fullname = os.path.join(logdir, basename)
self._slave.unreserve(fullname)
os.remove(fullname)
if fetch:
max_reserved = int(self._config["max-reserved"])
idle = self._slave.get_idle()
if idle > 0:
idle = min(idle, int(self._config["idle-sleep"]))
logging.info("idle (%d)" % idle)
if not recycle:
self._idle_wait_until = time.time() + idle
else:
self._recycle_wait_until = time.time() + idle
return 0
while len(self._slave.get_reserved()) < max_reserved and self._slave.reserve():
pass
self._slave.get_status(self._config.section)
except MasterNotOK:
logging.error("master did not respond with 'ok'")
self._error_wait_until = time.time() + 900
except (MasterIsCrazy, MasterCommunicationFailed):
logging.error("communication with master failed")
self._error_wait_until = time.time() + 900
else:
return True
finally:
self._slave.close()
return False
def _process(self):
packages_files = {}
for distro in [self._config.get_distro()] + self._config.get_distros():
if distro not in packages_files:
try:
packages_url = self._distro_config.get_packages_url(
distro, self._config.get_area(), self._config.get_arch())
logging.debug("Fetching %s" % packages_url)
f = piupartslib.open_packages_url(packages_url)
packages_files[distro] = piupartslib.packagesdb.PackagesFile(f)
f.close()
except IOError:
logging.error("failed to fetch packages file for %s" % distro)
self._error_wait_until = time.time() + 900
return 0
test_count = 0
self._check_tarball()
for package_name, version in self._slave.get_reserved():
self._throttle_if_overloaded()
if interrupted or got_sighup:
break
test_count += 1
self._test_package(package_name, version, packages_files)
self._slave.forget_reserved(package_name, version)
self._talk_to_master(unreserve=interrupted)
return test_count
def _test_package(self, pname, pvers, packages_files):
global old_sigint_handler
old_sigint_handler = signal(SIGINT, sigint_handler)
logging.info("Testing package %s/%s %s" % (self._config.section, pname, pvers))
output_name = log_name(pname, pvers)
logging.debug("Opening log file %s" % output_name)
new_name = os.path.join("new", output_name)
output = file(new_name, "we")
output.write(time.strftime("Start: %Y-%m-%d %H:%M:%S %Z\n",
time.gmtime()))
distupgrade = len(self._config.get_distros()) > 1
command = self._config["piuparts-command"].split()
if self._config["piuparts-flags"]:
command.extend(self._config["piuparts-flags"].split())
if "http_proxy" in os.environ:
command.extend(["--proxy", os.environ["http_proxy"]])
if self._config["mirror"]:
command.extend(["--mirror", self._config["mirror"]])
if self._config["tmpdir"]:
command.extend(["--tmpdir", self._config["tmpdir"]])
command.extend(["-b", self._get_tarball()])
if not distupgrade:
command.extend(["-d", self._config.get_distro()])
command.append("--no-upgrade-test")
else:
for distro in self._config.get_distros():
command.extend(["-d", distro])
if self._config["keep-sources-list"] in ["yes", "true"]:
command.append("--keep-sources-list")
command.extend(["--apt", "%s=%s" % (pname, pvers)])
subdir = "fail"
ret = 0
if not distupgrade:
distro = self._config.get_distro()
if not pname in packages_files[distro]:
output.write("Package %s not found in %s\n" % (pname, distro))
ret = -10001
else:
package = packages_files[distro][pname]
if pvers != package["Version"]:
output.write("Package %s %s not found in %s, %s is available\n" % (pname, pvers, distro, package["Version"]))
ret = -10002
output.write("\n")
package.dump(output)
output.write("\n")
else:
distros = self._config.get_distros()
if distros:
# the package must exist somewhere
for distro in distros:
if pname in packages_files[distro]:
break
else:
output.write("Package %s not found in any distribution\n" % pname)
ret = -10003
# the package must have the correct version in the distupgrade target distro
distro = distros[-1]
if not pname in packages_files[distro]:
# the package may "disappear" in the distupgrade target distro
if pvers == "None":
pass
else:
output.write("Package %s not found in %s\n" % (pname, distro))
ret = -10004
else:
package = packages_files[distro][pname]
if pvers != package["Version"]:
output.write("Package %s %s not found in %s, %s is available\n" % (pname, pvers, distro, package["Version"]))
ret = -10005
for distro in distros:
output.write("\n[%s]\n" % distro)
if pname in packages_files[distro]:
packages_files[distro][pname].dump(output)
output.write("\n")
else:
ret = -10010
if ret != 0:
subdir = "untestable"
if ret == 0:
output.write("Executing: %s\n" % " ".join(command))
ret,f = run_test_with_timeout(command, MAX_WAIT_TEST_RUN)
if not f or f[-1] != '\n':
f += '\n'
output.write(f)
lastline = f.split('\n')[-2]
if ret < 0:
output.write(" *** Process KILLED - exceed maximum run time ***\n")
elif not "piuparts run ends" in lastline:
ret += 1024
output.write(" *** PIUPARTS OUTPUT INCOMPLETE ***\n");
output.write("\n")
output.write("ret=%d\n" % ret)
output.write(time.strftime("End: %Y-%m-%d %H:%M:%S %Z\n",
time.gmtime()))
output.close()
if ret == 0:
subdir = "pass"
os.rename(new_name, os.path.join(subdir, output_name))
logging.debug("Done with %s: %s (%d)" % (output_name, subdir, ret))
signal(SIGINT, old_sigint_handler)
def log_name(package, version):
return "%s_%s.log" % (package, version)
def run_test_with_timeout(cmd, maxwait, kill_all=True):
def terminate_subprocess(p, kill_all):
pids = [p.pid]
if kill_all:
ps = subprocess.Popen(["ps", "--no-headers", "-o", "pid", "--ppid", "%d" % p.pid],
stdout = subprocess.PIPE)
stdout, stderr = ps.communicate()
pids.extend([int(pid) for pid in stdout.split()])
if p.poll() is None:
print 'Sending SIGINT...'
try:
os.killpg(os.getpgid(p.pid), SIGINT)
except OSError:
pass
# piuparts has 30 seconds to clean up after Ctrl-C
for i in range(60):
time.sleep(0.5)
if p.poll() is not None:
break
if p.poll() is None:
print 'Sending SIGTERM...'
p.terminate()
# piuparts has 5 seconds to clean up after SIGTERM
for i in range(10):
time.sleep(0.5)
if p.poll() is not None:
break
if p.poll() is None:
print 'Sending SIGKILL...'
p.kill()
for pid in pids:
if pid > 0:
try:
os.kill(pid, SIGKILL)
print "Killed %d" % pid
except OSError:
pass
logging.debug("Executing: %s" % " ".join(cmd))
stdout = ""
p = subprocess.Popen(cmd, preexec_fn=os.setpgrp,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
if maxwait > 0:
signal(SIGALRM, alarm_handler)
alarm(maxwait)
try:
stdout, stderr = p.communicate()
alarm(0)
except Alarm:
terminate_subprocess(p, kill_all)
return -1,stdout
except KeyboardInterrupt:
print '\nSlave interrupted by the user, cleaning up...'
try:
terminate_subprocess(p, kill_all)
except KeyboardInterrupt:
print '\nTerminating piuparts was interrupted... manual cleanup still neccessary.'
raise
raise
ret = p.returncode
if ret in [124, 137]:
# process was terminated by the timeout command
ret = -ret
return ret,stdout
def create_chroot(config, tarball, distro):
output_name = tarball + ".log"
logging.debug("Opening log file %s" % output_name)
logging.info("Creating new tarball %s" % tarball)
command = config["piuparts-command"].split()
if config["piuparts-flags"]:
command.extend(config["piuparts-flags"].split())
if "http_proxy" in os.environ:
command.extend(["--proxy", os.environ["http_proxy"]])
if config["mirror"]:
command.extend(["--mirror", config["mirror"]])
if config["tmpdir"]:
command.extend(["--tmpdir", config["tmpdir"]])
command.extend(["-d", distro])
command.extend(["-s", tarball + ".new"])
command.extend(["--apt", "dpkg"])
output = file(output_name, "w")
output.write(time.strftime("Start: %Y-%m-%d %H:%M:%S %Z\n\n",
time.gmtime()))
output.write("Executing: " + " ".join(command) + "\n\n")
logging.debug("Executing: " + " ".join(command))
p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for line in p.stdout:
output.write(line)
logging.debug(">> " + line.rstrip())
p.wait()
output.write(time.strftime("\nEnd: %Y-%m-%d %H:%M:%S %Z\n",
time.gmtime()))
output.close()
if os.path.exists(tarball + ".new"):
os.rename(tarball + ".new", tarball)
def create_or_replace_chroot_tgz(config, tgz, distro):
max_tgz_age = int(config["max-tgz-age"])
min_tgz_retry_delay = int(config["min-tgz-retry-delay"])
forced = 0
if os.path.exists(tgz) and max_tgz_age > 0:
now = time.time()
statobj = os.stat(tgz)
# stat.ST_MTIME is actually time file was initially created
age = now - statobj[stat.ST_MTIME]
logging.info("Check-replace %s: age=%d vs. max=%d" % (tgz, age, max_tgz_age))
if age > max_tgz_age:
logging.info("Limit-replace %s: last-retry=%d vs. min=%d" % (tgz, now - statobj[stat.ST_CTIME], min_tgz_retry_delay))
# stat.ST_CTIME is time created OR last renamed
if min_tgz_retry_delay is None or now - statobj[stat.ST_CTIME] > min_tgz_retry_delay:
os.rename(tgz, tgz + ".old")
forced = 1
logging.info("%s too old. Renaming to force re-creation" % tgz)
if not os.path.exists(tgz):
create_chroot(config, tgz, distro)
if forced:
if not os.path.exists(tgz):
os.rename(tgz + ".old", tgz)
logging.info("Failed to create ... reverting to old %s" % tgz)
else:
os.unlink(tgz + ".old")
def create_file(filename, contents):
f = file(filename, "w")
f.write(contents)
f.close()
def main():
setup_logging(logging.INFO, None)
signal(SIGHUP, sighup_handler)
# For supporting multiple architectures and suites, we take command-line
# argument(s) referring to section(s) in the configuration file.
# If no argument is given, the "sections" entry from the "global" section
# is used.
section_names = []
global_config = Config(section="global")
global_config.read(CONFIG_FILE)
if global_config["proxy"]:
os.environ["http_proxy"] = global_config["proxy"]
if len(sys.argv) > 1:
section_names = sys.argv[1:]
else:
section_names = global_config["sections"].split()
sections = [Section(section_name)
for section_name in section_names]
while True:
global got_sighup
test_count = 0
for section in sorted(sections, key=lambda section: (section.precedence(), section.sleep_until())):
test_count += section.run(do_processing=(test_count == 0))
if test_count == 0 and got_sighup:
# clear SIGHUP state after flushing all sections
got_sighup = False
continue
if test_count == 0:
# try to recycle old logs
# round robin recycling of all sections is ensured by the recycle_wait_until timestamps
idle_until = min([section.sleep_until() for section in sections])
for section in sorted(sections, key=lambda section: section.sleep_until(recycle=True)):
test_count += section.run(recycle=True)
if test_count > 0 and idle_until < time.time():
break
if interrupted:
raise KeyboardInterrupt
if test_count == 0 and not got_sighup:
now = time.time()
sleep_until = min([now + int(global_config["idle-sleep"])] + [section.sleep_until() for section in sections])
if (sleep_until > now):
to_sleep = max(60, sleep_until - now)
logging.info("Nothing to do, sleeping for %d seconds." % to_sleep)
time.sleep(to_sleep)
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
print ''
print 'Slave interrupted by the user, exiting...'
sys.exit(1)
# vi:set et ts=4 sw=4 :