platforms.py 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. # -*- coding: utf-8 -*-
  2. """
  3. celery.platforms
  4. ~~~~~~~~~~~~~~~~
  5. Utilities dealing with platform specifics: signals, daemonization,
  6. users, groups, and so on.
  7. """
  8. from __future__ import absolute_import, print_function
  9. import atexit
  10. import errno
  11. import math
  12. import os
  13. import platform as _platform
  14. import signal as _signal
  15. import sys
  16. from collections import namedtuple
  17. from billiard import current_process
  18. # fileno used to be in this module
  19. from kombu.utils import maybe_fileno
  20. from kombu.utils.compat import get_errno
  21. from kombu.utils.encoding import safe_str
  22. from contextlib import contextmanager
  23. from .local import try_import
  24. from .five import items, range, reraise, string_t, zip_longest
  25. from .utils.functional import uniq
  26. _setproctitle = try_import('setproctitle')
  27. resource = try_import('resource')
  28. pwd = try_import('pwd')
  29. grp = try_import('grp')
  30. __all__ = ['EX_OK', 'EX_FAILURE', 'EX_UNAVAILABLE', 'EX_USAGE', 'SYSTEM',
  31. 'IS_OSX', 'IS_WINDOWS', 'pyimplementation', 'LockFailed',
  32. 'get_fdmax', 'Pidfile', 'create_pidlock',
  33. 'close_open_fds', 'DaemonContext', 'detached', 'parse_uid',
  34. 'parse_gid', 'setgroups', 'initgroups', 'setgid', 'setuid',
  35. 'maybe_drop_privileges', 'signals', 'set_process_title',
  36. 'set_mp_process_title', 'get_errno_name', 'ignore_errno']
  37. # exitcodes
  38. EX_OK = getattr(os, 'EX_OK', 0)
  39. EX_FAILURE = 1
  40. EX_UNAVAILABLE = getattr(os, 'EX_UNAVAILABLE', 69)
  41. EX_USAGE = getattr(os, 'EX_USAGE', 64)
  42. SYSTEM = _platform.system()
  43. IS_OSX = SYSTEM == 'Darwin'
  44. IS_WINDOWS = SYSTEM == 'Windows'
  45. DAEMON_UMASK = 0
  46. DAEMON_WORKDIR = '/'
  47. PIDFILE_FLAGS = os.O_CREAT | os.O_EXCL | os.O_WRONLY
  48. PIDFILE_MODE = ((os.R_OK | os.W_OK) << 6) | ((os.R_OK) << 3) | ((os.R_OK))
  49. PIDLOCKED = """ERROR: Pidfile ({0}) already exists.
  50. Seems we're already running? (pid: {1})"""
  51. _range = namedtuple('_range', ('start', 'stop'))
  52. def pyimplementation():
  53. """Return string identifying the current Python implementation."""
  54. if hasattr(_platform, 'python_implementation'):
  55. return _platform.python_implementation()
  56. elif sys.platform.startswith('java'):
  57. return 'Jython ' + sys.platform
  58. elif hasattr(sys, 'pypy_version_info'):
  59. v = '.'.join(str(p) for p in sys.pypy_version_info[:3])
  60. if sys.pypy_version_info[3:]:
  61. v += '-' + ''.join(str(p) for p in sys.pypy_version_info[3:])
  62. return 'PyPy ' + v
  63. else:
  64. return 'CPython'
  65. class LockFailed(Exception):
  66. """Raised if a pidlock can't be acquired."""
  67. def get_fdmax(default=None):
  68. """Return the maximum number of open file descriptors
  69. on this system.
  70. :keyword default: Value returned if there's no file
  71. descriptor limit.
  72. """
  73. try:
  74. return os.sysconf('SC_OPEN_MAX')
  75. except:
  76. pass
  77. if resource is None: # Windows
  78. return default
  79. fdmax = resource.getrlimit(resource.RLIMIT_NOFILE)[1]
  80. if fdmax == resource.RLIM_INFINITY:
  81. return default
  82. return fdmax
  83. class Pidfile(object):
  84. """Pidfile
  85. This is the type returned by :func:`create_pidlock`.
  86. TIP: Use the :func:`create_pidlock` function instead,
  87. which is more convenient and also removes stale pidfiles (when
  88. the process holding the lock is no longer running).
  89. """
  90. #: Path to the pid lock file.
  91. path = None
  92. def __init__(self, path):
  93. self.path = os.path.abspath(path)
  94. def acquire(self):
  95. """Acquire lock."""
  96. try:
  97. self.write_pid()
  98. except OSError as exc:
  99. reraise(LockFailed, LockFailed(str(exc)), sys.exc_info()[2])
  100. return self
  101. __enter__ = acquire
  102. def is_locked(self):
  103. """Return true if the pid lock exists."""
  104. return os.path.exists(self.path)
  105. def release(self, *args):
  106. """Release lock."""
  107. self.remove()
  108. __exit__ = release
  109. def read_pid(self):
  110. """Read and return the current pid."""
  111. with ignore_errno('ENOENT'):
  112. with open(self.path, 'r') as fh:
  113. line = fh.readline()
  114. if line.strip() == line: # must contain '\n'
  115. raise ValueError(
  116. 'Partial or invalid pidfile {0.path}'.format(self))
  117. try:
  118. return int(line.strip())
  119. except ValueError:
  120. raise ValueError(
  121. 'pidfile {0.path} contents invalid.'.format(self))
  122. def remove(self):
  123. """Remove the lock."""
  124. with ignore_errno(errno.ENOENT, errno.EACCES):
  125. os.unlink(self.path)
  126. def remove_if_stale(self):
  127. """Remove the lock if the process is not running.
  128. (does not respond to signals)."""
  129. try:
  130. pid = self.read_pid()
  131. except ValueError as exc:
  132. print('Broken pidfile found. Removing it.', file=sys.stderr)
  133. self.remove()
  134. return True
  135. if not pid:
  136. self.remove()
  137. return True
  138. try:
  139. os.kill(pid, 0)
  140. except os.error as exc:
  141. if exc.errno == errno.ESRCH:
  142. print('Stale pidfile exists. Removing it.', file=sys.stderr)
  143. self.remove()
  144. return True
  145. return False
  146. def write_pid(self):
  147. pid = os.getpid()
  148. content = '{0}\n'.format(pid)
  149. pidfile_fd = os.open(self.path, PIDFILE_FLAGS, PIDFILE_MODE)
  150. pidfile = os.fdopen(pidfile_fd, 'w')
  151. try:
  152. pidfile.write(content)
  153. # flush and sync so that the re-read below works.
  154. pidfile.flush()
  155. try:
  156. os.fsync(pidfile_fd)
  157. except AttributeError: # pragma: no cover
  158. pass
  159. finally:
  160. pidfile.close()
  161. rfh = open(self.path)
  162. try:
  163. if rfh.read() != content:
  164. raise LockFailed(
  165. "Inconsistency: Pidfile content doesn't match at re-read")
  166. finally:
  167. rfh.close()
  168. PIDFile = Pidfile # compat alias
  169. def create_pidlock(pidfile):
  170. """Create and verify pidfile.
  171. If the pidfile already exists the program exits with an error message,
  172. however if the process it refers to is not running anymore, the pidfile
  173. is deleted and the program continues.
  174. This function will automatically install an :mod:`atexit` handler
  175. to release the lock at exit, you can skip this by calling
  176. :func:`_create_pidlock` instead.
  177. :returns: :class:`Pidfile`.
  178. **Example**:
  179. .. code-block:: python
  180. pidlock = create_pidlock('/var/run/app.pid')
  181. """
  182. pidlock = _create_pidlock(pidfile)
  183. atexit.register(pidlock.release)
  184. return pidlock
  185. def _create_pidlock(pidfile):
  186. pidlock = Pidfile(pidfile)
  187. if pidlock.is_locked() and not pidlock.remove_if_stale():
  188. raise SystemExit(PIDLOCKED.format(pidfile, pidlock.read_pid()))
  189. pidlock.acquire()
  190. return pidlock
  191. if hasattr(os, 'closerange'):
  192. def close_open_fds(keep=None):
  193. keep = [maybe_fileno(f)
  194. for f in uniq(sorted(keep or []))
  195. if maybe_fileno(f) is not None]
  196. maxfd = get_fdmax(default=2048)
  197. kL, kH = iter([-1] + keep), iter(keep + [maxfd])
  198. for low, high in zip_longest(kL, kH):
  199. if low + 1 != high:
  200. os.closerange(low + 1, high)
  201. else:
  202. def close_open_fds(keep=None): # noqa
  203. keep = [maybe_fileno(f)
  204. for f in (keep or []) if maybe_fileno(f) is not None]
  205. for fd in reversed(range(get_fdmax(default=2048))):
  206. if fd not in keep:
  207. with ignore_errno(errno.EBADF):
  208. os.close(fd)
  209. class DaemonContext(object):
  210. _is_open = False
  211. def __init__(self, pidfile=None, workdir=None, umask=None,
  212. fake=False, after_chdir=None, **kwargs):
  213. self.workdir = workdir or DAEMON_WORKDIR
  214. self.umask = DAEMON_UMASK if umask is None else umask
  215. self.fake = fake
  216. self.after_chdir = after_chdir
  217. self.stdfds = (sys.stdin, sys.stdout, sys.stderr)
  218. def redirect_to_null(self, fd):
  219. if fd is not None:
  220. dest = os.open(os.devnull, os.O_RDWR)
  221. os.dup2(dest, fd)
  222. def open(self):
  223. if not self._is_open:
  224. if not self.fake:
  225. self._detach()
  226. os.chdir(self.workdir)
  227. os.umask(self.umask)
  228. if self.after_chdir:
  229. self.after_chdir()
  230. close_open_fds(self.stdfds)
  231. for fd in self.stdfds:
  232. self.redirect_to_null(maybe_fileno(fd))
  233. self._is_open = True
  234. __enter__ = open
  235. def close(self, *args):
  236. if self._is_open:
  237. self._is_open = False
  238. __exit__ = close
  239. def _detach(self):
  240. if os.fork() == 0: # first child
  241. os.setsid() # create new session
  242. if os.fork() > 0: # second child
  243. os._exit(0)
  244. else:
  245. os._exit(0)
  246. return self
  247. def detached(logfile=None, pidfile=None, uid=None, gid=None, umask=0,
  248. workdir=None, fake=False, **opts):
  249. """Detach the current process in the background (daemonize).
  250. :keyword logfile: Optional log file. The ability to write to this file
  251. will be verified before the process is detached.
  252. :keyword pidfile: Optional pidfile. The pidfile will not be created,
  253. as this is the responsibility of the child. But the process will
  254. exit if the pid lock exists and the pid written is still running.
  255. :keyword uid: Optional user id or user name to change
  256. effective privileges to.
  257. :keyword gid: Optional group id or group name to change effective
  258. privileges to.
  259. :keyword umask: Optional umask that will be effective in the child process.
  260. :keyword workdir: Optional new working directory.
  261. :keyword fake: Don't actually detach, intented for debugging purposes.
  262. :keyword \*\*opts: Ignored.
  263. **Example**:
  264. .. code-block:: python
  265. from celery.platforms import detached, create_pidlock
  266. with detached(logfile='/var/log/app.log', pidfile='/var/run/app.pid',
  267. uid='nobody'):
  268. # Now in detached child process with effective user set to nobody,
  269. # and we know that our logfile can be written to, and that
  270. # the pidfile is not locked.
  271. pidlock = create_pidlock('/var/run/app.pid')
  272. # Run the program
  273. program.run(logfile='/var/log/app.log')
  274. """
  275. if not resource:
  276. raise RuntimeError('This platform does not support detach.')
  277. workdir = os.getcwd() if workdir is None else workdir
  278. signals.reset('SIGCLD') # Make sure SIGCLD is using the default handler.
  279. if not os.geteuid():
  280. # no point trying to setuid unless we're root.
  281. maybe_drop_privileges(uid=uid, gid=gid)
  282. def after_chdir_do():
  283. # Since without stderr any errors will be silently suppressed,
  284. # we need to know that we have access to the logfile.
  285. logfile and open(logfile, 'a').close()
  286. # Doesn't actually create the pidfile, but makes sure it's not stale.
  287. if pidfile:
  288. _create_pidlock(pidfile).release()
  289. return DaemonContext(
  290. umask=umask, workdir=workdir, fake=fake, after_chdir=after_chdir_do,
  291. )
  292. def parse_uid(uid):
  293. """Parse user id.
  294. uid can be an integer (uid) or a string (user name), if a user name
  295. the uid is taken from the system user registry.
  296. """
  297. try:
  298. return int(uid)
  299. except ValueError:
  300. try:
  301. return pwd.getpwnam(uid).pw_uid
  302. except (AttributeError, KeyError):
  303. raise KeyError('User does not exist: {0}'.format(uid))
  304. def parse_gid(gid):
  305. """Parse group id.
  306. gid can be an integer (gid) or a string (group name), if a group name
  307. the gid is taken from the system group registry.
  308. """
  309. try:
  310. return int(gid)
  311. except ValueError:
  312. try:
  313. return grp.getgrnam(gid).gr_gid
  314. except (AttributeError, KeyError):
  315. raise KeyError('Group does not exist: {0}'.format(gid))
  316. def _setgroups_hack(groups):
  317. """:fun:`setgroups` may have a platform-dependent limit,
  318. and it is not always possible to know in advance what this limit
  319. is, so we use this ugly hack stolen from glibc."""
  320. groups = groups[:]
  321. while 1:
  322. try:
  323. return os.setgroups(groups)
  324. except ValueError: # error from Python's check.
  325. if len(groups) <= 1:
  326. raise
  327. groups[:] = groups[:-1]
  328. except OSError as exc: # error from the OS.
  329. if exc.errno != errno.EINVAL or len(groups) <= 1:
  330. raise
  331. groups[:] = groups[:-1]
  332. def setgroups(groups):
  333. """Set active groups from a list of group ids."""
  334. max_groups = None
  335. try:
  336. max_groups = os.sysconf('SC_NGROUPS_MAX')
  337. except Exception:
  338. pass
  339. try:
  340. return _setgroups_hack(groups[:max_groups])
  341. except OSError as exc:
  342. if exc.errno != errno.EPERM:
  343. raise
  344. if any(group not in groups for group in os.getgroups()):
  345. # we shouldn't be allowed to change to this group.
  346. raise
  347. def initgroups(uid, gid):
  348. """Compat version of :func:`os.initgroups` which was first
  349. added to Python 2.7."""
  350. if not pwd: # pragma: no cover
  351. return
  352. username = pwd.getpwuid(uid)[0]
  353. if hasattr(os, 'initgroups'): # Python 2.7+
  354. return os.initgroups(username, gid)
  355. groups = [gr.gr_gid for gr in grp.getgrall()
  356. if username in gr.gr_mem]
  357. setgroups(groups)
  358. def setgid(gid):
  359. """Version of :func:`os.setgid` supporting group names."""
  360. os.setgid(parse_gid(gid))
  361. def setuid(uid):
  362. """Version of :func:`os.setuid` supporting usernames."""
  363. os.setuid(parse_uid(uid))
  364. def maybe_drop_privileges(uid=None, gid=None):
  365. """Change process privileges to new user/group.
  366. If UID and GID is specified, the real user/group is changed.
  367. If only UID is specified, the real user is changed, and the group is
  368. changed to the users primary group.
  369. If only GID is specified, only the group is changed.
  370. """
  371. uid = uid and parse_uid(uid)
  372. gid = gid and parse_gid(gid)
  373. if uid:
  374. # If GID isn't defined, get the primary GID of the user.
  375. if not gid and pwd:
  376. gid = pwd.getpwuid(uid).pw_gid
  377. # Must set the GID before initgroups(), as setgid()
  378. # is known to zap the group list on some platforms.
  379. # setgid must happen before setuid (otherwise the setgid operation
  380. # may fail because of insufficient privileges and possibly stay
  381. # in a privileged group).
  382. setgid(gid)
  383. initgroups(uid, gid)
  384. # at last:
  385. setuid(uid)
  386. # ... and make sure privileges cannot be restored:
  387. try:
  388. setuid(0)
  389. except OSError as exc:
  390. if get_errno(exc) != errno.EPERM:
  391. raise
  392. pass # Good: cannot restore privileges.
  393. else:
  394. raise RuntimeError(
  395. 'non-root user able to restore privileges after setuid.')
  396. else:
  397. gid and setgid(gid)
  398. class Signals(object):
  399. """Convenience interface to :mod:`signals`.
  400. If the requested signal is not supported on the current platform,
  401. the operation will be ignored.
  402. **Examples**:
  403. .. code-block:: python
  404. >>> from celery.platforms import signals
  405. >>> from proj.handlers import my_handler
  406. >>> signals['INT'] = my_handler
  407. >>> signals['INT']
  408. my_handler
  409. >>> signals.supported('INT')
  410. True
  411. >>> signals.signum('INT')
  412. 2
  413. >>> signals.ignore('USR1')
  414. >>> signals['USR1'] == signals.ignored
  415. True
  416. >>> signals.reset('USR1')
  417. >>> signals['USR1'] == signals.default
  418. True
  419. >>> from proj.handlers import exit_handler, hup_handler
  420. >>> signals.update(INT=exit_handler,
  421. ... TERM=exit_handler,
  422. ... HUP=hup_handler)
  423. """
  424. ignored = _signal.SIG_IGN
  425. default = _signal.SIG_DFL
  426. if hasattr(_signal, 'setitimer'):
  427. def arm_alarm(self, seconds):
  428. _signal.setitimer(_signal.ITIMER_REAL, seconds)
  429. else: # pragma: no cover
  430. try:
  431. from itimer import alarm as _itimer_alarm # noqa
  432. except ImportError:
  433. def arm_alarm(self, seconds): # noqa
  434. _signal.alarm(math.ceil(seconds))
  435. else: # pragma: no cover
  436. def arm_alarm(self, seconds): # noqa
  437. return _itimer_alarm(seconds) # noqa
  438. def reset_alarm(self):
  439. return _signal.alarm(0)
  440. def supported(self, signal_name):
  441. """Return true value if ``signal_name`` exists on this platform."""
  442. try:
  443. return self.signum(signal_name)
  444. except AttributeError:
  445. pass
  446. def signum(self, signal_name):
  447. """Get signal number from signal name."""
  448. if isinstance(signal_name, int):
  449. return signal_name
  450. if not isinstance(signal_name, string_t) \
  451. or not signal_name.isupper():
  452. raise TypeError('signal name must be uppercase string.')
  453. if not signal_name.startswith('SIG'):
  454. signal_name = 'SIG' + signal_name
  455. return getattr(_signal, signal_name)
  456. def reset(self, *signal_names):
  457. """Reset signals to the default signal handler.
  458. Does nothing if the platform doesn't support signals,
  459. or the specified signal in particular.
  460. """
  461. self.update((sig, self.default) for sig in signal_names)
  462. def ignore(self, *signal_names):
  463. """Ignore signal using :const:`SIG_IGN`.
  464. Does nothing if the platform doesn't support signals,
  465. or the specified signal in particular.
  466. """
  467. self.update((sig, self.ignored) for sig in signal_names)
  468. def __getitem__(self, signal_name):
  469. return _signal.getsignal(self.signum(signal_name))
  470. def __setitem__(self, signal_name, handler):
  471. """Install signal handler.
  472. Does nothing if the current platform doesn't support signals,
  473. or the specified signal in particular.
  474. """
  475. try:
  476. _signal.signal(self.signum(signal_name), handler)
  477. except (AttributeError, ValueError):
  478. pass
  479. def update(self, _d_=None, **sigmap):
  480. """Set signal handlers from a mapping."""
  481. for signal_name, handler in items(dict(_d_ or {}, **sigmap)):
  482. self[signal_name] = handler
  483. signals = Signals()
  484. get_signal = signals.signum # compat
  485. install_signal_handler = signals.__setitem__ # compat
  486. reset_signal = signals.reset # compat
  487. ignore_signal = signals.ignore # compat
  488. def strargv(argv):
  489. arg_start = 2 if 'manage' in argv[0] else 1
  490. if len(argv) > arg_start:
  491. return ' '.join(argv[arg_start:])
  492. return ''
  493. def set_process_title(progname, info=None):
  494. """Set the ps name for the currently running process.
  495. Only works if :mod:`setproctitle` is installed.
  496. """
  497. proctitle = '[{0}]'.format(progname)
  498. proctitle = '{0} {1}'.format(proctitle, info) if info else proctitle
  499. if _setproctitle:
  500. _setproctitle.setproctitle(safe_str(proctitle))
  501. return proctitle
  502. if os.environ.get('NOSETPS'): # pragma: no cover
  503. def set_mp_process_title(*a, **k):
  504. pass
  505. else:
  506. def set_mp_process_title(progname, info=None, hostname=None): # noqa
  507. """Set the ps name using the multiprocessing process name.
  508. Only works if :mod:`setproctitle` is installed.
  509. """
  510. if hostname:
  511. progname = '{0}: {1}'.format(progname, hostname)
  512. return set_process_title(
  513. '{0}:{1}'.format(progname, current_process().name), info=info)
  514. def get_errno_name(n):
  515. """Get errno for string, e.g. ``ENOENT``."""
  516. if isinstance(n, string_t):
  517. return getattr(errno, n)
  518. return n
  519. @contextmanager
  520. def ignore_errno(*errnos, **kwargs):
  521. """Context manager to ignore specific POSIX error codes.
  522. Takes a list of error codes to ignore, which can be either
  523. the name of the code, or the code integer itself::
  524. >>> with ignore_errno('ENOENT'):
  525. ... with open('foo', 'r') as fh:
  526. ... return fh.read()
  527. >>> with ignore_errno(errno.ENOENT, errno.EPERM):
  528. ... pass
  529. :keyword types: A tuple of exceptions to ignore (when the errno matches),
  530. defaults to :exc:`Exception`.
  531. """
  532. types = kwargs.get('types') or (Exception, )
  533. errnos = [get_errno_name(errno) for errno in errnos]
  534. try:
  535. yield
  536. except types as exc:
  537. if not hasattr(exc, 'errno'):
  538. raise
  539. if exc.errno not in errnos:
  540. raise