3
 
from __future__ import division
 
8
 
from optparse import OptionParser
 
12
 
import gnutls.connection
 
14
 
import gnutls.library.functions
 
15
 
import gnutls.library.constants
 
16
 
import gnutls.library.types
 
28
 
from dbus.mainloop.glib import DBusGMainLoop
 
31
 
# This variable is used to optionally bind to a specified interface.
 
32
 
# It is a global variable to fit in with the other variables from the
 
33
 
# Avahi server example code.
 
34
 
serviceInterface = avahi.IF_UNSPEC
 
35
 
# From the Avahi server example code:
 
36
 
serviceName = "Mandos"
 
37
 
serviceType = "_mandos._tcp" # http://www.dns-sd.org/ServiceTypes.html
 
38
 
servicePort = None                      # Not known at startup
 
39
 
serviceTXT = []                         # TXT record for the service
 
40
 
domain = ""                  # Domain to publish on, default to .local
 
41
 
host = ""          # Host to publish records for, default to localhost
 
42
 
group = None #our entry group
 
43
 
rename_count = 12       # Counter so we only rename after collisions a
 
44
 
                        # sensible number of times
 
45
 
# End of Avahi example code
 
49
 
    """A representation of a client host served by this server.
 
51
 
    name:      string; from the config file, used in log messages
 
52
 
    fingerprint: string (40 or 32 hexadecimal digits); used to
 
53
 
                 uniquely identify the client
 
54
 
    secret:    bytestring; sent verbatim (over TLS) to client
 
55
 
    fqdn:      string (FQDN); available for use by the checker command
 
56
 
    created:   datetime.datetime()
 
57
 
    last_seen: datetime.datetime() or None if not yet seen
 
58
 
    timeout:   datetime.timedelta(); How long from last_seen until
 
59
 
                                     this client is invalid
 
60
 
    interval:  datetime.timedelta(); How often to start a new checker
 
61
 
    stop_hook: If set, called by stop() as stop_hook(self)
 
62
 
    checker:   subprocess.Popen(); a running checker process used
 
63
 
                                   to see if the client lives.
 
64
 
                                   Is None if no process is running.
 
65
 
    checker_initiator_tag: a gobject event source tag, or None
 
66
 
    stop_initiator_tag:    - '' -
 
67
 
    checker_callback_tag:  - '' -
 
68
 
    checker_command: string; External command which is run to check if
 
69
 
                     client lives.  %()s expansions are done at
 
70
 
                     runtime with vars(self) as dict, so that for
 
71
 
                     instance %(name)s can be used in the command.
 
73
 
    _timeout: Real variable for 'timeout'
 
74
 
    _interval: Real variable for 'interval'
 
75
 
    _timeout_milliseconds: Used by gobject.timeout_add()
 
76
 
    _interval_milliseconds: - '' -
 
78
 
    def _set_timeout(self, timeout):
 
79
 
        "Setter function for 'timeout' attribute"
 
80
 
        self._timeout = timeout
 
81
 
        self._timeout_milliseconds = ((self.timeout.days
 
82
 
                                       * 24 * 60 * 60 * 1000)
 
83
 
                                      + (self.timeout.seconds * 1000)
 
84
 
                                      + (self.timeout.microseconds
 
86
 
    timeout = property(lambda self: self._timeout,
 
89
 
    def _set_interval(self, interval):
 
90
 
        "Setter function for 'interval' attribute"
 
91
 
        self._interval = interval
 
92
 
        self._interval_milliseconds = ((self.interval.days
 
93
 
                                        * 24 * 60 * 60 * 1000)
 
94
 
                                       + (self.interval.seconds
 
96
 
                                       + (self.interval.microseconds
 
98
 
    interval = property(lambda self: self._interval,
 
101
 
    def __init__(self, name=None, options=None, stop_hook=None,
 
102
 
                 fingerprint=None, secret=None, secfile=None, fqdn=None,
 
103
 
                 timeout=None, interval=-1, checker=None):
 
105
 
        # Uppercase and remove spaces from fingerprint
 
106
 
        # for later comparison purposes with return value of
 
107
 
        # the fingerprint() function
 
108
 
        self.fingerprint = fingerprint.upper().replace(u" ", u"")
 
110
 
            self.secret = secret.decode(u"base64")
 
113
 
            self.secret = sf.read()
 
116
 
            raise RuntimeError(u"No secret or secfile for client %s"
 
118
 
        self.fqdn = fqdn                # string
 
119
 
        self.created = datetime.datetime.now()
 
120
 
        self.last_seen = None
 
122
 
            timeout = options.timeout
 
123
 
        self.timeout = timeout
 
125
 
            interval = options.interval
 
127
 
            interval = string_to_delta(interval)
 
128
 
        self.interval = interval
 
129
 
        self.stop_hook = stop_hook
 
131
 
        self.checker_initiator_tag = None
 
132
 
        self.stop_initiator_tag = None
 
133
 
        self.checker_callback_tag = None
 
134
 
        self.check_command = checker
 
136
 
        """Start this clients checker and timeout hooks"""
 
137
 
        # Schedule a new checker to be started an 'interval' from now,
 
138
 
        # and every interval from then on.
 
139
 
        self.checker_initiator_tag = gobject.timeout_add\
 
140
 
                                     (self._interval_milliseconds,
 
142
 
        # Also start a new checker *right now*.
 
144
 
        # Schedule a stop() when 'timeout' has passed
 
145
 
        self.stop_initiator_tag = gobject.timeout_add\
 
146
 
                                  (self._timeout_milliseconds,
 
150
 
        The possibility that this client might be restarted is left
 
151
 
        open, but not currently used."""
 
