| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794 | # -*- coding: utf-8 -*-"""Platforms.Utilities dealing with platform specifics: signals, daemonization,users, groups, and so on."""from __future__ import absolute_import, print_function, unicode_literalsimport atexitimport errnoimport mathimport numbersimport osimport platform as _platformimport signal as _signalimport sysimport warningsfrom collections import namedtuplefrom billiard.compat import get_fdmax, close_open_fds# fileno used to be in this modulefrom kombu.utils.compat import maybe_filenofrom kombu.utils.encoding import safe_strfrom contextlib import contextmanagerfrom .exceptions import SecurityErrorfrom .local import try_importfrom .five import items, reraise, string_ttry:    from billiard.process import current_processexcept ImportError:  # pragma: no cover    current_process = None_setproctitle = try_import('setproctitle')resource = try_import('resource')pwd = try_import('pwd')grp = try_import('grp')mputil = try_import('multiprocessing.util')__all__ = [    'EX_OK', 'EX_FAILURE', 'EX_UNAVAILABLE', 'EX_USAGE', 'SYSTEM',    'IS_macOS', 'IS_WINDOWS', 'SIGMAP', 'pyimplementation', 'LockFailed',    'get_fdmax', 'Pidfile', 'create_pidlock', 'close_open_fds',    'DaemonContext', 'detached', 'parse_uid', 'parse_gid', 'setgroups',    'initgroups', 'setgid', 'setuid', 'maybe_drop_privileges', 'signals',    'signal_name', 'set_process_title', 'set_mp_process_title',    'get_errno_name', 'ignore_errno', 'fd_by_path', 'isatty',]# exitcodesEX_OK = getattr(os, 'EX_OK', 0)EX_FAILURE = 1EX_UNAVAILABLE = getattr(os, 'EX_UNAVAILABLE', 69)EX_USAGE = getattr(os, 'EX_USAGE', 64)EX_CANTCREAT = getattr(os, 'EX_CANTCREAT', 73)SYSTEM = _platform.system()IS_macOS = SYSTEM == 'Darwin'IS_WINDOWS = SYSTEM == 'Windows'DAEMON_WORKDIR = '/'PIDFILE_FLAGS = os.O_CREAT | os.O_EXCL | os.O_WRONLYPIDFILE_MODE = ((os.R_OK | os.W_OK) << 6) | ((os.R_OK) << 3) | ((os.R_OK))PIDLOCKED = """ERROR: Pidfile ({0}) already exists.Seems we're already running? (pid: {1})"""_range = namedtuple('_range', ('start', 'stop'))C_FORCE_ROOT = os.environ.get('C_FORCE_ROOT', False)ROOT_DISALLOWED = """\Running a worker with superuser privileges when theworker accepts messages serialized with pickle is a very bad idea!If you really want to continue then you have to set the C_FORCE_ROOTenvironment variable (but please think about this before you do).User information: uid={uid} euid={euid} gid={gid} egid={egid}"""ROOT_DISCOURAGED = """\You're running the worker with superuser privileges: this isabsolutely not recommended!Please specify a different user using the -u option.User information: uid={uid} euid={euid} gid={gid} egid={egid}"""SIGNAMES = {    sig for sig in dir(_signal)    if sig.startswith('SIG') and '_' not in sig}SIGMAP = {getattr(_signal, name): name for name in SIGNAMES}def isatty(fh):    """Return true if the process has a controlling terminal."""    try:        return fh.isatty()    except AttributeError:        passdef pyimplementation():    """Return string identifying the current Python implementation."""    if hasattr(_platform, 'python_implementation'):        return _platform.python_implementation()    elif sys.platform.startswith('java'):        return 'Jython ' + sys.platform    elif hasattr(sys, 'pypy_version_info'):        v = '.'.join(str(p) for p in sys.pypy_version_info[:3])        if sys.pypy_version_info[3:]:            v += '-' + ''.join(str(p) for p in sys.pypy_version_info[3:])        return 'PyPy ' + v    else:        return 'CPython'class LockFailed(Exception):    """Raised if a PID lock can't be acquired."""class Pidfile(object):    """Pidfile.    This is the type returned by :func:`create_pidlock`.    See Also:        Best practice is to not use this directly but rather use        the :func:`create_pidlock` function instead:        more convenient and also removes stale pidfiles (when        the process holding the lock is no longer running).    """    #: Path to the pid lock file.    path = None    def __init__(self, path):        self.path = os.path.abspath(path)    def acquire(self):        """Acquire lock."""        try:            self.write_pid()        except OSError as exc:            reraise(LockFailed, LockFailed(str(exc)), sys.exc_info()[2])        return self    __enter__ = acquire    def is_locked(self):        """Return true if the pid lock exists."""        return os.path.exists(self.path)    def release(self, *args):        """Release lock."""        self.remove()    __exit__ = release    def read_pid(self):        """Read and return the current pid."""        with ignore_errno('ENOENT'):            with open(self.path, 'r') as fh:                line = fh.readline()                if line.strip() == line:  # must contain '\n'                    raise ValueError(                        'Partial or invalid pidfile {0.path}'.format(self))                try:                    return int(line.strip())                except ValueError:                    raise ValueError(                        'pidfile {0.path} contents invalid.'.format(self))    def remove(self):        """Remove the lock."""        with ignore_errno(errno.ENOENT, errno.EACCES):            os.unlink(self.path)    def remove_if_stale(self):        """Remove the lock if the process isn't running.        I.e. process does not respons to signal.        """        try:            pid = self.read_pid()        except ValueError as exc:            print('Broken pidfile found - Removing it.', file=sys.stderr)            self.remove()            return True        if not pid:            self.remove()            return True        try:            os.kill(pid, 0)        except os.error as exc:            if exc.errno == errno.ESRCH:                print('Stale pidfile exists - Removing it.', file=sys.stderr)                self.remove()                return True        return False    def write_pid(self):        pid = os.getpid()        content = '{0}\n'.format(pid)        pidfile_fd = os.open(self.path, PIDFILE_FLAGS, PIDFILE_MODE)        pidfile = os.fdopen(pidfile_fd, 'w')        try:            pidfile.write(content)            # flush and sync so that the re-read below works.            pidfile.flush()            try:                os.fsync(pidfile_fd)            except AttributeError:  # pragma: no cover                pass        finally:            pidfile.close()        rfh = open(self.path)        try:            if rfh.read() != content:                raise LockFailed(                    "Inconsistency: Pidfile content doesn't match at re-read")        finally:            rfh.close()PIDFile = Pidfile  # noqa: E305 XXX compat aliasdef create_pidlock(pidfile):    """Create and verify pidfile.    If the pidfile already exists the program exits with an error message,    however if the process it refers to isn't running anymore, the pidfile    is deleted and the program continues.    This function will automatically install an :mod:`atexit` handler    to release the lock at exit, you can skip this by calling    :func:`_create_pidlock` instead.    Returns:       Pidfile: used to manage the lock.    Example:        >>> pidlock = create_pidlock('/var/run/app.pid')    """    pidlock = _create_pidlock(pidfile)    atexit.register(pidlock.release)    return pidlockdef _create_pidlock(pidfile):    pidlock = Pidfile(pidfile)    if pidlock.is_locked() and not pidlock.remove_if_stale():        print(PIDLOCKED.format(pidfile, pidlock.read_pid()), file=sys.stderr)        raise SystemExit(EX_CANTCREAT)    pidlock.acquire()    return pidlockdef fd_by_path(paths):    """Return a list of file descriptors.    This method returns list of file descriptors corresponding to    file paths passed in paths variable.    Arguments:        paths: List[str]: List of file paths.    Returns:        List[int]: List of file descriptors.    Example:        >>> keep = fd_by_path(['/dev/urandom', '/my/precious/'])    """    stats = set()    for path in paths:        try:            fd = os.open(path, os.O_RDONLY)        except OSError:            continue        try:            stats.add(os.fstat(fd)[1:3])        finally:            os.close(fd)    def fd_in_stats(fd):        try:            return os.fstat(fd)[1:3] in stats        except OSError:            return False    return [_fd for _fd in range(get_fdmax(2048)) if fd_in_stats(_fd)]class DaemonContext(object):    """Context manager daemonizing the process."""    _is_open = False    def __init__(self, pidfile=None, workdir=None, umask=None,                 fake=False, after_chdir=None, after_forkers=True,                 **kwargs):        if isinstance(umask, string_t):            # octal or decimal, depending on initial zero.            umask = int(umask, 8 if umask.startswith('0') else 10)        self.workdir = workdir or DAEMON_WORKDIR        self.umask = umask        self.fake = fake        self.after_chdir = after_chdir        self.after_forkers = after_forkers        self.stdfds = (sys.stdin, sys.stdout, sys.stderr)    def redirect_to_null(self, fd):        if fd is not None:            dest = os.open(os.devnull, os.O_RDWR)            os.dup2(dest, fd)    def open(self):        if not self._is_open:            if not self.fake:                self._detach()            os.chdir(self.workdir)            if self.umask is not None:                os.umask(self.umask)            if self.after_chdir:                self.after_chdir()            if not self.fake:                # We need to keep /dev/urandom from closing because                # shelve needs it, and Beat needs shelve to start.                keep = list(self.stdfds) + fd_by_path(['/dev/urandom'])                close_open_fds(keep)                for fd in self.stdfds:                    self.redirect_to_null(maybe_fileno(fd))                if self.after_forkers and mputil is not None:                    mputil._run_after_forkers()            self._is_open = True    __enter__ = open    def close(self, *args):        if self._is_open:            self._is_open = False    __exit__ = close    def _detach(self):        if os.fork() == 0:      # first child            os.setsid()         # create new session            if os.fork() > 0:   # pragma: no cover                # second child                os._exit(0)        else:            os._exit(0)        return selfdef detached(logfile=None, pidfile=None, uid=None, gid=None, umask=0,             workdir=None, fake=False, **opts):    """Detach the current process in the background (daemonize).    Arguments:        logfile (str): Optional log file.            The ability to write to this file            will be verified before the process is detached.        pidfile (str): Optional pid file.            The pidfile won't be created,            as this is the responsibility of the child.  But the process will            exit if the pid lock exists and the pid written is still running.        uid (int, str): Optional user id or user name to change            effective privileges to.        gid (int, str): Optional group id or group name to change            effective privileges to.        umask (str, int): Optional umask that'll be effective in            the child process.        workdir (str): Optional new working directory.        fake (bool): Don't actually detach, intended for debugging purposes.        **opts (Any): Ignored.    Example:        >>> from celery.platforms import detached, create_pidlock        >>> with detached(        ...           logfile='/var/log/app.log',        ...           pidfile='/var/run/app.pid',        ...           uid='nobody'):        ... # Now in detached child process with effective user set to nobody,        ... # and we know that our logfile can be written to, and that        ... # the pidfile isn't locked.        ... pidlock = create_pidlock('/var/run/app.pid')        ...        ... # Run the program        ... program.run(logfile='/var/log/app.log')    """    if not resource:        raise RuntimeError('This platform does not support detach.')    workdir = os.getcwd() if workdir is None else workdir    signals.reset('SIGCLD')  # Make sure SIGCLD is using the default handler.    maybe_drop_privileges(uid=uid, gid=gid)    def after_chdir_do():        # Since without stderr any errors will be silently suppressed,        # we need to know that we have access to the logfile.        logfile and open(logfile, 'a').close()        # Doesn't actually create the pidfile, but makes sure it's not stale.        if pidfile:            _create_pidlock(pidfile).release()    return DaemonContext(        umask=umask, workdir=workdir, fake=fake, after_chdir=after_chdir_do,    )def parse_uid(uid):    """Parse user id.    Arguments:        uid (str, int): Actual uid, or the username of a user.    Returns:        int: The actual uid.    """    try:        return int(uid)    except ValueError:        try:            return pwd.getpwnam(uid).pw_uid        except (AttributeError, KeyError):            raise KeyError('User does not exist: {0}'.format(uid))def parse_gid(gid):    """Parse group id.    Arguments:        gid (str, int): Actual gid, or the name of a group.    Returns:        int: The actual gid of the group.    """    try:        return int(gid)    except ValueError:        try:            return grp.getgrnam(gid).gr_gid        except (AttributeError, KeyError):            raise KeyError('Group does not exist: {0}'.format(gid))def _setgroups_hack(groups):    # :fun:`setgroups` may have a platform-dependent limit,    # and it's not always possible to know in advance what this limit    # is, so we use this ugly hack stolen from glibc.    groups = groups[:]    while 1:        try:            return os.setgroups(groups)        except ValueError:   # error from Python's check.            if len(groups) <= 1:                raise            groups[:] = groups[:-1]        except OSError as exc:  # error from the OS.            if exc.errno != errno.EINVAL or len(groups) <= 1:                raise            groups[:] = groups[:-1]def setgroups(groups):    """Set active groups from a list of group ids."""    max_groups = None    try:        max_groups = os.sysconf('SC_NGROUPS_MAX')    except Exception:  # pylint: disable=broad-except        pass    try:        return _setgroups_hack(groups[:max_groups])    except OSError as exc:        if exc.errno != errno.EPERM:            raise        if any(group not in groups for group in os.getgroups()):            # we shouldn't be allowed to change to this group.            raisedef initgroups(uid, gid):    """Init process group permissions.    Compat version of :func:`os.initgroups` that was first    added to Python 2.7.    """    if not pwd:  # pragma: no cover        return    username = pwd.getpwuid(uid)[0]    if hasattr(os, 'initgroups'):  # Python 2.7+        return os.initgroups(username, gid)    groups = [gr.gr_gid for gr in grp.getgrall()              if username in gr.gr_mem]    setgroups(groups)def setgid(gid):    """Version of :func:`os.setgid` supporting group names."""    os.setgid(parse_gid(gid))def setuid(uid):    """Version of :func:`os.setuid` supporting usernames."""    os.setuid(parse_uid(uid))def maybe_drop_privileges(uid=None, gid=None):    """Change process privileges to new user/group.    If UID and GID is specified, the real user/group is changed.    If only UID is specified, the real user is changed, and the group is    changed to the users primary group.    If only GID is specified, only the group is changed.    """    if sys.platform == 'win32':        return    if os.geteuid():        # no point trying to setuid unless we're root.        if not os.getuid():            raise SecurityError('contact support')    uid = uid and parse_uid(uid)    gid = gid and parse_gid(gid)    if uid:        _setuid(uid, gid)    else:        gid and setgid(gid)    if uid and not os.getuid() and not os.geteuid():        raise SecurityError('Still root uid after drop privileges!')    if gid and not os.getgid() and not os.getegid():        raise SecurityError('Still root gid after drop privileges!')def _setuid(uid, gid):    # If GID isn't defined, get the primary GID of the user.    if not gid and pwd:        gid = pwd.getpwuid(uid).pw_gid    # Must set the GID before initgroups(), as setgid()    # is known to zap the group list on some platforms.    # setgid must happen before setuid (otherwise the setgid operation    # may fail because of insufficient privileges and possibly stay    # in a privileged group).    setgid(gid)    initgroups(uid, gid)    # at last:    setuid(uid)    # ... and make sure privileges cannot be restored:    try:        setuid(0)    except OSError as exc:        if exc.errno != errno.EPERM:            raise        # we should get here: cannot restore privileges,        # everything was fine.    else:        raise SecurityError(            'non-root user able to restore privileges after setuid.')class Signals(object):    """Convenience interface to :mod:`signals`.    If the requested signal isn't supported on the current platform,    the operation will be ignored.    Example:        >>> from celery.platforms import signals        >>> from proj.handlers import my_handler        >>> signals['INT'] = my_handler        >>> signals['INT']        my_handler        >>> signals.supported('INT')        True        >>> signals.signum('INT')        2        >>> signals.ignore('USR1')        >>> signals['USR1'] == signals.ignored        True        >>> signals.reset('USR1')        >>> signals['USR1'] == signals.default        True        >>> from proj.handlers import exit_handler, hup_handler        >>> signals.update(INT=exit_handler,        ...                TERM=exit_handler,        ...                HUP=hup_handler)    """    ignored = _signal.SIG_IGN    default = _signal.SIG_DFL    if hasattr(_signal, 'setitimer'):        def arm_alarm(self, seconds):            _signal.setitimer(_signal.ITIMER_REAL, seconds)    else:  # pragma: no cover        try:            from itimer import alarm as _itimer_alarm  # noqa        except ImportError:            def arm_alarm(self, seconds):  # noqa                _signal.alarm(math.ceil(seconds))        else:  # pragma: no cover            def arm_alarm(self, seconds):      # noqa                return _itimer_alarm(seconds)  # noqa    def reset_alarm(self):        return _signal.alarm(0)    def supported(self, name):        """Return true value if signal by ``name`` exists on this platform."""        try:            return self.signum(name)        except AttributeError:            pass    def signum(self, name):        """Get signal number by name."""        if isinstance(name, numbers.Integral):            return name        if not isinstance(name, string_t) \                or not name.isupper():            raise TypeError('signal name must be uppercase string.')        if not name.startswith('SIG'):            name = 'SIG' + name        return getattr(_signal, name)    def reset(self, *signal_names):        """Reset signals to the default signal handler.        Does nothing if the platform has no support for signals,        or the specified signal in particular.        """        self.update((sig, self.default) for sig in signal_names)    def ignore(self, *names):        """Ignore signal using :const:`SIG_IGN`.        Does nothing if the platform has no support for signals,        or the specified signal in particular.        """        self.update((sig, self.ignored) for sig in names)    def __getitem__(self, name):        return _signal.getsignal(self.signum(name))    def __setitem__(self, name, handler):        """Install signal handler.        Does nothing if the current platform has no support for signals,        or the specified signal in particular.        """        try:            _signal.signal(self.signum(name), handler)        except (AttributeError, ValueError):            pass    def update(self, _d_=None, **sigmap):        """Set signal handlers from a mapping."""        for name, handler in items(dict(_d_ or {}, **sigmap)):            self[name] = handlersignals = Signals()get_signal = signals.signum                   # compatinstall_signal_handler = signals.__setitem__  # compatreset_signal = signals.reset                  # compatignore_signal = signals.ignore                # compatdef signal_name(signum):    """Return name of signal from signal number."""    return SIGMAP[signum][3:]def strargv(argv):    arg_start = 2 if 'manage' in argv[0] else 1    if len(argv) > arg_start:        return ' '.join(argv[arg_start:])    return ''def set_process_title(progname, info=None):    """Set the :command:`ps` name for the currently running process.    Only works if :pypi:`setproctitle` is installed.    """    proctitle = '[{0}]'.format(progname)    proctitle = '{0} {1}'.format(proctitle, info) if info else proctitle    if _setproctitle:        _setproctitle.setproctitle(safe_str(proctitle))    return proctitleif os.environ.get('NOSETPS'):  # pragma: no cover    def set_mp_process_title(*a, **k):        """Disabled feature."""        passelse:    def set_mp_process_title(progname, info=None, hostname=None):  # noqa        """Set the :command:`ps` name from the current process name.        Only works if :pypi:`setproctitle` is installed.        """        if hostname:            progname = '{0}: {1}'.format(progname, hostname)        name = current_process().name if current_process else 'MainProcess'        return set_process_title('{0}:{1}'.format(progname, name), info=info)def get_errno_name(n):    """Get errno for string (e.g., ``ENOENT``)."""    if isinstance(n, string_t):        return getattr(errno, n)    return n@contextmanagerdef ignore_errno(*errnos, **kwargs):    """Context manager to ignore specific POSIX error codes.    Takes a list of error codes to ignore: this can be either    the name of the code, or the code integer itself::        >>> with ignore_errno('ENOENT'):        ...     with open('foo', 'r') as fh:        ...         return fh.read()        >>> with ignore_errno(errno.ENOENT, errno.EPERM):        ...    pass    Arguments:        types (Tuple[Exception]): A tuple of exceptions to ignore            (when the errno matches).  Defaults to :exc:`Exception`.    """    types = kwargs.get('types') or (Exception,)    errnos = [get_errno_name(errno) for errno in errnos]    try:        yield    except types as exc:        if not hasattr(exc, 'errno'):            raise        if exc.errno not in errnos:            raisedef check_privileges(accept_content):    uid = os.getuid() if hasattr(os, 'getuid') else 65535    gid = os.getgid() if hasattr(os, 'getgid') else 65535    euid = os.geteuid() if hasattr(os, 'geteuid') else 65535    egid = os.getegid() if hasattr(os, 'getegid') else 65535    if hasattr(os, 'fchown'):        if not all(hasattr(os, attr)                   for attr in ['getuid', 'getgid', 'geteuid', 'getegid']):            raise SecurityError('suspicious platform, contact support')    if not uid or not gid or not euid or not egid:        if ('pickle' in accept_content or                'application/x-python-serialize' in accept_content):            if not C_FORCE_ROOT:                try:                    print(ROOT_DISALLOWED.format(                        uid=uid, euid=euid, gid=gid, egid=egid,                    ), file=sys.stderr)                finally:                    os._exit(1)        warnings.warn(RuntimeWarning(ROOT_DISCOURAGED.format(            uid=uid, euid=euid, gid=gid, egid=egid,        )))
 |