240
240
    """A representation of a client host served by this server.
 
243
 
    name:       string; from the config file, used in log messages and
 
245
 
    fingerprint: string (40 or 32 hexadecimal digits); used to
 
246
 
                 uniquely identify the client
 
247
 
    secret:     bytestring; sent verbatim (over TLS) to client
 
248
 
    host:       string; available for use by the checker command
 
249
 
    created:    datetime.datetime(); (UTC) object creation
 
250
 
    last_enabled: datetime.datetime(); (UTC)
 
252
 
    last_checked_ok: datetime.datetime(); (UTC) or None
 
253
 
    timeout:    datetime.timedelta(); How long from last_checked_ok
 
254
 
                                      until this client is disabled
 
255
 
    interval:   datetime.timedelta(); How often to start a new checker
 
256
 
    disable_hook:  If set, called by disable() as disable_hook(self)
 
 
243
    _approved:   bool(); 'None' if not yet approved/disapproved
 
 
244
    approval_delay: datetime.timedelta(); Time to wait for approval
 
 
245
    approval_duration: datetime.timedelta(); Duration of one approval
 
257
246
    checker:    subprocess.Popen(); a running checker process used
 
258
247
                                    to see if the client lives.
 
259
248
                                    'None' if no process is running.
 
260
 
    checker_initiator_tag: a gobject event source tag, or None
 
261
 
    disable_initiator_tag: - '' -
 
262
249
    checker_callback_tag:  - '' -
 
263
 
    checker_command: string; External command which is run to check if
 
264
 
                     client lives.  %() expansions are done at
 
 
250
    checker_command: string; External command which is run to check
 
 
251
                     if client lives.  %() expansions are done at
 
265
252
                     runtime with vars(self) as dict, so that for
 
266
253
                     instance %(name)s can be used in the command.
 
 
254
    checker_initiator_tag: a gobject event source tag, or None
 
 
255
    created:    datetime.datetime(); (UTC) object creation
 
267
256
    current_checker_command: string; current running checker_command
 
268
 
    approval_delay: datetime.timedelta(); Time to wait for approval
 
269
 
    _approved:   bool(); 'None' if not yet approved/disapproved
 
270
 
    approval_duration: datetime.timedelta(); Duration of one approval
 
 
257
    disable_hook:  If set, called by disable() as disable_hook(self)
 
 
258
    disable_initiator_tag: - '' -
 
 
260
    fingerprint: string (40 or 32 hexadecimal digits); used to
 
 
261
                 uniquely identify the client
 
 
262
    host:       string; available for use by the checker command
 
 
263
    interval:   datetime.timedelta(); How often to start a new checker
 
 
264
    last_checked_ok: datetime.datetime(); (UTC) or None
 
 
265
    last_enabled: datetime.datetime(); (UTC)
 
 
266
    name:       string; from the config file, used in log messages and
 
 
268
    secret:     bytestring; sent verbatim (over TLS) to client
 
 
269
    timeout:    datetime.timedelta(); How long from last_checked_ok
 
 
270
                                      until this client is disabled
 
 
271
    runtime_expansions: Allowed attributes for runtime expansion.
 
 
274
    runtime_expansions = (u"approval_delay", u"approval_duration",
 
 
275
                          u"created", u"enabled", u"fingerprint",
 
 
276
                          u"host", u"interval", u"last_checked_ok",
 
 
277
                          u"last_enabled", u"name", u"timeout")
 
274
280
    def _timedelta_to_milliseconds(td):
 
275
281
        "Convert a datetime.timedelta() to milliseconds"
 
 
711
723
        Client.__init__(self, *args, **kwargs)
 
712
724
        # Only now, when this client is initialized, can it show up on
 
 
726
        client_object_name = unicode(self.name).translate(
 
 
727
            {ord(u"."): ord(u"_"),
 
 
728
             ord(u"-"): ord(u"_")})
 
714
729
        self.dbus_object_path = (dbus.ObjectPath
 
716
 
                                  + self.name.replace(u".", u"_")))
 
 
730
                                 (u"/clients/" + client_object_name))
 
717
731
        DBusObjectWithProperties.__init__(self, self.bus,
 
718
732
                                          self.dbus_object_path)
 
 
1755
1765
                              gnutls_priority=
 
1756
1766
                              server_settings[u"priority"],
 
1757
1767
                              use_dbus=use_dbus)
 
1758
 
    pidfilename = u"/var/run/mandos.pid"
 
1760
 
        pidfile = open(pidfilename, u"w")
 
1762
 
        logger.error(u"Could not open file %r", pidfilename)
 
 
1769
        pidfilename = u"/var/run/mandos.pid"
 
 
1771
            pidfile = open(pidfilename, u"w")
 
 
1773
            logger.error(u"Could not open file %r", pidfilename)
 
1765
1776
        uid = pwd.getpwnam(u"_mandos").pw_uid
 
 
1867
1878
    if not tcp_server.clients:
 
1868
1879
        logger.warning(u"No clients defined")
 
1873
 
            pidfile.write(str(pid) + "\n")
 
1876
 
        logger.error(u"Could not write to file %r with PID %d",
 
1879
 
        # "pidfile" was never created
 
 
1885
                pidfile.write(str(pid) + "\n")
 
 
1888
            logger.error(u"Could not write to file %r with PID %d",
 
 
1891
            # "pidfile" was never created
 
1884
1895
        signal.signal(signal.SIGINT, signal.SIG_IGN)
 
1885
1897
    signal.signal(signal.SIGHUP, lambda signum, frame: sys.exit())
 
1886
1898
    signal.signal(signal.SIGTERM, lambda signum, frame: sys.exit())