/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to mandos

  • Committer: Teddy Hogeborn
  • Date: 2008-11-09 06:40:29 UTC
  • mto: (24.1.113 mandos) (237.2.1 mandos)
  • mto: This revision was merged to the branch mainline in revision 238.
  • Revision ID: teddy@fukt.bsnet.se-20081109064029-df71jpoce308cq3v
First steps of a D-Bus interface to the server.

* mandos: Also import "dbus.service".
  (Client): Inherit from "dbus.service.Object", which is a new-style
            class, so inheriting from "object" is no longer necessary.
  (Client.interface): New temporary variable which only exists during
                     class definition.

  (Client.getName, Client.getFingerprint): New D-Bus getter methods.
  (Client.setSecret): New D-Bus setter method.
  (Client._set_timeout): Emit D-Bus signal "TimeoutChanged".
  (Client.getTimeout): New D-Bus getter method.
  (Client.TimeoutChanged): New D-Bus signal.
  (Client._set_interval): Emit D-Bus signal "IntervalChanged".
  (Client.getInterval): New D-Bus getter method.
  (Client.intervalChanged): New D-Bus signal.
  (Client.__init__): Also call "dbus.service.Object.__init__".
  (Client.started): New boolean attribute.
  (Client.start, Client.stop): Update "self.started", and emit D-Bus
                               signal "StateChanged".
  (Client.StateChanged): New D-Bus signal.
  (Client.stop): Use "self.started" instead of misusing "self.secret".
                 Also simplify code by using "getattr" instead of
                 "hasattr".
  (Client.checker_callback): Emit D-Bus signal "CheckerCompleted".
  (Client.CheckerCompleted): New D-Bus signal.
  (Client.bumpTimeout): D-Bus method name for "bump_timeout".
  (Client.start_checker): Emit D-Bus signal "CheckerStarted".
  (Client.CheckerStarted): New D-Bus signal.
  (Client.checkerIsRunning): New D-Bus method.
  (Client.StopChecker): D-Bus method name for "stop_checker".
  (Client.still_valid): First check "self.started".
  (Client.stillValid): D-Bus method name for "still_valid".

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
# This program is partly derived from an example program for an Avahi
7
7
# service publisher, downloaded from
8
8
# <http://avahi.org/wiki/PythonPublishExample>.  This includes the
9
 
# following functions: "add_service", "remove_service",
10
 
# "server_state_changed", "entry_group_state_changed", and some lines
11
 
# in "main".
 
9
# methods "add" and "remove" in the "AvahiService" class, the
 
10
# "server_state_changed" and "entry_group_state_changed" functions,
 
11
# and some lines in "main".
12
12
13
 
# Everything else is Copyright © 2007-2008 Teddy Hogeborn and Björn
14
 
# Påhlsson.
 
13
# Everything else is
 
14
# Copyright © 2008 Teddy Hogeborn & Björn Påhlsson
15
15
16
16
# This program is free software: you can redistribute it and/or modify
17
17
# it under the terms of the GNU General Public License as published by
24
24
#     GNU General Public License for more details.
25
25
26
26
# You should have received a copy of the GNU General Public License
27
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
27
# along with this program.  If not, see
 
28
# <http://www.gnu.org/licenses/>.
28
29
29
 
# Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
30
 
# <https://www.fukt.bsnet.se/~teddy/>.
 
30
# Contact the authors at <mandos@fukt.bsnet.se>.
31
31
32
32
 
33
 
from __future__ import division
 
33
from __future__ import division, with_statement, absolute_import
34
34
 
35
35
import SocketServer
36
36
import socket
37
 
import select
38
37
from optparse import OptionParser
39
38
import datetime
40
39
import errno
55
54
import stat
56
55
import logging
57
56
import logging.handlers
 
57
import pwd
 
58
from contextlib import closing
58
59
 
59
60
import dbus
 
61
import dbus.service
60
62
import gobject
61
63
import avahi
62
64
from dbus.mainloop.glib import DBusGMainLoop
63
65
import ctypes
64
 
 
65
 
# Brief description of the operation of this program:
66
 
67
 
# This server announces itself as a Zeroconf service.  Connecting
68
 
# clients use the TLS protocol, with the unusual quirk that this
69
 
# server program acts as a TLS "client" while the connecting clients
70
 
# acts as a TLS "server".  The clients (acting as a TLS "server") must
71
 
# supply an OpenPGP certificate, and the fingerprint of this
72
 
# certificate is used by this server to look up (in a list read from a
73
 
# file at start time) which binary blob to give the client.  No other
74
 
# authentication or authorization is done by this server.
75
 
 
 
66
import ctypes.util
 
67
 
 
68
version = "1.0.2"
76
69
 
77
70
logger = logging.Logger('mandos')
78
71
syslogger = logging.handlers.SysLogHandler\
79
 
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON)
 
72
            (facility = logging.handlers.SysLogHandler.LOG_DAEMON,
 
73
             address = "/dev/log")
80
74
syslogger.setFormatter(logging.Formatter\
81
 
                        ('%(levelname)s: %(message)s'))
 
75
                        ('Mandos: %(levelname)s: %(message)s'))
82
76
logger.addHandler(syslogger)
83
 
del syslogger
84
 
 
85
 
# This variable is used to optionally bind to a specified interface.
86
 
# It is a global variable to fit in with the other variables from the
87
 
# Avahi example code.
88
 
serviceInterface = avahi.IF_UNSPEC
 
77
 
 
78
console = logging.StreamHandler()
 
79
console.setFormatter(logging.Formatter('%(name)s: %(levelname)s:'
 
80
                                       ' %(message)s'))
 
81
logger.addHandler(console)
 
82
 
 
83
class AvahiError(Exception):
 
84
    def __init__(self, value):
 
85
        self.value = value
 
86
        super(AvahiError, self).__init__()
 
87
    def __str__(self):
 
88
        return repr(self.value)
 
89
 
 
90
class AvahiServiceError(AvahiError):
 
91
    pass
 
92
 
 
93
class AvahiGroupError(AvahiError):
 
94
    pass
 
95
 
 
96
 
 
97
class AvahiService(object):
 
98
    """An Avahi (Zeroconf) service.
 
99
    Attributes:
 
100
    interface: integer; avahi.IF_UNSPEC or an interface index.
 
101
               Used to optionally bind to the specified interface.
 
102
    name: string; Example: 'Mandos'
 
103
    type: string; Example: '_mandos._tcp'.
 
104
                  See <http://www.dns-sd.org/ServiceTypes.html>
 
105
    port: integer; what port to announce
 
106
    TXT: list of strings; TXT record for the service
 
107
    domain: string; Domain to publish on, default to .local if empty.
 
108
    host: string; Host to publish records for, default is localhost
 
109
    max_renames: integer; maximum number of renames
 
110
    rename_count: integer; counter so we only rename after collisions
 
111
                  a sensible number of times
 
112
    """
 
113
    def __init__(self, interface = avahi.IF_UNSPEC, name = None,
 
114
                 servicetype = None, port = None, TXT = None, domain = "",
 
115
                 host = "", max_renames = 32768):
 
116
        self.interface = interface
 
117
        self.name = name
 
118
        self.type = servicetype
 
119
        self.port = port
 
120
        if TXT is None:
 
121
            self.TXT = []
 
122
        else:
 
123
            self.TXT = TXT
 
124
        self.domain = domain
 
