Whamcloud - gitweb
LU-8347 ldlm: granting conflicting locks
[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  * Lustre is a trademark of Sun Microsystems, Inc.
29  */
30
31 #ifndef _GNU_SOURCE
32 #define _GNU_SOURCE
33 #endif
34
35 #include <stdio.h>
36 #include <errno.h>
37 #include <fcntl.h>
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <dirent.h>
41 #include <string.h>
42 #include <unistd.h>
43 #include <stdlib.h>
44
45 int main(int argc, char **argv)
46 {
47         char *dname1, *dname2;
48         int fddev1, fddev2, rc;
49         //DIR *dp;
50         struct stat st1, st2;
51
52         if (argc < 2 || argc > 3) {
53                 fprintf(stderr, "usage: %s filename1 [filename2]\n", argv[0]);
54                 exit(1);
55         }
56
57         dname1 = argv[1];
58         if (argc == 3)
59                 dname2 = argv[2];
60         else
61                 dname2 = argv[1];
62
63         //create the special file (right now only test on pipe)
64         fprintf(stderr, "creating special file %s\n", dname1);
65         rc = mknod(dname1, 0777|S_IFIFO, 0);
66         if (rc == -1) {
67                 fprintf(stderr, "creating %s fails: %s\n",
68                         dname1, strerror(errno));
69                 exit(1);
70         }
71
72         // open the special file again
73         fprintf(stderr, "opening file\n");
74         fddev1 = open(dname1, O_RDONLY | O_NONBLOCK);
75         if (fddev1 == -1) {
76                 fprintf(stderr, "open %s fails: %s\n",
77                         dname1, strerror(errno));
78                 exit(1);
79         }
80
81         // doesn't matter if the two dirs are the same??
82         fddev2 = open(dname2, O_RDONLY | O_NONBLOCK);
83         if (fddev2 == -1) {
84                 fprintf(stderr, "open %s fails: %s\n",
85                         dname2, strerror(errno));
86                 exit(1);
87         }
88
89         // delete the special file
90         fprintf (stderr, "unlinking %s\n", dname1);
91         rc = unlink(dname1);
92         if (rc) {
93                 fprintf(stderr, "unlink %s error: %s\n",
94                         dname1, strerror(errno));
95                 exit(1);
96         }
97
98         if (access(dname2, F_OK) == 0) {
99                 fprintf(stderr, "%s still exists\n", dname2);
100                 exit(1);
101         }
102
103         if (access(dname1, F_OK) == 0) {
104                 fprintf(stderr, "%s still exists\n", dname1);
105                 exit(1);
106         }
107
108         // fchmod one special file
109         rc = fchmod (fddev1, 0777);
110         if (rc == -1) {
111                 fprintf(stderr, "fchmod unlinked special file %s fails: %s\n",
112                         dname1, strerror(errno));
113                 exit(1);
114         }
115
116         // fstat two files to check if they are the same
117         rc = fstat(fddev1, &st1);
118         if (rc == -1) {
119                 fprintf(stderr, "fstat unlinked special file %s fails: %s\n",
120                         dname1, strerror(errno));
121                 exit(1);
122         }
123
124         rc = fstat(fddev2, &st2);
125         if (rc == -1) {
126                 fprintf(stderr, "fstat file %s fails: %s\n",
127                         dname2, strerror(errno));
128                 exit(1);
129         }
130
131         fprintf(stderr, "Ok, everything goes well.\n");
132         return 0;
133 }