File: change_hat.c

package info (click to toggle)
apparmor 2.13.6-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,604 kB
  • sloc: python: 18,892; ansic: 17,618; perl: 11,105; sh: 10,465; cpp: 5,413; yacc: 1,950; makefile: 1,729; lex: 1,105; pascal: 1,097; ruby: 374; exp: 250; java: 212; xml: 159
file content (51 lines) | stat: -rw-r--r-- 1,065 bytes parent folder | download | duplicates (2)
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
49
50
51
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <linux/unistd.h>

#include "sys/apparmor.h"

#define SD_ID_MAGIC 0xdeadbeef

int main(int argc, char *argv[])
{
	int fd, error;
	char *hat_name;
	int hat_magic;
	char *o_file = "/bin/ls";

	while (1) {
	hat_name = "/subprofile/foo";
	hat_magic = SD_ID_MAGIC + 1;
	if (argc > 1)
		hat_name = argv[1];

	printf("before entering change_hat\n");
	error = change_hat(hat_name, hat_magic);
	printf("change_hat(%s, 0x%x): %s\n", hat_name, hat_magic,
							strerror(errno));

	errno = 0;
	fd = open(o_file, O_RDONLY);
	printf("open(%s): %s\n", o_file, strerror(errno));
	if (fd != -1)
		close(fd);

	hat_name = NULL;
	printf("before leaving change_hat\n");
	errno = 0;
	error = change_hat(hat_name, hat_magic);
	printf("change_hat(%s, 0x%x): %s\n", "NULL", hat_magic,
							strerror(errno));

	errno = 0;
	fd = open(o_file, O_RDONLY);
	printf("open(%s): %s\n", o_file, strerror(errno));
	if (fd != -1)
		close(fd);
	}
}