-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk_usage_impl.h
78 lines (61 loc) · 2.65 KB
/
disk_usage_impl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright 2021 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SPACED_DISK_USAGE_IMPL_H_
#define SPACED_DISK_USAGE_IMPL_H_
#include <sys/quota.h>
#include <sys/statvfs.h>
#include <memory>
#include <optional>
#include <utility>
#include <base/task/task_runner.h>
#include <base/files/file_path.h>
#include <base/files/scoped_file.h>
#include <brillo/blkdev_utils/lvm.h>
#include <brillo/brillo_export.h>
#include "spaced/disk_usage.h"
namespace spaced {
class BRILLO_EXPORT DiskUsageUtilImpl : public DiskUsageUtil {
public:
DiskUsageUtilImpl(const base::FilePath& rootdev,
std::optional<brillo::Thinpool> thinpool);
~DiskUsageUtilImpl() override = default;
int64_t GetFreeDiskSpace(const base::FilePath& path) override;
int64_t GetTotalDiskSpace(const base::FilePath& path) override;
int64_t GetRootDeviceSize() override;
bool IsQuotaSupported(const base::FilePath& path) override;
int64_t GetQuotaCurrentSpaceForUid(const base::FilePath& path,
uint32_t uid) override;
int64_t GetQuotaCurrentSpaceForGid(const base::FilePath& path,
uint32_t gid) override;
int64_t GetQuotaCurrentSpaceForProjectId(const base::FilePath& path,
uint32_t project_id) override;
bool SetProjectId(const base::ScopedFD& fd,
uint32_t project_id,
int* out_error) override;
bool SetProjectInheritanceFlag(const base::ScopedFD& fd,
bool enable,
int* out_error) override;
protected:
// Runs statvfs() on a given path.
virtual int StatVFS(const base::FilePath& path, struct statvfs* st);
// Runs quotactl() on the given device.
virtual int QuotaCtl(int cmd,
const base::FilePath& device,
int id,
struct dqblk* dq);
// Runs ioctl() for the given request on the given fd.
virtual int Ioctl(int fd, uint32_t request, void* ptr);
// Get backing device for a given file path.
virtual base::FilePath GetDevice(const base::FilePath& path);
// Gets the block device size in bytes for a given device.
virtual int64_t GetBlockDeviceSize(const base::FilePath& device);
private:
int64_t GetQuotaCurrentSpaceForId(const base::FilePath& path,
uint32_t id,
int quota_type);
const base::FilePath rootdev_;
std::optional<brillo::Thinpool> thinpool_;
};
} // namespace spaced
#endif // SPACED_DISK_USAGE_IMPL_H_