Whamcloud - gitweb
LU-169 lov: add lsm refcounting
[fs/lustre-release.git] / lustre / liblustre / rw.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
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
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/liblustre/rw.c
37  *
38  * Lustre Light block IO
39  */
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include <stdlib.h>
44 #include <string.h>
45 #include <assert.h>
46 #include <time.h>
47 #include <sys/types.h>
48 #include <sys/stat.h>
49 #include <sys/queue.h>
50 #include <fcntl.h>
51 #include <sys/uio.h>
52
53 #include "llite_lib.h"
54
55 typedef ssize_t llu_file_piov_t(const struct iovec *iovec, int iovlen,
56                                 _SYSIO_OFF_T pos, ssize_t len,
57                                 void *private);
58
59 size_t llap_cookie_size;
60
61 static int llu_lock_to_stripe_offset(struct obd_export *exp,
62                                      struct lov_stripe_md *lsm,
63                                      struct ldlm_lock *lock)
64 {
65         struct {
66                 char name[16];
67                 struct ldlm_lock *lock;
68         } key = { .name = KEY_LOCK_TO_STRIPE, .lock = lock };
69         __u32 stripe, vallen = sizeof(stripe);
70         int rc;
71         ENTRY;
72
73         if (lsm == NULL || lsm->lsm_stripe_count == 1)
74                 RETURN(0);
75
76         /* get our offset in the lov */
77         rc = obd_get_info(NULL, exp, sizeof(key), &key, &vallen, &stripe, lsm);
78         if (rc != 0) {
79                 CERROR("obd_get_info: rc = %d\n", rc);
80                 LBUG();
81         }
82         LASSERT(stripe < lsm->lsm_stripe_count);
83         RETURN(stripe);
84 }
85
86 int llu_extent_lock_cancel_cb(struct ldlm_lock *lock,
87                               struct ldlm_lock_desc *new, void *data,
88                               int flag)
89 {
90         struct lustre_handle lockh = { 0 };
91         int rc;
92         ENTRY;
93
94         if ((unsigned long)data > 0 && (unsigned long)data < 0x1000) {
95                 LDLM_ERROR(lock, "cancelling lock with bad data %p", data);
96                 LBUG();
97         }
98
99         switch (flag) {
100         case LDLM_CB_BLOCKING:
101                 ldlm_lock2handle(lock, &lockh);
102                 rc = ldlm_cli_cancel(&lockh);
103                 if (rc != ELDLM_OK)
104                         CERROR("ldlm_cli_cancel failed: %d\n", rc);
105                 break;
106         case LDLM_CB_CANCELING: {
107                 struct inode *inode;
108                 struct llu_inode_info *lli;
109                 struct lov_stripe_md *lsm;
110                 __u32 stripe;
111                 __u64 kms;
112
113                 /* This lock wasn't granted, don't try to evict pages */
114                 if (lock->l_req_mode != lock->l_granted_mode)
115                         RETURN(0);
116
117                 inode = llu_inode_from_lock(lock);
118                 if (!inode)
119                         RETURN(0);
120                 lli= llu_i2info(inode);
121                 if (!lli)
122                         goto iput;
123                 if (!lli->lli_has_smd)
124                         goto iput;
125
126                 lsm = ccc_inode_lsm_get(inode);
127                 if (lsm == NULL)
128                         goto iput;
129
130                 stripe = llu_lock_to_stripe_offset(llu_i2obdexp(inode),
131                                                    lsm, lock);
132                 lock_res_and_lock(lock);
133                 kms = ldlm_extent_shift_kms(lock,
134                                             lsm->lsm_oinfo[stripe]->loi_kms);
135                 unlock_res_and_lock(lock);
136                 if (lsm->lsm_oinfo[stripe]->loi_kms != kms)
137                         LDLM_DEBUG(lock, "updating kms from "LPU64" to "LPU64,
138                                    lsm->lsm_oinfo[stripe]->loi_kms, kms);
139                 loi_kms_set(lsm->lsm_oinfo[stripe], kms);
140                 ccc_inode_lsm_put(inode, lsm);
141 iput:
142                 I_RELE(inode);
143                 break;
144         }
145         default:
146                 LBUG();
147         }
148
149         RETURN(0);
150 }
151
152 static int llu_glimpse_callback(struct ldlm_lock *lock, void *reqp)
153 {
154         struct ptlrpc_request *req = reqp;
155         struct inode *inode = llu_inode_from_lock(lock);
156         struct llu_inode_info *lli;
157         struct ost_lvb *lvb;
158         struct lov_stripe_md *lsm;
159         int rc, stripe = 0;
160         ENTRY;
161
162         if (inode == NULL)
163                 GOTO(out, rc = -ELDLM_NO_LOCK_DATA);
164         lli = llu_i2info(inode);
165         if (lli == NULL)
166                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
167
168         req_capsule_extend(&req->rq_pill, &RQF_LDLM_GL_CALLBACK);
169         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
170                              sizeof(*lvb));
171         rc = req_capsule_server_pack(&req->rq_pill);
172         if (rc) {
173                 CERROR("failed pack reply: %d\n", rc);
174                 GOTO(iput, rc);
175         }
176
177         lsm = ccc_inode_lsm_get(inode);
178         if (lsm == NULL)
179                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
180
181         /* First, find out which stripe index this lock corresponds to. */
182         stripe = llu_lock_to_stripe_offset(llu_i2obdexp(inode), lsm, lock);
183
184         lvb = req_capsule_server_get(&req->rq_pill, &RMF_DLM_LVB);
185         lvb->lvb_size = lsm->lsm_oinfo[stripe]->loi_kms;
186         ccc_inode_lsm_put(inode, lsm);
187
188         LDLM_DEBUG(lock, "i_size: "LPU64" -> stripe number %u -> kms "LPU64,
189                    (__u64)llu_i2stat(inode)->st_size, stripe,lvb->lvb_size);
190  iput:
191         I_RELE(inode);
192  out:
193         /* These errors are normal races, so we don't want to fill the console
194          * with messages by calling ptlrpc_error() */
195         if (rc == -ELDLM_NO_LOCK_DATA)
196                 lustre_pack_reply(req, 1, NULL, NULL);
197
198         req->rq_status = rc;
199         return rc;
200 }
201
202 int llu_merge_lvb(struct inode *inode)
203 {
204         struct llu_inode_info *lli = llu_i2info(inode);
205         struct llu_sb_info *sbi = llu_i2sbi(inode);
206         struct intnl_stat *st = llu_i2stat(inode);
207         struct ost_lvb lvb;
208         struct lov_stripe_md *lsm;
209         int rc;
210         ENTRY;
211
212         lsm = ccc_inode_lsm_get(inode);
213         if (lsm == NULL)
214                 RETURN(0);
215
216         lov_stripe_lock(lsm);
217         inode_init_lvb(inode, &lvb);
218         /* merge timestamps the most resently obtained from mds with
219            timestamps obtained from osts */
220         lvb.lvb_atime = lli->lli_lvb.lvb_atime;
221         lvb.lvb_mtime = lli->lli_lvb.lvb_mtime;
222         lvb.lvb_ctime = lli->lli_lvb.lvb_ctime;
223         rc = obd_merge_lvb(sbi->ll_dt_exp, lsm, &lvb, 0);
224         st->st_size = lvb.lvb_size;
225         st->st_blocks = lvb.lvb_blocks;
226         /* handle st_blocks overflow gracefully */
227         if (st->st_blocks < lvb.lvb_blocks)
228                 st->st_blocks = ~0UL;
229         st->st_mtime = lvb.lvb_mtime;
230         st->st_atime = lvb.lvb_atime;
231         st->st_ctime = lvb.lvb_ctime;
232         lov_stripe_unlock(lsm);
233         ccc_inode_lsm_put(inode, lsm);
234
235         RETURN(rc);
236 }
237
238 int llu_extent_lock(struct ll_file_data *fd, struct inode *inode,
239                     struct lov_stripe_md *lsm, int mode,
240                     ldlm_policy_data_t *policy, struct lustre_handle *lockh,
241                     int ast_flags)
242 {
243         struct llu_sb_info *sbi = llu_i2sbi(inode);
244         struct intnl_stat *st = llu_i2stat(inode);
245         struct ldlm_enqueue_info einfo = { 0 };
246         struct obd_info oinfo = { { { 0 } } };
247         struct ost_lvb lvb;
248         int rc;
249         ENTRY;
250
251         LASSERT(!lustre_handle_is_used(lockh));
252         CLASSERT(ELDLM_OK == 0);
253
254         /* XXX phil: can we do this?  won't it screw the file size up? */
255         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
256             (sbi->ll_flags & LL_SBI_NOLCK) || mode == LCK_NL)
257                 RETURN(0);
258
259         CDEBUG(D_DLMTRACE, "Locking inode "LPU64", start "LPU64" end "LPU64"\n",
260                (__u64)st->st_ino, policy->l_extent.start,
261                policy->l_extent.end);
262
263         einfo.ei_type = LDLM_EXTENT;
264         einfo.ei_mode = mode;
265         einfo.ei_cb_bl = llu_extent_lock_cancel_cb;
266         einfo.ei_cb_cp = ldlm_completion_ast;
267         einfo.ei_cb_gl = llu_glimpse_callback;
268         einfo.ei_cbdata = inode;
269
270         oinfo.oi_policy = *policy;
271         oinfo.oi_lockh = lockh;
272         oinfo.oi_md = lsm;
273         oinfo.oi_flags = ast_flags;
274
275         rc = obd_enqueue(sbi->ll_dt_exp, &oinfo, &einfo, NULL);
276         *policy = oinfo.oi_policy;
277         if (rc > 0)
278                 rc = -EIO;
279
280         inode_init_lvb(inode, &lvb);
281         obd_merge_lvb(sbi->ll_dt_exp, lsm, &lvb, 1);
282         if (policy->l_extent.start == 0 &&
283             policy->l_extent.end == OBD_OBJECT_EOF)
284                 st->st_size = lvb.lvb_size;
285
286         if (rc == 0) {
287                 st->st_mtime = lvb.lvb_mtime;
288                 st->st_atime = lvb.lvb_atime;
289                 st->st_ctime = lvb.lvb_ctime;
290         }
291
292         RETURN(rc);
293 }
294
295 int llu_extent_unlock(struct ll_file_data *fd, struct inode *inode,
296                 struct lov_stripe_md *lsm, int mode,
297                 struct lustre_handle *lockh)
298 {
299         struct llu_sb_info *sbi = llu_i2sbi(inode);
300         int rc;
301         ENTRY;
302
303         CLASSERT(ELDLM_OK == 0);
304
305         /* XXX phil: can we do this?  won't it screw the file size up? */
306         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
307             (sbi->ll_flags & LL_SBI_NOLCK) || mode == LCK_NL)
308                 RETURN(0);
309
310         rc = obd_cancel(sbi->ll_dt_exp, lsm, mode, lockh);
311
312         RETURN(rc);
313 }
314
315 static
316 ssize_t llu_file_prwv(const struct iovec *iovec, int iovlen,
317                         _SYSIO_OFF_T pos, ssize_t len,
318                         void *private)
319 {
320         struct llu_io_session *session = (struct llu_io_session *) private;
321         struct inode *inode = session->lis_inode;
322         struct llu_inode_info *lli = llu_i2info(inode);
323         int err;
324         struct lu_env *env;
325         struct cl_io  *io;
326         struct slp_io *sio;
327         int refcheck;
328         ENTRY;
329
330         /* in a large iov read/write we'll be repeatedly called.
331          * so give a chance to answer cancel ast here
332          */
333         liblustre_wait_event(0);
334
335         if (len == 0 || iovlen == 0)
336                 RETURN(0);
337
338         if (pos + len > lli->lli_maxbytes)
339                 RETURN(-ERANGE);
340
341         env = cl_env_get(&refcheck);
342         if (IS_ERR(env))
343                 RETURN(PTR_ERR(env));
344
345         /* Do NOT call "ccc_env_thread_io()" again to prevent reinitializing */
346         io = &ccc_env_info(env)->cti_io;
347         if (cl_io_rw_init(env, io, session->lis_cmd == OBD_BRW_WRITE?CIT_WRITE:
348                                                                       CIT_READ,
349                           pos, len) == 0) {
350                 struct ccc_io *cio;
351                 sio = slp_env_io(env);
352                 cio = ccc_env_io(env);
353                 /* XXX this is not right: cio->cui_iov can be modified. */
354                 cio->cui_iov = (struct iovec *)iovec;
355                 cio->cui_nrsegs = iovlen;
356                 cio->cui_tot_nrsegs = iovlen;
357                 sio->sio_session = session;
358                 err = cl_io_loop(env, io);
359         } else {
360                 /* XXX WTF? */
361                 LBUG();
362         }
363         cl_io_fini(env, io);
364         cl_env_put(env, &refcheck);
365
366         if (err < 0)
367                 RETURN(err);
368
369         RETURN(len);
370 }
371
372 static
373 struct llu_io_session *get_io_session(struct inode *ino, int ngroups, int cmd)
374 {
375         struct llu_io_session *session;
376
377         OBD_ALLOC_PTR(session);
378         if (!session)
379                 return NULL;
380
381         I_REF(ino);
382         session->lis_inode = ino;
383         session->lis_max_groups = ngroups;
384         session->lis_cmd = cmd;
385         return session;
386 }
387
388 static void put_io_session(struct llu_io_session *session)
389 {
390         I_RELE(session->lis_inode);
391         OBD_FREE_PTR(session);
392 }
393
394 static int llu_file_rwx(struct inode *ino,
395                         struct ioctx *ioctx,
396                         int read)
397 {
398         struct llu_io_session *session;
399         ssize_t cc;
400         int cmd = read ? OBD_BRW_READ : OBD_BRW_WRITE;
401         ENTRY;
402
403         LASSERT(ioctx->ioctx_xtvlen >= 0);
404         LASSERT(ioctx->ioctx_iovlen >= 0);
405
406         liblustre_wait_event(0);
407
408         if (!ioctx->ioctx_xtvlen)
409                 RETURN(0);
410
411         /* XXX consider other types later */
412         if (S_ISDIR(llu_i2stat(ino)->st_mode))
413                 RETURN(-EISDIR);
414         if (!S_ISREG(llu_i2stat(ino)->st_mode))
415                 RETURN(-EOPNOTSUPP);
416
417         session = get_io_session(ino, ioctx->ioctx_xtvlen * 2, cmd);
418         if (!session)
419                 RETURN(-ENOMEM);
420
421         cc = _sysio_enumerate_extents(ioctx->ioctx_xtv, ioctx->ioctx_xtvlen,
422                                       ioctx->ioctx_iov, ioctx->ioctx_iovlen,
423                                       llu_file_prwv, session);
424
425         if (cc >= 0) {
426                 LASSERT(!ioctx->ioctx_cc);
427                 ioctx->ioctx_private = session;
428                 cc = 0;
429         } else {
430                 put_io_session(session);
431         }
432
433         liblustre_wait_event(0);
434         RETURN(cc);
435 }
436
437 void llu_io_init(struct cl_io *io, struct inode *inode, int write)
438 {
439         struct llu_inode_info *lli = llu_i2info(inode);
440
441         io->u.ci_rw.crw_nonblock = lli->lli_open_flags & O_NONBLOCK;
442         if (write)
443                 io->u.ci_wr.wr_append = lli->lli_open_flags & O_APPEND;
444         io->ci_obj  = llu_i2info(inode)->lli_clob;
445
446         if ((lli->lli_open_flags & O_APPEND) && write)
447                 io->ci_lockreq = CILR_MANDATORY;
448         else
449                 io->ci_lockreq = CILR_NEVER;
450 }
451
452 int llu_iop_read(struct inode *ino,
453                  struct ioctx *ioctx)
454 {
455         struct intnl_stat *st = llu_i2stat(ino);
456         struct lu_env *env;
457         struct cl_io  *io;
458         int refcheck;
459         int ret;
460
461         /* BUG: 5972 */
462         st->st_atime = CFS_CURRENT_TIME;
463
464         env = cl_env_get(&refcheck);
465         if (IS_ERR(env))
466                 RETURN(PTR_ERR(env));
467
468         io = ccc_env_thread_io(env);
469         llu_io_init(io, ino, 0);
470
471         ret = llu_file_rwx(ino, ioctx, 1);
472
473         cl_env_put(env, &refcheck);
474         return ret;
475 }
476
477 int llu_iop_write(struct inode *ino,
478                   struct ioctx *ioctx)
479 {
480         struct intnl_stat *st = llu_i2stat(ino);
481         struct lu_env *env;
482         struct cl_io  *io;
483         int refcheck;
484         int ret;
485
486         st->st_mtime = st->st_ctime = CFS_CURRENT_TIME;
487
488         env = cl_env_get(&refcheck);
489         if (IS_ERR(env))
490                 RETURN(PTR_ERR(env));
491
492         io = ccc_env_thread_io(env);
493         llu_io_init(io, ino, 1);
494
495         ret = llu_file_rwx(ino, ioctx, 0);
496         cl_env_put(env, &refcheck);
497         return ret;
498 }
499
500 int llu_iop_iodone(struct ioctx *ioctx)
501 {
502         struct llu_io_session *session;
503         struct lu_env *env;
504         struct cl_io  *io;
505         int refcheck;
506         ENTRY;
507
508         liblustre_wait_event(0);
509
510         env = cl_env_get(&refcheck);
511         if (IS_ERR(env))
512                 RETURN(PTR_ERR(env));
513
514         io = &ccc_env_info(env)->cti_io;
515         cl_io_fini(env, io);
516         cl_env_put(env, &refcheck);
517         session = (struct llu_io_session *) ioctx->ioctx_private;
518         LASSERT(session);
519         LASSERT(!IS_ERR(session));
520
521         if (session->lis_rc == 0) {
522                 ioctx->ioctx_cc = session->lis_rwcount;
523         } else {
524                 LASSERT(session->lis_rc < 0);
525                 ioctx->ioctx_cc = -1;
526                 ioctx->ioctx_errno = -session->lis_rc;
527         }
528
529         put_io_session(session);
530         ioctx->ioctx_private = NULL;
531         liblustre_wait_event(0);
532
533         RETURN(1);
534 }