Whamcloud - gitweb
LU-13474 gss: do not return -ERESTART when gss rpc times out
[fs/lustre-release.git] / lustre / tests / opendirunlink.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 /* for O_DIRECTORY */
32 #ifndef _GNU_SOURCE
33 #define _GNU_SOURCE
34 #endif
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <unistd.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include <dirent.h>
44 #include <string.h>
45
46 int main(int argc, char **argv)
47 {
48         char *dname1, *dname2;
49         int fddir1, fddir2, rc;
50         struct stat st1, st2;
51
52         if (argc < 2 || argc > 3) {
53                 fprintf(stderr, "usage: %s dirname1 [dirname2]\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 directory */
64         fprintf(stderr, "creating directory %s\n", dname1);
65         rc = mkdir(dname1, 0744);
66         if (rc == -1) {
67                 fprintf(stderr, "creating %s fails: %s\n",
68                         dname1, strerror(errno));
69                 exit(1);
70         }
71
72         /* open the dir again */
73         fprintf(stderr, "opening directory\n");
74         fddir1 = open(dname1, O_RDONLY | O_DIRECTORY);
75         if (fddir1 == -1) {
76                 fprintf(stderr, "open %s fails: %s\n",
77                         dname1, strerror(errno));
78                 exit(2);
79         }
80
81         /* doesn't matter if the two dirs are the same?? */
82         fddir2 = open(dname2, O_RDONLY | O_DIRECTORY);
83         if (fddir2 == -1) {
84                 fprintf(stderr, "open %s fails: %s\n",
85                         dname2, strerror(errno));
86                 exit(3);
87         }
88
89         /* delete the dir */
90         fprintf(stderr, "unlinking %s\n", dname1);
91         rc = rmdir(dname1);
92         if (rc) {
93                 fprintf(stderr, "unlink %s error: %s\n",
94                         dname1, strerror(errno));
95                 exit(4);
96         }
97
98         if (access(dname2, F_OK) == 0) {
99                 fprintf(stderr, "%s still exists\n", dname2);
100                 exit(5);
101         }
102
103         if (access(dname1, F_OK) == 0) {
104                 fprintf(stderr, "%s still exists\n", dname1);
105                 exit(6);
106         }
107
108         /* fchmod the dir */
109         rc = fchmod(fddir1, 0777);
110         if (rc == -1) {
111                 fprintf(stderr, "fchmod unlinked dir fails %s\n",
112                         strerror(errno));
113                 exit(7);
114         }
115
116         /* fstat two dirs to check if they are the same */
117         rc = fstat(fddir1, &st1);
118         if (rc == -1) {
119                 fprintf(stderr, "fstat unlinked dir %s fails %s\n",
120                         dname1, strerror(errno));
121                 exit(8);
122         }
123
124         rc = fstat(fddir2, &st2);
125         if (rc == -1) {
126                 fprintf(stderr, "fstat dir %s fails %s\n",
127                         dname2, strerror(errno));
128                 exit(9);
129         }
130
131         if (st1.st_mode != st2.st_mode) {  /* can we do this? */
132                 fprintf(stderr, "fstat different value on %s and %s\n",
133                         dname1, dname2);
134                 exit(10);
135         }
136
137         fprintf(stderr, "Ok, everything goes well.\n");
138         return 0;
139 }