2021-03-05 18:03:23 +08:00
|
|
|
import importlib
|
|
|
|
import os
|
|
|
|
import signal
|
2021-11-17 19:02:31 +08:00
|
|
|
import struct
|
2021-03-05 18:03:23 +08:00
|
|
|
import time
|
|
|
|
import subprocess
|
2021-12-29 01:07:00 +08:00
|
|
|
from typing import Optional, List, ValuesView
|
2021-03-05 18:03:23 +08:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
from multiprocessing import Process
|
|
|
|
|
|
|
|
from setproctitle import setproctitle # pylint: disable=no-name-in-module
|
|
|
|
|
|
|
|
import cereal.messaging as messaging
|
|
|
|
import selfdrive.crash as crash
|
|
|
|
from common.basedir import BASEDIR
|
|
|
|
from common.params import Params
|
2021-03-09 11:17:46 +08:00
|
|
|
from common.realtime import sec_since_boot
|
2021-03-05 18:03:23 +08:00
|
|
|
from selfdrive.swaglog import cloudlog
|
|
|
|
from selfdrive.hardware import HARDWARE
|
|
|
|
from cereal import log
|
|
|
|
|
2021-03-09 11:17:46 +08:00
|
|
|
WATCHDOG_FN = "/dev/shm/wd_"
|
|
|
|
ENABLE_WATCHDOG = os.getenv("NO_WATCHDOG") is None
|
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def launcher(proc: str, name: str) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
try:
|
|
|
|
# import the process
|
|
|
|
mod = importlib.import_module(proc)
|
|
|
|
|
|
|
|
# rename the process
|
|
|
|
setproctitle(proc)
|
|
|
|
|
|
|
|
# create new context since we forked
|
|
|
|
messaging.context = messaging.Context()
|
|
|
|
|
2021-12-15 12:43:26 +08:00
|
|
|
# add daemon name to cloudlog ctx
|
|
|
|
cloudlog.bind(daemon=name)
|
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
# exec the process
|
2021-12-29 01:07:00 +08:00
|
|
|
getattr(mod, 'main')()
|
2021-03-05 18:03:23 +08:00
|
|
|
except KeyboardInterrupt:
|
2021-12-16 21:58:17 +08:00
|
|
|
cloudlog.warning(f"child {proc} got SIGINT")
|
2021-03-05 18:03:23 +08:00
|
|
|
except Exception:
|
2021-08-06 03:05:49 +08:00
|
|
|
# can't install the crash handler because sys.excepthook doesn't play nice
|
2021-03-05 18:03:23 +08:00
|
|
|
# with threads, so catch it here.
|
|
|
|
crash.capture_exception()
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def nativelauncher(pargs: List[str], cwd: str) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
# exec the process
|
|
|
|
os.chdir(cwd)
|
|
|
|
os.execvp(pargs[0], pargs)
|
|
|
|
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def join_process(process: Process, timeout: float) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
# Process().join(timeout) will hang due to a python 3 bug: https://bugs.python.org/issue28382
|
|
|
|
# We have to poll the exitcode instead
|
|
|
|
t = time.monotonic()
|
|
|
|
while time.monotonic() - t < timeout and process.exitcode is None:
|
|
|
|
time.sleep(0.001)
|
|
|
|
|
|
|
|
|
|
|
|
class ManagerProcess(ABC):
|
|
|
|
unkillable = False
|
|
|
|
daemon = False
|
|
|
|
sigkill = False
|
2021-12-29 01:07:00 +08:00
|
|
|
persistent = False
|
2022-01-11 21:07:35 +08:00
|
|
|
driverview = False
|
2021-12-29 01:07:00 +08:00
|
|
|
proc: Optional[Process] = None
|
2021-03-08 19:18:58 +08:00
|
|
|
enabled = True
|
2021-03-05 18:03:23 +08:00
|
|
|
name = ""
|
|
|
|
|
2021-03-09 11:17:46 +08:00
|
|
|
last_watchdog_time = 0
|
|
|
|
watchdog_max_dt = None
|
|
|
|
watchdog_seen = False
|
2021-03-26 00:27:49 +08:00
|
|
|
shutting_down = False
|
2021-03-09 11:17:46 +08:00
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
@abstractmethod
|
2021-12-29 01:07:00 +08:00
|
|
|
def prepare(self) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
2021-12-29 01:07:00 +08:00
|
|
|
def start(self) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
pass
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def restart(self) -> None:
|
2021-03-09 11:17:46 +08:00
|
|
|
self.stop()
|
|
|
|
self.start()
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def check_watchdog(self, started: bool) -> None:
|
2021-03-09 11:17:46 +08:00
|
|
|
if self.watchdog_max_dt is None or self.proc is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
fn = WATCHDOG_FN + str(self.proc.pid)
|
2021-12-29 01:07:00 +08:00
|
|
|
# TODO: why can't pylint find struct.unpack?
|
|
|
|
self.last_watchdog_time = struct.unpack('Q', open(fn, "rb").read())[0] # pylint: disable=no-member
|
2021-03-09 11:17:46 +08:00
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
dt = sec_since_boot() - self.last_watchdog_time / 1e9
|
|
|
|
|
|
|
|
if dt > self.watchdog_max_dt:
|
|
|
|
# Only restart while offroad for now
|
2021-07-18 05:52:05 +08:00
|
|
|
if self.watchdog_seen and ENABLE_WATCHDOG:
|
|
|
|
cloudlog.error(f"Watchdog timeout for {self.name} (exitcode {self.proc.exitcode}) restarting ({started=})")
|
2021-03-09 11:17:46 +08:00
|
|
|
self.restart()
|
|
|
|
else:
|
|
|
|
self.watchdog_seen = True
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def stop(self, retry: bool=True, block: bool=True) -> Optional[int]:
|
2021-03-05 18:03:23 +08:00
|
|
|
if self.proc is None:
|
2021-12-29 01:07:00 +08:00
|
|
|
return None
|
2021-03-05 18:03:23 +08:00
|
|
|
|
|
|
|
if self.proc.exitcode is None:
|
2021-03-26 00:27:49 +08:00
|
|
|
if not self.shutting_down:
|
|
|
|
cloudlog.info(f"killing {self.name}")
|
|
|
|
sig = signal.SIGKILL if self.sigkill else signal.SIGINT
|
|
|
|
self.signal(sig)
|
|
|
|
self.shutting_down = True
|
|
|
|
|
|
|
|
if not block:
|
2021-12-29 01:07:00 +08:00
|
|
|
return None
|
2021-03-05 18:03:23 +08:00
|
|
|
|
|
|
|
join_process(self.proc, 5)
|
|
|
|
|
|
|
|
# If process failed to die send SIGKILL or reboot
|
|
|
|
if self.proc.exitcode is None and retry:
|
|
|
|
if self.unkillable:
|
|
|
|
cloudlog.critical(f"unkillable process {self.name} failed to exit! rebooting in 15 if it doesn't die")
|
|
|
|
join_process(self.proc, 15)
|
|
|
|
|
|
|
|
if self.proc.exitcode is None:
|
|
|
|
cloudlog.critical(f"unkillable process {self.name} failed to die!")
|
|
|
|
os.system("date >> /data/unkillable_reboot")
|
|
|
|
os.sync()
|
|
|
|
HARDWARE.reboot()
|
|
|
|
raise RuntimeError
|
|
|
|
else:
|
|
|
|
cloudlog.info(f"killing {self.name} with SIGKILL")
|
|
|
|
self.signal(signal.SIGKILL)
|
|
|
|
self.proc.join()
|
|
|
|
|
|
|
|
ret = self.proc.exitcode
|
|
|
|
cloudlog.info(f"{self.name} is dead with {ret}")
|
|
|
|
|
|
|
|
if self.proc.exitcode is not None:
|
2021-03-26 00:27:49 +08:00
|
|
|
self.shutting_down = False
|
2021-03-05 18:03:23 +08:00
|
|
|
self.proc = None
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def signal(self, sig: int) -> None:
|
2021-03-08 22:42:09 +08:00
|
|
|
if self.proc is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Don't signal if already exited
|
2021-03-05 18:03:23 +08:00
|
|
|
if self.proc.exitcode is not None and self.proc.pid is not None:
|
|
|
|
return
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
# Can't signal if we don't have a pid
|
|
|
|
if self.proc.pid is None:
|
|
|
|
return
|
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
cloudlog.info(f"sending signal {sig} to {self.name}")
|
|
|
|
os.kill(self.proc.pid, sig)
|
|
|
|
|
|
|
|
def get_process_state_msg(self):
|
|
|
|
state = log.ManagerState.ProcessState.new_message()
|
|
|
|
state.name = self.name
|
|
|
|
if self.proc:
|
|
|
|
state.running = self.proc.is_alive()
|
2021-09-16 10:51:55 +08:00
|
|
|
state.shouldBeRunning = self.proc is not None and not self.shutting_down
|
2021-03-05 18:03:23 +08:00
|
|
|
state.pid = self.proc.pid or 0
|
|
|
|
state.exitCode = self.proc.exitcode or 0
|
|
|
|
return state
|
|
|
|
|
|
|
|
|
|
|
|
class NativeProcess(ManagerProcess):
|
2021-03-09 11:17:46 +08:00
|
|
|
def __init__(self, name, cwd, cmdline, enabled=True, persistent=False, driverview=False, unkillable=False, sigkill=False, watchdog_max_dt=None):
|
2021-03-05 18:03:23 +08:00
|
|
|
self.name = name
|
|
|
|
self.cwd = cwd
|
|
|
|
self.cmdline = cmdline
|
2021-03-08 19:18:58 +08:00
|
|
|
self.enabled = enabled
|
2021-03-05 18:03:23 +08:00
|
|
|
self.persistent = persistent
|
|
|
|
self.driverview = driverview
|
|
|
|
self.unkillable = unkillable
|
|
|
|
self.sigkill = sigkill
|
2021-03-09 11:17:46 +08:00
|
|
|
self.watchdog_max_dt = watchdog_max_dt
|
2021-03-05 18:03:23 +08:00
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def prepare(self) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
pass
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def start(self) -> None:
|
2021-03-26 00:27:49 +08:00
|
|
|
# In case we only tried a non blocking stop we need to stop it before restarting
|
|
|
|
if self.shutting_down:
|
|
|
|
self.stop()
|
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
if self.proc is not None:
|
|
|
|
return
|
|
|
|
|
|
|
|
cwd = os.path.join(BASEDIR, self.cwd)
|
2021-12-16 21:58:17 +08:00
|
|
|
cloudlog.info(f"starting process {self.name}")
|
2021-03-05 18:03:23 +08:00
|
|
|
self.proc = Process(name=self.name, target=nativelauncher, args=(self.cmdline, cwd))
|
|
|
|
self.proc.start()
|
2021-03-09 11:17:46 +08:00
|
|
|
self.watchdog_seen = False
|
2021-03-26 00:27:49 +08:00
|
|
|
self.shutting_down = False
|
2021-03-05 18:03:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PythonProcess(ManagerProcess):
|
2021-03-09 11:17:46 +08:00
|
|
|
def __init__(self, name, module, enabled=True, persistent=False, driverview=False, unkillable=False, sigkill=False, watchdog_max_dt=None):
|
2021-03-05 18:03:23 +08:00
|
|
|
self.name = name
|
|
|
|
self.module = module
|
2021-03-08 19:18:58 +08:00
|
|
|
self.enabled = enabled
|
2021-03-05 18:03:23 +08:00
|
|
|
self.persistent = persistent
|
|
|
|
self.driverview = driverview
|
|
|
|
self.unkillable = unkillable
|
|
|
|
self.sigkill = sigkill
|
2021-03-09 11:17:46 +08:00
|
|
|
self.watchdog_max_dt = watchdog_max_dt
|
2021-03-05 18:03:23 +08:00
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def prepare(self) -> None:
|
2021-03-08 19:18:58 +08:00
|
|
|
if self.enabled:
|
2021-12-16 21:58:17 +08:00
|
|
|
cloudlog.info(f"preimporting {self.module}")
|
2021-03-08 19:18:58 +08:00
|
|
|
importlib.import_module(self.module)
|
2021-03-05 18:03:23 +08:00
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def start(self) -> None:
|
2021-03-26 00:27:49 +08:00
|
|
|
# In case we only tried a non blocking stop we need to stop it before restarting
|
|
|
|
if self.shutting_down:
|
|
|
|
self.stop()
|
|
|
|
|
2021-03-05 18:03:23 +08:00
|
|
|
if self.proc is not None:
|
|
|
|
return
|
|
|
|
|
2021-12-16 21:58:17 +08:00
|
|
|
cloudlog.info(f"starting python {self.module}")
|
2021-12-15 12:43:26 +08:00
|
|
|
self.proc = Process(name=self.name, target=launcher, args=(self.module, self.name))
|
2021-03-05 18:03:23 +08:00
|
|
|
self.proc.start()
|
2021-03-09 11:17:46 +08:00
|
|
|
self.watchdog_seen = False
|
2021-03-26 00:27:49 +08:00
|
|
|
self.shutting_down = False
|
2021-03-05 18:03:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DaemonProcess(ManagerProcess):
|
2021-08-06 03:05:49 +08:00
|
|
|
"""Python process that has to stay running across manager restart.
|
2021-03-05 18:03:23 +08:00
|
|
|
This is used for athena so you don't lose SSH access when restarting manager."""
|
2021-03-08 19:18:58 +08:00
|
|
|
def __init__(self, name, module, param_name, enabled=True):
|
2021-03-05 18:03:23 +08:00
|
|
|
self.name = name
|
|
|
|
self.module = module
|
|
|
|
self.param_name = param_name
|
2021-03-08 19:18:58 +08:00
|
|
|
self.enabled = enabled
|
2021-03-05 18:03:23 +08:00
|
|
|
self.persistent = True
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def prepare(self) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
pass
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def start(self) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
params = Params()
|
|
|
|
pid = params.get(self.param_name, encoding='utf-8')
|
|
|
|
|
|
|
|
if pid is not None:
|
|
|
|
try:
|
|
|
|
os.kill(int(pid), 0)
|
|
|
|
with open(f'/proc/{pid}/cmdline') as f:
|
|
|
|
if self.module in f.read():
|
|
|
|
# daemon is running
|
|
|
|
return
|
|
|
|
except (OSError, FileNotFoundError):
|
|
|
|
# process is dead
|
|
|
|
pass
|
|
|
|
|
2021-12-16 21:58:17 +08:00
|
|
|
cloudlog.info(f"starting daemon {self.name}")
|
2021-03-05 18:03:23 +08:00
|
|
|
proc = subprocess.Popen(['python', '-m', self.module], # pylint: disable=subprocess-popen-preexec-fn
|
2021-12-25 03:18:39 +08:00
|
|
|
stdin=open('/dev/null'),
|
2021-03-05 18:03:23 +08:00
|
|
|
stdout=open('/dev/null', 'w'),
|
|
|
|
stderr=open('/dev/null', 'w'),
|
|
|
|
preexec_fn=os.setpgrp)
|
|
|
|
|
|
|
|
params.put(self.param_name, str(proc.pid))
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def stop(self, retry=True, block=True) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-12-29 01:07:00 +08:00
|
|
|
def ensure_running(procs: ValuesView[ManagerProcess], started: bool, driverview: bool=False, not_run: Optional[List[str]]=None) -> None:
|
2021-03-05 18:03:23 +08:00
|
|
|
if not_run is None:
|
|
|
|
not_run = []
|
|
|
|
|
|
|
|
for p in procs:
|
|
|
|
if p.name in not_run:
|
2021-03-26 00:27:49 +08:00
|
|
|
p.stop(block=False)
|
2021-03-08 19:18:58 +08:00
|
|
|
elif not p.enabled:
|
2021-03-26 00:27:49 +08:00
|
|
|
p.stop(block=False)
|
2021-03-05 18:03:23 +08:00
|
|
|
elif p.persistent:
|
|
|
|
p.start()
|
2022-01-11 21:07:35 +08:00
|
|
|
elif p.driverview and driverview:
|
2021-03-05 18:03:23 +08:00
|
|
|
p.start()
|
|
|
|
elif started:
|
|
|
|
p.start()
|
|
|
|
else:
|
2021-03-26 00:27:49 +08:00
|
|
|
p.stop(block=False)
|
2021-03-09 11:17:46 +08:00
|
|
|
|
|
|
|
p.check_watchdog(started)
|
|
|
|
|