summaryrefslogtreecommitdiff
path: root/src/shared/tomoyo-util.c
blob: ce00165d1cfa342af93353d29bdb026dd6918fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
  Copyright 2017 Shawn Landden
***/

#include <unistd.h>

#include "tomoyo-util.h"

bool mac_tomoyo_use(void) {
        static int cached_use = -1;

        if (cached_use < 0)
                cached_use = (access("/sys/kernel/security/tomoyo/version",
                                     F_OK) == 0);

        return cached_use;
}