125
        self.host = host
 
126
        self.rename_count = 0
 
127
        self.max_renames = max_renames
 
128
    def rename(self):
 
129
        """Derived from the Avahi example code"""
 
130
        if self.rename_count >= self.max_renames:
 
131
            logger.critical(u"No suitable Zeroconf service name found"
 
132
                            u" after %i retries, exiting.",
 
133
                            self.rename_count)
 
134
            raise AvahiServiceError("Too many renames")
 
135
        self.name = server.GetAlternativeServiceName(self.name)
 
136
        logger.info(u"Changing Zeroconf service name to %r ...",
 
137
                    str(self.name))
 
138
        syslogger.setFormatter(logging.Formatter\
 
139
                               ('Mandos (%s): %%(levelname)s:'
 
140
                               ' %%(message)s' % self.name))
 
141
        self.remove()
 
142
        self.add()
 
143
        self.rename_count += 1
 
144
    def remove(self):
 
145
        """Derived from the Avahi example code"""
 
146
        if group is not None:
 
147
            group.Reset()
 
148
    def add(self):
 
149
        """Derived from the Avahi example code"""
 
150
        global group
 
151
        if group is None:
 
152
            group = dbus.Interface\
 
153
                    (bus.get_object(avahi.DBUS_NAME,
 
154
                                    server.EntryGroupNew()),
 
155
                     avahi.DBUS_INTERFACE_ENTRY_GROUP)
 
156
            group.connect_to_signal('StateChanged',
 
157
                                    entry_group_state_changed)
 
158
        logger.debug(u"Adding Zeroconf service '%s' of type '%s' ...",
 
159
                     service.name, service.type)
 
160
        group.AddService(
 
161
                self.interface,         # interface
 
162
                avahi.PROTO_INET6,      # protocol
 
163
                dbus.UInt32(0),         # flags
 
164
                self.name, self.type,
 
165
                self.domain, self.host,
 
166
                dbus.UInt16(self.port),
 
167
                avahi.string_array_to_txt_array(self.TXT))
 
168
        group.Commit()
 
169
 
89
170
# From the Avahi example code:
90
 
serviceName = "Mandos"
91
 
serviceType = "_mandos._tcp" # http://www.dns-sd.org/ServiceTypes.html
92
 
servicePort = None                      # Not known at startup
93
 
serviceTXT = []                         # TXT record for the service
94
 
domain = ""                  # Domain to publish on, default to .local
95
 
host = ""          # Host to publish records for, default to localhost
96
 
group = None #our entry group
97
 
rename_count = 12       # Counter so we only rename after collisions a
98
 
                        # sensible number of times
 
171
group = None                            # our entry group
99
172
# End of Avahi example code
100
173
 
101
174
 
102
 
class Client(object):
 
175
class Client(dbus.service.Object):
103
176
    """A representation of a client host served by this server.
104
177
    Attributes:
105
178
    name:      string; from the config file, used in log messages
106
179
    fingerprint: string (40 or 32 hexadecimal digits); used to
107
180
                 uniquely identify the client
108
181
    secret:    bytestring; sent verbatim (over TLS) to client
109
 
    fqdn:      string (FQDN); available for use by the checker command
110
 
    created:   datetime.datetime()
111
 
    last_seen: datetime.datetime() or None if not yet seen
112
 
    timeout:   datetime.timedelta(); How long from last_seen until
113
 
                                     this client is invalid
 
182
    host:      string; available for use by the checker command
 
183
    created:   datetime.datetime(); object creation, not client host
 
184
    started:   bool()
 
185
    last_checked_ok: datetime.datetime() or None if not yet checked OK
 
186
    timeout:   datetime.timedelta(); How long from last_checked_ok
 
187
                                     until this client is invalid
114
188
    interval:  datetime.timedelta(); How often to start a new checker
115
189
    stop_hook: If set, called by stop() as stop_hook(self)
116
190
    checker:   subprocess.Popen(); a running checker process used
117
191
                                   to see if the client lives.
118
 
                                   Is None if no process is running.
 
192
                                   'None' if no process is running.
119
193
    checker_initiator_tag: a gobject event source tag, or None
120
194
    stop_initiator_tag:    - '' -
121
195
    checker_callback_tag:  - '' -
122
196
    checker_command: string; External command which is run to check if
123
 
                     client lives.  %()s expansions are done at
 
197
                     client lives.  %() expansions are done at
124
198
                     runtime with vars(self) as dict, so that for
125
199
                     instance %(name)s can be used in the command.
126
200
    Private attibutes:
127
201
    _timeout: Real variable for 'timeout'
128
202
    _interval: Real variable for 'interval'
129
 
    _timeout_milliseconds: Used by gobject.timeout_add()
 
203
    _timeout_milliseconds: Used when calling gobject.timeout_add()
130
204
    _interval_milliseconds: - '' -
131
205
    """
 
206
    interface = u"org.mandos_system.Mandos.Clients"
 
207
    
 
208
    @dbus.service.method(interface, out_signature="s")
 
209
    def getName(self):
 
210
        "D-Bus getter method"
 
211
        return self.name
 
212
    
 
213
    @dbus.service.method(interface, out_signature="s")
 
214
    def getFingerprint(self):
 
215
        "D-Bus getter method"
 
216
        return self.fingerprint
 
217
    
 
218
    @dbus.service.method(interface, in_signature="ay",
 
219
                         byte_arrays=True)
 
220
    def setSecret(self, secret):
 
221
        "D-Bus setter method"
 
222
        self.secret = secret
 
223
    
132
224
    def _set_timeout(self, timeout):
133
 
        "Setter function for 'timeout' attribute"
 
225
        "Setter function for the 'timeout' attribute"
134
226
        self._timeout = timeout
