1 #include <linux/ceph/ceph_debug.h>
3 #include <linux/file.h>
4 #include <linux/namei.h>
7 #include "mds_client.h"
8 #include <linux/ceph/pagelist.h>
11 * Implement fcntl and flock locking functions.
13 static int ceph_lock_message(u8 lock_type, u16 operation, struct file *file,
15 int cmd, u64 start, u64 length, u8 wait)
17 struct inode *inode = file->f_dentry->d_inode;
18 struct ceph_mds_client *mdsc =
19 ceph_sb_to_client(inode->i_sb)->mdsc;
20 struct ceph_mds_request *req;
23 req = ceph_mdsc_create_request(mdsc, operation, USE_AUTH_MDS);
26 req->r_inode = igrab(inode);
28 dout("ceph_lock_message: rule: %d, op: %d, pid: %llu, start: %llu, "
29 "length: %llu, wait: %d, type`: %d", (int)lock_type,
30 (int)operation, pid, start, length, wait, cmd);
32 req->r_args.filelock_change.rule = lock_type;
33 req->r_args.filelock_change.type = cmd;
34 req->r_args.filelock_change.pid = cpu_to_le64(pid);
35 /* This should be adjusted, but I'm not sure if
36 namespaces actually get id numbers*/
37 req->r_args.filelock_change.pid_namespace =
38 cpu_to_le64((u64)pid_ns);
39 req->r_args.filelock_change.start = cpu_to_le64(start);
40 req->r_args.filelock_change.length = cpu_to_le64(length);
41 req->r_args.filelock_change.wait = wait;
43 err = ceph_mdsc_do_request(mdsc, inode, req);
44 ceph_mdsc_put_request(req);
45 dout("ceph_lock_message: rule: %d, op: %d, pid: %llu, start: %llu, "
46 "length: %llu, wait: %d, type`: %d err code %d", (int)lock_type,
47 (int)operation, pid, start, length, wait, cmd, err);
52 * Attempt to set an fcntl lock.
53 * For now, this just goes away to the server. Later it may be more awesome.
55 int ceph_lock(struct file *file, int cmd, struct file_lock *fl)
61 u16 op = CEPH_MDS_OP_SETFILELOCK;
63 fl->fl_nspid = get_pid(task_tgid(current));
64 dout("ceph_lock, fl_pid:%d", fl->fl_pid);
66 /* set wait bit as appropriate, then make command as Ceph expects it*/
70 op = CEPH_MDS_OP_GETFILELOCK;
72 if (F_RDLCK == fl->fl_type)
73 lock_cmd = CEPH_LOCK_SHARED;
74 else if (F_WRLCK == fl->fl_type)
75 lock_cmd = CEPH_LOCK_EXCL;
77 lock_cmd = CEPH_LOCK_UNLOCK;
79 if (LLONG_MAX == fl->fl_end)
82 length = fl->fl_end - fl->fl_start + 1;
84 err = ceph_lock_message(CEPH_LOCK_FCNTL, op, file,
86 (u64)(unsigned long)fl->fl_nspid,
87 lock_cmd, fl->fl_start,
90 dout("mds locked, locking locally");
91 err = posix_lock_file(file, fl, NULL);
92 if (err && (CEPH_MDS_OP_SETFILELOCK == op)) {
93 /* undo! This should only happen if the kernel detects
95 ceph_lock_message(CEPH_LOCK_FCNTL, op, file,
97 (u64)(unsigned long)fl->fl_nspid,
98 CEPH_LOCK_UNLOCK, fl->fl_start,
100 dout("got %d on posix_lock_file, undid lock", err);
103 dout("mds returned error code %d", err);
108 int ceph_flock(struct file *file, int cmd, struct file_lock *fl)
115 fl->fl_nspid = get_pid(task_tgid(current));
116 dout("ceph_flock, fl_pid:%d", fl->fl_pid);
118 /* set wait bit, then clear it out of cmd*/
121 cmd = cmd & (LOCK_SH | LOCK_EX | LOCK_UN);
122 /* set command sequence that Ceph wants to see:
123 shared lock, exclusive lock, or unlock */
125 lock_cmd = CEPH_LOCK_SHARED;
126 else if (LOCK_EX == cmd)
127 lock_cmd = CEPH_LOCK_EXCL;
129 lock_cmd = CEPH_LOCK_UNLOCK;
130 /* mds requires start and length rather than start and end */
131 if (LLONG_MAX == fl->fl_end)
134 length = fl->fl_end - fl->fl_start + 1;
136 err = ceph_lock_message(CEPH_LOCK_FLOCK, CEPH_MDS_OP_SETFILELOCK,
137 file, (u64)fl->fl_pid,
138 (u64)(unsigned long)fl->fl_nspid,
139 lock_cmd, fl->fl_start,
142 err = flock_lock_file_wait(file, fl);
144 ceph_lock_message(CEPH_LOCK_FLOCK,
145 CEPH_MDS_OP_SETFILELOCK,
146 file, (u64)fl->fl_pid,
147 (u64)(unsigned long)fl->fl_nspid,
148 CEPH_LOCK_UNLOCK, fl->fl_start,
150 dout("got %d on flock_lock_file_wait, undid lock", err);
153 dout("mds error code %d", err);
159 * Must be called with BKL already held. Fills in the passed
160 * counter variables, so you can prepare pagelist metadata before calling
163 void ceph_count_locks(struct inode *inode, int *fcntl_count, int *flock_count)
165 struct file_lock *lock;
170 for (lock = inode->i_flock; lock != NULL; lock = lock->fl_next) {
171 if (lock->fl_flags & FL_POSIX)
173 else if (lock->fl_flags & FL_FLOCK)
176 dout("counted %d flock locks and %d fcntl locks",
177 *flock_count, *fcntl_count);
181 * Encode the flock and fcntl locks for the given inode into the pagelist.
182 * Format is: #fcntl locks, sequential fcntl locks, #flock locks,
183 * sequential flock locks.
184 * Must be called with BLK already held, and the lock numbers should have
185 * been gathered under the same lock holding window.
187 int ceph_encode_locks(struct inode *inode, struct ceph_pagelist *pagelist,
188 int num_fcntl_locks, int num_flock_locks)
190 struct file_lock *lock;
191 struct ceph_filelock cephlock;
194 dout("encoding %d flock and %d fcntl locks", num_flock_locks,
196 err = ceph_pagelist_append(pagelist, &num_fcntl_locks, sizeof(u32));
199 for (lock = inode->i_flock; lock != NULL; lock = lock->fl_next) {
200 if (lock->fl_flags & FL_POSIX) {
201 err = lock_to_ceph_filelock(lock, &cephlock);
204 err = ceph_pagelist_append(pagelist, &cephlock,
205 sizeof(struct ceph_filelock));
211 err = ceph_pagelist_append(pagelist, &num_flock_locks, sizeof(u32));
214 for (lock = inode->i_flock; lock != NULL; lock = lock->fl_next) {
215 if (lock->fl_flags & FL_FLOCK) {
216 err = lock_to_ceph_filelock(lock, &cephlock);
219 err = ceph_pagelist_append(pagelist, &cephlock,
220 sizeof(struct ceph_filelock));
230 * Given a pointer to a lock, convert it to a ceph filelock
232 int lock_to_ceph_filelock(struct file_lock *lock,
233 struct ceph_filelock *cephlock)
237 cephlock->start = cpu_to_le64(lock->fl_start);
238 cephlock->length = cpu_to_le64(lock->fl_end - lock->fl_start + 1);
239 cephlock->client = cpu_to_le64(0);
240 cephlock->pid = cpu_to_le64(lock->fl_pid);
241 cephlock->pid_namespace =
242 cpu_to_le64((u64)(unsigned long)lock->fl_nspid);
244 switch (lock->fl_type) {
246 cephlock->type = CEPH_LOCK_SHARED;
249 cephlock->type = CEPH_LOCK_EXCL;
252 cephlock->type = CEPH_LOCK_UNLOCK;
255 dout("Have unknown lock type %d", lock->fl_type);