mirror of
https://github.com/systemd/systemd.git
synced 2024-11-27 12:13:33 +08:00
journal: make requirement for ACLs optional
This commit is contained in:
parent
d1e44dd827
commit
e6520a0fce
@ -1208,9 +1208,13 @@ systemd_journald_SOURCES = \
|
||||
src/journal/lookup3.c \
|
||||
src/journal/journal-rate-limit.c \
|
||||
src/sd-id128.c \
|
||||
src/acl-util.c \
|
||||
src/cgroup-util.c
|
||||
|
||||
if HAVE_ACL
|
||||
systemd_journald_SOURCES += \
|
||||
src/acl-util.c
|
||||
endif
|
||||
|
||||
nodist_systemd_journald_SOURCES = \
|
||||
src/journal/journald-gperf.c
|
||||
|
||||
|
@ -25,8 +25,6 @@
|
||||
#include <sys/signalfd.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/acl.h>
|
||||
#include <acl/libacl.h>
|
||||
#include <stddef.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <linux/sockios.h>
|
||||
@ -40,7 +38,6 @@
|
||||
#include "hashmap.h"
|
||||
#include "journal-file.h"
|
||||
#include "socket-util.h"
|
||||
#include "acl-util.h"
|
||||
#include "cgroup-util.h"
|
||||
#include "list.h"
|
||||
#include "journal-rate-limit.h"
|
||||
@ -49,6 +46,12 @@
|
||||
#include "journald.h"
|
||||
#include "virt.h"
|
||||
|
||||
#ifdef HAVE_ACL
|
||||
#include <sys/acl.h>
|
||||
#include <acl/libacl.h>
|
||||
#include "acl-util.h"
|
||||
#endif
|
||||
|
||||
#define USER_JOURNALS_MAX 1024
|
||||
#define STDOUT_STREAMS_MAX 4096
|
||||
|
||||
@ -181,10 +184,12 @@ finish:
|
||||
}
|
||||
|
||||
static void fix_perms(JournalFile *f, uid_t uid) {
|
||||
int r;
|
||||
#ifdef HAVE_ACL
|
||||
acl_t acl;
|
||||
acl_entry_t entry;
|
||||
acl_permset_t permset;
|
||||
int r;
|
||||
#endif
|
||||
|
||||
assert(f);
|
||||
|
||||
@ -192,6 +197,7 @@ static void fix_perms(JournalFile *f, uid_t uid) {
|
||||
if (r < 0)
|
||||
log_warning("Failed to fix access mode/rights on %s, ignoring: %s", f->path, strerror(-r));
|
||||
|
||||
#ifdef HAVE_ACL
|
||||
if (uid <= 0)
|
||||
return;
|
||||
|
||||
@ -224,6 +230,7 @@ static void fix_perms(JournalFile *f, uid_t uid) {
|
||||
|
||||
finish:
|
||||
acl_free(acl);
|
||||
#endif
|
||||
}
|
||||
|
||||
static JournalFile* find_journal(Server *s, uid_t uid) {
|
||||
|
Loading…
Reference in New Issue
Block a user