blob: c290dcbf0a8784841b51e0aa6e3e4283008adb61 [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 CROS_DISKS_SSHFS_HELPER_H_
#define CROS_DISKS_SSHFS_HELPER_H_
#include <memory>
#include <string>
#include <vector>
#include "cros-disks/fuse_mounter.h"
namespace cros_disks {
// Invokes sshfs to provide access to files over SFTP protocol.
class SshfsHelper : public FUSEMounterHelper {
public:
SshfsHelper(const Platform* platform,
brillo::ProcessReaper* process_reaper,
base::FilePath working_dir);
SshfsHelper(const SshfsHelper&) = delete;
SshfsHelper& operator=(const SshfsHelper&) = delete;
~SshfsHelper() override;
bool CanMount(const std::string& source,
const std::vector<std::string>& params,
base::FilePath* suggested_name) const override;
protected:
MountErrorType ConfigureSandbox(const std::string& source,
const base::FilePath& target_path,
std::vector<std::string> params,
SandboxedProcess* sandbox) const override;
private:
const FUSESandboxedProcessFactory sandbox_factory_;
const base::FilePath working_dir_;
friend class SshfsHelperTest;
};
} // namespace cros_disks
#endif // CROS_DISKS_SSHFS_HELPER_H_