4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, Whamcloud, Inc.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
48 #define MAX_PATH_LENGTH 4096
52 int t_fcntl(int fd, int cmd, ...)
65 fprintf(stderr, "fcntl GETFL failed: %s\n",
71 arg = va_arg(ap, long);
73 rc = fcntl(fd, cmd, arg);
75 fprintf(stderr, "fcntl SETFL %ld failed: %s\n",
76 arg, strerror(errno));
83 lock = va_arg(ap, struct flock *);
85 rc = fcntl(fd, cmd, lock);
87 fprintf(stderr, "fcntl cmd %d failed: %s\n",
88 cmd, strerror(errno));
93 arg = va_arg(ap, long);
95 rc = fcntl(fd, cmd, arg);
97 fprintf(stderr, "fcntl F_DUPFD %d failed: %s\n",
98 (int)arg, strerror(errno));
104 fprintf(stderr, "fcntl cmd %d not supported\n", cmd);
110 int t_unlink(const char *path)
116 fprintf(stderr, "unlink(%s) error: %s\n", path, strerror(errno));
120 /** =================================================================
127 fprintf(stderr, "usage: ./flocks_test 1 on|off -c|-f|-l /path/to/file\n");
130 int t1(int argc, char *argv[])
133 int mount_with_flock = 0;
142 if (!strncmp(argv[2], "on", 3)) {
143 mount_with_flock = 1;
144 } else if (!strncmp(argv[2], "off", 4)) {
145 mount_with_flock = 0;
151 if ((fd = open(argv[4], O_RDWR)) < 0) {
152 fprintf(stderr, "Couldn't open file: %s\n", argv[3]);
156 if (!strncmp(argv[3], "-c", 3)) {
160 fl.l_whence = SEEK_SET;
164 error = fcntl(fd, F_SETLK, &fl);
165 } else if (!strncmp(argv[3], "-l", 3)) {
166 error = lockf(fd, F_LOCK, 1);
167 } else if (!strncmp(argv[3], "-f", 3)) {
168 error = flock(fd, LOCK_EX);
175 if (mount_with_flock)
176 rc = ((error == 0) ? EXIT_SUCCESS : EXIT_FAILURE);
178 rc = ((error == 0) ? EXIT_FAILURE : EXIT_SUCCESS);
186 /** ===============================================================
189 * 2 threads flock ops interweave
196 void* t2_thread1(void *arg)
198 struct flock *lock = ((th_data *)arg)->lock;
199 int fd = ((th_data *)arg)->fd;
201 printf("thread 1: set write lock (blocking)\n");
202 lock->l_type = F_WRLCK;
203 t_fcntl(fd, F_SETLKW, lock);
204 printf("thread 1: set write lock done\n");
205 t_fcntl(fd, F_GETLK, lock);
206 printf("thread 1: unlock\n");
207 lock->l_type = F_UNLCK;
208 t_fcntl(fd, F_SETLK, lock);
209 printf("thread 1: unlock done\n");
213 void* t2_thread2(void *arg)
215 struct flock *lock = ((th_data *)arg)->lock;
216 int fd = ((th_data *)arg)->fd;
219 printf("thread 2: unlock\n");
220 lock->l_type = F_UNLCK;
221 t_fcntl(fd, F_SETLK, lock);
222 printf("thread 2: unlock done\n");
223 printf("thread 2: set write lock (non-blocking)\n");
224 lock->l_type = F_WRLCK;
225 t_fcntl(fd, F_SETLK, lock);
226 printf("thread 2: set write lock done\n");
227 t_fcntl(fd, F_GETLK, lock);
231 int t2(int argc, char* argv[])
233 struct flock lock = {
235 .l_whence = SEEK_SET,
237 char file[MAX_PATH_LENGTH] = "";
242 snprintf(file, MAX_PATH_LENGTH, "%s/test_t2_file", argv[2]);
244 fd = open(file, O_RDWR|O_CREAT, (mode_t)0666);
246 fprintf(stderr, "error open file: %s\n", file);
250 t_fcntl(fd, F_SETFL, O_APPEND);
251 rc = t_fcntl(fd, F_GETFL);
252 if ((rc & O_APPEND) == 0) {
253 fprintf(stderr, "error get flag: ret %x\n", rc);
260 rc = pthread_create(&th1, NULL, t2_thread1, &ta);
262 fprintf(stderr, "error create thread 1\n");
266 rc = pthread_create(&th2, NULL, t2_thread2, &ta);
268 fprintf(stderr, "error create thread 2\n");
272 (void)pthread_join(th1, NULL);
273 (void)pthread_join(th2, NULL);
280 /** =================================================================
283 * Bug 24040: Two conflicting flocks from same process different fds should fail
284 * two conflicting flocks from different processes but same fs
287 int t3(int argc, char *argv[])
291 int rc = EXIT_SUCCESS;
294 fprintf(stderr, "Usage: ./flocks_test 3 filename\n");
298 if ((fd = open(argv[2], O_RDWR)) < 0) {
299 fprintf(stderr, "Couldn't open file: %s\n", argv[1]);
302 if (flock(fd, LOCK_EX | LOCK_NB) < 0) {
303 perror("first flock failed");
307 if ((fd2 = open(argv[2], O_RDWR)) < 0) {
308 fprintf(stderr, "Couldn't open file: %s\n", argv[1]);
312 if (flock(fd2, LOCK_EX | LOCK_NB) >= 0) {
313 fprintf(stderr, "Second flock succeeded - FAIL\n");
329 if ((fd2 = open(argv[2], O_RDWR)) < 0) {
330 fprintf(stderr, "Couldn't open file: %s\n", argv[1]);
334 if (flock(fd2, LOCK_EX | LOCK_NB) >= 0) {
335 fprintf(stderr, "Second flock succeeded - FAIL\n");
339 if (flock(fd, LOCK_UN) == -1) {
340 fprintf(stderr, "Child unlock on parent fd failed\n");
344 if (flock(fd2, LOCK_EX | LOCK_NB) == -1) {
345 fprintf(stderr, "Relock after parent unlock failed!\n");
354 waitpid(pid, &rc, 0);
361 /** ==============================================================
366 fprintf(stderr, "usage: ./flocks_test test# [corresponding arguments]\n");
369 int main(int argc, char* argv[])
372 int rc = EXIT_SUCCESS;
378 test_no = atoi(argv[1]);
391 fprintf(stderr, "unknow test number %s\n", argv[1]);