mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 17:31:01 +01:00
155 lines
2.9 KiB
C
155 lines
2.9 KiB
C
/* $Id$ */
|
|
|
|
/*
|
|
* Copyright (C) 2002-2005 Novell/SUSE
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation, version 2 of the
|
|
* License.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/wait.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <linux/unistd.h>
|
|
#include "changehat.h"
|
|
|
|
const char *data="hello world";
|
|
|
|
int do_read (int fd)
|
|
{
|
|
int rc;
|
|
char buf[128];
|
|
|
|
rc=read(fd, buf, sizeof(buf));
|
|
|
|
if (rc != strlen(data)){
|
|
fprintf(stderr, "FAIL: read failed - %s\n",
|
|
strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
if (memcmp(buf, data, strlen(data)) != 0){
|
|
fprintf(stderr, "FAIL: comparison failed - %s\n",
|
|
strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int do_write (int fd)
|
|
{
|
|
int rc;
|
|
|
|
rc=write(fd, data, strlen(data));
|
|
|
|
if (rc != strlen(data)){
|
|
fprintf(stderr, "FAIL: write failed - %s\n",
|
|
strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int do_parent (char * hat, char * file)
|
|
{
|
|
int fd;
|
|
|
|
fd=open(file, O_RDONLY, 0);
|
|
if (fd == -1){
|
|
fprintf(stderr, "FAIL: open read %s failed - %s\n",
|
|
file,
|
|
strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
/* change hat if hatname != nochange */
|
|
if (strcmp(hat, "nochange") != 0){
|
|
if (change_hat(hat, SD_ID_MAGIC+1) == -1){
|
|
fprintf(stderr, "FAIL: changehat %s failed - %s\n",
|
|
hat, strerror(errno));
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
return(do_read(fd));
|
|
}
|
|
|
|
int do_child (char * hat, char * file)
|
|
{
|
|
int fd;
|
|
|
|
fd=open(file, O_WRONLY, 0);
|
|
if (fd == -1){
|
|
fprintf(stderr, "FAIL: open write %s failed - %s\n",
|
|
file,
|
|
strerror(errno));
|
|
return 1;
|
|
}
|
|
|
|
/* change hat if hatname != nochange */
|
|
if (strcmp(hat, "nochange") != 0){
|
|
if (change_hat(hat, SD_ID_MAGIC+1) == -1){
|
|
fprintf(stderr, "FAIL: changehat %s failed - %s\n",
|
|
hat, strerror(errno));
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
return (do_write(fd));
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int rc;
|
|
pid_t pid;
|
|
int waitstatus;
|
|
int read_error = 0;
|
|
|
|
if (argc != 3){
|
|
fprintf(stderr, "usage: %s hatname filename\n",
|
|
argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
pid = fork();
|
|
if (pid == -1) {
|
|
fprintf(stderr, "FAIL: fork failed - %s\n",
|
|
strerror(errno));
|
|
exit(1);
|
|
} else if (pid != 0) {
|
|
/* parent */
|
|
read_error = do_parent(argv[1], argv[2]);
|
|
rc = wait(&waitstatus);
|
|
if (rc == -1){
|
|
fprintf(stderr, "FAIL: wait failed - %s\n",
|
|
strerror(errno));
|
|
exit(1);
|
|
}
|
|
} else {
|
|
/* child */
|
|
exit(do_child(argv[1], argv[2]));
|
|
}
|
|
|
|
if ((WIFEXITED(waitstatus) != 0) && (WEXITSTATUS(waitstatus) == 0)
|
|
&& read_error == 0) {
|
|
printf("PASS\n");
|
|
} else {
|
|
return (WEXITSTATUS(waitstatus) & read_error);
|
|
}
|
|
|
|
return 0;
|
|
}
|