blob: 316d550b96034f62ce092a55f35b7f73e31c5a0c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Greg Farnum40819f62010-08-02 15:34:23 -07003
4#include <linux/file.h>
5#include <linux/namei.h>
Yan, Zhengeb13e832014-03-09 23:16:40 +08006#include <linux/random.h>
Greg Farnum40819f62010-08-02 15:34:23 -07007
8#include "super.h"
9#include "mds_client.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include <linux/ceph/pagelist.h>
Greg Farnum40819f62010-08-02 15:34:23 -070011
Yan, Zhengeb13e832014-03-09 23:16:40 +080012static u64 lock_secret;
Yan, Zheng9280be22014-10-14 10:33:35 +080013static int ceph_lock_wait_for_completion(struct ceph_mds_client *mdsc,
14 struct ceph_mds_request *req);
Yan, Zhengeb13e832014-03-09 23:16:40 +080015
16static inline u64 secure_addr(void *addr)
17{
18 u64 v = lock_secret ^ (u64)(unsigned long)addr;
19 /*
20 * Set the most significant bit, so that MDS knows the 'owner'
21 * is sufficient to identify the owner of lock. (old code uses
22 * both 'owner' and 'pid')
23 */
24 v |= (1ULL << 63);
25 return v;
26}
27
28void __init ceph_flock_init(void)
29{
30 get_random_bytes(&lock_secret, sizeof(lock_secret));
31}
32
Yan, Zheng89aa5932017-09-08 15:23:18 +080033static void ceph_fl_copy_lock(struct file_lock *dst, struct file_lock *src)
34{
35 struct inode *inode = file_inode(src->fl_file);
36 atomic_inc(&ceph_inode(inode)->i_filelock_ref);
37}
38
39static void ceph_fl_release_lock(struct file_lock *fl)
40{
41 struct inode *inode = file_inode(fl->fl_file);
42 atomic_dec(&ceph_inode(inode)->i_filelock_ref);
43}
44
45static const struct file_lock_operations ceph_fl_lock_ops = {
46 .fl_copy_lock = ceph_fl_copy_lock,
47 .fl_release_private = ceph_fl_release_lock,
48};
49
Greg Farnum40819f62010-08-02 15:34:23 -070050/**
51 * Implement fcntl and flock locking functions.
52 */
Yan, Zheng89aa5932017-09-08 15:23:18 +080053static int ceph_lock_message(u8 lock_type, u16 operation, struct inode *inode,
Herb Shiu637ae8d2010-11-23 13:42:23 -080054 int cmd, u8 wait, struct file_lock *fl)
Greg Farnum40819f62010-08-02 15:34:23 -070055{
Yan, Zhengeb13e832014-03-09 23:16:40 +080056 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Greg Farnum40819f62010-08-02 15:34:23 -070057 struct ceph_mds_request *req;
58 int err;
Herb Shiu637ae8d2010-11-23 13:42:23 -080059 u64 length = 0;
Yan, Zhengeb13e832014-03-09 23:16:40 +080060 u64 owner;
Greg Farnum40819f62010-08-02 15:34:23 -070061
Yan, Zheng89aa5932017-09-08 15:23:18 +080062 if (operation == CEPH_MDS_OP_SETFILELOCK) {
63 /*
64 * increasing i_filelock_ref closes race window between
65 * handling request reply and adding file_lock struct to
66 * inode. Otherwise, auth caps may get trimmed in the
67 * window. Caller function will decrease the counter.
68 */
69 fl->fl_ops = &ceph_fl_lock_ops;
70 atomic_inc(&ceph_inode(inode)->i_filelock_ref);
71 }
72
Yan, Zheng9280be22014-10-14 10:33:35 +080073 if (operation != CEPH_MDS_OP_SETFILELOCK || cmd == CEPH_LOCK_UNLOCK)
74 wait = 0;
75
Greg Farnum40819f62010-08-02 15:34:23 -070076 req = ceph_mdsc_create_request(mdsc, operation, USE_AUTH_MDS);
77 if (IS_ERR(req))
78 return PTR_ERR(req);
Sage Weil70b666c2011-05-27 09:24:26 -070079 req->r_inode = inode;
80 ihold(inode);
Yan, Zheng3bd58142014-04-27 09:17:45 +080081 req->r_num_caps = 1;
Greg Farnum40819f62010-08-02 15:34:23 -070082
Herb Shiu637ae8d2010-11-23 13:42:23 -080083 /* mds requires start and length rather than start and end */
84 if (LLONG_MAX == fl->fl_end)
85 length = 0;
86 else
87 length = fl->fl_end - fl->fl_start + 1;
88
Jeff Layton130d1f92014-05-09 14:13:04 -040089 owner = secure_addr(fl->fl_owner);
Yan, Zhengeb13e832014-03-09 23:16:40 +080090
91 dout("ceph_lock_message: rule: %d, op: %d, owner: %llx, pid: %llu, "
92 "start: %llu, length: %llu, wait: %d, type: %d", (int)lock_type,
93 (int)operation, owner, (u64)fl->fl_pid, fl->fl_start, length,
94 wait, fl->fl_type);
Herb Shiu637ae8d2010-11-23 13:42:23 -080095
Greg Farnum40819f62010-08-02 15:34:23 -070096 req->r_args.filelock_change.rule = lock_type;
97 req->r_args.filelock_change.type = cmd;
Yan, Zhengeb13e832014-03-09 23:16:40 +080098 req->r_args.filelock_change.owner = cpu_to_le64(owner);
Herb Shiu637ae8d2010-11-23 13:42:23 -080099 req->r_args.filelock_change.pid = cpu_to_le64((u64)fl->fl_pid);
Herb Shiu637ae8d2010-11-23 13:42:23 -0800100 req->r_args.filelock_change.start = cpu_to_le64(fl->fl_start);
Greg Farnum40819f62010-08-02 15:34:23 -0700101 req->r_args.filelock_change.length = cpu_to_le64(length);
102 req->r_args.filelock_change.wait = wait;
103
Yan, Zheng9280be22014-10-14 10:33:35 +0800104 if (wait)
105 req->r_wait_for_completion = ceph_lock_wait_for_completion;
106
Greg Farnum40819f62010-08-02 15:34:23 -0700107 err = ceph_mdsc_do_request(mdsc, inode, req);
Herb Shiua5b10622010-11-23 13:58:29 -0800108
Yan, Zhengeb13e832014-03-09 23:16:40 +0800109 if (operation == CEPH_MDS_OP_GETFILELOCK) {
Benjamin Coddington9d5b86a2017-07-16 10:28:22 -0400110 fl->fl_pid = -le64_to_cpu(req->r_reply_info.filelock_reply->pid);
Herb Shiua5b10622010-11-23 13:58:29 -0800111 if (CEPH_LOCK_SHARED == req->r_reply_info.filelock_reply->type)
112 fl->fl_type = F_RDLCK;
113 else if (CEPH_LOCK_EXCL == req->r_reply_info.filelock_reply->type)
114 fl->fl_type = F_WRLCK;
115 else
116 fl->fl_type = F_UNLCK;
117
118 fl->fl_start = le64_to_cpu(req->r_reply_info.filelock_reply->start);
119 length = le64_to_cpu(req->r_reply_info.filelock_reply->start) +
120 le64_to_cpu(req->r_reply_info.filelock_reply->length);
121 if (length >= 1)
122 fl->fl_end = length -1;
123 else
124 fl->fl_end = 0;
125
126 }
Greg Farnum40819f62010-08-02 15:34:23 -0700127 ceph_mdsc_put_request(req);
128 dout("ceph_lock_message: rule: %d, op: %d, pid: %llu, start: %llu, "
Sage Weil0c1f91f2011-05-25 14:56:12 -0700129 "length: %llu, wait: %d, type: %d, err code %d", (int)lock_type,
Herb Shiu637ae8d2010-11-23 13:42:23 -0800130 (int)operation, (u64)fl->fl_pid, fl->fl_start,
131 length, wait, fl->fl_type, err);
Greg Farnum40819f62010-08-02 15:34:23 -0700132 return err;
133}
134
Yan, Zheng9280be22014-10-14 10:33:35 +0800135static int ceph_lock_wait_for_completion(struct ceph_mds_client *mdsc,
136 struct ceph_mds_request *req)
137{
138 struct ceph_mds_request *intr_req;
139 struct inode *inode = req->r_inode;
140 int err, lock_type;
141
142 BUG_ON(req->r_op != CEPH_MDS_OP_SETFILELOCK);
143 if (req->r_args.filelock_change.rule == CEPH_LOCK_FCNTL)
144 lock_type = CEPH_LOCK_FCNTL_INTR;
145 else if (req->r_args.filelock_change.rule == CEPH_LOCK_FLOCK)
146 lock_type = CEPH_LOCK_FLOCK_INTR;
147 else
148 BUG_ON(1);
149 BUG_ON(req->r_args.filelock_change.type == CEPH_LOCK_UNLOCK);
150
151 err = wait_for_completion_interruptible(&req->r_completion);
152 if (!err)
153 return 0;
154
155 dout("ceph_lock_wait_for_completion: request %llu was interrupted\n",
156 req->r_tid);
157
Yan, Zheng92e57e62017-06-05 11:07:28 +0800158 mutex_lock(&mdsc->mutex);
159 if (test_bit(CEPH_MDS_R_GOT_RESULT, &req->r_req_flags)) {
160 err = 0;
161 } else {
162 /*
163 * ensure we aren't running concurrently with
164 * ceph_fill_trace or ceph_readdir_prepopulate, which
165 * rely on locks (dir mutex) held by our caller.
166 */
167 mutex_lock(&req->r_fill_mutex);
168 req->r_err = err;
169 set_bit(CEPH_MDS_R_ABORTED, &req->r_req_flags);
170 mutex_unlock(&req->r_fill_mutex);
171
172 if (!req->r_session) {
173 // haven't sent the request
174 err = 0;
175 }
176 }
177 mutex_unlock(&mdsc->mutex);
178 if (!err)
179 return 0;
180
Yan, Zheng9280be22014-10-14 10:33:35 +0800181 intr_req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SETFILELOCK,
182 USE_AUTH_MDS);
183 if (IS_ERR(intr_req))
184 return PTR_ERR(intr_req);
185
186 intr_req->r_inode = inode;
187 ihold(inode);
188 intr_req->r_num_caps = 1;
189
190 intr_req->r_args.filelock_change = req->r_args.filelock_change;
191 intr_req->r_args.filelock_change.rule = lock_type;
192 intr_req->r_args.filelock_change.type = CEPH_LOCK_UNLOCK;
193
194 err = ceph_mdsc_do_request(mdsc, inode, intr_req);
195 ceph_mdsc_put_request(intr_req);
196
197 if (err && err != -ERESTARTSYS)
198 return err;
199
Yan, Zheng92e57e62017-06-05 11:07:28 +0800200 wait_for_completion_killable(&req->r_safe_completion);
Yan, Zheng9280be22014-10-14 10:33:35 +0800201 return 0;
202}
203
Greg Farnum40819f62010-08-02 15:34:23 -0700204/**
205 * Attempt to set an fcntl lock.
206 * For now, this just goes away to the server. Later it may be more awesome.
207 */
208int ceph_lock(struct file *file, int cmd, struct file_lock *fl)
209{
Yan, Zheng89aa5932017-09-08 15:23:18 +0800210 struct inode *inode = file_inode(file);
Greg Farnum40819f62010-08-02 15:34:23 -0700211 int err;
Greg Farnum40819f62010-08-02 15:34:23 -0700212 u16 op = CEPH_MDS_OP_SETFILELOCK;
Yan, Zheng89aa5932017-09-08 15:23:18 +0800213 u8 lock_cmd;
214 u8 wait = 0;
Greg Farnum40819f62010-08-02 15:34:23 -0700215
Yan, Zhengeb70c0c2014-03-04 15:50:06 +0800216 if (!(fl->fl_flags & FL_POSIX))
217 return -ENOLCK;
218 /* No mandatory locks */
219 if (__mandatory_lock(file->f_mapping->host) && fl->fl_type != F_UNLCK)
220 return -ENOLCK;
221
Yan, Zhengeb13e832014-03-09 23:16:40 +0800222 dout("ceph_lock, fl_owner: %p", fl->fl_owner);
Greg Farnum40819f62010-08-02 15:34:23 -0700223
224 /* set wait bit as appropriate, then make command as Ceph expects it*/
Yan, Zheng0e8e95d2014-03-04 15:42:24 +0800225 if (IS_GETLK(cmd))
Greg Farnum40819f62010-08-02 15:34:23 -0700226 op = CEPH_MDS_OP_GETFILELOCK;
Yan, Zheng0e8e95d2014-03-04 15:42:24 +0800227 else if (IS_SETLKW(cmd))
228 wait = 1;
Greg Farnum40819f62010-08-02 15:34:23 -0700229
Yan, Zheng89aa5932017-09-08 15:23:18 +0800230 if (op == CEPH_MDS_OP_SETFILELOCK) {
231 /*
232 * increasing i_filelock_ref closes race window between
233 * handling request reply and adding file_lock struct to
234 * inode. Otherwise, i_auth_cap may get trimmed in the
235 * window. Caller function will decrease the counter.
236 */
237 fl->fl_ops = &ceph_fl_lock_ops;
238 atomic_inc(&ceph_inode(inode)->i_filelock_ref);
239 }
240
Greg Farnum40819f62010-08-02 15:34:23 -0700241 if (F_RDLCK == fl->fl_type)
242 lock_cmd = CEPH_LOCK_SHARED;
243 else if (F_WRLCK == fl->fl_type)
244 lock_cmd = CEPH_LOCK_EXCL;
245 else
246 lock_cmd = CEPH_LOCK_UNLOCK;
247
Yan, Zheng89aa5932017-09-08 15:23:18 +0800248 err = ceph_lock_message(CEPH_LOCK_FCNTL, op, inode, lock_cmd, wait, fl);
Greg Farnum40819f62010-08-02 15:34:23 -0700249 if (!err) {
Yan, Zhengeb13e832014-03-09 23:16:40 +0800250 if (op != CEPH_MDS_OP_GETFILELOCK) {
Herb Shiua5b10622010-11-23 13:58:29 -0800251 dout("mds locked, locking locally");
252 err = posix_lock_file(file, fl, NULL);
253 if (err && (CEPH_MDS_OP_SETFILELOCK == op)) {
Sage Weil0c1f91f2011-05-25 14:56:12 -0700254 /* undo! This should only happen if
255 * the kernel detects local
256 * deadlock. */
Yan, Zheng89aa5932017-09-08 15:23:18 +0800257 ceph_lock_message(CEPH_LOCK_FCNTL, op, inode,
Herb Shiua5b10622010-11-23 13:58:29 -0800258 CEPH_LOCK_UNLOCK, 0, fl);
Sage Weil0c1f91f2011-05-25 14:56:12 -0700259 dout("got %d on posix_lock_file, undid lock",
260 err);
Herb Shiua5b10622010-11-23 13:58:29 -0800261 }
Greg Farnum40819f62010-08-02 15:34:23 -0700262 }
Greg Farnum40819f62010-08-02 15:34:23 -0700263 }
264 return err;
265}
266
267int ceph_flock(struct file *file, int cmd, struct file_lock *fl)
268{
Yan, Zheng89aa5932017-09-08 15:23:18 +0800269 struct inode *inode = file_inode(file);
Greg Farnum40819f62010-08-02 15:34:23 -0700270 int err;
Yan, Zheng89aa5932017-09-08 15:23:18 +0800271 u8 lock_cmd;
Yan, Zheng0e8e95d2014-03-04 15:42:24 +0800272 u8 wait = 0;
Greg Farnum40819f62010-08-02 15:34:23 -0700273
Yan, Zhengeb70c0c2014-03-04 15:50:06 +0800274 if (!(fl->fl_flags & FL_FLOCK))
275 return -ENOLCK;
276 /* No mandatory locks */
Yan, Zhengdb4a63a2016-09-13 10:15:36 +0800277 if (fl->fl_type & LOCK_MAND)
278 return -EOPNOTSUPP;
Yan, Zhengeb70c0c2014-03-04 15:50:06 +0800279
Yan, Zhengeb13e832014-03-09 23:16:40 +0800280 dout("ceph_flock, fl_file: %p", fl->fl_file);
Greg Farnum40819f62010-08-02 15:34:23 -0700281
Yan, Zheng89aa5932017-09-08 15:23:18 +0800282 /* see comment in ceph_lock */
283 fl->fl_ops = &ceph_fl_lock_ops;
284 atomic_inc(&ceph_inode(inode)->i_filelock_ref);
285
Yan, Zheng0e8e95d2014-03-04 15:42:24 +0800286 if (IS_SETLKW(cmd))
287 wait = 1;
288
289 if (F_RDLCK == fl->fl_type)
Greg Farnum40819f62010-08-02 15:34:23 -0700290 lock_cmd = CEPH_LOCK_SHARED;
Yan, Zheng0e8e95d2014-03-04 15:42:24 +0800291 else if (F_WRLCK == fl->fl_type)
Greg Farnum40819f62010-08-02 15:34:23 -0700292 lock_cmd = CEPH_LOCK_EXCL;
293 else
294 lock_cmd = CEPH_LOCK_UNLOCK;
Greg Farnum40819f62010-08-02 15:34:23 -0700295
296 err = ceph_lock_message(CEPH_LOCK_FLOCK, CEPH_MDS_OP_SETFILELOCK,
Yan, Zheng89aa5932017-09-08 15:23:18 +0800297 inode, lock_cmd, wait, fl);
Greg Farnum40819f62010-08-02 15:34:23 -0700298 if (!err) {
Benjamin Coddington4f656362015-10-22 13:38:14 -0400299 err = locks_lock_file_wait(file, fl);
Greg Farnum40819f62010-08-02 15:34:23 -0700300 if (err) {
301 ceph_lock_message(CEPH_LOCK_FLOCK,
302 CEPH_MDS_OP_SETFILELOCK,
Yan, Zheng89aa5932017-09-08 15:23:18 +0800303 inode, CEPH_LOCK_UNLOCK, 0, fl);
Benjamin Coddington4f656362015-10-22 13:38:14 -0400304 dout("got %d on locks_lock_file_wait, undid lock", err);
Greg Farnum40819f62010-08-02 15:34:23 -0700305 }
Greg Farnum40819f62010-08-02 15:34:23 -0700306 }
307 return err;
308}
309
Jeff Layton5263e312015-01-16 15:05:55 -0500310/*
311 * Fills in the passed counter variables, so you can prepare pagelist metadata
312 * before calling ceph_encode_locks.
Greg Farnum40819f62010-08-02 15:34:23 -0700313 */
314void ceph_count_locks(struct inode *inode, int *fcntl_count, int *flock_count)
315{
Jeff Laytone084c1b2015-02-16 14:32:03 -0500316 struct file_lock *lock;
Jeff Layton5263e312015-01-16 15:05:55 -0500317 struct file_lock_context *ctx;
Greg Farnum40819f62010-08-02 15:34:23 -0700318
319 *fcntl_count = 0;
320 *flock_count = 0;
321
Jeff Layton5263e312015-01-16 15:05:55 -0500322 ctx = inode->i_flctx;
323 if (ctx) {
Jeff Laytone084c1b2015-02-16 14:32:03 -0500324 spin_lock(&ctx->flc_lock);
325 list_for_each_entry(lock, &ctx->flc_posix, fl_list)
326 ++(*fcntl_count);
327 list_for_each_entry(lock, &ctx->flc_flock, fl_list)
328 ++(*flock_count);
329 spin_unlock(&ctx->flc_lock);
Greg Farnum40819f62010-08-02 15:34:23 -0700330 }
331 dout("counted %d flock locks and %d fcntl locks",
332 *flock_count, *fcntl_count);
333}
334
335/**
Jim Schutt39be95e2013-05-15 13:03:35 -0500336 * Encode the flock and fcntl locks for the given inode into the ceph_filelock
Jeff Layton1c8c6012013-06-21 08:58:15 -0400337 * array. Must be called with inode->i_lock already held.
Jim Schutt39be95e2013-05-15 13:03:35 -0500338 * If we encounter more of a specific lock type than expected, return -ENOSPC.
Greg Farnum40819f62010-08-02 15:34:23 -0700339 */
Jim Schutt39be95e2013-05-15 13:03:35 -0500340int ceph_encode_locks_to_buffer(struct inode *inode,
341 struct ceph_filelock *flocks,
342 int num_fcntl_locks, int num_flock_locks)
Greg Farnum40819f62010-08-02 15:34:23 -0700343{
344 struct file_lock *lock;
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500345 struct file_lock_context *ctx = inode->i_flctx;
Greg Farnum40819f62010-08-02 15:34:23 -0700346 int err = 0;
Greg Farnumfca44512010-09-17 10:24:02 -0700347 int seen_fcntl = 0;
348 int seen_flock = 0;
Jim Schutt39be95e2013-05-15 13:03:35 -0500349 int l = 0;
Greg Farnum40819f62010-08-02 15:34:23 -0700350
351 dout("encoding %d flock and %d fcntl locks", num_flock_locks,
352 num_fcntl_locks);
Jim Schutt39be95e2013-05-15 13:03:35 -0500353
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500354 if (!ctx)
355 return 0;
Jeff Layton5263e312015-01-16 15:05:55 -0500356
Jeff Layton6109c852015-01-16 15:05:57 -0500357 spin_lock(&ctx->flc_lock);
Yan, Zhengf6762cb2015-07-07 16:18:46 +0800358 list_for_each_entry(lock, &ctx->flc_posix, fl_list) {
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500359 ++seen_fcntl;
360 if (seen_fcntl > num_fcntl_locks) {
361 err = -ENOSPC;
362 goto fail;
Greg Farnum40819f62010-08-02 15:34:23 -0700363 }
Jeff Laytonbd61e0a2015-01-16 15:05:55 -0500364 err = lock_to_ceph_filelock(lock, &flocks[l]);
365 if (err)
366 goto fail;
367 ++l;
368 }
369 list_for_each_entry(lock, &ctx->flc_flock, fl_list) {
370 ++seen_flock;
371 if (seen_flock > num_flock_locks) {
372 err = -ENOSPC;
373 goto fail;
374 }
375 err = lock_to_ceph_filelock(lock, &flocks[l]);
376 if (err)
377 goto fail;
378 ++l;
Greg Farnum40819f62010-08-02 15:34:23 -0700379 }
380fail:
Jeff Layton6109c852015-01-16 15:05:57 -0500381 spin_unlock(&ctx->flc_lock);
Greg Farnum40819f62010-08-02 15:34:23 -0700382 return err;
383}
384
Jim Schutt39be95e2013-05-15 13:03:35 -0500385/**
386 * Copy the encoded flock and fcntl locks into the pagelist.
387 * Format is: #fcntl locks, sequential fcntl locks, #flock locks,
388 * sequential flock locks.
389 * Returns zero on success.
390 */
391int ceph_locks_to_pagelist(struct ceph_filelock *flocks,
392 struct ceph_pagelist *pagelist,
393 int num_fcntl_locks, int num_flock_locks)
394{
395 int err = 0;
396 __le32 nlocks;
397
398 nlocks = cpu_to_le32(num_fcntl_locks);
399 err = ceph_pagelist_append(pagelist, &nlocks, sizeof(nlocks));
400 if (err)
401 goto out_fail;
402
403 err = ceph_pagelist_append(pagelist, flocks,
404 num_fcntl_locks * sizeof(*flocks));
405 if (err)
406 goto out_fail;
407
408 nlocks = cpu_to_le32(num_flock_locks);
409 err = ceph_pagelist_append(pagelist, &nlocks, sizeof(nlocks));
410 if (err)
411 goto out_fail;
412
413 err = ceph_pagelist_append(pagelist,
414 &flocks[num_fcntl_locks],
415 num_flock_locks * sizeof(*flocks));
416out_fail:
417 return err;
418}
419
Greg Farnum40819f62010-08-02 15:34:23 -0700420/*
421 * Given a pointer to a lock, convert it to a ceph filelock
422 */
423int lock_to_ceph_filelock(struct file_lock *lock,
424 struct ceph_filelock *cephlock)
425{
426 int err = 0;
Greg Farnum40819f62010-08-02 15:34:23 -0700427 cephlock->start = cpu_to_le64(lock->fl_start);
428 cephlock->length = cpu_to_le64(lock->fl_end - lock->fl_start + 1);
429 cephlock->client = cpu_to_le64(0);
Yan, Zhengeb13e832014-03-09 23:16:40 +0800430 cephlock->pid = cpu_to_le64((u64)lock->fl_pid);
Jeff Layton130d1f92014-05-09 14:13:04 -0400431 cephlock->owner = cpu_to_le64(secure_addr(lock->fl_owner));
Greg Farnum40819f62010-08-02 15:34:23 -0700432
433 switch (lock->fl_type) {
434 case F_RDLCK:
435 cephlock->type = CEPH_LOCK_SHARED;
436 break;
437 case F_WRLCK:
438 cephlock->type = CEPH_LOCK_EXCL;
439 break;
440 case F_UNLCK:
441 cephlock->type = CEPH_LOCK_UNLOCK;
442 break;
443 default:
444 dout("Have unknown lock type %d", lock->fl_type);
445 err = -EINVAL;
446 }
447
448 return err;
449}