blob: 38eeabd3d129e5b070d0b894137f4333684e481f [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 fsetfilecon(int fd, const security_context_t context)
11{
12 return fsetxattr(fd, XATTR_NAME_SELINUX, context, strlen(context) + 1,
13 0);
14}
15