blob: 8e2adf673a8f3fd5b4730e02a56f48d66357d923 [file] [log] [blame]
// Copyright 2018 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.
#ifndef SMBPROVIDER_KERBEROS_ARTIFACT_SYNCHRONIZER_H_
#define SMBPROVIDER_KERBEROS_ARTIFACT_SYNCHRONIZER_H_
#include <memory>
#include <string>
#include <authpolicy/proto_bindings/active_directory_info.pb.h>
#include <base/callback.h>
#include "smbprovider/kerberos_artifact_client_interface.h"
namespace dbus {
class Signal;
} // namespace dbus
namespace smbprovider {
// KerberosArtifactSynchronizer manages a Kerberos user's kr5conf and krb5ccache
// files. It takes ownership of a KerberosArtifactClientInterface on
// construction. SetupKerberos fetches a users Kerberos files from AuthPolicy
// and writes a copy to the tempfs. The Kerberos files are kept
// up-to-date by connecting to AuthPolicy's D-Bus signal.
class KerberosArtifactSynchronizer {
public:
using SetupKerberosCallback = base::Callback<void(bool setup_success)>;
KerberosArtifactSynchronizer(
const std::string& krb5_conf_path,
const std::string& krb5_ccache_path,
std::unique_ptr<KerberosArtifactClientInterface> client);
// Sets up Keberos for user with |object_guid|. User must be ChromAD.
// |callback| is run with the result. May only be called once per instance.
void SetupKerberos(const std::string& object_guid,
SetupKerberosCallback callback);
private:
// Calls GetUserKerberosFiles on |client_|.
void GetFiles();
// Response handler for GetUserKerberosFiles.
void OnGetFilesResponse(authpolicy::ErrorType error,
const authpolicy::KerberosFiles& kerberos_files);
// Writes |kerberos_files| to |krb5_conf_path_| and |krb5_ccache_path_|
// respectively. If Kerberos is not yet fully setup, calls
// ConnectToKerberosFilesChangedSignal.
void WriteFiles(const authpolicy::KerberosFiles& kerberos_files);
// Writes |kerberos_file| to |path|. First writes into a temporary file
// and then replaces the existing one. Returns true if the write succeeds,
// false if it fails. The parent directory of |path| must exist.
bool WriteFile(const std::string& path, const std::string& kerberos_file);
// Connects to the 'UserKerberosFilesChanged' D-Bus signal. Called by
// WriteFiles() on initial setup.
void ConnectToKerberosFilesChangedSignal();
// Callback for 'UserKerberosFilesChanged' D-Bus signal.
void OnKerberosFilesChanged(dbus::Signal* signal);
// Called after connecting to 'UserKerberosFilesChanged' signal. Verifies that
// the signal connected successfully.
void OnKerberosFilesChangedSignalConnected(const std::string& interface_name,
const std::string& signal_name,
bool success);
bool is_kerberos_setup_ = false;
const std::string krb5_conf_path_;
const std::string krb5_ccache_path_;
std::string object_guid_;
SetupKerberosCallback setup_result_callback_;
std::unique_ptr<KerberosArtifactClientInterface> client_;
DISALLOW_COPY_AND_ASSIGN(KerberosArtifactSynchronizer);
};
} // namespace smbprovider
#endif // SMBPROVIDER_KERBEROS_ARTIFACT_SYNCHRONIZER_H_