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