Whamcloud - gitweb
LU-2888 fid: still Use oi_id/oi_seq for log/lov object.
[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 "DOSTID"\n",
147                        exp->exp_obd->obd_name, POSTID(&obj->ioo_oid));
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         rc = lu_env_refill((struct lu_env *)env);
218         LASSERT(rc == 0);
219         info = ofd_info_init(env, exp);
220
221         LASSERT(oa != NULL);
222
223         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT)) {
224                 struct ofd_seq          *oseq;
225                 oseq = ofd_seq_load(env, ofd, ostid_seq(&oa->o_oi));
226                 if (IS_ERR(oseq)) {
227                         CERROR("%s: Can not find seq for "DOSTID
228                                ": rc = %ld\n", ofd_name(ofd), POSTID(&oa->o_oi),
229                                PTR_ERR(oseq));
230                         RETURN(-EINVAL);
231                 }
232
233                 if (oseq->os_destroys_in_progress == 0) {
234                         /* don't fail lookups for orphan recovery, it causes
235                          * later LBUGs when objects still exist during
236                          * precreate */
237                         ofd_seq_put(env, oseq);
238                         RETURN(-ENOENT);
239                 }
240                 ofd_seq_put(env, oseq);
241         }
242
243         LASSERT(objcount == 1);
244         LASSERT(obj->ioo_bufcnt > 0);
245
246         rc = ostid_to_fid(&info->fti_fid, &oa->o_oi, 0);
247         if (unlikely(rc != 0))
248                 RETURN(rc);
249
250         if (cmd == OBD_BRW_WRITE) {
251                 rc = ofd_auth_capa(exp, &info->fti_fid, ostid_seq(&oa->o_oi),
252                                    capa, CAPA_OPC_OSS_WRITE);
253                 if (rc == 0) {
254                         la_from_obdo(&info->fti_attr, oa, OBD_MD_FLGETATTR);
255                         rc = ofd_preprw_write(env, exp, ofd, &info->fti_fid,
256                                               &info->fti_attr, oa, objcount,
257                                               obj, rnb, nr_local, lnb, oti);
258                 }
259         } else if (cmd == OBD_BRW_READ) {
260                 rc = ofd_auth_capa(exp, &info->fti_fid, ostid_seq(&oa->o_oi),
261                                    capa, CAPA_OPC_OSS_READ);
262                 if (rc == 0) {
263                         ofd_grant_prepare_read(env, exp, oa);
264                         rc = ofd_preprw_read(env, exp, ofd, &info->fti_fid,
265                                              &info->fti_attr, obj->ioo_bufcnt,
266                                              rnb, nr_local, lnb, oti);
267                         obdo_from_la(oa, &info->fti_attr, LA_ATIME);
268                 }
269         } else {
270                 CERROR("%s: wrong cmd %d received!\n",
271                        exp->exp_obd->obd_name, cmd);
272                 rc = -EPROTO;
273         }
274         RETURN(rc);
275 }
276
277 static int
278 ofd_commitrw_read(const struct lu_env *env, struct ofd_device *ofd,
279                   struct lu_fid *fid, int objcount, int niocount,
280                   struct niobuf_local *lnb)
281 {
282         struct ofd_object *fo;
283
284         ENTRY;
285
286         LASSERT(niocount > 0);
287
288         fo = ofd_object_find(env, ofd, fid);
289         if (IS_ERR(fo))
290                 RETURN(PTR_ERR(fo));
291         LASSERT(fo != NULL);
292         LASSERT(ofd_object_exists(fo));
293         dt_bufs_put(env, ofd_object_child(fo), lnb, niocount);
294
295         ofd_read_unlock(env, fo);
296         ofd_object_put(env, fo);
297         /* second put is pair to object_get in ofd_preprw_read */
298         ofd_object_put(env, fo);
299
300         RETURN(0);
301 }
302
303 static int
304 ofd_write_attr_set(const struct lu_env *env, struct ofd_device *ofd,
305                    struct ofd_object *ofd_obj, struct lu_attr *la,
306                    struct filter_fid *ff)
307 {
308         struct ofd_thread_info  *info = ofd_info(env);
309         __u64                    valid = la->la_valid;
310         int                      rc;
311         struct thandle          *th;
312         struct dt_object        *dt_obj;
313         int                      ff_needed = 0;
314
315         ENTRY;
316
317         LASSERT(la);
318
319         dt_obj = ofd_object_child(ofd_obj);
320         LASSERT(dt_obj != NULL);
321
322         la->la_valid &= LA_UID | LA_GID;
323
324         rc = ofd_attr_handle_ugid(env, ofd_obj, la, 0 /* !is_setattr */);
325         if (rc != 0)
326                 GOTO(out, rc);
327
328         if (ff != NULL) {
329                 rc = ofd_object_ff_check(env, ofd_obj);
330                 if (rc == -ENODATA)
331                         ff_needed = 1;
332                 else if (rc < 0)
333                         GOTO(out, rc);
334         }
335
336         if (!la->la_valid && !ff_needed)
337                 /* no attributes to set */
338                 GOTO(out, rc = 0);
339
340         th = ofd_trans_create(env, ofd);
341         if (IS_ERR(th))
342                 GOTO(out, rc = PTR_ERR(th));
343
344         if (la->la_valid) {
345                 rc = dt_declare_attr_set(env, dt_obj, la, th);
346                 if (rc)
347                         GOTO(out_tx, rc);
348         }
349
350         if (ff_needed) {
351                 info->fti_buf.lb_buf = ff;
352                 info->fti_buf.lb_len = sizeof(*ff);
353                 rc = dt_declare_xattr_set(env, dt_obj, &info->fti_buf,
354                                           XATTR_NAME_FID, 0, th);
355                 if (rc)
356                         GOTO(out_tx, rc);
357         }
358
359         /* We don't need a transno for this operation which will be re-executed
360          * anyway when the OST_WRITE (with a transno assigned) is replayed */
361         rc = dt_trans_start_local(env, ofd->ofd_osd , th);
362         if (rc)
363                 GOTO(out_tx, rc);
364
365         /* set uid/gid */
366         if (la->la_valid) {
367                 rc = dt_attr_set(env, dt_obj, la, th,
368                                  ofd_object_capa(env, ofd_obj));
369                 if (rc)
370                         GOTO(out_tx, rc);
371         }
372
373         /* set filter fid EA */
374         if (ff_needed) {
375                 rc = dt_xattr_set(env, dt_obj, &info->fti_buf, XATTR_NAME_FID,
376                                   0, th, BYPASS_CAPA);
377                 if (rc)
378                         GOTO(out_tx, rc);
379         }
380
381         EXIT;
382 out_tx:
383         dt_trans_stop(env, ofd->ofd_osd, th);
384 out:
385         la->la_valid = valid;
386         return rc;
387 }
388
389 static int
390 ofd_commitrw_write(const struct lu_env *env, struct ofd_device *ofd,
391                    struct lu_fid *fid, struct lu_attr *la,
392                    struct filter_fid *ff, int objcount,
393                    int niocount, struct niobuf_local *lnb,
394                    struct obd_trans_info *oti, int old_rc)
395 {
396         struct ofd_thread_info  *info = ofd_info(env);
397         struct ofd_object       *fo;
398         struct dt_object        *o;
399         struct thandle          *th;
400         int                      rc = 0;
401         int                      retries = 0;
402
403         ENTRY;
404
405         LASSERT(objcount == 1);
406
407         fo = ofd_object_find(env, ofd, fid);
408         LASSERT(fo != NULL);
409         LASSERT(ofd_object_exists(fo));
410
411         o = ofd_object_child(fo);
412         LASSERT(o != NULL);
413
414         if (old_rc)
415                 GOTO(out, rc = old_rc);
416
417         /*
418          * The first write to each object must set some attributes.  It is
419          * important to set the uid/gid before calling
420          * dt_declare_write_commit() since quota enforcement is now handled in
421          * declare phases.
422          */
423         rc = ofd_write_attr_set(env, ofd, fo, la, ff);
424         if (rc)
425                 GOTO(out, rc);
426
427         la->la_valid &= LA_ATIME | LA_MTIME | LA_CTIME;
428
429 retry:
430         th = ofd_trans_create(env, ofd);
431         if (IS_ERR(th))
432                 GOTO(out, rc = PTR_ERR(th));
433
434         th->th_sync |= oti->oti_sync_write;
435
436         if (OBD_FAIL_CHECK(OBD_FAIL_OST_DQACQ_NET))
437                 GOTO(out_stop, rc = -EINPROGRESS);
438
439         rc = dt_declare_write_commit(env, o, lnb, niocount, th);
440         if (rc)
441                 GOTO(out_stop, rc);
442
443         if (la->la_valid) {
444                 /* update [mac]time if needed */
445                 rc = dt_declare_attr_set(env, o, la, th);
446                 if (rc)
447                         GOTO(out_stop, rc);
448         }
449
450         rc = ofd_trans_start(env, ofd, fo, th);
451         if (rc)
452                 GOTO(out_stop, rc);
453
454         rc = dt_write_commit(env, o, lnb, niocount, th);
455         if (rc)
456                 GOTO(out_stop, rc);
457
458         if (la->la_valid) {
459                 rc = dt_attr_set(env, o, la, th, ofd_object_capa(env, fo));
460                 if (rc)
461                         GOTO(out_stop, rc);
462         }
463
464         /* get attr to return */
465         rc = dt_attr_get(env, o, la, ofd_object_capa(env, fo));
466
467 out_stop:
468         /* Force commit to make the just-deleted blocks
469          * reusable. LU-456 */
470         if (rc == -ENOSPC)
471                 th->th_sync = 1;
472
473         ofd_trans_stop(env, ofd, th, rc);
474         if (rc == -ENOSPC && retries++ < 3) {
475                 CDEBUG(D_INODE, "retry after force commit, retries:%d\n",
476                        retries);
477                 goto retry;
478         }
479
480 out:
481         dt_bufs_put(env, o, lnb, niocount);
482         ofd_read_unlock(env, fo);
483         ofd_object_put(env, fo);
484         /* second put is pair to object_get in ofd_preprw_write */
485         ofd_object_put(env, fo);
486         ofd_grant_commit(env, info->fti_exp, old_rc);
487         RETURN(rc);
488 }
489
490 int ofd_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
491                  struct obdo *oa, int objcount, struct obd_ioobj *obj,
492                  struct niobuf_remote *rnb, int npages,
493                  struct niobuf_local *lnb, struct obd_trans_info *oti,
494                  int old_rc)
495 {
496         struct ofd_thread_info  *info;
497         struct ofd_mod_data     *fmd;
498         __u64                    valid;
499         struct ofd_device       *ofd = ofd_exp(exp);
500         struct filter_fid       *ff = NULL;
501         int                      rc = 0;
502
503         info = ofd_info(env);
504         ofd_oti2info(info, oti);
505
506         LASSERT(npages > 0);
507
508         rc = ostid_to_fid(&info->fti_fid, &oa->o_oi, 0);
509         if (unlikely(rc != 0))
510                 RETURN(rc);
511         if (cmd == OBD_BRW_WRITE) {
512                 /* Don't update timestamps if this write is older than a
513                  * setattr which modifies the timestamps. b=10150 */
514
515                 /* XXX when we start having persistent reservations this needs
516                  * to be changed to ofd_fmd_get() to create the fmd if it
517                  * doesn't already exist so we can store the reservation handle
518                  * there. */
519                 valid = OBD_MD_FLUID | OBD_MD_FLGID;
520                 fmd = ofd_fmd_find(exp, &info->fti_fid);
521                 if (!fmd || fmd->fmd_mactime_xid < info->fti_xid)
522                         valid |= OBD_MD_FLATIME | OBD_MD_FLMTIME |
523                                  OBD_MD_FLCTIME;
524                 ofd_fmd_put(exp, fmd);
525                 la_from_obdo(&info->fti_attr, oa, valid);
526
527                 if (oa->o_valid & OBD_MD_FLFID) {
528                         ff = &info->fti_mds_fid;
529                         ofd_prepare_fidea(ff, oa);
530                 }
531
532                 rc = ofd_commitrw_write(env, ofd, &info->fti_fid,
533                                         &info->fti_attr, ff, objcount, npages,
534                                         lnb, oti, old_rc);
535                 if (rc == 0)
536                         obdo_from_la(oa, &info->fti_attr,
537                                      OFD_VALID_FLAGS | LA_GID | LA_UID);
538                 else
539                         obdo_from_la(oa, &info->fti_attr, LA_GID | LA_UID);
540
541                 /* don't report overquota flag if we failed before reaching
542                  * commit */
543                 if (old_rc == 0 && (rc == 0 || rc == -EDQUOT)) {
544                         /* return the overquota flags to client */
545                         if (lnb[0].lnb_flags & OBD_BRW_OVER_USRQUOTA) {
546                                 if (oa->o_valid & OBD_MD_FLFLAGS)
547                                         oa->o_flags |= OBD_FL_NO_USRQUOTA;
548                                 else
549                                         oa->o_flags = OBD_FL_NO_USRQUOTA;
550                         }
551
552                         if (lnb[0].lnb_flags & OBD_BRW_OVER_GRPQUOTA) {
553                                 if (oa->o_valid & OBD_MD_FLFLAGS)
554                                         oa->o_flags |= OBD_FL_NO_GRPQUOTA;
555                                 else
556                                         oa->o_flags = OBD_FL_NO_GRPQUOTA;
557                         }
558
559                         oa->o_valid |= OBD_MD_FLFLAGS;
560                         oa->o_valid |= OBD_MD_FLUSRQUOTA | OBD_MD_FLGRPQUOTA;
561                 }
562         } else if (cmd == OBD_BRW_READ) {
563                 struct ldlm_namespace *ns = ofd->ofd_namespace;
564
565                 /* If oa != NULL then ofd_preprw_read updated the inode
566                  * atime and we should update the lvb so that other glimpses
567                  * will also get the updated value. bug 5972 */
568                 if (oa && ns && ns->ns_lvbo && ns->ns_lvbo->lvbo_update) {
569                          struct ldlm_resource *rs = NULL;
570
571                         ost_fid_build_resid(&info->fti_fid, &info->fti_resid);
572                         rs = ldlm_resource_get(ns, NULL, &info->fti_resid,
573                                                LDLM_EXTENT, 0);
574                         if (rs != NULL) {
575                                 ns->ns_lvbo->lvbo_update(rs, NULL, 1);
576                                 ldlm_resource_putref(rs);
577                         }
578                 }
579                 rc = ofd_commitrw_read(env, ofd, &info->fti_fid, objcount,
580                                           npages, lnb);
581                 if (old_rc)
582                         rc = old_rc;
583         } else {
584                 LBUG();
585                 rc = -EPROTO;
586         }
587
588         ofd_info2oti(info, oti);
589         RETURN(rc);
590 }