Whamcloud - gitweb
Revert "b=19427 correct lmm_object_id and reserve fids for fid-on-OST."
[fs/lustre-release.git] / lustre / liblustre / rw.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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 <sysio.h>
54 #ifdef HAVE_XTIO_H
55 #include <xtio.h>
56 #endif
57 #include <fs.h>
58 #include <mount.h>
59 #include <inode.h>
60 #ifdef HAVE_FILE_H
61 #include <file.h>
62 #endif
63
64 #include "llite_lib.h"
65
66 typedef ssize_t llu_file_piov_t(const struct iovec *iovec, int iovlen,
67                                 _SYSIO_OFF_T pos, ssize_t len,
68                                 void *private);
69
70 size_t llap_cookie_size;
71
72 static int llu_lock_to_stripe_offset(struct inode *inode, struct ldlm_lock *lock)
73 {
74         struct llu_inode_info *lli = llu_i2info(inode);
75         struct lov_stripe_md *lsm = lli->lli_smd;
76         struct obd_export *exp = llu_i2obdexp(inode);
77         struct {
78                 char name[16];
79                 struct ldlm_lock *lock;
80         } key = { .name = KEY_LOCK_TO_STRIPE, .lock = lock };
81         __u32 stripe, vallen = sizeof(stripe);
82         int rc;
83         ENTRY;
84
85         if (lsm->lsm_stripe_count == 1)
86                 RETURN(0);
87
88         /* get our offset in the lov */
89         rc = obd_get_info(exp, sizeof(key), &key, &vallen, &stripe, lsm);
90         if (rc != 0) {
91                 CERROR("obd_get_info: rc = %d\n", rc);
92                 LBUG();
93         }
94         LASSERT(stripe < lsm->lsm_stripe_count);
95         RETURN(stripe);
96 }
97
98 int llu_extent_lock_cancel_cb(struct ldlm_lock *lock,
99                               struct ldlm_lock_desc *new, void *data,
100                               int flag)
101 {
102         struct lustre_handle lockh = { 0 };
103         int rc;
104         ENTRY;
105
106         if ((unsigned long)data > 0 && (unsigned long)data < 0x1000) {
107                 LDLM_ERROR(lock, "cancelling lock with bad data %p", data);
108                 LBUG();
109         }
110
111         switch (flag) {
112         case LDLM_CB_BLOCKING:
113                 ldlm_lock2handle(lock, &lockh);
114                 rc = ldlm_cli_cancel(&lockh);
115                 if (rc != ELDLM_OK)
116                         CERROR("ldlm_cli_cancel failed: %d\n", rc);
117                 break;
118         case LDLM_CB_CANCELING: {
119                 struct inode *inode;
120                 struct llu_inode_info *lli;
121                 struct lov_stripe_md *lsm;
122                 __u32 stripe;
123                 __u64 kms;
124
125                 /* This lock wasn't granted, don't try to evict pages */
126                 if (lock->l_req_mode != lock->l_granted_mode)
127                         RETURN(0);
128
129                 inode = llu_inode_from_lock(lock);
130                 if (!inode)
131                         RETURN(0);
132                 lli= llu_i2info(inode);
133                 if (!lli)
134                         goto iput;
135                 if (!lli->lli_smd)
136                         goto iput;
137                 lsm = lli->lli_smd;
138
139                 stripe = llu_lock_to_stripe_offset(inode, lock);
140                 lock_res_and_lock(lock);
141                 kms = ldlm_extent_shift_kms(lock,
142                                             lsm->lsm_oinfo[stripe]->loi_kms);
143                 unlock_res_and_lock(lock);
144                 if (lsm->lsm_oinfo[stripe]->loi_kms != kms)
145                         LDLM_DEBUG(lock, "updating kms from "LPU64" to "LPU64,
146                                    lsm->lsm_oinfo[stripe]->loi_kms, kms);
147                 loi_kms_set(lsm->lsm_oinfo[stripe], kms);
148 iput:
149                 I_RELE(inode);
150                 break;
151         }
152         default:
153                 LBUG();
154         }
155
156         RETURN(0);
157 }
158
159 static int llu_glimpse_callback(struct ldlm_lock *lock, void *reqp)
160 {
161         struct ptlrpc_request *req = reqp;
162         struct inode *inode = llu_inode_from_lock(lock);
163         struct llu_inode_info *lli;
164         struct ost_lvb *lvb;
165         int rc, stripe = 0;
166         ENTRY;
167
168         if (inode == NULL)
169                 GOTO(out, rc = -ELDLM_NO_LOCK_DATA);
170         lli = llu_i2info(inode);
171         if (lli == NULL)
172                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
173         if (lli->lli_smd == NULL)
174                 GOTO(iput, rc = -ELDLM_NO_LOCK_DATA);
175
176         /* First, find out which stripe index this lock corresponds to. */
177         if (lli->lli_smd->lsm_stripe_count > 1)
178                 stripe = llu_lock_to_stripe_offset(inode, lock);
179
180         req_capsule_extend(&req->rq_pill, &RQF_LDLM_GL_CALLBACK);
181         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
182                              sizeof(*lvb));
183         rc = req_capsule_server_pack(&req->rq_pill);
184         if (rc) {
185                 CERROR("failed pack reply: %d\n", rc);
186                 GOTO(iput, rc);
187         }
188
189         lvb = req_capsule_server_get(&req->rq_pill, &RMF_DLM_LVB);
190         lvb->lvb_size = lli->lli_smd->lsm_oinfo[stripe]->loi_kms;
191
192         LDLM_DEBUG(lock, "i_size: "LPU64" -> stripe number %u -> kms "LPU64,
193                    (__u64)llu_i2stat(inode)->st_size, stripe,lvb->lvb_size);
194  iput:
195         I_RELE(inode);
196  out:
197         /* These errors are normal races, so we don't want to fill the console
198          * with messages by calling ptlrpc_error() */
199         if (rc == -ELDLM_NO_LOCK_DATA)
200                 lustre_pack_reply(req, 1, NULL, NULL);
201
202         req->rq_status = rc;
203         return rc;
204 }
205
206 int llu_merge_lvb(struct inode *inode)
207 {
208         struct llu_inode_info *lli = llu_i2info(inode);
209         struct llu_sb_info *sbi = llu_i2sbi(inode);
210         struct intnl_stat *st = llu_i2stat(inode);
211         struct ost_lvb lvb;
212         int rc;
213         ENTRY;
214
215         lov_stripe_lock(lli->lli_smd);
216         inode_init_lvb(inode, &lvb);
217         /* merge timestamps the most resently obtained from mds with
218            timestamps obtained from osts */
219         lvb.lvb_atime = lli->lli_lvb.lvb_atime;
220         lvb.lvb_mtime = lli->lli_lvb.lvb_mtime;
221         lvb.lvb_ctime = lli->lli_lvb.lvb_ctime;
222         rc = obd_merge_lvb(sbi->ll_dt_exp, lli->lli_smd, &lvb, 0);
223         st->st_size = lvb.lvb_size;
224         st->st_blocks = lvb.lvb_blocks;
225         /* handle st_blocks overflow gracefully */
226         if (st->st_blocks < lvb.lvb_blocks)
227                 st->st_blocks = ~0UL;
228         st->st_mtime = lvb.lvb_mtime;
229         st->st_atime = lvb.lvb_atime;
230         st->st_ctime = lvb.lvb_ctime;
231         lov_stripe_unlock(lli->lli_smd);
232
233         RETURN(rc);
234 }
235
236 int llu_extent_lock(struct ll_file_data *fd, struct inode *inode,
237                     struct lov_stripe_md *lsm, int mode,
238                     ldlm_policy_data_t *policy, struct lustre_handle *lockh,
239                     int ast_flags)
240 {
241         struct llu_sb_info *sbi = llu_i2sbi(inode);
242         struct intnl_stat *st = llu_i2stat(inode);
243         struct ldlm_enqueue_info einfo = { 0 };
244         struct obd_info oinfo = { { { 0 } } };
245         struct ost_lvb lvb;
246         int rc;
247         ENTRY;
248
249         LASSERT(!lustre_handle_is_used(lockh));
250         CLASSERT(ELDLM_OK == 0);
251
252         /* XXX phil: can we do this?  won't it screw the file size up? */
253         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
254             (sbi->ll_flags & LL_SBI_NOLCK) || mode == LCK_NL)
255                 RETURN(0);
256
257         CDEBUG(D_DLMTRACE, "Locking inode "LPU64", start "LPU64" end "LPU64"\n",
258                (__u64)st->st_ino, policy->l_extent.start,
259                policy->l_extent.end);
260
261         einfo.ei_type = LDLM_EXTENT;
262         einfo.ei_mode = mode;
263         einfo.ei_cb_bl = llu_extent_lock_cancel_cb;
264         einfo.ei_cb_cp = ldlm_completion_ast;
265         einfo.ei_cb_gl = llu_glimpse_callback;
266         einfo.ei_cbdata = inode;
267
268         oinfo.oi_policy = *policy;
269         oinfo.oi_lockh = lockh;
270         oinfo.oi_md = lsm;
271         oinfo.oi_flags = ast_flags;
272
273         rc = obd_enqueue(sbi->ll_dt_exp, &oinfo, &einfo, NULL);
274         *policy = oinfo.oi_policy;
275         if (rc > 0)
276                 rc = -EIO;
277
278         inode_init_lvb(inode, &lvb);
279         obd_merge_lvb(sbi->ll_dt_exp, lsm, &lvb, 1);
280         if (policy->l_extent.start == 0 &&
281             policy->l_extent.end == OBD_OBJECT_EOF)
282                 st->st_size = lvb.lvb_size;
283
284         if (rc == 0) {
285                 st->st_mtime = lvb.lvb_mtime;
286                 st->st_atime = lvb.lvb_atime;
287                 st->st_ctime = lvb.lvb_ctime;
288         }
289
290         RETURN(rc);
291 }
292
293 int llu_extent_unlock(struct ll_file_data *fd, struct inode *inode,
294                 struct lov_stripe_md *lsm, int mode,
295                 struct lustre_handle *lockh)
296 {
297         struct llu_sb_info *sbi = llu_i2sbi(inode);
298         int rc;
299         ENTRY;
300
301         CLASSERT(ELDLM_OK == 0);
302
303         /* XXX phil: can we do this?  won't it screw the file size up? */
304         if ((fd && (fd->fd_flags & LL_FILE_IGNORE_LOCK)) ||
305             (sbi->ll_flags & LL_SBI_NOLCK) || mode == LCK_NL)
306                 RETURN(0);
307
308         rc = obd_cancel(sbi->ll_dt_exp, lsm, mode, lockh);
309
310         RETURN(rc);
311 }
312
313 static
314 ssize_t llu_file_prwv(const struct iovec *iovec, int iovlen,
315                         _SYSIO_OFF_T pos, ssize_t len,
316                         void *private)
317 {
318         struct llu_io_session *session = (struct llu_io_session *) private;
319         struct inode *inode = session->lis_inode;
320         struct llu_inode_info *lli = llu_i2info(inode);
321         int err;
322         struct lu_env *env;
323         struct cl_io  *io;
324         struct slp_io *sio;
325         int refcheck;
326         ENTRY;
327
328         /* in a large iov read/write we'll be repeatedly called.
329          * so give a chance to answer cancel ast here
330          */
331         liblustre_wait_event(0);
332
333         if (len == 0 || iovlen == 0)
334                 RETURN(0);
335
336         if (pos + len > lli->lli_maxbytes)
337                 RETURN(-ERANGE);
338
339         env = cl_env_get(&refcheck);
340         if (IS_ERR(env))
341                 RETURN(PTR_ERR(env));
342
343         io = &ccc_env_info(env)->cti_io;
344
345         if (cl_io_rw_init(env, io, session->lis_cmd == OBD_BRW_WRITE?CIT_WRITE:
346                                                                       CIT_READ,
347                           pos, len) == 0) {
348                 struct ccc_io *cio;
349                 sio = slp_env_io(env);
350                 cio = ccc_env_io(env);
351                 /* XXX this is not right: cio->cui_iov can be modified. */
352                 cio->cui_iov = (struct iovec *)iovec;
353                 cio->cui_nrsegs = iovlen;
354                 cio->cui_tot_nrsegs = iovlen;
355                 sio->sio_session = session;
356                 err = cl_io_loop(env, io);
357         } else {
358                 /* XXX WTF? */
359                 LBUG();
360         }
361         cl_io_fini(env, io);
362         cl_env_put(env, &refcheck);
363
364         if (err < 0)
365                 RETURN(err);
366
367         RETURN(len);
368 }
369
370 static
371 struct llu_io_session *get_io_session(struct inode *ino, int ngroups, int cmd)
372 {
373         struct llu_io_session *session;
374
375         OBD_ALLOC_PTR(session);
376         if (!session)
377                 return NULL;
378
379         I_REF(ino);
380         session->lis_inode = ino;
381         session->lis_max_groups = ngroups;
382         session->lis_cmd = cmd;
383         return session;
384 }
385
386 static void put_io_session(struct llu_io_session *session)
387 {
388         I_RELE(session->lis_inode);
389         OBD_FREE_PTR(session);
390 }
391
392 static int llu_file_rwx(struct inode *ino,
393                         struct ioctx *ioctx,
394                         int read)
395 {
396         struct llu_io_session *session;
397         ssize_t cc;
398         int cmd = read ? OBD_BRW_READ : OBD_BRW_WRITE;
399         ENTRY;
400
401         LASSERT(ioctx->ioctx_xtvlen >= 0);
402         LASSERT(ioctx->ioctx_iovlen >= 0);
403
404         liblustre_wait_event(0);
405
406         if (!ioctx->ioctx_xtvlen)
407                 RETURN(0);
408
409         /* XXX consider other types later */
410         if (S_ISDIR(llu_i2stat(ino)->st_mode))
411                 RETURN(-EISDIR);
412         if (!S_ISREG(llu_i2stat(ino)->st_mode))
413                 RETURN(-EOPNOTSUPP);
414
415         session = get_io_session(ino, ioctx->ioctx_xtvlen * 2, cmd);
416         if (!session)
417                 RETURN(-ENOMEM);
418
419         cc = _sysio_enumerate_extents(ioctx->ioctx_xtv, ioctx->ioctx_xtvlen,
420                                       ioctx->ioctx_iov, ioctx->ioctx_iovlen,
421                                       llu_file_prwv, session);
422
423         if (cc >= 0) {
424                 LASSERT(!ioctx->ioctx_cc);
425                 ioctx->ioctx_private = session;
426                 cc = 0;
427         } else {
428                 put_io_session(session);
429         }
430
431         liblustre_wait_event(0);
432         RETURN(cc);
433 }
434
435 void llu_io_init(struct cl_io *io, struct inode *inode, int write)
436 {
437         struct llu_inode_info *lli = llu_i2info(inode);
438
439         memset(io, 0, sizeof *io);
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_info(env)->cti_io;
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_info(env)->cti_io;
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 }