mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-08-05 00:03:33 +00:00
90 lines
1.6 KiB
C
90 lines
1.6 KiB
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <sys/mount.h>
|
|
#include <linux/limits.h>
|
|
#include <signal.h>
|
|
#include "zdtmtst.h"
|
|
|
|
const char *test_doc = "Check that an apparmor profile is restored";
|
|
const char *test_author = "Tycho Andersen <tycho.andersen@canonical.com>";
|
|
|
|
#define PROFILE "criu_test"
|
|
|
|
int setprofile(void)
|
|
{
|
|
char profile[1024];
|
|
int fd, len;
|
|
|
|
len = snprintf(profile, sizeof(profile), "changeprofile " PROFILE);
|
|
if (len < 0 || len >= sizeof(profile)) {
|
|
fail("bad sprintf");
|
|
return -1;
|
|
}
|
|
|
|
fd = open("/proc/self/attr/current", O_WRONLY);
|
|
if (fd < 0) {
|
|
fail("couldn't open fd");
|
|
return -1;
|
|
}
|
|
|
|
/* apparmor wants this in exactly one write, so we use write() here
|
|
* vs. fprintf Just To Be Sure */
|
|
len = write(fd, profile, len);
|
|
close(fd);
|
|
|
|
if (len < 0) {
|
|
fail("couldn't write profile");
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int checkprofile(void)
|
|
{
|
|
FILE *f;
|
|
char path[PATH_MAX], profile[1024];
|
|
int len;
|
|
|
|
sprintf(path, "/proc/self/attr/current");
|
|
|
|
f = fopen(path, "r");
|
|
if (!f) {
|
|
fail("couldn't open lsm current");
|
|
return -1;
|
|
}
|
|
|
|
len = fscanf(f, "%1023[^ \n]s", profile);
|
|
fclose(f);
|
|
if (len != 1) {
|
|
fail("wrong number of items scanned %d", len);
|
|
return -1;
|
|
}
|
|
|
|
if (strcmp(profile, PROFILE) != 0) {
|
|
fail("bad profile .%s. expected .%s.", profile, PROFILE);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
test_init(argc, argv);
|
|
|
|
setprofile();
|
|
|
|
test_daemon();
|
|
test_waitsig();
|
|
|
|
if (checkprofile() == 0)
|
|
pass();
|
|
|
|
return 0;
|
|
}
|