Whamcloud - gitweb
489256a58a00bb1ba463c9390c65e144ea843f31
[fs/lustre-release.git] / lustre / ofd / ofd_io.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) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Intel Corporation.
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/ofd/ofd_io.c
37  *
38  * Author: Alex Tomas <bzzz@whamcloud.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_FILTER
42
43 #include "ofd_internal.h"
44
45 static int ofd_preprw_read(const struct lu_env *env, struct obd_export *exp,
46                            struct ofd_device *ofd, struct lu_fid *fid,
47                            struct lu_attr *la, int niocount,
48                            struct niobuf_remote *rnb, int *nr_local,
49                            struct niobuf_local *lnb,
50                            struct obd_trans_info *oti)
51 {
52         struct ofd_object       *fo;
53         int                      i, j, rc, tot_bytes = 0;
54
55         ENTRY;
56         LASSERT(env != NULL);
57
58         fo = ofd_object_find(env, ofd, fid);
59         if (IS_ERR(fo))
60                 RETURN(PTR_ERR(fo));
61         LASSERT(fo != NULL);
62
63         ofd_read_lock(env, fo);
64         if (!ofd_object_exists(fo))
65                 GOTO(unlock, rc = -ENOENT);
66
67         /* parse remote buffers to local buffers and prepare the latter */
68         for (i = 0, j = 0; i < niocount; i++) {
69                 rc = dt_bufs_get(env, ofd_object_child(fo), rnb + i,
70                                  lnb + j, 0, ofd_object_capa(env, fo));
71                 LASSERT(rc > 0);
72                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
73                 /* correct index for local buffers to continue with */
74                 j += rc;
75                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
76                 tot_bytes += rnb[i].rnb_len;
77         }
78
79         *nr_local = j;
80         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
81         rc = dt_attr_get(env, ofd_object_child(fo), la,
82                          ofd_object_capa(env, fo));
83         if (unlikely(rc))
84                 GOTO(buf_put, rc);
85
86         rc = dt_read_prep(env, ofd_object_child(fo), lnb, *nr_local);
87         if (unlikely(rc))
88                 GOTO(buf_put, rc);
89         lprocfs_counter_add(ofd_obd(ofd)->obd_stats,
90                             LPROC_OFD_READ_BYTES, tot_bytes);
91         ofd_counter_incr(exp, LPROC_OFD_STATS_READ,
92                          oti->oti_jobid, tot_bytes);
93         RETURN(0);
94
95 buf_put:
96         dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
97 unlock:
98         ofd_read_unlock(env, fo);
99         ofd_object_put(env, fo);
100         return rc;
101 }
102
103 static int ofd_preprw_write(const struct lu_env *env, struct obd_export *exp,
104                             struct ofd_device *ofd, struct lu_fid *fid,
105                             struct lu_attr *la, struct obdo *oa,
106                             int objcount, struct obd_ioobj *obj,
107                             struct niobuf_remote *rnb, int *nr_local,
108                             struct niobuf_local *lnb,
109                             struct obd_trans_info *oti)
110 {
111         struct ofd_object       *fo;
112         int                      i, j, k, rc = 0, tot_bytes = 0;
113
114         ENTRY;
115         LASSERT(env != NULL);
116         LASSERT(objcount == 1);
117
118         if (unlikely(exp->exp_obd->obd_recovering)) {
119                 struct ofd_thread_info *info = ofd_info(env);
120
121                 /* copied from ofd_precreate_object */
122                 /* XXX this should be consolidated to use the same code
123                  *     instead of a copy, due to the ongoing risk of bugs. */
124                 memset(&info->fti_attr, 0, sizeof(info->fti_attr));
125                 info->fti_attr.la_valid = LA_TYPE | LA_MODE;
126                 info->fti_attr.la_mode = S_IFREG | S_ISUID | S_ISGID | 0666;
127                 info->fti_attr.la_valid |= LA_ATIME | LA_MTIME | LA_CTIME;
128                 /* Initialize a/c/m time so any client timestamp will always
129                  * be newer and update the inode. ctime = 0 is also handled
130                  * specially in osd_inode_setattr().  See LU-221, LU-1042 */
131                 info->fti_attr.la_atime = 0;
132                 info->fti_attr.la_mtime = 0;
133                 info->fti_attr.la_ctime = 0;
134
135                 fo = ofd_object_find_or_create(env, ofd, fid, &info->fti_attr);
136         } else {
137                 fo = ofd_object_find(env, ofd, fid);
138         }
139
140         if (IS_ERR(fo))
141                 GOTO(out, rc = PTR_ERR(fo));
142         LASSERT(fo != NULL);
143
144         ofd_read_lock(env, fo);
145         if (!ofd_object_exists(fo)) {
146                 CERROR("%s: BRW to missing obj "LPU64"/"LPU64"\n",
147                        exp->exp_obd->obd_name, obj->ioo_id, obj->ioo_seq);
148                 ofd_read_unlock(env, fo);
149                 ofd_object_put(env, fo);
150                 GOTO(out, rc = -ENOENT);
151         }
152
153         /* Always sync if syncjournal parameter is set */
154         oti->oti_sync_write = ofd->ofd_syncjournal;
155
156         /* Process incoming grant info, set OBD_BRW_GRANTED flag and grant some
157          * space back if possible */
158         ofd_grant_prepare_write(env, exp, oa, rnb, obj->ioo_bufcnt);
159
160         /* parse remote buffers to local buffers and prepare the latter */
161         for (i = 0, j = 0; i < obj->ioo_bufcnt; i++) {
162                 rc = dt_bufs_get(env, ofd_object_child(fo),
163                                  rnb + i, lnb + j, 1,
164                                  ofd_object_capa(env, fo));
165                 LASSERT(rc > 0);
166                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
167                 /* correct index for local buffers to continue with */
168                 for (k = 0; k < rc; k++) {
169                         lnb[j+k].lnb_flags = rnb[i].rnb_flags;
170                         if (!(rnb[i].rnb_flags & OBD_BRW_GRANTED))
171                                 lnb[j+k].lnb_rc = -ENOSPC;
172                         if (!(rnb[i].rnb_flags & OBD_BRW_ASYNC))
173                                 oti->oti_sync_write = 1;
174                         /* remote client can't break through quota */
175                         if (exp_connect_rmtclient(exp))
176                                 lnb[j+k].lnb_flags &= ~OBD_BRW_NOQUOTA;
177                 }
178                 j += rc;
179                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
180                 tot_bytes += rnb[i].rnb_len;
181         }
182         *nr_local = j;
183         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
184
185         rc = dt_write_prep(env, ofd_object_child(fo), lnb, *nr_local);
186         if (unlikely(rc != 0)) {
187                 dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
188                 ofd_read_unlock(env, fo);
189                 /* ofd_grant_prepare_write() was called, so we must commit */
190                 ofd_grant_commit(env, exp, rc);
191                 GOTO(out, rc);
192         }
193
194         lprocfs_counter_add(ofd_obd(ofd)->obd_stats,
195                             LPROC_OFD_WRITE_BYTES, tot_bytes);
196         ofd_counter_incr(exp, LPROC_OFD_STATS_WRITE,
197                          oti->oti_jobid, tot_bytes);
198         RETURN(0);
199 out:
200         /* let's still process incoming grant information packed in the oa,
201          * but without enforcing grant since we won't proceed with the write.
202          * Just like a read request actually. */
203         ofd_grant_prepare_read(env, exp, oa);
204         return rc;
205 }
206
207 int ofd_preprw(const struct lu_env* env, int cmd, struct obd_export *exp,
208                struct obdo *oa, int objcount, struct obd_ioobj *obj,
209                struct niobuf_remote *rnb, int *nr_local,
210                struct niobuf_local *lnb, struct obd_trans_info *oti,
211                struct lustre_capa *capa)
212 {
213         struct ofd_device       *ofd = ofd_exp(exp);
214         struct ofd_thread_info  *info;
215         int                      rc = 0;
216
217         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT) &&
218             ofd->ofd_destroys_in_progress == 0) {
219                 /* don't fail lookups for orphan recovery, it causes
220                  * later LBUGs when objects still exist during precreate */
221                 CDEBUG(D_INFO, "*** obd_fail_loc=%x ***\n",OBD_FAIL_OST_ENOENT);
222                 RETURN(-ENOENT);
223         }
224
225         info = ofd_info_init(env, exp);
226
227         LASSERT(objcount == 1);
228         LASSERT(obj->ioo_bufcnt > 0);
229
230         fid_ostid_unpack(&info->fti_fid, &oa->o_oi, 0);
231         if (cmd == OBD_BRW_WRITE) {
232                 rc = ofd_auth_capa(exp, &info->fti_fid, oa->o_seq,
233                                    capa, CAPA_OPC_OSS_WRITE);
234                 if (rc == 0) {
235                         LASSERT(oa != NULL);
236                         la_from_obdo(&info->fti_attr, oa, OBD_MD_FLGETATTR);
237                         rc = ofd_preprw_write(env, exp, ofd, &info->fti_fid,
238                                               &info->fti_attr, oa, objcount,
239                                               obj, rnb, nr_local, lnb, oti);
240                 }
241         } else if (cmd == OBD_BRW_READ) {
242                 rc = ofd_auth_capa(exp, &info->fti_fid, oa->o_seq,
243                                    capa, CAPA_OPC_OSS_READ);
244                 if (rc == 0) {
245                         ofd_grant_prepare_read(env, exp, oa);
246                         rc = ofd_preprw_read(env, exp, ofd, &info->fti_fid,
247                                              &info->fti_attr, obj->ioo_bufcnt,
248                                              rnb, nr_local, lnb, oti);
249                         obdo_from_la(oa, &info->fti_attr, LA_ATIME);
250                 }
251         } else {
252                 CERROR("%s: wrong cmd %d received!\n",
253                        exp->exp_obd->obd_name, cmd);
254                 rc = -EPROTO;
255         }
256         RETURN(rc);
257 }
258
259 static int
260 ofd_commitrw_read(const struct lu_env *env, struct ofd_device *ofd,
261                   struct lu_fid *fid, int objcount, int niocount,
262                   struct niobuf_local *lnb)
263 {
264         struct ofd_object *fo;
265
266         ENTRY;
267
268         LASSERT(niocount > 0);
269
270         fo = ofd_object_find(env, ofd, fid);
271         if (IS_ERR(fo))
272                 RETURN(PTR_ERR(fo));
273         LASSERT(fo != NULL);
274         LASSERT(ofd_object_exists(fo));
275         dt_bufs_put(env, ofd_object_child(fo), lnb, niocount);
276
277         ofd_read_unlock(env, fo);
278         ofd_object_put(env, fo);
279         /* second put is pair to object_get in ofd_preprw_read */
280         ofd_object_put(env, fo);
281
282         RETURN(0);
283 }
284
285 static int
286 ofd_write_attr_set(const struct lu_env *env, struct ofd_device *ofd,
287                    struct ofd_object *ofd_obj, struct lu_attr *la,
288                    struct filter_fid *ff)
289 {
290         struct ofd_thread_info  *info = ofd_info(env);
291         __u64                    valid = la->la_valid;
292         int                      rc;
293         struct thandle          *th;
294         struct dt_object        *dt_obj;
295         int                      ff_needed = 0;
296
297         ENTRY;
298
299         LASSERT(la);
300
301         dt_obj = ofd_object_child(ofd_obj);
302         LASSERT(dt_obj != NULL);
303
304         la->la_valid &= LA_UID | LA_GID;
305
306         rc = ofd_attr_handle_ugid(env, ofd_obj, la, 0 /* !is_setattr */);
307         if (rc != 0)
308                 GOTO(out, rc);
309
310         if (ff != NULL) {
311                 rc = ofd_object_ff_check(env, ofd_obj);
312                 if (rc == -ENODATA)
313                         ff_needed = 1;
314                 else if (rc < 0)
315                         GOTO(out, rc);
316         }
317
318         if (!la->la_valid && !ff_needed)
319                 /* no attributes to set */
320                 GOTO(out, rc = 0);
321
322         th = ofd_trans_create(env, ofd);
323         if (IS_ERR(th))
324                 GOTO(out, rc = PTR_ERR(th));
325
326         if (la->la_valid) {
327                 rc = dt_declare_attr_set(env, dt_obj, la, th);
328                 if (rc)
329                         GOTO(out_tx, rc);
330         }
331
332         if (ff_needed) {
333                 info->fti_buf.lb_buf = ff;
334                 info->fti_buf.lb_len = sizeof(*ff);
335                 rc = dt_declare_xattr_set(env, dt_obj, &info->fti_buf,
336                                           XATTR_NAME_FID, 0, th);
337                 if (rc)
338                         GOTO(out_tx, rc);
339         }
340
341         /* We don't need a transno for this operation which will be re-executed
342          * anyway when the OST_WRITE (with a transno assigned) is replayed */
343         rc = dt_trans_start_local(env, ofd->ofd_osd , th);
344         if (rc)
345                 GOTO(out_tx, rc);
346
347         /* set uid/gid */
348         if (la->la_valid) {
349                 rc = dt_attr_set(env, dt_obj, la, th,
350                                  ofd_object_capa(env, ofd_obj));
351                 if (rc)
352                         GOTO(out_tx, rc);
353         }
354
355         /* set filter fid EA */
356         if (ff_needed) {
357                 rc = dt_xattr_set(env, dt_obj, &info->fti_buf, XATTR_NAME_FID,
358                                   0, th, BYPASS_CAPA);
359                 if (rc)
360                         GOTO(out_tx, rc);
361         }
362
363         EXIT;
364 out_tx:
365         dt_trans_stop(env, ofd->ofd_osd, th);
366 out:
367         la->la_valid = valid;
368         return rc;
369 }
370
371 static int
372 ofd_commitrw_write(const struct lu_env *env, struct ofd_device *ofd,
373                    struct lu_fid *fid, struct lu_attr *la,
374                    struct filter_fid *ff, int objcount,
375                    int niocount, struct niobuf_local *lnb,
376                    struct obd_trans_info *oti, int old_rc)
377 {
378         struct ofd_thread_info  *info = ofd_info(env);
379         struct ofd_object       *fo;
380         struct dt_object        *o;
381         struct thandle          *th;
382         int                      rc = 0;
383         int                      retries = 0;
384
385         ENTRY;
386
387         LASSERT(objcount == 1);
388
389         fo = ofd_object_find(env, ofd, fid);
390         LASSERT(fo != NULL);
391         LASSERT(ofd_object_exists(fo));
392
393         o = ofd_object_child(fo);
394         LASSERT(o != NULL);
395
396         if (old_rc)
397                 GOTO(out, rc = old_rc);
398
399         /*
400          * The first write to each object must set some attributes.  It is
401          * important to set the uid/gid before calling
402          * dt_declare_write_commit() since quota enforcement is now handled in
403          * declare phases.
404          */
405         rc = ofd_write_attr_set(env, ofd, fo, la, ff);
406         if (rc)
407                 GOTO(out, rc);
408
409         la->la_valid &= LA_ATIME | LA_MTIME | LA_CTIME;
410
411 retry:
412         th = ofd_trans_create(env, ofd);
413         if (IS_ERR(th))
414                 GOTO(out, rc = PTR_ERR(th));
415
416         th->th_sync |= oti->oti_sync_write;
417
418         if (OBD_FAIL_CHECK(OBD_FAIL_OST_DQACQ_NET))
419                 GOTO(out_stop, rc = -EINPROGRESS);
420
421         rc = dt_declare_write_commit(env, o, lnb, niocount, th);
422         if (rc)
423                 GOTO(out_stop, rc);
424
425         if (la->la_valid) {
426                 /* update [mac]time if needed */
427                 rc = dt_declare_attr_set(env, o, la, th);
428                 if (rc)
429                         GOTO(out_stop, rc);
430         }
431
432         rc = ofd_trans_start(env, ofd, fo, th);
433         if (rc)
434                 GOTO(out_stop, rc);
435
436         rc = dt_write_commit(env, o, lnb, niocount, th);
437         if (rc)
438                 GOTO(out_stop, rc);
439
440         if (la->la_valid) {
441                 rc = dt_attr_set(env, o, la, th, ofd_object_capa(env, fo));
442                 if (rc)
443                         GOTO(out_stop, rc);
444         }
445
446         /* get attr to return */
447         dt_attr_get(env, o, la, ofd_object_capa(env, fo));
448
449 out_stop:
450         /* Force commit to make the just-deleted blocks
451          * reusable. LU-456 */
452         if (rc == -ENOSPC)
453                 th->th_sync = 1;
454
455         ofd_trans_stop(env, ofd, th, rc);
456         if (rc == -ENOSPC && retries++ < 3) {
457                 CDEBUG(D_INODE, "retry after force commit, retries:%d\n",
458                        retries);
459                 goto retry;
460         }
461
462 out:
463         dt_bufs_put(env, o, lnb, niocount);
464         ofd_read_unlock(env, fo);
465         ofd_object_put(env, fo);
466         /* second put is pair to object_get in ofd_preprw_write */
467         ofd_object_put(env, fo);
468         ofd_grant_commit(env, info->fti_exp, old_rc);
469         RETURN(rc);
470 }
471
472 int ofd_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
473                  struct obdo *oa, int objcount, struct obd_ioobj *obj,
474                  struct niobuf_remote *rnb, int npages,
475                  struct niobuf_local *lnb, struct obd_trans_info *oti,
476                  int old_rc)
477 {
478         struct ofd_thread_info  *info;
479         struct ofd_mod_data     *fmd;
480         __u64                    valid;
481         struct ofd_device       *ofd = ofd_exp(exp);
482         struct filter_fid       *ff = NULL;
483         int                      rc = 0;
484
485         info = ofd_info(env);
486         ofd_oti2info(info, oti);
487
488         LASSERT(npages > 0);
489
490         fid_ostid_unpack(&info->fti_fid, &oa->o_oi, 0);
491         if (cmd == OBD_BRW_WRITE) {
492                 /* Don't update timestamps if this write is older than a
493                  * setattr which modifies the timestamps. b=10150 */
494
495                 /* XXX when we start having persistent reservations this needs
496                  * to be changed to ofd_fmd_get() to create the fmd if it
497                  * doesn't already exist so we can store the reservation handle
498                  * there. */
499                 valid = OBD_MD_FLUID | OBD_MD_FLGID;
500                 fmd = ofd_fmd_find(exp, &info->fti_fid);
501                 if (!fmd || fmd->fmd_mactime_xid < info->fti_xid)
502                         valid |= OBD_MD_FLATIME | OBD_MD_FLMTIME |
503                                  OBD_MD_FLCTIME;
504                 ofd_fmd_put(exp, fmd);
505                 la_from_obdo(&info->fti_attr, oa, valid);
506
507                 if (oa->o_valid & OBD_MD_FLFID) {
508                         ff = &info->fti_mds_fid;
509                         ofd_prepare_fidea(ff, oa);
510                 }
511
512                 rc = ofd_commitrw_write(env, ofd, &info->fti_fid,
513                                         &info->fti_attr, ff, objcount, npages,
514                                         lnb, oti, old_rc);
515                 if (rc == 0)
516                         obdo_from_la(oa, &info->fti_attr,
517                                      OFD_VALID_FLAGS | LA_GID | LA_UID);
518                 else
519                         obdo_from_la(oa, &info->fti_attr, LA_GID | LA_UID);
520
521                 /* don't report overquota flag if we failed before reaching
522                  * commit */
523                 if (old_rc == 0 && (rc == 0 || rc == -EDQUOT)) {
524                         /* return the overquota flags to client */
525                         if (lnb[0].lnb_flags & OBD_BRW_OVER_USRQUOTA) {
526                                 if (oa->o_valid & OBD_MD_FLFLAGS)
527                                         oa->o_flags |= OBD_FL_NO_USRQUOTA;
528                                 else
529                                         oa->o_flags = OBD_FL_NO_USRQUOTA;
530                         }
531
532                         if (lnb[0].lnb_flags & OBD_BRW_OVER_GRPQUOTA) {
533                                 if (oa->o_valid & OBD_MD_FLFLAGS)
534                                         oa->o_flags |= OBD_FL_NO_GRPQUOTA;
535                                 else
536                                         oa->o_flags = OBD_FL_NO_GRPQUOTA;
537                         }
538
539                         oa->o_valid |= OBD_MD_FLFLAGS;
540                         oa->o_valid |= OBD_MD_FLUSRQUOTA | OBD_MD_FLGRPQUOTA;
541                 }
542         } else if (cmd == OBD_BRW_READ) {
543                 struct ldlm_namespace *ns = ofd->ofd_namespace;
544
545                 /* If oa != NULL then ofd_preprw_read updated the inode
546                  * atime and we should update the lvb so that other glimpses
547                  * will also get the updated value. bug 5972 */
548                 if (oa && ns && ns->ns_lvbo && ns->ns_lvbo->lvbo_update) {
549                          struct ldlm_resource *rs = NULL;
550
551                         ofd_build_resid(&info->fti_fid, &info->fti_resid);
552                         rs = ldlm_resource_get(ns, NULL, &info->fti_resid,
553                                                LDLM_EXTENT, 0);
554                         if (rs != NULL) {
555                                 ns->ns_lvbo->lvbo_update(rs, NULL, 1);
556                                 ldlm_resource_putref(rs);
557                         }
558                 }
559                 rc = ofd_commitrw_read(env, ofd, &info->fti_fid, objcount,
560                                           npages, lnb);
561                 if (old_rc)
562                         rc = old_rc;
563         } else {
564                 LBUG();
565                 rc = -EPROTO;
566         }
567
568         ofd_info2oti(info, oti);
569         RETURN(rc);
570 }