blob: 45cc2e3e0b9cde026774c3cf94c14b215043bc32 [file] [log] [blame]
Stephen Smalleyf0740362012-01-04 12:30:47 -05001#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <stdlib.h>
5#include <errno.h>
6#include <sys/xattr.h>
7#include "selinux_internal.h"
8#include "policy.h"
9
10int lsetfilecon(const char *path, const security_context_t context)
11{
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
13 0);
14}
15