Esempio n. 1
0
 def log(self, what, log_level=logging_tools.LOG_LEVEL_OK):
     if log_level == logging_tools.LOG_LEVEL_OK and not self.verbose:
         return
     what = u"[lc] {}".format(what)
     if self.log_com:
         self.log_com(what, log_level)
     else:
         logging_tools.my_syslog("[{:d}] {}".format(log_level, what))
Esempio n. 2
0
def get_uid_from_name(user):
    try:
        if type(user) in [int, long]:
            uid_stuff = pwd.getpwuid(user)
        else:
            uid_stuff = pwd.getpwnam(user)
        new_uid, new_uid_name = (uid_stuff[2], uid_stuff[0])
    except KeyError:
        from initat.tools import logging_tools
        new_uid, new_uid_name = (0, "root")
        logging_tools.my_syslog("Cannot find user '{}', using {} ({:d})".format(user, new_uid_name, new_uid))
    return new_uid, new_uid_name
Esempio n. 3
0
def get_gid_from_name(group):
    try:
        if type(group) in [int, long]:
            gid_stuff = grp.getgrgid(group)
        else:
            gid_stuff = grp.getgrnam(group)
        new_gid, new_gid_name = (gid_stuff[2], gid_stuff[0])
    except KeyError:
        from initat.tools import logging_tools
        new_gid, new_gid_name = (0, "root")
        logging_tools.my_syslog("Cannot find group '{}', using {} ({:d})".format(group, new_gid_name, new_gid))
    return new_gid, new_gid_name
Esempio n. 4
0
 def log(self,
         what,
         level=logging_tools.LOG_LEVEL_OK,
         dst=icswLogHandleTypes.log,
         **kwargs):
     if not self["exit_requested"]:
         if dst.value in self.__handles:
             cur_dst = self.__handles[dst.value]
             # check for open handles
             if dst != icswLogHandleTypes.log:
                 for cur_handle in cur_dst.handlers:
                     if not os.path.exists(cur_handle.baseFilename):
                         self.log("reopening file {} for {}".format(
                             cur_handle.baseFilename, dst.value))
                         cur_handle.stream = cur_handle._open()
             # print dir(cur_dst)
             if "src_thread" in kwargs or "src_process" in kwargs:
                 # build record to log src_thread
                 cur_record = logging.makeLogRecord({
                     "threadName":
                     kwargs.get("src_thread",
                                kwargs.get("src_process", "???")),
                     "process":
                     kwargs.get("src_pid", 0),
                     "msg":
                     what,
                     "levelno":
                     level,
                     "levelname":
                     logging_tools.get_log_level_str(level)
                 })
                 cur_dst.handle(cur_record)
             else:
                 cur_dst.log(level, what)
         else:
             self.__log_cache.append((dst, what, level))
     else:
         logging_tools.my_syslog(what, level)
Esempio n. 5
0
def main():
    kill_pids = []
    kill_signal = 9
    p_dir = "/proc"
    for p_id in os.listdir(p_dir):
        if p_id.isdigit():
            full_path = "%s/%s" % (p_dir, p_id)
            cwd_file = "%s/cwd" % (full_path)
            cwd_path = os.readlink(cwd_file)
            if cwd_path.startswith(WORK_DIR) and not os.path.exists(cwd_path):
                kill_pids.append(int(p_id))
    if kill_pids:
        kill_pids.sort()
        logging_tools.my_syslog(
            "sending signal %d to %s: %s" %
            (kill_signal, logging_tools.get_plural("PID", len(kill_pids)),
             ", ".join(["%d" % (x) for x in kill_pids])))
        for kill_pid in kill_pids:
            try:
                os.kill(kill_pid, kill_signal)
            except:
                pass
    sys.exit(0)
Esempio n. 6
0
 def log(self, what, level=logging_tools.LOG_LEVEL_OK):
     if self.__log_command:
         self.__log_command("[rsync] %s" % (what), level)
     else:
         logging_tools.my_syslog(what, level)
Esempio n. 7
0
def main():
    _parser = argparse.ArgumentParser()
    _parser.add_argument("-d", dest="daemonize", default=False, action="store_true", help="daemonize process [%(default)s]")
    _parser.add_argument("--progname", default="", type=str, help="programm name for sys.argv [%(default)s]")
    _parser.add_argument("--modname", default="", type=str, help="python module to load [%(default)s]")
    _parser.add_argument("--main-name", default="main", type=str, help="name of main function [%(default)s]")
    _parser.add_argument("--exename", default="", type=str, help="exe to start [%(default)s]")
    _parser.add_argument("--proctitle", default="", type=str, help="process title to set [%(default)s]")
    _parser.add_argument("--user", type=str, default="root", help="user to use for the process [%(default)s]")
    _parser.add_argument("--group", type=str, default="root", help="group to use for the process [%(default)s]")
    _parser.add_argument("--groups", type=str, default="", help="comma-separated list of groups for the process [%(default)s]")
    _parser.add_argument("--nice", type=int, default=0, help="set nice level of new process [%(default)d]")
    _parser.add_argument("--debug", default=False, action="store_true", help="enable debug mode (modify sys.path), [%(default)s]")
    _parser.add_argument("extra_args", nargs="*", help="extra arguments for module [%(default)s]")
    opts = _parser.parse_args()
    if opts.exename:
        _mode = "exe"
        _args = [opts.exename]
    else:
        _mode = "python"
        _args = [opts.progname]
    if opts.user != "root":
        uid = get_uid_from_name(opts.user)[0]
    else:
        uid = 0
    if opts.group != "root":
        gid = get_gid_from_name(opts.group)[0]
    else:
        gid = 0
    if opts.groups.strip():
        gids = [get_gid_from_name(_gid)[0] for _gid in opts.groups.strip().split(",")]
    else:
        gids = []
    _daemon_context = daemon.DaemonContext(
        detach_process=True,
        uid=uid,
        gid=gid,
        # gids=gids,
        # valid with python-daemonize-2.1.2
        # init_groups=False
    )
    if opts.nice:
        os.nice(opts.nice)
    if opts.daemonize:
        try:
            _daemon_context.open()
        except:
            # catastrophe
            from initat.tools import logging_tools, process_tools
            for _line in process_tools.icswExceptionInfo().log_lines:
                logging_tools.my_syslog(_line, logging_tools.LOG_LEVEL_ERROR)
    else:
        if gids:
            os.setgroups(gids)
        if uid or gid:
            os.setgid(gid)
            os.setuid(uid)
    if opts.extra_args:
        _args.extend(opts.extra_args)
    if _mode == "python":
        os.environ["LC_LANG"] = "en_us.UTF_8"
        # python path
        if opts.debug:
            # check via commandline args, do NOT import anything below init.at here
            abs_path = os.path.dirname(__file__)
            abs_path = os.path.split(os.path.split(abs_path)[0])[0]
            sys.path.insert(0, abs_path)
        sys.argv = _args
        setproctitle.setproctitle(opts.proctitle)
        main_module = importlib.import_module(opts.modname)
        if opts.daemonize:
            # redirect IO-streams
            from initat.logging_server.constants import icswLogHandleTypes
            from initat.tools.io_stream_helper import icswIOStream
            sys.stdout = icswIOStream(icswLogHandleTypes.log_py)
            sys.stderr = icswIOStream(icswLogHandleTypes.err_py)
        getattr(main_module, opts.main_name)()
        # was: main_module.main()
    else:
        # path for standard exe (munge, redis)
        setproctitle.setproctitle(opts.proctitle)
        os.execv(_args[0], _args)