2
# -*- mode: python; coding: utf-8 -*-
4
# Mandos server - give out binary blobs to connecting clients.
6
# This program is partly derived from an example program for an Avahi
7
# service publisher, downloaded from
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
13
# Everything else is Copyright © 2007-2008 Teddy Hogeborn and Björn
16
# This program is free software: you can redistribute it and/or modify
17
# it under the terms of the GNU General Public License as published by
18
# the Free Software Foundation, either version 3 of the License, or
19
# (at your option) any later version.
21
# This program is distributed in the hope that it will be useful,
22
# but WITHOUT ANY WARRANTY; without even the implied warranty of
23
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24
# GNU General Public License for more details.
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/>.
29
# Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
30
# <https://www.fukt.bsnet.se/~teddy/>.
33
3
from __future__ import division
62
28
from dbus.mainloop.glib import DBusGMainLoop
65
# Brief description of the operation of this program:
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.
32
import logging.handlers
34
# logghandler.setFormatter(logging.Formatter('%(levelname)s %(message)s')
77
36
logger = logging.Logger('mandos')
78
syslogger = logging.handlers.SysLogHandler\
79
(facility = logging.handlers.SysLogHandler.LOG_DAEMON)
80
syslogger.setFormatter(logging.Formatter\
81
('%(levelname)s: %(message)s'))
82
logger.addHandler(syslogger)
37
logger.addHandler(logging.handlers.SysLogHandler(facility = logging.handlers.SysLogHandler.LOG_DAEMON))
85
39
# This variable is used to optionally bind to a specified interface.
86
40
# It is a global variable to fit in with the other variables from the
41
# Avahi server example code.
88
42
serviceInterface = avahi.IF_UNSPEC
89
# From the Avahi example code:
43
# From the Avahi server example code:
44
serviceName = "Mandos"
91
45
serviceType = "_mandos._tcp" # http://www.dns-sd.org/ServiceTypes.html
92
46
servicePort = None # Not known at startup
93
47
serviceTXT = [] # TXT record for the service
152
106
interval = property(lambda self: self._interval,
154
108
del _set_interval
155
def __init__(self, name=None, stop_hook=None, fingerprint=None,
156
secret=None, secfile=None, fqdn=None, timeout=None,
157
interval=-1, checker=None):
158
"""Note: the 'checker' argument sets the 'checker_command'
159
attribute and not the 'checker' attribute.."""
109
def __init__(self, name=None, options=None, stop_hook=None,
110
fingerprint=None, secret=None, secfile=None, fqdn=None,
111
timeout=None, interval=-1, checker=None):
161
logger.debug(u"Creating client %r", self.name)
162
113
# Uppercase and remove spaces from fingerprint
163
114
# for later comparison purposes with return value of
164
115
# the fingerprint() function
165
116
self.fingerprint = fingerprint.upper().replace(u" ", u"")
166
logger.debug(u" Fingerprint: %s", self.fingerprint)
168
118
self.secret = secret.decode(u"base64")
201
157
"""Stop this client.
202
158
The possibility that this client might be restarted is left
203
159
open, but not currently used."""
204
# If this client doesn't have a secret, it is already stopped.
206
logger.debug(u"Stopping client %s", self.name)
210
if hasattr(self, "stop_initiator_tag") \
211
and self.stop_initiator_tag:
160
logger.debug(u"Stopping client %s", self.name)
162
if self.stop_initiator_tag:
212
163
gobject.source_remove(self.stop_initiator_tag)
213
164
self.stop_initiator_tag = None
214
if hasattr(self, "checker_initiator_tag") \
215
and self.checker_initiator_tag:
165
if self.checker_initiator_tag:
216
166
gobject.source_remove(self.checker_initiator_tag)
217
167
self.checker_initiator_tag = None
218
168
self.stop_checker()
221
171
# Do not run this again if called by a gobject.timeout_add
223
173
def __del__(self):
224
self.stop_hook = None
174
# Some code duplication here and in stop()
175
if hasattr(self, "stop_initiator_tag") \
176
and self.stop_initiator_tag:
177
gobject.source_remove(self.stop_initiator_tag)
178
self.stop_initiator_tag = None
179
if hasattr(self, "checker_initiator_tag") \
180
and self.checker_initiator_tag:
181
gobject.source_remove(self.checker_initiator_tag)
182
self.checker_initiator_tag = None
226
184
def checker_callback(self, pid, condition):
227
185
"""The checker has completed, so take appropriate actions."""
228
186
now = datetime.datetime.now()
229
self.checker_callback_tag = None
231
187
if os.WIFEXITED(condition) \
232
188
and (os.WEXITSTATUS(condition) == 0):
233
189
logger.debug(u"Checker for %(name)s succeeded",
237
193
self.stop_initiator_tag = gobject.timeout_add\
238
194
(self._timeout_milliseconds,
240
elif not os.WIFEXITED(condition):
196
if not os.WIFEXITED(condition):
241
197
logger.warning(u"Checker for %(name)s crashed?",
244
200
logger.debug(u"Checker for %(name)s failed",
203
self.checker_callback_tag = None
246
204
def start_checker(self):
247
205
"""Start a new checker subprocess if one is not running.
248
206
If a checker already exists, leave it running and do
250
# The reason for not killing a running checker is that if we
251
# did that, then if a checker (for some reason) started
252
# running slowly and taking more than 'interval' time, the
253
# client would inevitably timeout, since no checker would get
254
# a chance to run to completion. If we instead leave running
255
# checkers alone, the checker would have to take more time
256
# than 'timeout' for the client to be declared invalid, which
257
# is as it should be.
258
208
if self.checker is None:
209
logger.debug(u"Starting checker for %s",
260
212
command = self.check_command % self.fqdn
261
213
except TypeError:
266
218
command = self.check_command % escaped_attrs
267
219
except TypeError, error:
268
logger.critical(u'Could not format string "%s":'
269
u' %s', self.check_command, error)
220
logger.critical(u'Could not format string "%s": %s',
221
self.check_command, error)
270
222
return True # Try again later
272
logger.debug(u"Starting checker %r for %s",
274
224
self.checker = subprocess.\
226
stdout=subprocess.PIPE,
276
227
close_fds=True, shell=True,
278
self.checker_callback_tag = gobject.child_watch_add\
280
self.checker_callback)
229
self.checker_callback_tag = gobject.\
230
child_watch_add(self.checker.pid,
281
233
except subprocess.OSError, error:
282
234
logger.error(u"Failed to start subprocess: %s",
286
238
def stop_checker(self):
287
239
"""Force the checker process, if any, to stop."""
288
if self.checker_callback_tag:
289
gobject.source_remove(self.checker_callback_tag)
290
self.checker_callback_tag = None
291
240
if not hasattr(self, "checker") or self.checker is None:
293
logger.debug("Stopping checker for %(name)s", vars(self))
295
os.kill(self.checker.pid, signal.SIGTERM)
297
#if self.checker.poll() is None:
298
# os.kill(self.checker.pid, signal.SIGKILL)
299
except OSError, error:
300
if error.errno != errno.ESRCH:
242
gobject.source_remove(self.checker_callback_tag)
243
self.checker_callback_tag = None
244
os.kill(self.checker.pid, signal.SIGTERM)
245
if self.checker.poll() is None:
246
os.kill(self.checker.pid, signal.SIGKILL)
302
247
self.checker = None
303
248
def still_valid(self, now=None):
304
249
"""Has the timeout not yet passed for this client?"""
373
316
#priority = ':'.join(("NONE", "+VERS-TLS1.1", "+AES-256-CBC",
374
317
# "+SHA1", "+COMP-NULL", "+CTYPE-OPENPGP",
377
if self.server.options.priority:
378
priority = self.server.options.priority
319
priority = "SECURE256"
379
321
gnutls.library.functions.gnutls_priority_set_direct\
380
322
(session._c_object, priority, None);
589
533
return interface_index
592
def daemon(nochdir, noclose):
593
"""See daemon(3). Standard BSD Unix function.
594
This should really exist as os.daemon, but it doesn't (yet)."""
601
# Close all standard open file descriptors
602
null = os.open("/dev/null", os.O_NOCTTY | os.O_RDWR)
603
if not stat.S_ISCHR(os.fstat(null).st_mode):
604
raise OSError(errno.ENODEV,
605
"/dev/null not a character device")
606
os.dup2(null, sys.stdin.fileno())
607
os.dup2(null, sys.stdout.fileno())
608
os.dup2(null, sys.stderr.fileno())
613
def killme(status = 0):
614
logger.debug("Stopping server with exit status %d", status)
616
if main_loop_started:
625
global main_loop_started
626
main_loop_started = False
536
if __name__ == '__main__':
628
537
parser = OptionParser()
629
538
parser.add_option("-i", "--interface", type="string",
630
539
default=None, metavar="IF",
631
540
help="Bind to interface IF")
632
parser.add_option("-a", "--address", type="string", default=None,
633
help="Address to listen for requests on")
541
parser.add_option("--cert", type="string", default="cert.pem",
543
help="Public key certificate PEM file to use")
544
parser.add_option("--key", type="string", default="key.pem",
546
help="Private key PEM file to use")
547
parser.add_option("--ca", type="string", default="ca.pem",
549
help="Certificate Authority certificate PEM file to use")
550
parser.add_option("--crl", type="string", default="crl.pem",
552
help="Certificate Revokation List PEM file to use")
634
553
parser.add_option("-p", "--port", type="int", default=None,
635
554
help="Port number to receive requests on")
555
parser.add_option("--timeout", type="string", # Parsed later
557
help="Amount of downtime allowed for clients")
558
parser.add_option("--interval", type="string", # Parsed later
560
help="How often to check that a client is up")
636
561
parser.add_option("--check", action="store_true", default=False,
637
562
help="Run self-test")
638
563
parser.add_option("--debug", action="store_true", default=False,
639
564
help="Debug mode")
640
parser.add_option("--priority", type="string",
642
help="GnuTLS priority string"
643
" (see GnuTLS documentation)")
644
parser.add_option("--servicename", type="string",
645
default="Mandos", help="Zeroconf service name")
646
565
(options, args) = parser.parse_args()
648
567
if options.check:
650
569
doctest.testmod()
572
# Parse the time arguments
574
options.timeout = string_to_delta(options.timeout)
576
parser.error("option --timeout: Unparseable time")
578
options.interval = string_to_delta(options.interval)
580
parser.error("option --interval: Unparseable time")
653
582
# Parse config file
654
defaults = { "timeout": "1h",
656
"checker": "fping -q -- %%(fqdn)s",
583
defaults = { "checker": "sleep 1; fping -q -- %%(fqdn)s" }
658
584
client_config = ConfigParser.SafeConfigParser(defaults)
659
#client_config.readfp(open("global.conf"), "global.conf")
585
#client_config.readfp(open("secrets.conf"), "secrets.conf")
660
586
client_config.read("mandos-clients.conf")
663
serviceName = options.servicename;
668
# From the Avahi example code
588
# From the Avahi server example code
669
589
DBusGMainLoop(set_as_default=True )
670
590
main_loop = gobject.MainLoop()
671
591
bus = dbus.SystemBus()
677
597
debug = options.debug
680
console = logging.StreamHandler()
681
# console.setLevel(logging.DEBUG)
682
console.setFormatter(logging.Formatter\
683
('%(levelname)s: %(message)s'))
684
logger.addHandler(console)
688
600
def remove_from_clients(client):
689
601
clients.remove(client)
691
603
logger.debug(u"No clients left, exiting")
694
clients.update(Set(Client(name=section,
606
clients.update(Set(Client(name=section, options=options,
695
607
stop_hook = remove_from_clients,
696
608
**(dict(client_config\
697
609
.items(section))))
698
610
for section in client_config.sections()))
704
"Cleanup function; run on exit"
706
# From the Avahi example code
707
if not group is None:
710
# End of Avahi example code
713
client = clients.pop()
714
client.stop_hook = None
717
atexit.register(cleanup)
720
signal.signal(signal.SIGINT, signal.SIG_IGN)
721
signal.signal(signal.SIGHUP, lambda signum, frame: killme())
722
signal.signal(signal.SIGTERM, lambda signum, frame: killme())
724
611
for client in clients:
727
tcp_server = IPv6_TCPServer((options.address, options.port),
614
tcp_server = IPv6_TCPServer((None, options.port),
731
618
# Find out what random port we got
733
619
servicePort = tcp_server.socket.getsockname()[1]
734
620
logger.debug(u"Now listening on port %d", servicePort)
736
622
if options.interface is not None:
737
global serviceInterface
738
623
serviceInterface = if_nametoindex(options.interface)
740
# From the Avahi example code
625
# From the Avahi server example code
741
626
server.connect_to_signal("StateChanged", server_state_changed)
743
server_state_changed(server.GetState())
744
except dbus.exceptions.DBusException, error:
745
logger.critical(u"DBusException: %s", error)
627
server_state_changed(server.GetState())
747
628
# End of Avahi example code
749
630
gobject.io_add_watch(tcp_server.fileno(), gobject.IO_IN,