Whamcloud - gitweb
LU-15152 tests: auster reports wrong testsuite status
[fs/lustre-release.git] / lustre / tests / opendevunlink.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  */
26 /*
27  * This file is part of Lustre, http://www.lustre.org/
28  */
29
30 #ifndef _GNU_SOURCE
31 #define _GNU_SOURCE
32 #endif
33
34 #include <stdio.h>
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <dirent.h>
40 #include <string.h>
41 #include <unistd.h>
42 #include <stdlib.h>
43
44 int main(int argc, char **argv)
45 {
46         char *dname1, *dname2;
47         int fddev1, fddev2, rc;
48         struct stat st1, st2;
49
50         if (argc < 2 || argc > 3) {
51                 fprintf(stderr, "usage: %s filename1 [filename2]\n", argv[0]);
52                 exit(1);
53         }
54
55         dname1 = argv[1];
56         if (argc == 3)
57                 dname2 = argv[2];
58         else
59                 dname2 = argv[1];
60
61         /* create the special file (right now only test on pipe) */
62         fprintf(stderr, "creating special file %s\n", dname1);
63         rc = mknod(dname1, 0777 | S_IFIFO, 0);
64         if (rc == -1) {
65                 fprintf(stderr, "creating %s fails: %s\n",
66                         dname1, strerror(errno));
67                 exit(1);
68         }
69
70         /* open the special file again */
71         fprintf(stderr, "opening file\n");
72         fddev1 = open(dname1, O_RDONLY | O_NONBLOCK);
73         if (fddev1 == -1) {
74                 fprintf(stderr, "open %s fails: %s\n",
75                         dname1, strerror(errno));
76                 exit(1);
77         }
78
79         /* doesn't matter if the two dirs are the same?? */
80         fddev2 = open(dname2, O_RDONLY | O_NONBLOCK);
81         if (fddev2 == -1) {
82                 fprintf(stderr, "open %s fails: %s\n",
83                         dname2, strerror(errno));
84                 exit(1);
85         }
86
87         /* delete the special file */
88         fprintf(stderr, "unlinking %s\n", dname1);
89         rc = unlink(dname1);
90         if (rc) {
91                 fprintf(stderr, "unlink %s error: %s\n",
92                         dname1, strerror(errno));
93                 exit(1);
94         }
95
96         if (access(dname2, F_OK) == 0) {
97                 fprintf(stderr, "%s still exists\n", dname2);
98                 exit(1);
99         }
100
101         if (access(dname1, F_OK) == 0) {
102                 fprintf(stderr, "%s still exists\n", dname1);
103                 exit(1);
104         }
105
106         /* fchmod one special file */
107         rc = fchmod(fddev1, 0777);
108         if (rc == -1) {
109                 fprintf(stderr, "fchmod unlinked special file %s fails: %s\n",
110                         dname1, strerror(errno));
111                 exit(1);
112         }
113
114         /* fstat two files to check if they are the same */
115         rc = fstat(fddev1, &st1);
116         if (rc == -1) {
117                 fprintf(stderr, "fstat unlinked special file %s fails: %s\n",
118                         dname1, strerror(errno));
119                 exit(1);
120         }
121
122         rc = fstat(fddev2, &st2);
123         if (rc == -1) {
124                 fprintf(stderr, "fstat file %s fails: %s\n",
125                         dname2, strerror(errno));
126                 exit(1);
127         }
128
129         fprintf(stderr, "Ok, everything goes well.\n");
130         return 0;
131 }