mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
By default, label_ops is initialized with a NULL pointer which translates to noop labelling operations. In mac_selinux_init() and the new mac_smack_init(), we initialize label_ops with a MAC specific LabelOps pointer. We also introduce mac_init() to initialize any configured MACs and replace all usages of mac_selinux_init() with mac_init().
15 lines
399 B
C
15 lines
399 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
|
|
typedef struct LabelOps {
|
|
int (*pre)(int dir_fd, const char *path, mode_t mode);
|
|
int (*post)(int dir_fd, const char *path);
|
|
} LabelOps;
|
|
|
|
int label_ops_set(const LabelOps *label_ops);
|
|
|
|
int label_ops_pre(int dir_fd, const char *path, mode_t mode);
|
|
int label_ops_post(int dir_fd, const char *path);
|