135
227
        self._timeout_milliseconds = ((self.timeout.days
136
228
                                       * 24 * 60 * 60 * 1000)
137
229
                                      + (self.timeout.seconds * 1000)
138
230
                                      + (self.timeout.microseconds
139
231
                                         // 1000))
140
 
    timeout = property(lambda self: self._timeout,
141
 
                       _set_timeout)
 
232
        # Emit D-Bus signal
 
233
        self.TimeoutChanged(self._timeout_milliseconds)
 
234
    timeout = property(lambda self: self._timeout, _set_timeout)
142
235
    del _set_timeout
 
236
    
 
237
    @dbus.service.method(interface, out_signature="t")
 
238
    def getTimeout(self):
 
239
        "D-Bus getter method"
 
240
        return self._timeout_milliseconds
 
241
    
 
242
    @dbus.service.signal(interface, signature="t")
 
243
    def TimeoutChanged(self, t):
 
244
        "D-Bus signal"
 
245
        pass
 
246
    
143
247
    def _set_interval(self, interval):
144
 
        "Setter function for 'interval' attribute"
 
248
        "Setter function for the 'interval' attribute"
145
249
        self._interval = interval
146
250
        self._interval_milliseconds = ((self.interval.days
147
251
                                        * 24 * 60 * 60 * 1000)
149
253
                                          * 1000)
150
254
                                       + (self.interval.microseconds
151
255
                                          // 1000))
152
 
    interval = property(lambda self: self._interval,
153
 
                        _set_interval)
 
256
        # Emit D-Bus signal
 
257
        self.IntervalChanged(self._interval_milliseconds)
 
258
    interval = property(lambda self: self._interval, _set_interval)
154
259
    del _set_interval
155
 
    def __init__(self, name=None, options=None, stop_hook=None,
156
 
                 fingerprint=None, secret=None, secfile=None,
157
 
                 fqdn=None, timeout=None, interval=-1, checker=None):
158
 
        """Note: the 'checker' argument sets the 'checker_command'
159
 
        attribute and not the 'checker' attribute.."""
 
260
    
 
261
    @dbus.service.method(interface, out_signature="t")
 
262
    def getInterval(self):
 
263
        "D-Bus getter method"
 
264
        return self._interval_milliseconds
 
265
    
 
266
    @dbus.service.signal(interface, signature="t")
 
267
    def IntervalChanged(self, t):
 
268
        "D-Bus signal"
 
269
        pass
 
270
    
 
271
    def __init__(self, name = None, stop_hook=None, config=None):
 
272
        """Note: the 'checker' key in 'config' sets the
 
273
        'checker_command' attribute and *not* the 'checker'
 
274
        attribute."""
 
275
        dbus.service.Object.__init__(self, bus,
 
276
                                     "/Mandos/Clients/%s"
 
277
                                     % name.replace(".", "_"))
 
278
        if config is None:
 
279
            config = {}
160
280
        self.name = name
161
 
        # Uppercase and remove spaces from fingerprint
162
 
        # for later comparison purposes with return value of
163
 
        # the fingerprint() function
164
 
        self.fingerprint = fingerprint.upper().replace(u" ", u"")
165
 
        if secret:
166
 
            self.secret = secret.decode(u"base64")
167
 
        elif secfile:
168
 
            sf = open(secfile)
169
 
            self.secret = sf.read()
170
 
            sf.close()
 
281
        logger.debug(u"Creating client %r", self.name)
 
282
        # Uppercase and remove spaces from fingerprint for later
 
283
        # comparison purposes with return value from the fingerprint()
 
284
        # function
 
285
        self.fingerprint = config["fingerprint"].upper()\
 
286
                           .replace(u" ", u"")
 
287
        logger.debug(u"  Fingerprint: %s", self.fingerprint)
 
288
        if "secret" in config:
 
289
            self.secret = config["secret"].decode(u"base64")
 
290
        elif "secfile" in config:
 
291
            with closing(open(os.path.expanduser
 
292
                              (os.path.expandvars
 
293
                               (config["secfile"])))) \
 
294
                               as secfile:
 
295
                self.secret = secfile.read()
171
296
        else:
172
 
            raise RuntimeError(u"No secret or secfile for client %s"
173
 
                               % self.name)
174
 
        self.fqdn = fqdn                # string
 
297
            raise TypeError(u"No secret or secfile for client %s"
 
298
                            % self.name)
 
299
        self.host = config.get("host", "")
175
300
        self.created = datetime.datetime.now()
176
 
        self.last_seen = None
177
 
        if timeout is None:
178
 
            self.timeout = options.timeout
179
 
        else:
180
 
            self.timeout = string_to_delta(timeout)
181
 
        if interval == -1:
182
 
            self.interval = options.interval
183
 
        else:
184
 
            self.interval = string_to_delta(interval)
 
301
        self.started = False
 
302
        self.last_checked_ok = None
 
303
        self.timeout = string_to_delta(config["timeout"])
 
304
        self.interval = string_to_delta(config["interval"])
185
305
        self.stop_hook = stop_hook
186
306
        self.checker = None
187
307
        self.checker_initiator_tag = None
188
308
        self.stop_initiator_tag = None
189
309
        self.checker_callback_tag = None
190
 
        self.check_command = checker
 
310
        self.check_command = config["checker"]
 
311
    
191
312
    def start(self):
192
313
        """Start this client's checker and timeout hooks"""
 
314
        self.started = True
193
315
        # Schedule a new checker to be started an 'interval' from now,
194
316
        # and every interval from then on.
195
317
        self.checker_initiator_tag = gobject.timeout_add\
201
323
        self.stop_initiator_tag = gobject.timeout_add\
202
324
                                  (self._timeout_milliseconds,
203
325
                                   self.stop)
 
326
        # Emit D-Bus signal
 
327
        self.StateChanged(True)
 
328
    
 
329
    @dbus.service.signal(interface, signature="b")
 
330
    def StateChanged(self, started):
 
331
        "D-Bus signal"
 
332
        pass
 
333
    
204
334
    def stop(self):
205
 
        """Stop this client.
206
 
        The possibility that this client might be restarted is left
207
 
        open, but not currently used."""
208
 
        # If this client doesn't have a secret, it is already stopped.
209
 
        if self.secret:
210
 
            logger.debug(u"Stopping client %s", self.name)
211
 
            self.secret = None
 
335
        """Stop this client."""
 
336
        if getattr(self, "started", False):
 
337
            logger.info(u"Stopping client %s", self.name)
212
338
        else:
213
339
            return False
214
 
        if hasattr(self, "stop_initiator_tag") \
215
 
               and self.stop_initiator_tag:
 
340
        if getattr(self, "stop_initiator_tag", False):
216
341
            gobject.source_remove(self.stop_initiator_tag)
217
342
            self.stop_initiator_tag = None
218
 
        if hasattr(self, "checker_initiator_tag") \
219
 
               and self.checker_initiator_tag:
 
343
        if getattr(self, "checker_initiator_tag", False):
220
344
            gobject.source_remove(self.checker_initiator_tag)
221
345
            self.checker_initiator_tag = None
222
346
        self.stop_checker()
223
347
        if self.stop_hook:
224
348
            self.stop_hook(self)
 
349
        # Emit D-Bus signal
 
350
        self.StateChanged(False)
225
351
        # Do not run this again if called by a gobject.timeout_add
226
352
        return False
 
353
    # D-Bus variant
 
354
    Stop = dbus.service.method(interface)(stop)
 
355
    
227
356
    def __del__(self):
228
357
        self.stop_hook = None
229
358
        self.stop()
 
359
    
230
360
    def checker_callback(self, pid, condition):
231
361
        """The checker has completed, so take appropriate actions."""
232
 
        now = datetime.datetime.now()
233
362
        self.checker_callback_tag = None
234
363
        self.checker = None
235
364
        if os.WIFEXITED(condition) \
236
365
               and (os.WEXITSTATUS(condition) == 0):
237
 
            logger.debug(u"Checker for %(name)s succeeded",
238
 
                         vars(self))
239
 
            self.last_seen = now
240
 
            gobject.source_remove(self.stop_initiator_tag)
241
 
            self.stop_initiator_tag = gobject.timeout_add\
242
 
                                      (self._timeout_milliseconds,
243
 
                                       self.stop)
 
366
            logger.info(u"Checker for %(name)s succeeded",
 
367
                        vars(self))
 
368
            # Emit D-Bus signal
 
369
            self.CheckerCompleted(True)
 
370
            self.bump_timeout()
244
371
        elif not os.WIFEXITED(condition):
245
372
            logger.warning(u"Checker for %(name)s crashed?",
246
373
                           vars(self))
 
374
            # Emit D-Bus signal
 
375
            self.CheckerCompleted(False)
247
376
        else:
248
 
            logger.debug(u"Checker for %(name)s failed",
249
 
                         vars(self))
 
377
            logger.info(u"Checker for %(name)s failed",
 
378
                        vars(self))
 
379
            # Emit D-Bus signal
 
380
            self.CheckerCompleted(False)
 
381
    
 
382
    @dbus.service.signal(interface, signature="b")
 
383
    def CheckerCompleted(self, success):
 
384
        "D-Bus signal"
 
385
        pass
 
386
    
 
387
    def bump_timeout(self):
 
388
        """Bump up the timeout for this client.
 
389
        This should only be called when the client has been seen,
 
390
        alive and well.
 
391
        """
 
392
        self.last_checked_ok = datetime.datetime.now()
 
393
        gobject.source_remove(self.stop_initiator_tag)
 
394
        self.stop_initiator_tag = gobject.timeout_add\
 
395
            (self._timeout_milliseconds, self.stop)
 
396
    # D-Bus variant
 
397
    bumpTimeout = dbus.service.method(interface)(bump_timeout)
 
398
    
250
399
    def start_checker(self):
251
400
        """Start a new checker subprocess if one is not running.
252
401
        If a checker already exists, leave it running and do
261
410
        # is as it should be.
262
411
        if self.checker is None:
263
412
            try:
264
 
                command = self.check_command % self.fqdn
 
413
                # In case check_command has exactly one % operator
 
414
                command = self.check_command % self.host
265
415
            except TypeError:
 
416
                # Escape attributes for the shell
266
417
                escaped_attrs = dict((key, re.escape(str(val)))
267
418
                                     for key, val in
268
419
                                     vars(self).iteritems())
269
420
                try:
270
421
                    command = self.check_command % escaped_attrs
271
422
                except TypeError, error:
272
 
                    logger.critical(u'Could not format string "%s":'
273
 
                                    u' %s', self.check_command, error)
 
423
                    logger.error(u'Could not format string "%s":'
 
424
                                 u' %s', self.check_command, error)
274
425
                    return True # Try again later
275
426
            try:
276
 
                logger.debug(u"Starting checker %r for %s",
277
 
                             command, self.name)
278
 
                self.checker = subprocess.\
279
 
                               Popen(command,
280
 
                                     close_fds=True, shell=True,
281
 
                                     cwd="/")
 
427
                logger.info(u"Starting checker %r for %s",
 
428
                            command, self.name)
 
429
                # We don't need to redirect stdout and stderr, since
 
430
                # in normal mode, that is already done by daemon(),
 
431
                # and in debug mode we don't want to.  (Stdin is
 
432
                # always replaced by /dev/null.)
 
433
                self.checker = subprocess.Popen(command,
 
434
                                                close_fds=True,
 
435
                                                shell=True, cwd="/")
282
436
                self.checker_callback_tag = gobject.child_watch_add\
283
437
                                            (self.checker.pid,
284
438
                                             self.checker_callback)
285
 
            except subprocess.OSError, error:
 
439
                # Emit D-Bus signal
 
440
                self.CheckerStarted(command)
 
441
            except OSError, error:
286
442
                logger.error(u"Failed to start subprocess: %s",
287
443
                             error)
288
444
        # Re-run this periodically if run by gobject.timeout_add
289
445
        return True
 
446
    
 
447
    @dbus.service.signal(interface, signature="s")
 
448
    def CheckerStarted(self, command):
 
449
        pass
 
450
    
 
451
    @dbus.service.method(interface, out_signature="b")
 
452
    def checkerIsRunning(self):
 
453
        "D-Bus getter method"
 
454
        return self.checker is not None
 
455
    
290
456
    def stop_checker(self):
291
457
        """Force the checker process, if any, to stop."""
292
458
        if self.checker_callback_tag:
293
459
            gobject.source_remove(self.checker_callback_tag)
294
460
            self.checker_callback_tag = None
295
 
        if not hasattr(self, "checker") or self.checker is None:
 
461
        if getattr(self, "checker", None) is None:
296
462
            return
297
 
        logger.debug("Stopping checker for %(name)s", vars(self))
 
463
        logger.debug(u"Stopping checker for %(name)s", vars(self))
298
464
        try:
299
465
            os.kill(self.checker.pid, signal.SIGTERM)
300
466
            #os.sleep(0.5)
301
467
            #if self.checker.poll() is None:
302
468
            #    os.kill(self.checker.pid, signal.SIGKILL)
303
469
        except OSError, error:
304
 
            if error.errno != errno.ESRCH:
 
470
            if error.errno != errno.ESRCH: # No such process
305
471
                raise
306
472
        self.checker = None
307
 
    def still_valid(self, now=None):
 
473
    # D-Bus variant
 
474
    StopChecker = dbus.service.method(interface)(stop_checker)
 
475
    
 
476
    def still_valid(self):
308
477
        """Has the timeout not yet passed for this client?"""
309
 
        if now is None:
310
 
            now = datetime.datetime.now()
311
 
        if self.last_seen is None:
 
478
        if not self.started:
 
479
            return False
 
480
        now = datetime.datetime.now()
 
481
        if self.last_checked_ok is None:
312
482
            return now < (self.created + self.timeout)
313
483
        else:
314
 
            return now < (self.last_seen + self.timeout)
 
484
            return now < (self.last_checked_ok + self.timeout)
 
485
    # D-Bus variant
 
486
    stillValid = dbus.service.method(interface, out_signature="b")\
 
487
        (still_valid)
 
488
    
 
489
    del interface
315
490
 
316
491
 
317
492
def peer_certificate(session):
333
508
 
334
509
def fingerprint(openpgp):
335
510
    "Convert an OpenPGP bytestring to a hexdigit fingerprint string"
336
 
    # New empty GnuTLS certificate
337
 
    crt = gnutls.library.types.gnutls_openpgp_crt_t()
338
 
    gnutls.library.functions.gnutls_openpgp_crt_init\
339
 
        (ctypes.byref(crt))
340
511
    # New GnuTLS "datum" with the OpenPGP public key
341
512
    datum = gnutls.library.types.gnutls_datum_t\
342
513
        (ctypes.cast(ctypes.c_char_p(openpgp),
343
514
                     ctypes.POINTER(ctypes.c_ubyte)),
344
515
         ctypes.c_uint(len(openpgp)))
 
516
    # New empty GnuTLS certificate
 
517
    crt = gnutls.library.types.gnutls_openpgp_crt_t()
 
518
    gnutls.library.functions.gnutls_openpgp_crt_init\
 
519
        (ctypes.byref(crt))
345
520
    # Import the OpenPGP public key into the certificate
346
 
    ret = gnutls.library.functions.gnutls_openpgp_crt_import\
347
 
        (crt,
348
 
         ctypes.byref(datum),
349
 
         gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
 
521
    gnutls.library.functions.gnutls_openpgp_crt_import\
 
522
                    (crt, ctypes.byref(datum),
 
523
                     gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
 
524
    # Verify the self signature in the key
 
525
    crtverify = ctypes.c_uint()
 
526
    gnutls.library.functions.gnutls_openpgp_crt_verify_self\
 
527
        (crt, 0, ctypes.byref(crtverify))
 
528
    if crtverify.value != 0:
 
529
        gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
 
530
        raise gnutls.errors.CertificateSecurityError("Verify failed")
350
531
    # New buffer for the fingerprint
351
 
    buffer = ctypes.create_string_buffer(20)
352
 
    buffer_length = ctypes.c_size_t()
 
532
    buf = ctypes.create_string_buffer(20)
 
533
    buf_len = ctypes.c_size_t()
353
534
    # Get the fingerprint from the certificate into the buffer
354
535
    gnutls.library.functions.gnutls_openpgp_crt_get_fingerprint\
355
 
        (crt, ctypes.byref(buffer), ctypes.byref(buffer_length))
 
536
        (crt, ctypes.byref(buf), ctypes.byref(buf_len))
356
537
    # Deinit the certificate
357
538
    gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
358
539
    # Convert the buffer to a Python bytestring
359
 
    fpr = ctypes.string_at(buffer, buffer_length.value)
 
540
    fpr = ctypes.string_at(buf, buf_len.value)
360
541
    # Convert the bytestring to hexadecimal notation
361
542
    hex_fpr = u''.join(u"%02X" % ord(char) for char in fpr)
362
543
    return hex_fpr
363
544
 
364
545
 
365
 
class tcp_handler(SocketServer.BaseRequestHandler, object):
 
546
class TCP_handler(SocketServer.BaseRequestHandler, object):
366
547
    """A TCP request handler class.
367
548
    Instantiated by IPv6_TCPServer for each request to handle it.
368
549
    Note: This will run in its own forked process."""
369
550
    
370
551
    def handle(self):
371
 
        logger.debug(u"TCP connection from: %s",
372
 
                     unicode(self.client_address))
373
 
        session = gnutls.connection.ClientSession(self.request,
374
 
                                                  gnutls.connection.\
375
 
                                                  X509Credentials())
 
552
        logger.info(u"TCP connection from: %s",
 
553
                    unicode(self.client_address))
 
554
        session = gnutls.connection.ClientSession\
 
555
                  (self.request, gnutls.connection.X509Credentials())
 
556
        
 
557
        line = self.request.makefile().readline()
 
558
        logger.debug(u"Protocol version: %r", line)
 
559
        try:
 
560
            if int(line.strip().split()[0]) > 1:
 
561
                raise RuntimeError
 
562
        except (ValueError, IndexError, RuntimeError), error:
 
563
            logger.error(u"Unknown protocol version: %s", error)
 
564
            return
 
565
        
 
566
        # Note: gnutls.connection.X509Credentials is really a generic
 
567
        # GnuTLS certificate credentials object so long as no X.509
 
568
        # keys are added to it.  Therefore, we can use it here despite
 
569
        # using OpenPGP certificates.
376
570
        
377
571
        #priority = ':'.join(("NONE", "+VERS-TLS1.1", "+AES-256-CBC",
378
572
        #                "+SHA1", "+COMP-NULL", "+CTYPE-OPENPGP",
379
573
        #                "+DHE-DSS"))
380
 
        priority = "SECURE256"
381
 
        
 
574
        # Use a fallback default, since this MUST be set.
 
575
        priority = self.server.settings.get("priority", "NORMAL")
382
576
        gnutls.library.functions.gnutls_priority_set_direct\
383
 
            (session._c_object, priority, None);
 
577
            (session._c_object, priority, None)
384
578
        
385
579
        try:
386
580
            session.handshake()
387
581
        except gnutls.errors.GNUTLSError, error:
388
 
            logger.debug(u"Handshake failed: %s", error)
 
582
            logger.warning(u"Handshake failed: %s", error)
389
583
            # Do not run session.bye() here: the session is not
390
584
            # established.  Just abandon the request.
391
585
            return
392
586
        try:
393
587
            fpr = fingerprint(peer_certificate(session))
394
588
        except (TypeError, gnutls.errors.GNUTLSError), error:
395
 
            logger.debug(u"Bad certificate: %s", error)
 
589
            logger.warning(u"Bad certificate: %s", error)
396
590
            session.bye()
397
591
            return
398
592
        logger.debug(u"Fingerprint: %s", fpr)
401
595
            if c.fingerprint == fpr:
402
596
                client = c
403
597
                break
 
598
        if not client:
 
599
            logger.warning(u"Client not found for fingerprint: %s",
 
600
                           fpr)
 
601
            session.bye()
 
602
            return
404
603
        # Have to check if client.still_valid(), since it is possible
405
604
        # that the client timed out while establishing the GnuTLS
406
605
        # session.
407
 
        if (not client) or (not client.still_valid()):
408
 
            if client:
409
 
                logger.debug(u"Client %(name)s is invalid",
410
 
                             vars(client))
411
 
            else:
412
 
                logger.debug(u"Client not found for fingerprint: %s",
413
 
                             fpr)
 
606
        if not client.still_valid():
 
607
            logger.warning(u"Client %(name)s is invalid",
 
608
                           vars(client))
414
609
            session.bye()
415
610
            return
 
611
        ## This won't work here, since we're in a fork.
 
612
        # client.bump_timeout()
416
613
        sent_size = 0
417
614
        while sent_size < len(client.secret):
418
615
            sent = session.send(client.secret[sent_size:])
423
620
        session.bye()
424
621
 
425
622
 
426
 
class IPv6_TCPServer(SocketServer.ForkingTCPServer, object):
 
623
class IPv6_TCPServer(SocketServer.ForkingMixIn,
 
624
                     SocketServer.TCPServer, object):
427
625
    """IPv6 TCP server.  Accepts 'None' as address and/or port.
428
626
    Attributes:
429
 
        options:        Command line options
 
627
        settings:       Server settings
430
628
        clients:        Set() of Client objects
 
629
        enabled:        Boolean; whether this server is activated yet
431
630
    """
432
631
    address_family = socket.AF_INET6
433
632
    def __init__(self, *args, **kwargs):
434
 
        if "options" in kwargs:
435
 
            self.options = kwargs["options"]
436
 
            del kwargs["options"]
 
633
        if "settings" in kwargs:
 
634
            self.settings = kwargs["settings"]
 
635
            del kwargs["settings"]
437
636
        if "clients" in kwargs:
438
637
            self.clients = kwargs["clients"]
439
638
            del kwargs["clients"]
440
 
        return super(type(self), self).__init__(*args, **kwargs)
 
639
        self.enabled = False
 
640
        super(IPv6_TCPServer, self).__init__(*args, **kwargs)
441
641
    def server_bind(self):
442
642
        """This overrides the normal server_bind() function
443
643
        to bind to an interface if one was specified, and also NOT to
444
644
        bind to an address or port if they were not specified."""
445
 
        if self.options.interface:
446
 
            if not hasattr(socket, "SO_BINDTODEVICE"):
447
 
                # From /usr/include/asm-i486/socket.h
448
 
                socket.SO_BINDTODEVICE = 25
 
645
        if self.settings["interface"]:
 
646
            # 25 is from /usr/include/asm-i486/socket.h
 
647
            SO_BINDTODEVICE = getattr(socket, "SO_BINDTODEVICE", 25)
449
648
            try:
450
649
                self.socket.setsockopt(socket.SOL_SOCKET,
451
 
                                       socket.SO_BINDTODEVICE,
452
 
                                       self.options.interface)
 
650
                                       SO_BINDTODEVICE,
 
651
                                       self.settings["interface"])
453
652
            except socket.error, error:
454
653
                if error[0] == errno.EPERM:
455
 
                    logger.warning(u"No permission to"
456
 
                                   u" bind to interface %s",
457
 
                                   self.options.interface)
 
654
                    logger.error(u"No permission to"
 
655
                                 u" bind to interface %s",
 
656
                                 self.settings["interface"])
458
657
                else:
459
658
                    raise error
460
659
        # Only bind(2) the socket if we really need to.
463
662
                in6addr_any = "::"
464
663
                self.server_address = (in6addr_any,
465
664
                                       self.server_address[1])
466
 
            elif self.server_address[1] is None:
 
665
            elif not self.server_address[1]:
467
666
                self.server_address = (self.server_address[0],
468
667
                                       0)
469
 
            return super(type(self), self).server_bind()
 
668
#                 if self.settings["interface"]:
 
669
#                     self.server_address = (self.server_address[0],
 
670
#                                            0, # port
 
671
#                                            0, # flowinfo
 
672
#                                            if_nametoindex
 
673
#                                            (self.settings
 
674
#                                             ["interface"]))
 
675
            return super(IPv6_TCPServer, self).server_bind()
 
676
    def server_activate(self):
 
677
        if self.enabled:
 
678
            return super(IPv6_TCPServer, self).server_activate()
 
679
    def enable(self):
 
680
        self.enabled = True
470
681
 
471
682
 
472
683
def string_to_delta(interval):
482
693
    datetime.timedelta(1)
483
694
    >>> string_to_delta(u'1w')
484
695
    datetime.timedelta(7)
 
696
    >>> string_to_delta('5m 30s')
 
697
    datetime.timedelta(0, 330)
485
698
    """
486
 
    try:
487
 
        suffix=unicode(interval[-1])
488
 
        value=int(interval[:-1])
489
 
        if suffix == u"d":
490
 
            delta = datetime.timedelta(value)
491
 
        elif suffix == u"s":
492
 
            delta = datetime.timedelta(0, value)
493
 
        elif suffix == u"m":
494
 
            delta = datetime.timedelta(0, 0, 0, 0, value)
495
 
        elif suffix == u"h":
496
 
            delta = datetime.timedelta(0, 0, 0, 0, 0, value)
497
 
        elif suffix == u"w":
498
 
            delta = datetime.timedelta(0, 0, 0, 0, 0, 0, value)
499
 
        else:
 
699
    timevalue = datetime.timedelta(0)
 
700
    for s in interval.split():
 
701
        try:
 
702
            suffix = unicode(s[-1])
 
703
            value = int(s[:-1])
 
704
            if suffix == u"d":
 
705
                delta = datetime.timedelta(value)
 
706
            elif suffix == u"s":
 
707
                delta = datetime.timedelta(0, value)
 
708
            elif suffix == u"m":
 
709
                delta = datetime.timedelta(0, 0, 0, 0, value)
 
710
            elif suffix == u"h":
 
711
                delta = datetime.timedelta(0, 0, 0, 0, 0, value)
 
712
            elif suffix == u"w":
 
713
                delta = datetime.timedelta(0, 0, 0, 0, 0, 0, value)
 
714
            else:
 
715
                raise ValueError
 
716
        except (ValueError, IndexError):
500
717
            raise ValueError
501
 
    except (ValueError, IndexError):
502
 
        raise ValueError
503
 
    return delta
504
 
 
505
 
 
506
 
def add_service():
507
 
    """Derived from the Avahi example code"""
508
 
    global group, serviceName, serviceType, servicePort, serviceTXT, \
509
 
           domain, host
510
 
    if group is None:
511
 
        group = dbus.Interface(
512
 
                bus.get_object( avahi.DBUS_NAME,
513
 
                                server.EntryGroupNew()),
514
 
                avahi.DBUS_INTERFACE_ENTRY_GROUP)
515
 
        group.connect_to_signal('StateChanged',
516
 
                                entry_group_state_changed)
517
 
    logger.debug(u"Adding service '%s' of type '%s' ...",
518
 
                 serviceName, serviceType)
519
 
    
520
 
    group.AddService(
521
 
            serviceInterface,           # interface
522
 
            avahi.PROTO_INET6,          # protocol
523
 
            dbus.UInt32(0),             # flags
524
 
            serviceName, serviceType,
525
 
            domain, host,
526
 
            dbus.UInt16(servicePort),
527
 
            avahi.string_array_to_txt_array(serviceTXT))
528
 
    group.Commit()
529
 
 
530
 
 
531
 
def remove_service():
532
 
    """From the Avahi example code"""
533
 
    global group
534
 
    
535
 
    if not group is None:
536
 
        group.Reset()
 
718
        timevalue += delta
 
719
    return timevalue
537
720
 
538
721
 
539
722
def server_state_changed(state):
540
723
    """Derived from the Avahi example code"""
541
724
    if state == avahi.SERVER_COLLISION:
542
 
        logger.warning(u"Server name collision")
543
 
        remove_service()
 
725
        logger.error(u"Zeroconf server name collision")
 
726
        service.remove()
544
727
    elif state == avahi.SERVER_RUNNING:
545
 
        add_service()
 
728
        service.add()
546
729
 
547
730
 
548
731
def entry_group_state_changed(state, error):
549
732
    """Derived from the Avahi example code"""
550
 
    global serviceName, server, rename_count
551
 
    
552
 
    logger.debug(u"state change: %i", state)
 
733
    logger.debug(u"Avahi state change: %i", state)
553
734
    
554
735
    if state == avahi.ENTRY_GROUP_ESTABLISHED:
555
 
        logger.debug(u"Service established.")
 
736
        logger.debug(u"Zeroconf service established.")
556
737
    elif state == avahi.ENTRY_GROUP_COLLISION:
557
 
        
558
 
        rename_count = rename_count - 1
559
 
        if rename_count > 0:
560
 
            name = server.GetAlternativeServiceName(name)
561
 
            logger.warning(u"Service name collision, "
562
 
                           u"changing name to '%s' ...", name)
563
 
            remove_service()
564
 
            add_service()
565
 
            
566
 
        else:
567
 
            logger.error(u"No suitable service name found after %i"
568
 
                         u" retries, exiting.", n_rename)
569
 
            killme(1)
 
738
        logger.warning(u"Zeroconf service name collision.")
 
739
        service.rename()
570
740
    elif state == avahi.ENTRY_GROUP_FAILURE:
571
 
        logger.error(u"Error in group state changed %s",
572
 
                     unicode(error))
573
 
        killme(1)
574
 
 
 
741
        logger.critical(u"Avahi: Error in group state changed %s",
 
742
                        unicode(error))
 
743
        raise AvahiGroupError("State changed: %s", str(error))
575
744
 
576
745
def if_nametoindex(interface):
577
 
    """Call the C function if_nametoindex()"""
 
746
    """Call the C function if_nametoindex(), or equivalent"""
 
747
    global if_nametoindex
578
748
    try:
579
 
        libc = ctypes.cdll.LoadLibrary("libc.so.6")
580
 
        return libc.if_nametoindex(interface)
 
749
        if_nametoindex = ctypes.cdll.LoadLibrary\
 
750
            (ctypes.util.find_library("c")).if_nametoindex
581
751
    except (OSError, AttributeError):
582
752
        if "struct" not in sys.modules:
583
753
            import struct
584
754
        if "fcntl" not in sys.modules:
585
755
            import fcntl
586
 
        SIOCGIFINDEX = 0x8933      # From /usr/include/linux/sockios.h
587
 
        s = socket.socket()
588
 
        ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
589
 
                            struct.pack("16s16x", interface))
590
 
        s.close()
591
 
        interface_index = struct.unpack("I", ifreq[16:20])[0]
592
 
        return interface_index
593
 
 
594
 
 
595
 
def daemon(nochdir, noclose):
 
756
        def if_nametoindex(interface):
 
757
            "Get an interface index the hard way, i.e. using fcntl()"
 
758
            SIOCGIFINDEX = 0x8933  # From /usr/include/linux/sockios.h
 
759
            with closing(socket.socket()) as s:
 
760
                ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
 
761
                                    struct.pack("16s16x", interface))
 
762
            interface_index = struct.unpack("I", ifreq[16:20])[0]
 
763
            return interface_index
 
764
    return if_nametoindex(interface)
 
765
 
 
766
 
 
767
def daemon(nochdir = False, noclose = False):
596
768
    """See daemon(3).  Standard BSD Unix function.
597
769
    This should really exist as os.daemon, but it doesn't (yet)."""
598
770
    if os.fork():
600
772
    os.setsid()
601
773
    if not nochdir:
602
774
        os.chdir("/")
 
775
    if os.fork():
 
776
        sys.exit()
603
777
    if not noclose:
604
778
        # Close all standard open file descriptors
605
 
        null = os.open("/dev/null", os.O_NOCTTY | os.O_RDWR)
 
779
        null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
606
780
        if not stat.S_ISCHR(os.fstat(null).st_mode):
607
781
            raise OSError(errno.ENODEV,
608
782
                          "/dev/null not a character device")
613
787
            os.close(null)
614
788
 
615
789
 
616
 
def killme(status = 0):
617
 
    logger.debug("Stopping server with exit status %d", status)
618
 
    exitstatus = status
619
 
    if main_loop_started:
620
 
        main_loop.quit()
621
 
    else:
622
 
        sys.exit(status)
623
 
 
624
 
 
625
790
def main():
626
 
    global exitstatus
627
 
    exitstatus = 0
628
 
    global main_loop_started
629
 
    main_loop_started = False
630
 
    
631
 
    parser = OptionParser()
 
791
    parser = OptionParser(version = "%%prog %s" % version)
632
792
    parser.add_option("-i", "--interface", type="string",
633
 
                      default=None, metavar="IF",
634
 
                      help="Bind to interface IF")
635
 
    parser.add_option("-a", "--address", type="string", default=None,
 
793
                      metavar="IF", help="Bind to interface IF")
 
794
    parser.add_option("-a", "--address", type="string",
636
795
                      help="Address to listen for requests on")
637
 
    parser.add_option("-p", "--port", type="int", default=None,
 
796
    parser.add_option("-p", "--port", type="int",
638
797
                      help="Port number to receive requests on")
639
 
    parser.add_option("--timeout", type="string", # Parsed later
640
 
                      default="1h",
641
 
                      help="Amount of downtime allowed for clients")
642
 
    parser.add_option("--interval", type="string", # Parsed later
643
 
                      default="5m",
644
 
                      help="How often to check that a client is up")
645
798
    parser.add_option("--check", action="store_true", default=False,
646
799
                      help="Run self-test")
647
 
    parser.add_option("--debug", action="store_true", default=False,
648
 
                      help="Debug mode")
649
 
    (options, args) = parser.parse_args()
 
800
    parser.add_option("--debug", action="store_true",
 
801
                      help="Debug mode; run in foreground and log to"
 
802
                      " terminal")
 
803
    parser.add_option("--priority", type="string", help="GnuTLS"
 
804
                      " priority string (see GnuTLS documentation)")
 
805
    parser.add_option("--servicename", type="string", metavar="NAME",
 
806
                      help="Zeroconf service name")
 
807
    parser.add_option("--configdir", type="string",
 
808
                      default="/etc/mandos", metavar="DIR",
 
809
                      help="Directory to search for configuration"
 
810
                      " files")
 
811
    options = parser.parse_args()[0]
650
812
    
651
813
    if options.check:
652
814
        import doctest
653
815
        doctest.testmod()
654
816
        sys.exit()
655
817
    
656
 
    # Parse the time arguments
657
 
    try:
658
 
        options.timeout = string_to_delta(options.timeout)
659
 
    except ValueError:
660
 
        parser.error("option --timeout: Unparseable time")
661
 
    try:
662
 
        options.interval = string_to_delta(options.interval)
663
 
    except ValueError:
664
 
        parser.error("option --interval: Unparseable time")
665
 
    
666
 
    # Parse config file
667
 
    defaults = { "checker": "fping -q -- %%(fqdn)s" }
668
 
    client_config = ConfigParser.SafeConfigParser(defaults)
669
 
    #client_config.readfp(open("global.conf"), "global.conf")
670
 
    client_config.read("mandos-clients.conf")
 
818
    # Default values for config file for server-global settings
 
819
    server_defaults = { "interface": "",
 
820
                        "address": "",
 
821
                        "port": "",
 
822
                        "debug": "False",
 
823
                        "priority":
 
824
                        "SECURE256:!CTYPE-X.509:+CTYPE-OPENPGP",
 
825
                        "servicename": "Mandos",
 
826
                        }
 
827
    
 
828
    # Parse config file for server-global settings
 
829
    server_config = ConfigParser.SafeConfigParser(server_defaults)
 
830
    del server_defaults
 
831
    server_config.read(os.path.join(options.configdir, "mandos.conf"))
 
832
    # Convert the SafeConfigParser object to a dict
 
833
    server_settings = server_config.defaults()
 
834
    # Use getboolean on the boolean config option
 
835
    server_settings["debug"] = server_config.getboolean\
 
836
                               ("DEFAULT", "debug")
 
837
    del server_config
 
838
    
 
839
    # Override the settings from the config file with command line
 
840
    # options, if set.
 
841
    for option in ("interface", "address", "port", "debug",
 
842
                   "priority", "servicename", "configdir"):
 
843
        value = getattr(options, option)
 
844
        if value is not None:
 
845
            server_settings[option] = value
 
846
    del options
 
847
    # Now we have our good server settings in "server_settings"
 
848
    
 
849
    debug = server_settings["debug"]
 
850
    
 
851
    if not debug:
 
852
        syslogger.setLevel(logging.WARNING)
 
853
        console.setLevel(logging.WARNING)
 
854
    
 
855
    if server_settings["servicename"] != "Mandos":
 
856
        syslogger.setFormatter(logging.Formatter\
 
857
                               ('Mandos (%s): %%(levelname)s:'
 
858
                                ' %%(message)s'
 
859
                                % server_settings["servicename"]))
 
860
    
 
861
    # Parse config file with clients
 
862
    client_defaults = { "timeout": "1h",
 
863
                        "interval": "5m",
 
864
                        "checker": "fping -q -- %(host)s",
 
865
                        "host": "",
 
866
                        }
 
867
    client_config = ConfigParser.SafeConfigParser(client_defaults)
 
868
    client_config.read(os.path.join(server_settings["configdir"],
 
869
                                    "clients.conf"))
 
870
    
 
871
    clients = Set()
 
872
    tcp_server = IPv6_TCPServer((server_settings["address"],
 
873
                                 server_settings["port"]),
 
874
                                TCP_handler,
 
875
                                settings=server_settings,
 
876
                                clients=clients)
 
877
    pidfilename = "/var/run/mandos.pid"
 
878
    try:
 
879
        pidfile = open(pidfilename, "w")
 
880
    except IOError, error:
 
881
        logger.error("Could not open file %r", pidfilename)
 
882
    
 
883
    uid = 65534
 
884
    gid = 65534
 
885
    try:
 
886
        uid = pwd.getpwnam("mandos").pw_uid
 
887
    except KeyError:
 
888
        try:
 
889
            uid = pwd.getpwnam("nobody").pw_uid
 
890
        except KeyError:
 
891
            pass
 
892
    try:
 
893
        gid = pwd.getpwnam("mandos").pw_gid
 
894
    except KeyError:
 
895
        try:
 
896
            gid = pwd.getpwnam("nogroup").pw_gid
 
897
        except KeyError:
 
898
            pass
 
899
    try:
 
900
        os.setuid(uid)
 
901
        os.setgid(gid)
 
902
    except OSError, error:
 
903
        if error[0] != errno.EPERM:
 
904
            raise error
 
905
    
 
906
    global service
 
907
    service = AvahiService(name = server_settings["servicename"],
 
908
                           servicetype = "_mandos._tcp", )
 
909
    if server_settings["interface"]:
 
910
        service.interface = if_nametoindex\
 
911
                            (server_settings["interface"])
671
912
    
672
913
    global main_loop
673
914
    global bus
676
917
    DBusGMainLoop(set_as_default=True )
677
918
    main_loop = gobject.MainLoop()
678
919
    bus = dbus.SystemBus()
679
 
    server = dbus.Interface(
680
 
            bus.get_object( avahi.DBUS_NAME, avahi.DBUS_PATH_SERVER ),
681
 
            avahi.DBUS_INTERFACE_SERVER )
 
920
    server = dbus.Interface(bus.get_object(avahi.DBUS_NAME,
 
921
                                           avahi.DBUS_PATH_SERVER),
 
922
                            avahi.DBUS_INTERFACE_SERVER)
682
923
    # End of Avahi example code
683
924
    
684
 
    debug = options.debug
685
 
    
686
 
    if debug:
687
 
        console = logging.StreamHandler()
688
 
        # console.setLevel(logging.DEBUG)
689
 
        console.setFormatter(logging.Formatter\
690
 
                             ('%(levelname)s: %(message)s'))
691
 
        logger.addHandler(console)
692
 
        del console
693
 
    
694
 
    clients = Set()
695
925
    def remove_from_clients(client):
696
926
        clients.remove(client)
697
927
        if not clients:
698
 
            logger.debug(u"No clients left, exiting")
699
 
            killme()
 
928
            logger.critical(u"No clients left, exiting")
 
929
            sys.exit()
700
930
    
701
 
    clients.update(Set(Client(name=section, options=options,
 
931
    clients.update(Set(Client(name = section,
702
932
                              stop_hook = remove_from_clients,
703
 
                              **(dict(client_config\
704
 
                                      .items(section))))
 
933
                              config
 
934
                              = dict(client_config.items(section)))
705
935
                       for section in client_config.sections()))
706
 
    
707
 
    if not debug:
708
 
        daemon(False, False)
 
936
    if not clients:
 
937
        logger.critical(u"No clients defined")
 
938
        sys.exit(1)
 
939
    
 
940
    if debug:
 
941
        # Redirect stdin so all checkers get /dev/null
 
942
        null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
 
943
        os.dup2(null, sys.stdin.fileno())
 
944
        if null > 2:
 
945
            os.close(null)
 
946
    else:
 
947
        # No console logging
 
948
        logger.removeHandler(console)
 
949
        # Close all input and output, do double fork, etc.
 
950
        daemon()
 
951
    
 
952
    try:
 
953
        pid = os.getpid()
 
954
        pidfile.write(str(pid) + "\n")
 
955
        pidfile.close()
 
956
        del pidfile
 
957
    except IOError:
 
958
        logger.error(u"Could not write to file %r with PID %d",
 
959
                     pidfilename, pid)
 
960
    except NameError:
 
961
        # "pidfile" was never created
 
962
        pass
 
963
    del pidfilename
709
964
    
710
965
    def cleanup():
711
966
        "Cleanup function; run on exit"
725
980
    
726
981
    if not debug:
727
982
        signal.signal(signal.SIGINT, signal.SIG_IGN)
728
 
    signal.signal(signal.SIGHUP, lambda signum, frame: killme())
729
 
    signal.signal(signal.SIGTERM, lambda signum, frame: killme())
 
983
    signal.signal(signal.SIGHUP, lambda signum, frame: sys.exit())
 
984
    signal.signal(signal.SIGTERM, lambda signum, frame: sys.exit())
730
985
    
731
986
    for client in clients:
732
987
        client.start()
733
988
    
734
 
    tcp_server = IPv6_TCPServer((options.address, options.port),
735
 
                                tcp_handler,
736
 
                                options=options,
737
 
                                clients=clients)
738
 
    # Find out what random port we got
739
 
    global servicePort
740
 
    servicePort = tcp_server.socket.getsockname()[1]
741
 
    logger.debug(u"Now listening on port %d", servicePort)
742
 
    
743
 
    if options.interface is not None:
744
 
        global serviceInterface
745
 
        serviceInterface = if_nametoindex(options.interface)
746
 
    
747
 
    # From the Avahi example code
748
 
    server.connect_to_signal("StateChanged", server_state_changed)
749
 
    try:
750
 
        server_state_changed(server.GetState())
751
 
    except dbus.exceptions.DBusException, error:
752
 
        logger.critical(u"DBusException: %s", error)
753
 
        killme(1)
754
 
    # End of Avahi example code
755
 
    
756
 
    gobject.io_add_watch(tcp_server.fileno(), gobject.IO_IN,
757
 
                         lambda *args, **kwargs:
758
 
                         tcp_server.handle_request(*args[2:],
759
 
                                                   **kwargs) or True)
760
 
    try:
761
 
        logger.debug("Starting main loop")
762
 
        main_loop_started = True
 
989
    tcp_server.enable()
 
990
    tcp_server.server_activate()
 
991
    
 
992
    # Find out what port we got
 
993
    service.port = tcp_server.socket.getsockname()[1]
 
994
    logger.info(u"Now listening on address %r, port %d, flowinfo %d,"
 
995
                u" scope_id %d" % tcp_server.socket.getsockname())
 
996
    
 
997
    #service.interface = tcp_server.socket.getsockname()[3]
 
998
    
 
999
    try:
 
1000
        # From the Avahi example code
 
1001
        server.connect_to_signal("StateChanged", server_state_changed)
 
1002
        try:
 
1003
            server_state_changed(server.GetState())
 
1004
        except dbus.exceptions.DBusException, error:
 
1005
            logger.critical(u"DBusException: %s", error)
 
1006
            sys.exit(1)
 
1007
        # End of Avahi example code
 
1008
        
 
1009
        gobject.io_add_watch(tcp_server.fileno(), gobject.IO_IN,
 
1010
                             lambda *args, **kwargs:
 
1011
                             tcp_server.handle_request\
 
1012
                             (*args[2:], **kwargs) or True)
 
1013
        
 
1014
        logger.debug(u"Starting main loop")
763
1015
        main_loop.run()
 
1016
    except AvahiError, error:
 
1017
        logger.critical(u"AvahiError: %s" + unicode(error))
 
1018
        sys.exit(1)
764
1019
    except KeyboardInterrupt:
765
1020
        if debug:
766
1021
            print
767
 
    
768
 
    sys.exit(exitstatus)
769
1022
 
770
1023
if __name__ == '__main__':
771
1024
    main()