mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <fcntl.h>
|
|
#include <stdbool.h>
|
|
#include <sys/types.h>
|
|
|
|
typedef enum LabelFixFlags {
|
|
LABEL_IGNORE_ENOENT = 1 << 0,
|
|
LABEL_IGNORE_EROFS = 1 << 1,
|
|
} LabelFixFlags;
|
|
|
|
int label_fix_full(int atfd, const char *inode_path, const char *label_path, LabelFixFlags flags);
|
|
|
|
static inline int label_fix(const char *path, LabelFixFlags flags) {
|
|
return label_fix_full(AT_FDCWD, path, path, flags);
|
|
}
|
|
|
|
int symlink_label(const char *old_path, const char *new_path);
|
|
int symlink_atomic_full_label(const char *from, const char *to, bool make_relative);
|
|
static inline int symlink_atomic_label(const char *from, const char *to) {
|
|
return symlink_atomic_full_label(from, to, false);
|
|
}
|
|
|
|
int mknodat_label(int dirfd, const char *pathname, mode_t mode, dev_t dev);
|
|
static inline int mknod_label(const char *pathname, mode_t mode, dev_t dev) {
|
|
return mknodat_label(AT_FDCWD, pathname, mode, dev);
|
|
}
|
|
|
|
int btrfs_subvol_make_label(const char *path);
|
|
|
|
int mac_init(void);
|
|
int mac_init_lazy(void);
|