1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Userspace file locking support
8 * Copyright (C) 2007 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
27 #include <linux/fcntl.h>
29 #include <cluster/masklog.h>
38 static int ocfs2_do_flock(struct file *file, struct inode *inode,
39 int cmd, struct file_lock *fl)
41 int ret = 0, level = 0, trylock = 0;
42 struct ocfs2_file_private *fp = file->private_data;
43 struct ocfs2_lock_res *lockres = &fp->fp_flock;
45 if (fl->fl_type == F_WRLCK)
50 mutex_lock(&fp->fp_mutex);
52 if (lockres->l_flags & OCFS2_LOCK_ATTACHED &&
53 lockres->l_level > LKM_NLMODE) {
56 if (lockres->l_level == LKM_EXMODE)
59 if (level == old_level)
63 * Converting an existing lock is not guaranteed to be
64 * atomic, so we can get away with simply unlocking
65 * here and allowing the lock code to try at the new
69 locks_lock_file_wait(file,
75 ocfs2_file_unlock(file);
78 ret = ocfs2_file_lock(file, level, trylock);
80 if (ret == -EAGAIN && trylock)
87 ret = locks_lock_file_wait(file, fl);
89 ocfs2_file_unlock(file);
92 mutex_unlock(&fp->fp_mutex);
97 static int ocfs2_do_funlock(struct file *file, int cmd, struct file_lock *fl)
100 struct ocfs2_file_private *fp = file->private_data;
102 mutex_lock(&fp->fp_mutex);
103 ocfs2_file_unlock(file);
104 ret = locks_lock_file_wait(file, fl);
105 mutex_unlock(&fp->fp_mutex);
111 * Overall flow of ocfs2_flock() was influenced by gfs2_flock().
113 int ocfs2_flock(struct file *file, int cmd, struct file_lock *fl)
115 struct inode *inode = file->f_mapping->host;
116 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
118 if (!(fl->fl_flags & FL_FLOCK))
120 if (__mandatory_lock(inode))
123 if ((osb->s_mount_opt & OCFS2_MOUNT_LOCALFLOCKS) ||
124 ocfs2_mount_local(osb))
125 return locks_lock_file_wait(file, fl);
127 if (fl->fl_type == F_UNLCK)
128 return ocfs2_do_funlock(file, cmd, fl);
130 return ocfs2_do_flock(file, inode, cmd, fl);
133 int ocfs2_lock(struct file *file, int cmd, struct file_lock *fl)
135 struct inode *inode = file->f_mapping->host;
136 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
138 if (!(fl->fl_flags & FL_POSIX))
140 if (__mandatory_lock(inode) && fl->fl_type != F_UNLCK)
143 return ocfs2_plock(osb->cconn, OCFS2_I(inode)->ip_blkno, file, cmd, fl);