blob: 90d88cb3582f2a7935fbe1d181943e3ff2ed1f76 [file] [log] [blame]
/* Copyright (c) 2012, Jacob Appelbaum.
* Copyright (c) 2012, The Tor Project, Inc.
* Copyright (c) 2012, Christian Grothoff. */
/* See LICENSE for licensing information */
/*
This file contains the license for tlsdate,
a free software project to set your system clock securely.
It also lists the licenses for other components used by tlsdate.
For more information about tlsdate, see https://github.com/ioerror/tlsdate
If you got this file as a part of a larger bundle,
there may be other license terms that you should be aware of.
===============================================================================
tlsdate is distributed under this license:
Copyright (c) 2011-2012, Jacob Appelbaum <jacob@appelbaum.net>
Copyright (c) 2011-2012, The Tor Project, Inc.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the names of the copyright owners nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
===============================================================================
If you got tlsdate as a static binary with OpenSSL included, then you should
know:
"This product includes software developed by the OpenSSL Project for use in
the OpenSSL Toolkit (http://www.openssl.org/)"
===============================================================================
*/
/**
* \file tlsdate.c
* \brief The main program to assist in setting the system clock.
**/
/*
* tlsdate is a tool for setting the system clock by hand or by communication
* with the network. It does not set the RTC. It is designed to be as secure as
* TLS (RFC 2246) but of course the security of TLS is often reduced to
* whichever CA racket you believe is trustworthy. By default, tlsdate trusts
* your local CA root store - so any of these companies could assist in a MITM
* attack against you and you'd be screwed.
* This tool is designed to be run by hand or as a system daemon. It must be
* run as root or otherwise have the proper caps; it will not be able to set
* the system time without running as root or another privileged user.
*/
#include "config.h"
#include "src/tlsdate.h"
/** Return the proper commandline switches when the user needs information. */
static void
usage (void)
{
fprintf (stderr, "tlsdate usage:\n"
" [-h|--help]\n"
" [-s|--skip-verification]\n"
" [-n|--dont-set-clock]\n"
" [-H|--host] [hostname|ip]\n"
" [-p|--port] [port number]\n"
" [-P|--protocol] [sslv23|sslv3|tlsv1]\n"
" [-C|--certcontainer] [dirname|filename]\n"
" [-v|--verbose]\n"
" [-V|--showtime] [human|raw]\n"
" [-t|--timewarp]\n"
" [-l|--leap]\n"
" [-x|--proxy] [url]\n");
}
int
main (int argc, char **argv)
{
int verbose;
int ca_racket;
int showtime;
int setclock;
const char *host;
const char *port;
const char *protocol;
const char *ca_cert_container;
int timewarp;
int leap;
const char *proxy;
host = DEFAULT_HOST;
port = DEFAULT_PORT;
protocol = DEFAULT_PROTOCOL;
ca_cert_container = DEFAULT_CERTFILE;
verbose = 0;
ca_racket = 1;
showtime = 0;
setclock = 1;
timewarp = 0;
leap = 0;
proxy = NULL;
while (1)
{
int option_index = 0;
int c;
static struct option long_options[] =
{
{"verbose", 0, 0, 'v'},
{"showtime", 2, 0, 'V'},
{"skip-verification", 0, 0, 's'},
{"help", 0, 0, 'h'},
{"host", 0, 0, 'H'},
{"port", 0, 0, 'p'},
{"protocol", 0, 0, 'P'},
{"dont-set-clock", 0, 0, 'n'},
{"certcontainer", 0, 0, 'C'},
{"timewarp", 0, 0, 't'},
{"leap", 0, 0, 'l'},
{"proxy", 0, 0, 'x'},
{0, 0, 0, 0}
};
c = getopt_long (argc, argv, "vV::shH:p:P:nC:tlx:",
long_options, &option_index);
if (c == -1)
break;
switch (c)
{
case 'v':
verbose = 1;
break;
case 'V':
showtime = (optarg && 0 == strcmp ("raw", optarg) ? 2:1);
break;
case 's':
ca_racket = 0;
break;
case 'h':
usage();
exit (1);
break;
case 'H':
host = optarg;
break;
case 'p':
port = optarg;
break;
case 'P':
protocol = optarg;
break;
case 'n':
setclock = 0;
break;
case 'C':
ca_cert_container = optarg;
break;
case 't':
timewarp = 1;
break;
case 'l':
leap = 1;
break;
case 'x':
proxy = optarg;
break;
case '?':
break;
default :
fprintf (stderr, "Unknown option!\n");
usage();
exit (1);
}
}
if (verbose)
{
fprintf (stderr,
"V: tlsdate version %s\n"
"V: We were called with the following arguments:\n"
"V: %s host = %s:%s\n",
PACKAGE_VERSION,
ca_racket ? "validate SSL certificates" : "disable SSL certificate check",
host, port);
if (0 == ca_racket)
fprintf (stderr, "WARNING: Skipping certificate verification!\n");
}
execlp (TLSDATE_HELPER,
"tlsdate",
host,
port,
protocol,
(ca_racket ? "racket" : "unchecked"),
(verbose ? "verbose" : "quiet"),
ca_cert_container,
(setclock ? "setclock" : "dont-set-clock"),
(showtime ? (showtime == 2 ? "showtime=raw" : "showtime") : "no-showtime"),
(timewarp ? "timewarp" : "no-fun"),
(leap ? "leapaway" : "holdfast"),
(proxy ? proxy : "none"),
NULL);
perror ("Failed to run tlsdate-helper");
return 1;
}