aboutsummaryrefslogtreecommitdiffstats
path: root/libselinux/src/setfilecon.c
blob: 7465c6a47290370ee149c3e66a33b68452023835 (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
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/xattr.h>
#include "selinux_internal.h"
#include "policy.h"

int setfilecon_raw(const char *path, const security_context_t context)
{
	return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
			0);
}

hidden_def(setfilecon_raw)

int setfilecon(const char *path, const security_context_t context)
{
	int ret;
	security_context_t rcontext;

	if (selinux_trans_to_raw_context(context, &rcontext))
		return -1;

	ret = setfilecon_raw(path, rcontext);

	freecon(rcontext);

	return ret;
}