1 # vi: encoding=utf-8 ts=8 sts=4 sw=4 et
3 from __future__ import print_function
14 from config import config, init_conf
15 from bqueue import B_Queue
30 # *HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*
33 socket.myorigsocket=socket.socket
35 def mysocket(family=socket.AF_INET, type=socket.SOCK_STREAM, proto=0):
36 s=socket.myorigsocket(family, type, proto)
37 s.setsockopt(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1)
40 socket.socket=mysocket
41 # *HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*HACK*
43 # this code is duplicated in srpm_builder, but we
44 # might want to handle some cases differently here
47 if r1.kind != 'group' or r2.kind != 'group':
48 raise Exception("non-group requests")
49 pri_diff = cmp(r1.priority, r2.priority)
51 return cmp(r1.time, r2.time)
54 q.requests.sort(key=util.cmp_to_key(mycmp))
58 def check_skip_build(r, b):
59 src_url = config.control_url + "/srpms/" + r.id + "/skipme"
61 b.log_line("checking if we should skip the build")
64 headers = { 'Cache-Control': 'no-cache', 'Pragma': 'no-cache' }
65 req = urllib2.Request(url=src_url, headers=headers)
66 f = urllib2.urlopen(req)
68 except urllib2.HTTPError as error:
70 except urllib2.URLError as error:
74 except AttributeError:
76 errno = error.reason[0]
78 if errno in [-3, 60, 61, 110, 111]:
79 b.log_line("unable to connect... trying again")
88 src_url = config.control_url + "/srpms/" + r.id + "/" + urllib.quote(b.src_rpm)
89 b.log_line("fetching %s" % src_url)
94 headers = { 'Cache-Control': 'no-cache', 'Pragma': 'no-cache' }
95 req = urllib2.Request(url=src_url, headers=headers)
96 f = urllib2.urlopen(req)
98 except urllib2.HTTPError as error:
99 # fail in a way where cron job will retry
100 msg = "unable to fetch url %s, http code: %d" % (src_url, error.code)
102 queue_time = time.time() - r.time
104 if error.code != 404 or (queue_time >= 0 and queue_time < (6 * 60 * 60)):
107 msg = "in queue for more than 6 hours, download failing"
110 except urllib2.URLError as error:
112 if isinstance(error.args[0], IOError):
113 errno = error.args[0].errno
115 if errno in [-3, 60, 61, 110, 111]:
116 b.log_line("unable to connect to %s... trying again" % (src_url))
120 print("error.errno: %s" % str(error.errno))
121 except Exception as e:
122 print("error.errno: exception %s" % e)
124 print("error.reason %s" % str(error.reason))
125 except Exception as e:
126 print("error.reason exception %s" % e)
129 o = chroot.popen("cat > %s" % b.src_rpm, mode = "w")
132 bytes = util.sendfile(f, o)
134 b.log_line("error: unable to write to `%s': %s" % (b.src_rpm, e))
139 t = time.time() - start
141 b.log_line("fetched %d bytes" % bytes)
143 b.log_line("fetched %d bytes, %.1f K/s" % (bytes, bytes / 1024.0 / t))
145 def prepare_env(logfile = None):
147 test ! -f /proc/uptime && mount /proc 2>/dev/null
148 test ! -c /dev/full && rm -f /dev/full && mknod -m 666 /dev/full c 1 7
149 test ! -c /dev/null && rm -f /dev/null && mknod -m 666 /dev/null c 1 3
150 test ! -c /dev/random && rm -f /dev/random && mknod -m 644 /dev/random c 1 8
151 test ! -c /dev/urandom && rm -f /dev/urandom && mknod -m 644 /dev/urandom c 1 9
152 test ! -c /dev/zero && rm -f /dev/zero && mknod -m 666 /dev/zero c 1 5
154 # need entry for "/" in mtab, for diskspace() to work in rpm
155 [ -z $(awk '$2 == "/" {print $1; exit}' /etc/mtab) ] && mount -f -t rootfs rootfs /
157 # make neccessary files readable for builder user
158 # TODO: see if they really aren't readable for builder
159 for db in Packages Name Basenames Providename Pubkeys; do
161 test -f $db && chmod a+r $db
164 # try to limit network access for builder account
165 /bin/setfacl -m u:builder:--- /etc/resolv.conf
166 """, 'root', logfile = logfile)
169 packagename = b.get_package_name()
171 # should not really get here
172 b.log_line("error: No .spec not given of malformed: '%s'" % b.spec)
173 res = "FAIL_INTERNAL"
176 status.push("building %s (%s)" % (b.spec, packagename))
177 b.log_line("request from: %s" % r.requester)
179 if check_skip_build(r, b):
180 b.log_line("build skipped due to src builder request")
181 res = "SKIP_REQUESTED"
184 b.log_line("started at: %s" % time.asctime())
186 b.log_line("killing old processes on a builder")
187 chroot.run("/bin/kill --verbose -9 -1", logfile = b.logfile)
189 b.log_line("cleaning up /tmp")
190 chroot.run("rm -rf /tmp/B.*", logfile = b.logfile)
193 b.log_line("installing srpm: %s" % b.src_rpm)
196 install -d %(topdir)s/{BUILD,RPMS};
197 LC_ALL=en_US.UTF-8 rpm -qp --changelog %(src_rpm)s;
198 rpm -Uhv --nodeps %(rpmdefs)s %(src_rpm)s;
201 'topdir' : b.get_topdir(),
202 'rpmdefs' : b.rpmbuild_opts(),
203 'src_rpm' : b.src_rpm
204 }, logfile = b.logfile)
209 b.log_line("error: installing src rpm failed")
210 res = "FAIL_SRPM_INSTALL"
213 chroot.run("set -x; install -m 700 -d %s" % tmpdir, logfile=b.logfile)
214 b.default_target(config.arch)
215 # check for build arch before filling BR
216 cmd = "set -ex; TMPDIR=%(tmpdir)s exec nice -n %(nice)s " \
217 "rpmbuild -bp --short-circuit --nodeps %(rpmdefs)s --define 'prep exit 0' %(topdir)s/%(spec)s" % {
219 'nice' : config.nice,
220 'topdir' : b.get_topdir(),
221 'rpmdefs' : b.rpmbuild_opts(),
224 res = chroot.run(cmd, logfile = b.logfile)
227 b.log_line("error: build arch check (%s) failed" % cmd)
230 if ("no-install-br" not in r.flags) and not install.uninstall_self_conflict(b):
231 res = "FAIL_DEPS_UNINSTALL"
232 if ("no-install-br" not in r.flags) and not install.install_br(r, b):
233 res = "FAIL_DEPS_INSTALL"
235 max_jobs = max(min(int(os.sysconf('SC_NPROCESSORS_ONLN') + 1), config.max_jobs), 1)
237 max_jobs = max(min(config.max_jobs, r.max_jobs), 1)
238 cmd = "set -ex; : build-id: %(r_id)s; TMPDIR=%(tmpdir)s exec nice -n %(nice)s " \
239 "rpmbuild -bb --define '_smp_mflags -j%(max_jobs)d' --define '_make_opts -Otarget' --define '_tld_builder 1' %(rpmdefs)s %(topdir)s/%(spec)s" % {
242 'nice' : config.nice,
243 'rpmdefs' : b.rpmbuild_opts(),
244 'topdir' : b.get_topdir(),
245 'max_jobs' : max_jobs,
248 b.log_line("building RPM using: %s" % cmd)
249 begin_time = time.time()
250 res = chroot.run(cmd, logfile = b.logfile)
251 end_time = time.time()
252 b.log_line("ended at: %s, done in %s" % (time.asctime(), datetime.timedelta(0, end_time - begin_time)))
255 files = util.collect_files(b.logfile, basedir = b.get_topdir())
257 r.chroot_files.extend(files)
259 b.log_line("error: No files produced.")
260 last_section = util.find_last_section(b.logfile)
261 if last_section == None:
264 res = "FAIL_%s" % last_section.upper()
267 # cleanup tmp and build files
270 chmod -R u+rwX %(topdir)s/BUILD;
271 rm -rf %(topdir)s/{tmp,BUILD}
273 'topdir' : b.get_topdir(),
274 }, logfile = b.logfile)
277 util.append_to(b.logfile, l)
280 rpm_cache_dir = config.rpm_cache_dir
281 if "test-build" not in r.flags:
282 # NOTE: copying to cache dir doesn't mean that build failed, so ignore result
283 b.log_line("copy rpm files to cache_dir: %s" % rpm_cache_dir)
285 "cp -f %s %s && poldek --mo=nodiff --mkidxz -s %s/" % \
286 (' '.join(b.files), rpm_cache_dir, rpm_cache_dir),
287 logfile = b.logfile, user = "root"
290 ll("test-build: not copying to " + rpm_cache_dir)
291 ll("Begin-TLD-Builder-Info")
292 if "upgrade" in r.flags:
293 b.upgraded = install.upgrade_from_batch(r, b)
296 ll("End-TLD-Builder-Info")
299 local = r.tmp_dir + os.path.basename(f)
300 chroot.cp(f, outfile = local, rm = True)
303 # cleanup all remains from this build
308 'topdir' : b.get_topdir(),
309 }, logfile = b.logfile)
312 c="file:SRPMS:%s\n" % b.src_rpm
314 c=c + "file:ARCH:%s\n" % os.path.basename(f)
318 if config.gen_upinfo and b.files != [] and 'test-build' not in r.flags:
319 fname = r.tmp_dir + b.src_rpm + ".uploadinfo"
321 f.write(uploadinfo(b))
323 ftp.add(fname, "uploadinfo")
329 def handle_request(r):
332 build.build_all(r, build_rpm)
333 report.send_report(r, is_src = False)
340 f = open("/proc/loadavg")
341 if float(f.readline().split()[2]) > config.max_load:
348 def main_for(builder):
353 q = B_Queue(path.queue_file + "-" + config.builder)
359 req = pick_request(q)
362 # high priority tasks have priority < 0, normal tasks >= 0
363 if req.priority >= 0:
365 # allow only one build in given builder at once
366 if not lock.lock("building-rpm-for-%s" % config.builder, non_block = 1):
370 # not more then job_slots builds at once
372 for slot in range(config.job_slots):
373 if lock.lock("building-rpm-slot-%d" % slot, non_block = 1):
379 # record fact that we got lock for this builder, load balancer
380 # will use it for fair-queuing
381 l = lock.lock("got-lock")
382 f = open(path.got_lock_file, "a")
383 f.write(config.builder + "\n")
387 # be able to avoid locking with very low priority
388 if req.priority > -1000:
391 # allow only one build in given builder at once
392 if not lock.lock("building-high-priority-rpm-for-%s" % config.builder, non_block = 1):
395 msg = "HIGH PRIORITY: "
397 msg += "handling request %s (%d) for %s from %s, priority %s" \
398 % (req.id, req.no, config.builder, req.requester, req.priority)
410 q = B_Queue(path.queue_file + "-" + config.builder)
413 previouslen=len(q.requests)
414 q.requests=list(filter(otherreqs, q.requests))
415 if len(q.requests)<previouslen:
420 if len(sys.argv) < 2:
421 raise Exception("fatal: need to have builder name as first arg")
422 return main_for(sys.argv[1])
424 if __name__ == '__main__':