blob: 686b361d51075d72a026ca4e557a55c291297601 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cryptohome/service.h"
#include <base/at_exit.h>
#include <base/command_line.h>
#include <base/logging.h>
#include <chaps/pkcs11/cryptoki.h>
#include <brillo/syslog_logging.h>
#include <dbus/dbus.h>
#include <glib.h>
#include <openssl/evp.h>
#include "cryptohome/cryptohome_metrics.h"
#include "cryptohome/platform.h"
// TODO(wad) This is a placeholder DBus service which allows
// chrome-login (and anything else running as chronos)
// to request to mount, unmount, or check if a mapper
// device is mounted. This is very temporary but should
// serve as a baseline for moving all the shell scripts
// into C++.
// We will need a "CheckKey" interface as well to simplify
// offline authentication checks.
namespace switches {
// Keeps std* open for debugging
static const char *kNoCloseOnDaemonize = "noclose";
static const char *kNoLegacyMount = "nolegacymount";
} // namespace switches
int main(int argc, char **argv) {
::g_type_init();
base::AtExitManager exit_manager;
base::CommandLine::Init(argc, argv);
brillo::InitLog(brillo::kLogToSyslog | brillo::kLogToStderr);
// Allow the commands to be configurable.
base::CommandLine *cl = base::CommandLine::ForCurrentProcess();
int noclose = cl->HasSwitch(switches::kNoCloseOnDaemonize);
bool nolegacymount = cl->HasSwitch(switches::kNoLegacyMount);
PLOG_IF(FATAL, daemon(0, noclose) == -1) << "Failed to daemonize";
// Setup threading. This needs to be called before other calls into glib and
// before multiple threads are created that access dbus.
dbus_threads_init_default();
// Initialize OpenSSL.
OpenSSL_add_all_algorithms();
cryptohome::ScopedMetricsInitializer metrics_initializer;
cryptohome::Platform platform;
cryptohome::Service* service = cryptohome::Service::CreateDefault();
service->set_legacy_mount(!nolegacymount);
if (!service->Initialize()) {
LOG(FATAL) << "Service initialization failed";
return 1;
}
if (!service->Register(brillo::dbus::GetSystemBusConnection())) {
LOG(FATAL) << "DBUS service registration failed";
return 1;
}
if (!service->Run()) {
LOG(FATAL) << "Service run failed.";
return 1;
}
// If PKCS #11 was initialized, this will tear it down.
C_Finalize(NULL);
return 0;
}