153
 
            sys.stderr.write(u"Stopping client %s\n" % self.name)
 
155
 
        if self.stop_initiator_tag:
 
156
 
            gobject.source_remove(self.stop_initiator_tag)
 
157
 
            self.stop_initiator_tag = None
 
158
 
        if self.checker_initiator_tag:
 
159
 
            gobject.source_remove(self.checker_initiator_tag)
 
160
 
            self.checker_initiator_tag = None
 
164
 
        # Do not run this again if called by a gobject.timeout_add
 
167
 
        # Some code duplication here and in stop()
 
168
 
        if hasattr(self, "stop_initiator_tag") \
 
169
 
               and self.stop_initiator_tag:
 
170
 
            gobject.source_remove(self.stop_initiator_tag)
 
171
 
            self.stop_initiator_tag = None
 
172
 
        if hasattr(self, "checker_initiator_tag") \
 
173
 
               and self.checker_initiator_tag:
 
174
 
            gobject.source_remove(self.checker_initiator_tag)
 
175
 
            self.checker_initiator_tag = None
 
177
 
    def checker_callback(self, pid, condition):
 
178
 
        """The checker has completed, so take appropriate actions."""
 
179
 
        now = datetime.datetime.now()
 
180
 
        if os.WIFEXITED(condition) \
 
181
 
               and (os.WEXITSTATUS(condition) == 0):
 
