blob: d3d74ff745555e0c9e844ab25d842eb8d4bf244e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/****************************************************************************
* bfs *
* Copyright (C) 2019 Tavian Barnes <tavianator@tavianator.com> *
* *
* Permission to use, copy, modify, and/or distribute this software for any *
* purpose with or without fee is hereby granted. *
* *
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES *
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF *
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR *
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES *
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN *
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF *
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *
****************************************************************************/
/**
* The withdrawn POSIX.1e standard specified a security API for POSIX systems.
* Although it was never ratified, many of its interfaces are widely deployed
* in Unix-like systems. These functions wrap the POSIX.1e APIs if present,
* to support things like Access Control Lists and Capabilities.
*/
#ifndef BFS_POSIX1E_H
#define BFS_POSIX1E_H
#include "bftw.h"
#include "util.h"
#include <stdbool.h>
#if !defined(BFS_HAS_POSIX1E_CAPABILITIES) && BFS_HAS_SYS_CAPABILITY && !__FreeBSD__
# include <sys/capability.h>
# ifdef CAP_CHOWN
# define BFS_HAS_POSIX1E_CAPABILITIES true
# endif
#endif
/**
* Check if a file has a non-trvial Access Control List.
*/
bool bfs_check_acl(const struct BFTW *ftwbuf);
/**
* Check if a file has a non-trvial capability set.
*/
bool bfs_check_capabilities(const struct BFTW *ftwbuf);
#endif // BFS_POSIX1E_H
|