summaryrefslogtreecommitdiff
path: root/src/basic/quota-util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-11-22 12:42:27 +0100
committerLennart Poettering <lennart@poettering.net>2019-12-17 20:03:40 +0100
commit845a7c1fc183b3b3f6debd10753abd7bcfebfeae (patch)
tree54908624310decdae2b345cc247a6769cae22fe5 /src/basic/quota-util.c
parent3d864658ea0115820e2610c2618f6fee7b964ec1 (diff)
downloadsystemd-845a7c1fc183b3b3f6debd10753abd7bcfebfeae.tar.gz
basic: add quota-util.[ch] with some helpers for the Linux quotactl() API
Diffstat (limited to 'src/basic/quota-util.c')
-rw-r--r--src/basic/quota-util.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/basic/quota-util.c b/src/basic/quota-util.c
new file mode 100644
index 0000000000..e048f5571f
--- /dev/null
+++ b/src/basic/quota-util.c
@@ -0,0 +1,41 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
+
+#include <sys/quota.h>
+
+#include "alloc-util.h"
+#include "blockdev-util.h"
+#include "quota-util.h"
+#include "stat-util.h"
+
+int quotactl_devno(int cmd, dev_t devno, int id, void *addr) {
+ _cleanup_free_ char *devnode = NULL;
+ int r;
+
+ /* Like quotactl() but takes a dev_t instead of a path to a device node, and fixes caddr_t → void*,
+ * like we should, today */
+
+ r = device_path_make_major_minor(S_IFBLK, devno, &devnode);
+ if (r < 0)
+ return r;
+
+ if (quotactl(cmd, devnode, id, addr) < 0)
+ return -errno;
+
+ return 0;
+}
+
+int quotactl_path(int cmd, const char *path, int id, void *addr) {
+ dev_t devno;
+ int r;
+
+ /* Like quotactl() but takes a path to some fs object, and changes the backing file system. I.e. the
+ * argument shouldn't be a block device but a regular file system object */
+
+ r = get_block_device(path, &devno);
+ if (r < 0)
+ return r;
+ if (devno == 0)
+ return -ENODEV;
+
+ return quotactl_devno(cmd, devno, id, addr);
+}