blob: c7cb34f0cc24e03ecd56756e8bfb7dee8577bccc [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#
2# BitBake Process based server.
3#
4# Copyright (C) 2010 Bob Foerster <robert@erafx.com>
5#
Brad Bishopc342db32019-05-15 21:57:59 -04006# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
9"""
10 This module implements a multiprocessing.Process based server for bitbake.
11"""
12
13import bb
14import bb.event
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015import logging
16import multiprocessing
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017import threading
18import array
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019import os
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020import sys
21import time
22import select
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023import socket
24import subprocess
25import errno
26import re
27import datetime
Andrew Geisslerc9f78652020-09-18 14:11:35 -050028import pickle
Brad Bishopd7bf8c12018-02-25 22:55:05 -050029import bb.server.xmlrpcserver
30from bb import daemonize
31from multiprocessing import queues
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032
33logger = logging.getLogger('BitBake')
34
Brad Bishopd7bf8c12018-02-25 22:55:05 -050035class ProcessTimeout(SystemExit):
36 pass
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037
Andrew Geisslerc9f78652020-09-18 14:11:35 -050038def serverlog(msg):
39 print(str(os.getpid()) + " " + datetime.datetime.now().strftime('%H:%M:%S.%f') + " " + msg)
40 sys.stdout.flush()
41
Andrew Geissler635e0e42020-08-21 15:58:33 -050042class ProcessServer():
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043 profile_filename = "profile.log"
44 profile_processed_filename = "profile.log.processed"
45
Andrew Geisslerc9f78652020-09-18 14:11:35 -050046 def __init__(self, lock, lockname, sock, sockname, server_timeout, xmlrpcinterface):
Brad Bishopd7bf8c12018-02-25 22:55:05 -050047 self.command_channel = False
48 self.command_channel_reply = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050049 self.quit = False
Brad Bishop6e60e8b2018-02-01 10:27:11 -050050 self.heartbeat_seconds = 1 # default, BB_HEARTBEAT_EVENT will be checked once we have a datastore.
51 self.next_heartbeat = time.time()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052
Brad Bishopd7bf8c12018-02-25 22:55:05 -050053 self.event_handle = None
Andrew Geissler635e0e42020-08-21 15:58:33 -050054 self.hadanyui = False
Brad Bishopd7bf8c12018-02-25 22:55:05 -050055 self.haveui = False
Andrew Geisslerb7d28612020-07-24 16:15:54 -050056 self.maxuiwait = 30
Brad Bishopd7bf8c12018-02-25 22:55:05 -050057 self.xmlrpc = False
58
59 self._idlefuns = {}
60
61 self.bitbake_lock = lock
Andrew Geisslerc9f78652020-09-18 14:11:35 -050062 self.bitbake_lock_name = lockname
Brad Bishopd7bf8c12018-02-25 22:55:05 -050063 self.sock = sock
64 self.sockname = sockname
65
Andrew Geissler635e0e42020-08-21 15:58:33 -050066 self.server_timeout = server_timeout
Andrew Geisslerc9f78652020-09-18 14:11:35 -050067 self.timeout = self.server_timeout
Andrew Geissler635e0e42020-08-21 15:58:33 -050068 self.xmlrpcinterface = xmlrpcinterface
69
Brad Bishopd7bf8c12018-02-25 22:55:05 -050070 def register_idle_function(self, function, data):
71 """Register a function to be called while the server is idle"""
72 assert hasattr(function, '__call__')
73 self._idlefuns[function] = data
Patrick Williamsc124f4f2015-09-15 14:41:29 -050074
75 def run(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -050076
77 if self.xmlrpcinterface[0]:
78 self.xmlrpc = bb.server.xmlrpcserver.BitBakeXMLRPCServer(self.xmlrpcinterface, self.cooker, self)
79
Andrew Geisslerc9f78652020-09-18 14:11:35 -050080 serverlog("Bitbake XMLRPC server address: %s, server port: %s" % (self.xmlrpc.host, self.xmlrpc.port))
Brad Bishopd7bf8c12018-02-25 22:55:05 -050081
82 try:
83 self.bitbake_lock.seek(0)
84 self.bitbake_lock.truncate()
85 if self.xmlrpc:
86 self.bitbake_lock.write("%s %s:%s\n" % (os.getpid(), self.xmlrpc.host, self.xmlrpc.port))
87 else:
88 self.bitbake_lock.write("%s\n" % (os.getpid()))
89 self.bitbake_lock.flush()
90 except Exception as e:
Andrew Geisslerc9f78652020-09-18 14:11:35 -050091 serverlog("Error writing to lock file: %s" % str(e))
Brad Bishopd7bf8c12018-02-25 22:55:05 -050092 pass
93
94 if self.cooker.configuration.profile:
95 try:
96 import cProfile as profile
97 except:
98 import profile
99 prof = profile.Profile()
100
101 ret = profile.Profile.runcall(prof, self.main)
102
103 prof.dump_stats("profile.log")
104 bb.utils.process_profilelog("profile.log")
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500105 serverlog("Raw profiling information saved to profile.log and processed statistics to profile.log.processed")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500106
107 else:
108 ret = self.main()
109
110 return ret
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500111
112 def main(self):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500113 self.cooker.pre_serve()
114
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500115 bb.utils.set_process_name("Cooker")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500116
117 ready = []
Brad Bishopf058f492019-01-28 23:50:33 -0500118 newconnections = []
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500119
120 self.controllersock = False
121 fds = [self.sock]
122 if self.xmlrpc:
123 fds.append(self.xmlrpc)
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500124 seendata = False
125 serverlog("Entering server connection loop")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500126
127 def disconnect_client(self, fds):
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500128 serverlog("Disconnecting Client")
Brad Bishopf058f492019-01-28 23:50:33 -0500129 if self.controllersock:
130 fds.remove(self.controllersock)
131 self.controllersock.close()
132 self.controllersock = False
133 if self.haveui:
134 fds.remove(self.command_channel)
135 bb.event.unregister_UIHhandler(self.event_handle, True)
136 self.command_channel_reply.writer.close()
137 self.event_writer.writer.close()
138 self.command_channel.close()
139 self.command_channel = False
140 del self.event_writer
141 self.lastui = time.time()
142 self.cooker.clientComplete()
143 self.haveui = False
144 ready = select.select(fds,[],[],0)[0]
145 if newconnections:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500146 serverlog("Starting new client")
Brad Bishopf058f492019-01-28 23:50:33 -0500147 conn = newconnections.pop(-1)
148 fds.append(conn)
149 self.controllersock = conn
150 elif self.timeout is None and not ready:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500151 serverlog("No timeout, exiting.")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500152 self.quit = True
153
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500154 self.lastui = time.time()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500155 while not self.quit:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500156 if self.sock in ready:
Brad Bishopf058f492019-01-28 23:50:33 -0500157 while select.select([self.sock],[],[],0)[0]:
158 controllersock, address = self.sock.accept()
159 if self.controllersock:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500160 serverlog("Queuing %s (%s)" % (str(ready), str(newconnections)))
Brad Bishopf058f492019-01-28 23:50:33 -0500161 newconnections.append(controllersock)
162 else:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500163 serverlog("Accepting %s (%s)" % (str(ready), str(newconnections)))
Brad Bishopf058f492019-01-28 23:50:33 -0500164 self.controllersock = controllersock
165 fds.append(controllersock)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500166 if self.controllersock in ready:
167 try:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500168 serverlog("Processing Client")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500169 ui_fds = recvfds(self.controllersock, 3)
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500170 serverlog("Connecting Client")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500171
172 # Where to write events to
173 writer = ConnectionWriter(ui_fds[0])
174 self.event_handle = bb.event.register_UIHhandler(writer, True)
175 self.event_writer = writer
176
177 # Where to read commands from
178 reader = ConnectionReader(ui_fds[1])
179 fds.append(reader)
180 self.command_channel = reader
181
182 # Where to send command return values to
183 writer = ConnectionWriter(ui_fds[2])
184 self.command_channel_reply = writer
185
186 self.haveui = True
Andrew Geissler635e0e42020-08-21 15:58:33 -0500187 self.hadanyui = True
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500188
189 except (EOFError, OSError):
190 disconnect_client(self, fds)
191
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500192 if not self.timeout == -1.0 and not self.haveui and self.timeout and \
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500193 (self.lastui + self.timeout) < time.time():
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500194 serverlog("Server timeout, exiting.")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500195 self.quit = True
196
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500197 # If we don't see a UI connection within maxuiwait, its unlikely we're going to see
198 # one. We have had issue with processes hanging indefinitely so timing out UI-less
199 # servers is useful.
Andrew Geissler635e0e42020-08-21 15:58:33 -0500200 if not self.hadanyui and not self.xmlrpc and not self.timeout and (self.lastui + self.maxuiwait) < time.time():
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500201 serverlog("No UI connection within max timeout, exiting to avoid infinite loop.")
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500202 self.quit = True
203
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500204 if self.command_channel in ready:
205 try:
206 command = self.command_channel.get()
207 except EOFError:
208 # Client connection shutting down
209 ready = []
210 disconnect_client(self, fds)
211 continue
212 if command[0] == "terminateServer":
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500213 self.quit = True
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500214 continue
215 try:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500216 serverlog("Running command %s" % command)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500217 self.command_channel_reply.send(self.cooker.command.runCommand(command))
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500218 serverlog("Command Completed")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500219 except Exception as e:
220 logger.exception('Exception in server main event loop running command %s (%s)' % (command, str(e)))
221
222 if self.xmlrpc in ready:
223 self.xmlrpc.handle_requests()
224
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500225 if not seendata and hasattr(self.cooker, "data"):
226 heartbeat_event = self.cooker.data.getVar('BB_HEARTBEAT_EVENT')
227 if heartbeat_event:
228 try:
229 self.heartbeat_seconds = float(heartbeat_event)
230 except:
231 bb.warn('Ignoring invalid BB_HEARTBEAT_EVENT=%s, must be a float specifying seconds.' % heartbeat_event)
232
233 self.timeout = self.server_timeout or self.cooker.data.getVar('BB_SERVER_TIMEOUT')
234 try:
235 if self.timeout:
236 self.timeout = float(self.timeout)
237 except:
238 bb.warn('Ignoring invalid BB_SERVER_TIMEOUT=%s, must be a float specifying seconds.' % self.timeout)
239 seendata = True
240
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500241 ready = self.idle_commands(.1, fds)
242
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500243 if len(threading.enumerate()) != 1:
244 serverlog("More than one thread left?: " + str(threading.enumerate()))
245
246 serverlog("Exiting")
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500247 # Remove the socket file so we don't get any more connections to avoid races
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500248 try:
249 os.unlink(self.sockname)
250 except:
251 pass
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500252 self.sock.close()
253
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500254 try:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500255 self.cooker.shutdown(True)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400256 self.cooker.notifier.stop()
257 self.cooker.confignotifier.stop()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500258 except:
259 pass
260
261 self.cooker.post_serve()
262
Andrew Geissler635e0e42020-08-21 15:58:33 -0500263 # Flush logs before we release the lock
264 sys.stdout.flush()
265 sys.stderr.flush()
266
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500267 # Finally release the lockfile but warn about other processes holding it open
268 lock = self.bitbake_lock
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500269 lockfile = self.bitbake_lock_name
270
271 def get_lock_contents(lockfile):
272 try:
273 with open(lockfile, "r") as f:
274 return f.readlines()
275 except FileNotFoundError:
276 return None
277
278 lockcontents = get_lock_contents(lockfile)
279 serverlog("Original lockfile contents: " + str(lockcontents))
280
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500281 lock.close()
282 lock = None
283
284 while not lock:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500285 i = 0
286 lock = None
287 while not lock and i < 30:
288 lock = bb.utils.lockfile(lockfile, shared=False, retry=False, block=False)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500289 if not lock:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500290 newlockcontents = get_lock_contents(lockfile)
291 if newlockcontents != lockcontents:
292 # A new server was started, the lockfile contents changed, we can exit
293 serverlog("Lockfile now contains different contents, exiting: " + str(newlockcontents))
294 return
295 time.sleep(0.1)
296 i += 1
297 if lock:
298 # We hold the lock so we can remove the file (hide stale pid data)
299 # via unlockfile.
300 bb.utils.unlockfile(lock)
301 serverlog("Exiting as we could obtain the lock")
302 return
303
304 if not lock:
305 # Some systems may not have lsof available
306 procs = None
307 try:
308 procs = subprocess.check_output(["lsof", '-w', lockfile], stderr=subprocess.STDOUT)
309 except subprocess.CalledProcessError:
310 # File was deleted?
311 continue
312 except OSError as e:
313 if e.errno != errno.ENOENT:
314 raise
315 if procs is None:
316 # Fall back to fuser if lsof is unavailable
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500317 try:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500318 procs = subprocess.check_output(["fuser", '-v', lockfile], stderr=subprocess.STDOUT)
319 except subprocess.CalledProcessError:
320 # File was deleted?
321 continue
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500322 except OSError as e:
323 if e.errno != errno.ENOENT:
324 raise
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500325
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500326 msg = "Delaying shutdown due to active processes which appear to be holding bitbake.lock"
327 if procs:
328 msg += ":\n%s" % str(procs.decode("utf-8"))
329 serverlog(msg)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500330
331 def idle_commands(self, delay, fds=None):
332 nextsleep = delay
333 if not fds:
334 fds = []
335
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600336 for function, data in list(self._idlefuns.items()):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500337 try:
338 retval = function(self, data, False)
339 if retval is False:
340 del self._idlefuns[function]
341 nextsleep = None
342 elif retval is True:
343 nextsleep = None
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600344 elif isinstance(retval, float) and nextsleep:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500345 if (retval < nextsleep):
346 nextsleep = retval
347 elif nextsleep is None:
348 continue
349 else:
350 fds = fds + retval
351 except SystemExit:
352 raise
353 except Exception as exc:
354 if not isinstance(exc, bb.BBHandledException):
355 logger.exception('Running idle function')
356 del self._idlefuns[function]
357 self.quit = True
358
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500359 # Create new heartbeat event?
360 now = time.time()
361 if now >= self.next_heartbeat:
362 # We might have missed heartbeats. Just trigger once in
363 # that case and continue after the usual delay.
364 self.next_heartbeat += self.heartbeat_seconds
365 if self.next_heartbeat <= now:
366 self.next_heartbeat = now + self.heartbeat_seconds
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500367 if hasattr(self.cooker, "data"):
368 heartbeat = bb.event.HeartbeatEvent(now)
369 bb.event.fire(heartbeat, self.cooker.data)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500370 if nextsleep and now + nextsleep > self.next_heartbeat:
371 # Shorten timeout so that we we wake up in time for
372 # the heartbeat.
373 nextsleep = self.next_heartbeat - now
374
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500375 if nextsleep is not None:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500376 if self.xmlrpc:
377 nextsleep = self.xmlrpc.get_timeout(nextsleep)
378 try:
379 return select.select(fds,[],[],nextsleep)[0]
380 except InterruptedError:
381 # Ignore EINTR
382 return []
383 else:
384 return select.select(fds,[],[],0)[0]
385
386
387class ServerCommunicator():
388 def __init__(self, connection, recv):
389 self.connection = connection
390 self.recv = recv
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500391
392 def runCommand(self, command):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500393 self.connection.send(command)
394 if not self.recv.poll(30):
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500395 logger.info("No reply from server in 30s")
Andrew Geissler475cb722020-07-10 16:00:51 -0500396 if not self.recv.poll(30):
397 raise ProcessTimeout("Timeout while waiting for a reply from the bitbake server (60s)")
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500398 ret, exc = self.recv.get()
399 # Should probably turn all exceptions in exc back into exceptions?
400 # For now, at least handle BBHandledException
401 if exc and ("BBHandledException" in exc or "SystemExit" in exc):
402 raise bb.BBHandledException()
403 return ret, exc
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500404
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500405 def updateFeatureSet(self, featureset):
406 _, error = self.runCommand(["setFeatures", featureset])
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500407 if error:
408 logger.error("Unable to set the cooker to the correct featureset: %s" % error)
409 raise BaseException(error)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500410
411 def getEventHandle(self):
412 handle, error = self.runCommand(["getUIHandlerNum"])
413 if error:
414 logger.error("Unable to get UI Handler Number: %s" % error)
415 raise BaseException(error)
416
417 return handle
418
419 def terminateServer(self):
420 self.connection.send(['terminateServer'])
421 return
422
423class BitBakeProcessServerConnection(object):
424 def __init__(self, ui_channel, recv, eq, sock):
425 self.connection = ServerCommunicator(ui_channel, recv)
426 self.events = eq
427 # Save sock so it doesn't get gc'd for the life of our connection
428 self.socket_connection = sock
429
430 def terminate(self):
431 self.socket_connection.close()
432 self.connection.connection.close()
433 self.connection.recv.close()
434 return
435
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500436start_log_format = '--- Starting bitbake server pid %s at %s ---'
437start_log_datetime_format = '%Y-%m-%d %H:%M:%S.%f'
438
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500439class BitBakeServer(object):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500440
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500441 def __init__(self, lock, sockname, featureset, server_timeout, xmlrpcinterface):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500442
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500443 self.server_timeout = server_timeout
444 self.xmlrpcinterface = xmlrpcinterface
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500445 self.featureset = featureset
446 self.sockname = sockname
447 self.bitbake_lock = lock
448 self.readypipe, self.readypipein = os.pipe()
449
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800450 # Place the log in the builddirectory alongside the lock file
451 logfile = os.path.join(os.path.dirname(self.bitbake_lock.name), "bitbake-cookerdaemon.log")
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500452 self.logfile = logfile
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800453
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500454 startdatetime = datetime.datetime.now()
455 bb.daemonize.createDaemon(self._startServer, logfile)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500456 self.bitbake_lock.close()
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800457 os.close(self.readypipein)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500458
459 ready = ConnectionReader(self.readypipe)
Brad Bishopf058f492019-01-28 23:50:33 -0500460 r = ready.poll(5)
461 if not r:
462 bb.note("Bitbake server didn't start within 5 seconds, waiting for 90")
463 r = ready.poll(90)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500464 if r:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800465 try:
466 r = ready.get()
467 except EOFError:
468 # Trap the child exitting/closing the pipe and error out
469 r = None
Brad Bishopf058f492019-01-28 23:50:33 -0500470 if not r or r[0] != "r":
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500471 ready.close()
Brad Bishopf058f492019-01-28 23:50:33 -0500472 bb.error("Unable to start bitbake server (%s)" % str(r))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500473 if os.path.exists(logfile):
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500474 logstart_re = re.compile(start_log_format % ('([0-9]+)', '([0-9-]+ [0-9:.]+)'))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500475 started = False
476 lines = []
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300477 lastlines = []
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500478 with open(logfile, "r") as f:
479 for line in f:
480 if started:
481 lines.append(line)
482 else:
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300483 lastlines.append(line)
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500484 res = logstart_re.search(line.rstrip())
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500485 if res:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500486 ldatetime = datetime.datetime.strptime(res.group(2), start_log_datetime_format)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500487 if ldatetime >= startdatetime:
488 started = True
489 lines.append(line)
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300490 if len(lastlines) > 60:
491 lastlines = lastlines[-60:]
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500492 if lines:
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300493 if len(lines) > 60:
494 bb.error("Last 60 lines of server log for this session (%s):\n%s" % (logfile, "".join(lines[-60:])))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500495 else:
496 bb.error("Server log for this session (%s):\n%s" % (logfile, "".join(lines)))
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300497 elif lastlines:
498 bb.error("Server didn't start, last 60 loglines (%s):\n%s" % (logfile, "".join(lastlines)))
499 else:
500 bb.error("%s doesn't exist" % logfile)
501
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500502 raise SystemExit(1)
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300503
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500504 ready.close()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500505
506 def _startServer(self):
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500507 os.close(self.readypipe)
508 os.set_inheritable(self.bitbake_lock.fileno(), True)
509 os.set_inheritable(self.readypipein, True)
510 serverscript = os.path.realpath(os.path.dirname(__file__) + "/../../../bin/bitbake-server")
511 os.execl(sys.executable, "bitbake-server", serverscript, "decafbad", str(self.bitbake_lock.fileno()), str(self.readypipein), self.logfile, self.bitbake_lock.name, self.sockname, str(self.server_timeout), str(self.xmlrpcinterface[0]), str(self.xmlrpcinterface[1]))
Brad Bishope2d5b612018-11-23 10:55:50 +1300512
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500513def execServer(lockfd, readypipeinfd, lockname, sockname, server_timeout, xmlrpcinterface):
514
515 import bb.cookerdata
516 import bb.cooker
517
518 serverlog(start_log_format % (os.getpid(), datetime.datetime.now().strftime(start_log_datetime_format)))
519
520 try:
521 bitbake_lock = os.fdopen(lockfd, "w")
522
523 # Create server control socket
524 if os.path.exists(sockname):
525 os.unlink(sockname)
526
527 sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
528 # AF_UNIX has path length issues so chdir here to workaround
529 cwd = os.getcwd()
Brad Bishop08902b02019-08-20 09:16:51 -0400530 try:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500531 os.chdir(os.path.dirname(sockname))
532 sock.bind(os.path.basename(sockname))
Andrew Geissler635e0e42020-08-21 15:58:33 -0500533 finally:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500534 os.chdir(cwd)
535 sock.listen(1)
536
537 server = ProcessServer(bitbake_lock, lockname, sock, sockname, server_timeout, xmlrpcinterface)
538 writer = ConnectionWriter(readypipeinfd)
539 try:
540 featureset = []
541 cooker = bb.cooker.BBCooker(featureset, server.register_idle_function)
542 except bb.BBHandledException:
543 return None
544 writer.send("r")
545 writer.close()
546 server.cooker = cooker
547 serverlog("Started bitbake server pid %d" % os.getpid())
548
549 server.run()
550 finally:
551 # Flush any ,essages/errors to the logfile before exit
552 sys.stdout.flush()
553 sys.stderr.flush()
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500554
555def connectProcessServer(sockname, featureset):
556 # Connect to socket
557 sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
558 # AF_UNIX has path length issues so chdir here to workaround
559 cwd = os.getcwd()
560
Brad Bishopf058f492019-01-28 23:50:33 -0500561 readfd = writefd = readfd1 = writefd1 = readfd2 = writefd2 = None
562 eq = command_chan_recv = command_chan = None
563
564 sock.settimeout(10)
565
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500566 try:
Brad Bishope2d5b612018-11-23 10:55:50 +1300567 try:
568 os.chdir(os.path.dirname(sockname))
Brad Bishopf058f492019-01-28 23:50:33 -0500569 finished = False
570 while not finished:
571 try:
572 sock.connect(os.path.basename(sockname))
573 finished = True
574 except IOError as e:
575 if e.errno == errno.EWOULDBLOCK:
576 pass
Richard Purdie3da11142019-02-05 21:34:37 +0000577 raise
Brad Bishope2d5b612018-11-23 10:55:50 +1300578 finally:
579 os.chdir(cwd)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500580
581 # Send an fd for the remote to write events to
582 readfd, writefd = os.pipe()
583 eq = BBUIEventQueue(readfd)
584 # Send an fd for the remote to recieve commands from
585 readfd1, writefd1 = os.pipe()
586 command_chan = ConnectionWriter(writefd1)
587 # Send an fd for the remote to write commands results to
588 readfd2, writefd2 = os.pipe()
589 command_chan_recv = ConnectionReader(readfd2)
590
591 sendfds(sock, [writefd, readfd1, writefd2])
592
593 server_connection = BitBakeProcessServerConnection(command_chan, command_chan_recv, eq, sock)
594
595 # Close the ends of the pipes we won't use
596 for i in [writefd, readfd1, writefd2]:
597 os.close(i)
598
599 server_connection.connection.updateFeatureSet(featureset)
600
601 except (Exception, SystemExit) as e:
602 if command_chan_recv:
603 command_chan_recv.close()
604 if command_chan:
605 command_chan.close()
606 for i in [writefd, readfd1, writefd2]:
607 try:
Brad Bishope2d5b612018-11-23 10:55:50 +1300608 if i:
609 os.close(i)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500610 except OSError:
611 pass
612 sock.close()
613 raise
614
615 return server_connection
616
617def sendfds(sock, fds):
618 '''Send an array of fds over an AF_UNIX socket.'''
619 fds = array.array('i', fds)
620 msg = bytes([len(fds) % 256])
621 sock.sendmsg([msg], [(socket.SOL_SOCKET, socket.SCM_RIGHTS, fds)])
622
623def recvfds(sock, size):
624 '''Receive an array of fds over an AF_UNIX socket.'''
625 a = array.array('i')
626 bytes_size = a.itemsize * size
627 msg, ancdata, flags, addr = sock.recvmsg(1, socket.CMSG_LEN(bytes_size))
628 if not msg and not ancdata:
629 raise EOFError
630 try:
631 if len(ancdata) != 1:
632 raise RuntimeError('received %d items of ancdata' %
633 len(ancdata))
634 cmsg_level, cmsg_type, cmsg_data = ancdata[0]
635 if (cmsg_level == socket.SOL_SOCKET and
636 cmsg_type == socket.SCM_RIGHTS):
637 if len(cmsg_data) % a.itemsize != 0:
638 raise ValueError
639 a.frombytes(cmsg_data)
640 assert len(a) % 256 == msg[0]
641 return list(a)
642 except (ValueError, IndexError):
643 pass
644 raise RuntimeError('Invalid data received')
645
646class BBUIEventQueue:
647 def __init__(self, readfd):
648
649 self.eventQueue = []
650 self.eventQueueLock = threading.Lock()
651 self.eventQueueNotify = threading.Event()
652
653 self.reader = ConnectionReader(readfd)
654
655 self.t = threading.Thread()
656 self.t.setDaemon(True)
657 self.t.run = self.startCallbackHandler
658 self.t.start()
659
660 def getEvent(self):
661 self.eventQueueLock.acquire()
662
663 if len(self.eventQueue) == 0:
664 self.eventQueueLock.release()
665 return None
666
667 item = self.eventQueue.pop(0)
668
669 if len(self.eventQueue) == 0:
670 self.eventQueueNotify.clear()
671
672 self.eventQueueLock.release()
673 return item
674
675 def waitEvent(self, delay):
676 self.eventQueueNotify.wait(delay)
677 return self.getEvent()
678
679 def queue_event(self, event):
680 self.eventQueueLock.acquire()
681 self.eventQueue.append(event)
682 self.eventQueueNotify.set()
683 self.eventQueueLock.release()
684
685 def send_event(self, event):
686 self.queue_event(pickle.loads(event))
687
688 def startCallbackHandler(self):
689 bb.utils.set_process_name("UIEventQueue")
690 while True:
691 try:
692 self.reader.wait()
693 event = self.reader.get()
694 self.queue_event(event)
695 except EOFError:
696 # Easiest way to exit is to close the file descriptor to cause an exit
697 break
698 self.reader.close()
699
700class ConnectionReader(object):
701
702 def __init__(self, fd):
703 self.reader = multiprocessing.connection.Connection(fd, writable=False)
704 self.rlock = multiprocessing.Lock()
705
706 def wait(self, timeout=None):
707 return multiprocessing.connection.wait([self.reader], timeout)
708
709 def poll(self, timeout=None):
710 return self.reader.poll(timeout)
711
712 def get(self):
713 with self.rlock:
714 res = self.reader.recv_bytes()
715 return multiprocessing.reduction.ForkingPickler.loads(res)
716
717 def fileno(self):
718 return self.reader.fileno()
719
720 def close(self):
721 return self.reader.close()
722
723
724class ConnectionWriter(object):
725
726 def __init__(self, fd):
727 self.writer = multiprocessing.connection.Connection(fd, readable=False)
728 self.wlock = multiprocessing.Lock()
729 # Why bb.event needs this I have no idea
730 self.event = self
731
732 def send(self, obj):
733 obj = multiprocessing.reduction.ForkingPickler.dumps(obj)
734 with self.wlock:
735 self.writer.send_bytes(obj)
736
737 def fileno(self):
738 return self.writer.fileno()
739
740 def close(self):
741 return self.writer.close()