00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #include <stdio.h>
00040 #include <stdlib.h>
00041 #include <string.h>
00042 #include <unistd.h>
00043 #include <errno.h>
00044 #include <err.h>
00045
00046 #define TEST "rmdata"
00047 #define TESTDATA "I wish I was a headlight. -- Jerry Garcia"
00048 #define TESTLEN (sizeof(TESTDATA)-1)
00049
00050 static
00051 void
00052 dorm(int fd)
00053 {
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 pid_t pid;
00064 int status;
00065
00066 pid = fork();
00067 if (pid<0) {
00068 err(1, "fork");
00069 }
00070 if (pid==0) {
00071
00072 close(fd);
00073 if (remove(TEST)) {
00074 err(1, "%s: remove", TEST);
00075 }
00076 _exit(0);
00077 }
00078
00079 if (waitpid(pid, &status, 0)<0) {
00080 err(1, "waitpid");
00081 }
00082 else if (WIFSIGNALED(status)) {
00083 warn("child process exited with signal %d", WTERMSIG(status));
00084 }
00085 else if (WEXITSTATUS(status) != 0) {
00086 warnx("child process exited with code %d",WEXITSTATUS(status));
00087 }
00088 }
00089
00090 static
00091 int
00092 same(const char *a, const char *b, int len)
00093 {
00094 while (len-- > 0) {
00095 if (*a++ != *b++) return 0;
00096 }
00097 return 1;
00098 }
00099
00100 int
00101 main()
00102 {
00103 int file, len;
00104 char buf[TESTLEN];
00105
00106
00107 file = open(TEST, O_WRONLY | O_CREAT | O_TRUNC, 0664);
00108 write(file, TESTDATA, TESTLEN);
00109 close(file);
00110
00111
00112 file = open(TEST, O_RDONLY);
00113 len = read(file, buf, TESTLEN);
00114 if (len < 0) {
00115 warn("read: before deletion");
00116 }
00117 else if (len < (int)TESTLEN) {
00118 warnx("read: before deletion: short count %d", len);
00119 }
00120 if (!same(buf, TESTDATA, TESTLEN)) {
00121 errx(1, "Failed: data read back was not the same");
00122 }
00123
00124
00125 if (lseek(file, 0, SEEK_SET)) {
00126 err(1, "lseek");
00127 }
00128
00129
00130 dorm(file);
00131
00132
00133 memset(buf, '\0', TESTLEN);
00134 len = read(file, buf, TESTLEN);
00135 if (len < 0) {
00136 warn("read: after deletion");
00137 }
00138 else if (len < (int)TESTLEN) {
00139 warnx("read: after deletion: short count %d", len);
00140 }
00141
00142 if (!same(buf, TESTDATA, TESTLEN)) {
00143 errx(1, "Failed: data read after deletion was not the same");
00144 }
00145
00146
00147 close(file);
00148
00149
00150 file = open(TEST, O_RDONLY);
00151 if (file >= 0) {
00152 close(file);
00153 errx(1, "Failed: the file could still be opened");
00154 }
00155
00156 if (errno!=ENOENT) {
00157 err(1, "Unexpected error reopening the file");
00158 }
00159
00160 printf("Succeeded!\n");
00161
00162 return 0;
00163 }