183
 
                sys.stderr.write(u"Checker for %(name)s succeeded\n"
 
186
 
            gobject.source_remove(self.stop_initiator_tag)
 
187
 
            self.stop_initiator_tag = gobject.timeout_add\
 
188
 
                                      (self._timeout_milliseconds,
 
191
 
            if not os.WIFEXITED(condition):
 
192
 
                sys.stderr.write(u"Checker for %(name)s crashed?\n"
 
195
 
                sys.stderr.write(u"Checker for %(name)s failed\n"
 
198
 
        self.checker_callback_tag = None
 
199
 
    def start_checker(self):
 
200
 
        """Start a new checker subprocess if one is not running.
 
201
 
        If a checker already exists, leave it running and do
 
203
 
        if self.checker is None:
 
205
 
                sys.stderr.write(u"Starting checker for %s\n"
 
208
 
                command = self.check_command % self.fqdn
 
210
 
                escaped_attrs = dict((key, re.escape(str(val)))
 
212
 
                                     vars(self).iteritems())
 
213
 
                command = self.check_command % escaped_attrs
 
215
 
                self.checker = subprocess.\
 
217
 
                                     stdout=subprocess.PIPE,
 
218
 
                                     close_fds=True, shell=True,
 
220
 
                self.checker_callback_tag = gobject.\
 
221
 
                                            child_watch_add(self.checker.pid,
 
224
 
            except subprocess.OSError, error:
 
225
 
                sys.stderr.write(u"Failed to start subprocess: %s\n"
 
227
 
        # Re-run this periodically if run by gobject.timeout_add
 
229
 
    def stop_checker(self):
 
230
 
        """Force the checker process, if any, to stop."""
 
231
 
        if not hasattr(self, "checker") or self.checker is None:
 
233
 
        gobject.source_remove(self.checker_callback_tag)
 
234
 
        self.checker_callback_tag = None
 
235
 
        os.kill(self.checker.pid, signal.SIGTERM)
 
236
 
        if self.checker.poll() is None:
 
237
 
            os.kill(self.checker.pid, signal.SIGKILL)
 
239
 
    def still_valid(self, now=None):
 
240
 
        """Has the timeout not yet passed for this client?"""
 
242
 
            now = datetime.datetime.now()
 
243
 
        if self.last_seen is None:
 
244
 
            return now < (self.created + self.timeout)
 
246
 
            return now < (self.last_seen + self.timeout)
 
249
 
def peer_certificate(session):
 
250
 
    # If not an OpenPGP certificate...
 
251
 
    if gnutls.library.functions.gnutls_certificate_type_get\
 
252
 
            (session._c_object) \
 
253
 
           != gnutls.library.constants.GNUTLS_CRT_OPENPGP:
 
254
 
        # ...do the normal thing
 
255
 
        return session.peer_certificate
 
256
 
    list_size = ctypes.c_uint()
 
257
 
    cert_list = gnutls.library.functions.gnutls_certificate_get_peers\
 
258
 
        (session._c_object, ctypes.byref(list_size))
 
259
 
    if list_size.value == 0:
 
262
 
    return ctypes.string_at(cert.data, cert.size)
 
265
 
def fingerprint(openpgp):
 
266
 
    # New empty GnuTLS certificate
 
267
 
    crt = gnutls.library.types.gnutls_openpgp_crt_t()
 
268
 
    gnutls.library.functions.gnutls_openpgp_crt_init\
 
270
 
    # New GnuTLS "datum" with the OpenPGP public key
 
271
 
    datum = gnutls.library.types.gnutls_datum_t\
 
272
 
        (ctypes.cast(ctypes.c_char_p(openpgp),
 
273
 
                     ctypes.POINTER(ctypes.c_ubyte)),
 
274
 
         ctypes.c_uint(len(openpgp)))
 
275
 
    # Import the OpenPGP public key into the certificate
 
276
 
    ret = gnutls.library.functions.gnutls_openpgp_crt_import\
 
279
 
         gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
 
280
 
    # New buffer for the fingerprint
 
281
 
    buffer = ctypes.create_string_buffer(20)
 
282
 
    buffer_length = ctypes.c_size_t()
 
283
 
    # Get the fingerprint from the certificate into the buffer
 
284
 
    gnutls.library.functions.gnutls_openpgp_crt_get_fingerprint\
 
285
 
        (crt, ctypes.byref(buffer), ctypes.byref(buffer_length))
 
286
 
    # Deinit the certificate
 
287
 
    gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
 
288
 
    # Convert the buffer to a Python bytestring
 
289
 
    fpr = ctypes.string_at(buffer, buffer_length.value)
 
290
 
    # Convert the bytestring to hexadecimal notation
 
291
 
    hex_fpr = u''.join(u"%02X" % ord(char) for char in fpr)
 
295
 
class tcp_handler(SocketServer.BaseRequestHandler, object):
 
296
 
    """A TCP request handler class.
 
297
 
    Instantiated by IPv6_TCPServer for each request to handle it.
 
298
 
    Note: This will run in its own forked process."""
 
302
 
            sys.stderr.write(u"TCP request came\n")
 
303
 
            sys.stderr.write(u"Request: %s\n" % self.request)
 
304
 
            sys.stderr.write(u"Client Address: %s\n"
 
305
 
                             % unicode(self.client_address))
 
306
 
            sys.stderr.write(u"Server: %s\n" % self.server)
 
307
 
        session = gnutls.connection.ClientSession(self.request,
 
311
 
        #priority = ':'.join(("NONE", "+VERS-TLS1.1", "+AES-256-CBC",
 
312
 
        #                "+SHA1", "+COMP-NULL", "+CTYPE-OPENPGP",
 
314
 
        priority = "SECURE256"
 
316
 
        gnutls.library.functions.gnutls_priority_set_direct\
 
317
 
            (session._c_object, priority, None);
 
321
 
        except gnutls.errors.GNUTLSError, error:
 
323
 
                sys.stderr.write(u"Handshake failed: %s\n" % error)
 
324
 
            # Do not run session.bye() here: the session is not
 
325
 
            # established.  Just abandon the request.
 
328
 
            fpr = fingerprint(peer_certificate(session))
 
329
 
        except (TypeError, gnutls.errors.GNUTLSError), error:
 
331
 
                sys.stderr.write(u"Bad certificate: %s\n" % error)
 
335
 
            sys.stderr.write(u"Fingerprint: %s\n" % fpr)
 
338
 
            if c.fingerprint == fpr:
 
341
 
        # Have to check if client.still_valid(), since it is possible
 
342
 
        # that the client timed out while establishing the GnuTLS
 
344
 
        if (not client) or (not client.still_valid()):
 
347
 
                    sys.stderr.write(u"Client %(name)s is invalid\n"
 
350
 
                    sys.stderr.write(u"Client not found for "
 
351
 
                                     u"fingerprint: %s\n" % fpr)
 
355
 
        while sent_size < len(client.secret):
 
356
 
            sent = session.send(client.secret[sent_size:])
 
358
 
                sys.stderr.write(u"Sent: %d, remaining: %d\n"
 
359
 
                                 % (sent, len(client.secret)
 
360
 
                                    - (sent_size + sent)))
 
365
 
class IPv6_TCPServer(SocketServer.ForkingTCPServer, object):
 
366
 
    """IPv6 TCP server.  Accepts 'None' as address and/or port.
 
368
 
        options:        Command line options
 
369
 
        clients:        Set() of Client objects
 
371
 
    address_family = socket.AF_INET6
 
372
 
    def __init__(self, *args, **kwargs):
 
373
 
        if "options" in kwargs:
 
374
 
            self.options = kwargs["options"]
 
375
 
            del kwargs["options"]
 
376
 
        if "clients" in kwargs:
 
377
 
            self.clients = kwargs["clients"]
 
378
 
            del kwargs["clients"]
 
379
 
        return super(type(self), self).__init__(*args, **kwargs)
 
380
 
    def server_bind(self):
 
381
 
        """This overrides the normal server_bind() function
 
382
 
        to bind to an interface if one was specified, and also NOT to
 
383
 
        bind to an address or port if they were not specified."""
 
384
 
        if self.options.interface:
 
385
 
            if not hasattr(socket, "SO_BINDTODEVICE"):
 
386
 
                # From /usr/include/asm-i486/socket.h
 
387
 
                socket.SO_BINDTODEVICE = 25
 
389
 
                self.socket.setsockopt(socket.SOL_SOCKET,
 
390
 
                                       socket.SO_BINDTODEVICE,
 
391
 
                                       self.options.interface)
 
392
 
            except socket.error, error:
 
393
 
                if error[0] == errno.EPERM:
 
394
 
                    sys.stderr.write(u"Warning: No permission to" \
 
395
 
                                     u" bind to interface %s\n"
 
396
 
                                     % self.options.interface)
 
399
 
        # Only bind(2) the socket if we really need to.
 
400
 
        if self.server_address[0] or self.server_address[1]:
 
401
 
            if not self.server_address[0]:
 
403
 
                self.server_address = (in6addr_any,
 
404
 
                                       self.server_address[1])
 
405
 
            elif self.server_address[1] is None:
 
406
 
                self.server_address = (self.server_address[0],
 
408
 
            return super(type(self), self).server_bind()
 
411
 
def string_to_delta(interval):
 
412
 
    """Parse a string and return a datetime.timedelta
 
414
 
    >>> string_to_delta('7d')
 
415
 
    datetime.timedelta(7)
 
416
 
    >>> string_to_delta('60s')
 
417
 
    datetime.timedelta(0, 60)
 
418
 
    >>> string_to_delta('60m')
 
419
 
    datetime.timedelta(0, 3600)
 
420
 
    >>> string_to_delta('24h')
 
421
 
    datetime.timedelta(1)
 
422
 
    >>> string_to_delta(u'1w')
 
423
 
    datetime.timedelta(7)
 
426
 
        suffix=unicode(interval[-1])
 
427
 
        value=int(interval[:-1])
 
429
 
            delta = datetime.timedelta(value)
 
431
 
            delta = datetime.timedelta(0, value)
 
433
 
            delta = datetime.timedelta(0, 0, 0, 0, value)
 
435
 
            delta = datetime.timedelta(0, 0, 0, 0, 0, value)
 
437
 
            delta = datetime.timedelta(0, 0, 0, 0, 0, 0, value)
 
440
 
    except (ValueError, IndexError):
 
446
 
    """From the Avahi server example code"""
 
447
 
    global group, serviceName, serviceType, servicePort, serviceTXT, \
 
450
 
        group = dbus.Interface(
 
451
 
                bus.get_object( avahi.DBUS_NAME,
 
452
 
                                server.EntryGroupNew()),
 
453
 
                avahi.DBUS_INTERFACE_ENTRY_GROUP)
 
454
 
        group.connect_to_signal('StateChanged',
 
455
 
                                entry_group_state_changed)
 
457
 
        sys.stderr.write(u"Adding service '%s' of type '%s' ...\n"
 
458
 
                         % (serviceName, serviceType))
 
461
 
            serviceInterface,           # interface
 
462
 
            avahi.PROTO_INET6,          # protocol
 
463
 
            dbus.UInt32(0),             # flags
 
464
 
            serviceName, serviceType,
 
466
 
            dbus.UInt16(servicePort),
 
467
 
            avahi.string_array_to_txt_array(serviceTXT))
 
471
 
def remove_service():
 
472
 
    """From the Avahi server example code"""
 
475
 
    if not group is None:
 
479
 
def server_state_changed(state):
 
480
 
    """From the Avahi server example code"""
 
481
 
    if state == avahi.SERVER_COLLISION:
 
482
 
        sys.stderr.write(u"WARNING: Server name collision\n")
 
484
 
    elif state == avahi.SERVER_RUNNING:
 
488
 
def entry_group_state_changed(state, error):
 
489
 
    """From the Avahi server example code"""
 
490
 
    global serviceName, server, rename_count
 
493
 
        sys.stderr.write(u"state change: %i\n" % state)
 
495
 
    if state == avahi.ENTRY_GROUP_ESTABLISHED:
 
497
 
            sys.stderr.write(u"Service established.\n")
 
498
 
    elif state == avahi.ENTRY_GROUP_COLLISION:
 
500
 
        rename_count = rename_count - 1
 
502
 
            name = server.GetAlternativeServiceName(name)
 
503
 
            sys.stderr.write(u"WARNING: Service name collision, "
 
504
 
                             u"changing name to '%s' ...\n" % name)
 
509
 
            sys.stderr.write(u"ERROR: No suitable service name found "
 
510
 
                             u"after %i retries, exiting.\n"
 
513
 
    elif state == avahi.ENTRY_GROUP_FAILURE:
 
514
 
        sys.stderr.write(u"Error in group state changed %s\n"
 
520
 
def if_nametoindex(interface):
 
521
 
    """Call the C function if_nametoindex()"""
 
523
 
        libc = ctypes.cdll.LoadLibrary("libc.so.6")
 
524
 
        return libc.if_nametoindex(interface)
 
525
 
    except (OSError, AttributeError):
 
526
 
        if "struct" not in sys.modules:
 
528
 
        if "fcntl" not in sys.modules:
 
530
 
        SIOCGIFINDEX = 0x8933      # From /usr/include/linux/sockios.h
 
532
 
        ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
 
533
 
                            struct.pack("16s16x", interface))
 
535
 
        interface_index = struct.unpack("I", ifreq[16:20])[0]
 
536
 
        return interface_index
 
539
 
if __name__ == '__main__':
 
540
 
    parser = OptionParser()
 
541
 
    parser.add_option("-i", "--interface", type="string",
 
542
 
                      default=None, metavar="IF",
 
543
 
                      help="Bind to interface IF")
 
544
 
    parser.add_option("--cert", type="string", default="cert.pem",
 
546
 
                      help="Public key certificate PEM file to use")
 
547
 
    parser.add_option("--key", type="string", default="key.pem",
 
549
 
                      help="Private key PEM file to use")
 
550
 
    parser.add_option("--ca", type="string", default="ca.pem",
 
552
 
                      help="Certificate Authority certificate PEM file to use")
 
553
 
    parser.add_option("--crl", type="string", default="crl.pem",
 
555
 
                      help="Certificate Revokation List PEM file to use")
 
556
 
    parser.add_option("-p", "--port", type="int", default=None,
 
557
 
                      help="Port number to receive requests on")
 
558
 
    parser.add_option("--timeout", type="string", # Parsed later
 
560
 
                      help="Amount of downtime allowed for clients")
 
561
 
    parser.add_option("--interval", type="string", # Parsed later
 
563
 
                      help="How often to check that a client is up")
 
564
 
    parser.add_option("--check", action="store_true", default=False,
 
565
 
                      help="Run self-test")
 
566
 
    parser.add_option("--debug", action="store_true", default=False,
 
568
 
    (options, args) = parser.parse_args()
 
575
 
    # Parse the time arguments
 
577
 
        options.timeout = string_to_delta(options.timeout)
 
579
 
        parser.error("option --timeout: Unparseable time")
 
581
 
        options.interval = string_to_delta(options.interval)
 
583
 
        parser.error("option --interval: Unparseable time")
 
586
 
    defaults = { "checker": "sleep 1; fping -q -- %%(fqdn)s" }
 
587
 
    client_config = ConfigParser.SafeConfigParser(defaults)
 
588
 
    #client_config.readfp(open("secrets.conf"), "secrets.conf")
 
589
 
    client_config.read("mandos-clients.conf")
 
591
 
    # From the Avahi server example code
 
592
 
    DBusGMainLoop(set_as_default=True )
 
593
 
    main_loop = gobject.MainLoop()
 
594
 
    bus = dbus.SystemBus()
 
595
 
    server = dbus.Interface(
 
596
 
            bus.get_object( avahi.DBUS_NAME, avahi.DBUS_PATH_SERVER ),
 
597
 
            avahi.DBUS_INTERFACE_SERVER )
 
598
 
    # End of Avahi example code
 
600
 
    debug = options.debug
 
603
 
    def remove_from_clients(client):
 
604
 
        clients.remove(client)
 
607
 
                sys.stderr.write(u"No clients left, exiting\n")
 
610
 
    clients.update(Set(Client(name=section, options=options,
 
611
 
                              stop_hook = remove_from_clients,
 
612
 
                              **(dict(client_config\
 
614
 
                       for section in client_config.sections()))
 
615
 
    for client in clients:
 
618
 
    tcp_server = IPv6_TCPServer((None, options.port),
 
622
 
    # Find out what random port we got
 
623
 
    servicePort = tcp_server.socket.getsockname()[1]
 
625
 
        sys.stderr.write(u"Now listening on port %d\n" % servicePort)
 
627
 
    if options.interface is not None:
 
628
 
        serviceInterface = if_nametoindex(options.interface)
 
630
 
    # From the Avahi server example code
 
631
 
    server.connect_to_signal("StateChanged", server_state_changed)
 
632
 
    server_state_changed(server.GetState())
 
633
 
    # End of Avahi example code
 
635
 
    gobject.io_add_watch(tcp_server.fileno(), gobject.IO_IN,
 
636
 
                         lambda *args, **kwargs:
 
637
 
                         tcp_server.handle_request(*args[2:],
 
641
 
    except KeyboardInterrupt:
 
646
 
    # From the Avahi server example code
 
647
 
    if not group is None:
 
649
 
    # End of Avahi example code
 
651
 
    for client in clients:
 
652
 
        client.stop_hook = None