Whamcloud - gitweb
adc23d54baf57743d8edce85a8ec55db7e5570d0
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/ofd/ofd_io.c
33  *
34  * This file provides functions to handle IO requests from clients and
35  * also LFSCK routines to check parent file identifier (PFID) consistency.
36  *
37  * Author: Alexey Zhuravlev <alexey.zhuravlev@intel.com>
38  * Author: Fan Yong <fan.yong@intel.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_FILTER
42
43 #include <linux/kthread.h>
44 #include "ofd_internal.h"
45 #include <lustre_nodemap.h>
46
47 struct ofd_inconsistency_item {
48         struct list_head         oii_list;
49         struct ofd_object       *oii_obj;
50         struct filter_fid        oii_ff;
51 };
52
53 /**
54  * Verify single object for parent FID consistency.
55  *
56  * Part of LFSCK processing which checks single object PFID stored in extended
57  * attribute (XATTR) against real FID of MDT parent object received by LFSCK.
58  * This verifies that the OST object is being referenced by only a single MDT
59  * object.
60  *
61  * \param[in] env       execution environment
62  * \param[in] ofd       OFD device
63  * \param[in] oii       object-related local data
64  * \param[in] lrl       LFSCK request data
65  */
66 static void ofd_inconsistency_verify_one(const struct lu_env *env,
67                                          struct ofd_device *ofd,
68                                          struct ofd_inconsistency_item *oii,
69                                          struct lfsck_req_local *lrl)
70 {
71         struct ofd_object *fo = oii->oii_obj;
72         struct filter_fid *client_ff = &oii->oii_ff;
73         struct filter_fid *local_ff = &fo->ofo_ff;
74         int rc;
75
76         LASSERT(fo->ofo_pfid_checking);
77         LASSERT(!fo->ofo_pfid_verified);
78
79         lrl->lrl_fid = fo->ofo_header.loh_fid; /* OST-object itself FID. */
80         lrl->lrl_ff_client = *client_ff; /* client given PFID. */
81         lrl->lrl_ff_local = *local_ff; /* OST local stored PFID. */
82
83         rc = lfsck_in_notify_local(env, ofd->ofd_osd, lrl, NULL);
84         ofd_write_lock(env, fo);
85         switch (lrl->lrl_status) {
86         case LPVS_INIT:
87                 LASSERT(rc <= 0);
88
89                 if (rc < 0)
90                         CDEBUG(D_LFSCK, "%s: fail to verify OST local stored "
91                                "PFID xattr for "DFID", the client given PFID "
92                                DFID", OST local stored PFID "DFID": rc = %d\n",
93                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
94                                PFID(&client_ff->ff_parent),
95                                PFID(&local_ff->ff_parent), rc);
96                 else
97                         fo->ofo_pfid_verified = 1;
98                 break;
99         case LPVS_INCONSISTENT:
100                 LASSERT(rc != 0);
101
102                 ofd->ofd_inconsistency_self_detected++;
103                 if (rc < 0)
104                         CDEBUG(D_LFSCK, "%s: fail to verify the client given "
105                                "PFID for "DFID", the client given PFID "DFID
106                                ", local stored PFID "DFID": rc = %d\n",
107                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
108                                PFID(&client_ff->ff_parent),
109                                PFID(&local_ff->ff_parent), rc);
110                 else
111                         CDEBUG(D_LFSCK, "%s: both the client given PFID and "
112                                "the OST local stored PFID are stale for the "
113                                "OST-object "DFID", client given PFID is "DFID
114                                ", local stored PFID is "DFID"\n",
115                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
116                                PFID(&client_ff->ff_parent),
117                                PFID(&local_ff->ff_parent));
118                 break;
119         case LPVS_INCONSISTENT_TOFIX:
120                 ofd->ofd_inconsistency_self_detected++;
121                 if (rc == 0) {
122                         ofd->ofd_inconsistency_self_repaired++;
123                         CDEBUG(D_LFSCK, "%s: fixed the staled OST PFID xattr "
124                                "for "DFID", with the client given PFID "DFID
125                                ", the old stored PFID "DFID"\n",
126                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
127                                PFID(&client_ff->ff_parent),
128                                PFID(&local_ff->ff_parent));
129                 } else if (rc < 0) {
130                         CDEBUG(D_LFSCK, "%s: fail to fix the OST PFID xattr "
131                                "for "DFID", client given PFID "DFID", local "
132                                "stored PFID "DFID": rc = %d\n",
133                                ofd_name(ofd), PFID(&fo->ofo_header.loh_fid),
134                                PFID(&client_ff->ff_parent),
135                                PFID(&local_ff->ff_parent), rc);
136                 }
137                 local_ff->ff_parent = client_ff->ff_parent;
138                 fo->ofo_pfid_verified = 1;
139                 break;
140         default:
141                 break;
142         }
143         fo->ofo_pfid_checking = 0;
144         ofd_write_unlock(env, fo);
145
146         ofd_object_put(env, fo);
147         OBD_FREE_PTR(oii);
148 }
149
150 struct oivm_args {
151         struct ofd_device       *od_ofd;
152         struct lu_env           od_env;
153         struct lfsck_req_local  od_lrl;
154         struct completion       *od_started;
155 };
156
157 #ifndef TASK_IDLE
158 #define TASK_IDLE TASK_INTERRUPTIBLE
159 #endif
160
161 /**
162  * Verification thread to check parent FID consistency.
163  *
164  * Kernel thread to check consistency of parent FID for any
165  * new item added for checking by ofd_add_inconsistency_item().
166  *
167  * \param[in] args      OFD device
168  *
169  * \retval              0 on successful thread termination
170  * \retval              negative value if thread can't start
171  */
172 static int ofd_inconsistency_verification_main(void *_args)
173 {
174         struct oivm_args *args = _args;
175         struct lu_env *env = &args->od_env;
176         struct ofd_device *ofd = args->od_ofd;
177         struct ofd_inconsistency_item *oii;
178         struct lfsck_req_local *lrl = &args->od_lrl;
179         ENTRY;
180
181         lrl->lrl_event = LEL_PAIRS_VERIFY_LOCAL;
182         lrl->lrl_active = LFSCK_TYPE_LAYOUT;
183         complete(args->od_started);
184
185         spin_lock(&ofd->ofd_inconsistency_lock);
186         while (({set_current_state(TASK_IDLE);
187                  !kthread_should_stop(); })) {
188
189                 while (!list_empty(&ofd->ofd_inconsistency_list)) {
190                         __set_current_state(TASK_RUNNING);
191                         oii = list_entry(ofd->ofd_inconsistency_list.next,
192                                          struct ofd_inconsistency_item,
193                                          oii_list);
194                         list_del_init(&oii->oii_list);
195                         spin_unlock(&ofd->ofd_inconsistency_lock);
196                         ofd_inconsistency_verify_one(env, ofd, oii, lrl);
197                         spin_lock(&ofd->ofd_inconsistency_lock);
198                 }
199
200                 spin_unlock(&ofd->ofd_inconsistency_lock);
201                 schedule();
202                 spin_lock(&ofd->ofd_inconsistency_lock);
203         }
204         __set_current_state(TASK_RUNNING);
205
206         while (!list_empty(&ofd->ofd_inconsistency_list)) {
207                 struct ofd_object *fo;
208
209                 oii = list_entry(ofd->ofd_inconsistency_list.next,
210                                  struct ofd_inconsistency_item,
211                                  oii_list);
212                 list_del_init(&oii->oii_list);
213                 fo = oii->oii_obj;
214                 spin_unlock(&ofd->ofd_inconsistency_lock);
215
216                 ofd_write_lock(env, fo);
217                 fo->ofo_pfid_checking = 0;
218                 ofd_write_unlock(env, fo);
219
220                 ofd_object_put(env, fo);
221                 OBD_FREE_PTR(oii);
222                 spin_lock(&ofd->ofd_inconsistency_lock);
223         }
224
225         spin_unlock(&ofd->ofd_inconsistency_lock);
226
227         lu_env_fini(&args->od_env);
228         OBD_FREE_PTR(args);
229         return 0;
230 }
231
232 /**
233  * Start parent FID verification thread.
234  *
235  * See ofd_inconsistency_verification_main().
236  *
237  * \param[in] ofd       OFD device
238  *
239  * \retval              0 on successful start of thread
240  * \retval              negative value on error
241  */
242 int ofd_start_inconsistency_verification_thread(struct ofd_device *ofd)
243 {
244         struct task_struct      *task;
245         struct oivm_args        *args;
246         DECLARE_COMPLETION_ONSTACK(started);
247         int                      rc;
248
249         if (ofd->ofd_inconsistency_task)
250                 return -EALREADY;
251
252         OBD_ALLOC_PTR(args);
253         if (!args)
254                 return -ENOMEM;
255         rc = lu_env_init(&args->od_env, LCT_DT_THREAD);
256         if (rc) {
257                 OBD_FREE_PTR(args);
258                 return rc;
259         }
260
261         args->od_ofd = ofd;
262         args->od_started = &started;
263         task = kthread_create(ofd_inconsistency_verification_main, args,
264                               "inconsistency_verification");
265         if (IS_ERR(task)) {
266                 rc = PTR_ERR(task);
267                 CERROR("%s: cannot start self_repair thread: rc = %d\n",
268                        ofd_name(ofd), rc);
269         } else {
270                 rc = 0;
271                 spin_lock(&ofd->ofd_inconsistency_lock);
272                 if (ofd->ofd_inconsistency_task)
273                         rc = -EALREADY;
274                 else
275                         ofd->ofd_inconsistency_task = task;
276                 spin_unlock(&ofd->ofd_inconsistency_lock);
277
278                 if (rc)
279                         kthread_stop(task);
280                 else {
281                         wake_up_process(task);
282                         wait_for_completion(&started);
283                 }
284         }
285         if (rc) {
286                 lu_env_fini(&args->od_env);
287                 OBD_FREE_PTR(args);
288         }
289
290         return rc;
291 }
292
293 /**
294  * Stop parent FID verification thread.
295  *
296  * \param[in] ofd       OFD device
297  *
298  * \retval              0 on successful start of thread
299  * \retval              -EALREADY if thread is already stopped
300  */
301 int ofd_stop_inconsistency_verification_thread(struct ofd_device *ofd)
302 {
303         struct task_struct *task;
304
305         spin_lock(&ofd->ofd_inconsistency_lock);
306         task = ofd->ofd_inconsistency_task;
307         ofd->ofd_inconsistency_task = NULL;
308         spin_unlock(&ofd->ofd_inconsistency_lock);
309
310         if (!task)
311                 return -EALREADY;
312         kthread_stop(task);
313
314         return 0;
315 }
316
317 /**
318  * Add new item for parent FID verification.
319  *
320  * Prepare new verification item and pass it to the dedicated
321  * verification thread for further processing.
322  *
323  * \param[in] env       execution environment
324  * \param[in] fo        OFD object
325  * \param[in] oa        OBDO structure with PFID
326  */
327 static void ofd_add_inconsistency_item(const struct lu_env *env,
328                                        struct ofd_object *fo, struct obdo *oa)
329 {
330         struct ofd_device *ofd = ofd_obj2dev(fo);
331         struct ofd_inconsistency_item *oii;
332         struct filter_fid *ff;
333         bool wakeup = false;
334
335         OBD_ALLOC_PTR(oii);
336         if (oii == NULL)
337                 return;
338
339         INIT_LIST_HEAD(&oii->oii_list);
340         lu_object_get(&fo->ofo_obj.do_lu);
341         oii->oii_obj = fo;
342         ff = &oii->oii_ff;
343         ff->ff_parent.f_seq = oa->o_parent_seq;
344         ff->ff_parent.f_oid = oa->o_parent_oid;
345         ff->ff_parent.f_stripe_idx = oa->o_stripe_idx;
346         ff->ff_layout = oa->o_layout;
347
348         spin_lock(&ofd->ofd_inconsistency_lock);
349         if (fo->ofo_pfid_checking || fo->ofo_pfid_verified) {
350                 spin_unlock(&ofd->ofd_inconsistency_lock);
351                 OBD_FREE_PTR(oii);
352
353                 return;
354         }
355
356         fo->ofo_pfid_checking = 1;
357         if (list_empty(&ofd->ofd_inconsistency_list))
358                 wakeup = true;
359         list_add_tail(&oii->oii_list, &ofd->ofd_inconsistency_list);
360         if (wakeup && ofd->ofd_inconsistency_task)
361                 wake_up_process(ofd->ofd_inconsistency_task);
362         spin_unlock(&ofd->ofd_inconsistency_lock);
363
364         /* XXX: When the found inconsistency exceeds some threshold,
365          *      we can trigger the LFSCK to scan part of the system
366          *      or the whole system, which depends on how to define
367          *      the threshold, a simple way maybe like that: define
368          *      the absolute value of how many inconsisteny allowed
369          *      to be repaired via self detect/repair mechanism, if
370          *      exceeded, then trigger the LFSCK to scan the layout
371          *      inconsistency within the whole system. */
372 }
373
374 /**
375  * Verify parent FID of an object.
376  *
377  * Check the parent FID is sane and start extended
378  * verification procedure otherwise.
379  *
380  * \param[in] env       execution environment
381  * \param[in] fo        OFD object
382  * \param[in] oa        OBDO structure with PFID
383  *
384  * \retval              0 on successful verification
385  * \retval              -EINPROGRESS if PFID is being repaired
386  * \retval              -EPERM if PFID was verified but still insane
387  */
388 int ofd_verify_ff(const struct lu_env *env, struct ofd_object *fo,
389                   struct obdo *oa)
390 {
391         struct lu_fid *pfid = &fo->ofo_ff.ff_parent;
392         int rc = 0;
393         ENTRY;
394
395         if (fid_is_sane(pfid)) {
396                 if (likely(oa->o_parent_seq == pfid->f_seq &&
397                            oa->o_parent_oid == pfid->f_oid &&
398                            oa->o_stripe_idx == pfid->f_stripe_idx))
399                         RETURN(0);
400
401                 if (fo->ofo_pfid_verified)
402                         RETURN(-EPERM);
403         }
404
405         /* The OST-object may be inconsistent, and we need further verification.
406          * To avoid block the RPC service thread, return -EINPROGRESS to client
407          * and make it retry later. */
408         if (fo->ofo_pfid_checking)
409                 RETURN(-EINPROGRESS);
410
411         rc = ofd_object_ff_load(env, fo);
412         if (rc == -ENODATA)
413                 RETURN(0);
414
415         if (rc < 0)
416                 RETURN(rc);
417
418         if (likely(oa->o_parent_seq == pfid->f_seq &&
419                    oa->o_parent_oid == pfid->f_oid &&
420                    oa->o_stripe_idx == pfid->f_stripe_idx))
421                 RETURN(0);
422
423         /* Push it to the dedicated thread for further verification. */
424         ofd_add_inconsistency_item(env, fo, oa);
425
426         RETURN(-EINPROGRESS);
427 }
428
429 /**
430  * FLR: verify the layout version of object.
431  *
432  * \param[in] env       execution environment
433  * \param[in] fo        OFD object
434  * \param[in] oa        OBDO structure with layout version
435  *
436  * \retval              0 on successful verification
437  * \retval              -EINPROGRESS layout version is in transfer
438  * \retval              -ESTALE the layout version on client is stale
439  */
440 int ofd_verify_layout_version(const struct lu_env *env,
441                               struct ofd_object *fo, const struct obdo *oa)
442 {
443         __u32 layout_version;
444         int rc;
445         ENTRY;
446
447         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_OST_SKIP_LV_CHECK)))
448                 GOTO(out, rc = 0);
449
450         rc = ofd_object_ff_load(env, fo);
451         if (rc < 0) {
452                 if (rc == -ENODATA)
453                         rc = -EINPROGRESS;
454                 GOTO(out, rc);
455         }
456
457         layout_version = fo->ofo_ff.ff_layout_version;
458         if (oa->o_layout_version >= layout_version &&
459             oa->o_layout_version <= layout_version + fo->ofo_ff.ff_range)
460                 GOTO(out, rc = 0);
461
462         /* normal traffic, decide if to return ESTALE or EINPROGRESS */
463         layout_version &= ~LU_LAYOUT_RESYNC;
464
465         /* this update is not legitimate */
466         if ((oa->o_layout_version & ~LU_LAYOUT_RESYNC) <= layout_version)
467                 GOTO(out, rc = -ESTALE);
468
469         /* layout version may not be transmitted yet */
470         if ((oa->o_layout_version & ~LU_LAYOUT_RESYNC) > layout_version)
471                 GOTO(out, rc = -EINPROGRESS);
472
473         EXIT;
474
475 out:
476         CDEBUG(D_INODE, DFID " verify layout version: %u vs. %u/%u, rc: %d\n",
477                PFID(lu_object_fid(&fo->ofo_obj.do_lu)),
478                oa->o_layout_version, fo->ofo_ff.ff_layout_version,
479                fo->ofo_ff.ff_range, rc);
480         return rc;
481
482 }
483
484 /*
485  * Lazy ATIME update to refresh atime every ofd_atime_diff
486  * seconds so that external scanning tool can see it actual
487  * within that period and be able to identify accessed files
488  */
489 static void ofd_handle_atime(const struct lu_env *env, struct ofd_device *ofd,
490                              struct ofd_object *fo, time64_t atime)
491 {
492         struct lu_attr *la;
493         struct dt_object *o;
494         struct thandle *th;
495         int rc;
496
497         if (ofd->ofd_atime_diff == 0)
498                 return;
499
500         la = &ofd_info(env)->fti_attr2;
501         o = ofd_object_child(fo);
502
503         if (unlikely(fo->ofo_atime_ondisk == 0)) {
504                 rc = dt_attr_get(env, o, la);
505                 if (unlikely(rc))
506                         return;
507                 LASSERT(la->la_valid & LA_ATIME);
508                 if (la->la_atime == 0)
509                         la->la_atime = la->la_mtime;
510                 fo->ofo_atime_ondisk = la->la_atime;
511         }
512         if (atime - fo->ofo_atime_ondisk < ofd->ofd_atime_diff)
513                 return;
514
515         /* atime hasn't been updated too long, update it */
516         fo->ofo_atime_ondisk = atime;
517
518         th = ofd_trans_create(env, ofd);
519         if (IS_ERR(th)) {
520                 CERROR("%s: cannot create transaction: rc = %d\n",
521                        ofd_name(ofd), (int)PTR_ERR(th));
522                 return;
523         }
524
525         la->la_valid = LA_ATIME;
526         rc = dt_declare_attr_set(env, o, la, th);
527         if (rc)
528                 GOTO(out_tx, rc);
529
530         rc = dt_trans_start_local(env, ofd->ofd_osd , th);
531         if (rc) {
532                 CERROR("%s: cannot start transaction: rc = %d\n",
533                        ofd_name(ofd), rc);
534                 GOTO(out_tx, rc);
535         }
536
537         ofd_read_lock(env, fo);
538         if (ofd_object_exists(fo)) {
539                 la->la_atime = fo->ofo_atime_ondisk;
540                 rc = dt_attr_set(env, o, la, th);
541         }
542
543         ofd_read_unlock(env, fo);
544
545 out_tx:
546         ofd_trans_stop(env, ofd, th, rc);
547 }
548
549 /**
550  * Prepare buffers for read request processing.
551  *
552  * This function converts remote buffers from client to local buffers
553  * and prepares the latter.
554  *
555  * \param[in] env       execution environment
556  * \param[in] exp       OBD export of client
557  * \param[in] ofd       OFD device
558  * \param[in] fid       FID of object
559  * \param[in] la        object attributes
560  * \param[in] oa        OBDO structure from client
561  * \param[in] niocount  number of remote buffers
562  * \param[in] rnb       remote buffers
563  * \param[in] nr_local  number of local buffers
564  * \param[in] lnb       local buffers
565  * \param[in] jobid     job ID name
566  *
567  * \retval              0 on successful prepare
568  * \retval              negative value on error
569  */
570 static int ofd_preprw_read(const struct lu_env *env, struct obd_export *exp,
571                            struct ofd_device *ofd, const struct lu_fid *fid,
572                            struct lu_attr *la, struct obdo *oa, int niocount,
573                            struct niobuf_remote *rnb, int *nr_local,
574                            struct niobuf_local *lnb, char *jobid)
575 {
576         struct ofd_object *fo;
577         int i, j, rc, tot_bytes = 0;
578         enum dt_bufs_type dbt = DT_BUFS_TYPE_READ;
579         int maxlnb = *nr_local;
580         __u64 begin, end;
581         ktime_t kstart = ktime_get();
582
583         ENTRY;
584         LASSERT(env != NULL);
585
586         fo = ofd_object_find(env, ofd, fid);
587         if (IS_ERR(fo))
588                 RETURN(PTR_ERR(fo));
589         LASSERT(fo != NULL);
590
591         ofd_info(env)->fti_obj = fo;
592
593         if (oa->o_valid & OBD_MD_FLATIME)
594                 ofd_handle_atime(env, ofd, fo, oa->o_atime);
595
596         ofd_read_lock(env, fo);
597         if (!ofd_object_exists(fo))
598                 GOTO(unlock, rc = -ENOENT);
599
600         if (ofd->ofd_lfsck_verify_pfid && oa->o_valid & OBD_MD_FLFID) {
601                 rc = ofd_verify_ff(env, fo, oa);
602                 if (rc != 0)
603                         GOTO(unlock, rc);
604         }
605
606         if (ptlrpc_connection_is_local(exp->exp_connection))
607                 dbt |= DT_BUFS_TYPE_LOCAL;
608
609         begin = -1;
610         end = 0;
611
612         for (*nr_local = 0, i = 0, j = 0; i < niocount; i++) {
613                 begin = min_t(__u64, begin, rnb[i].rnb_offset);
614                 end = max_t(__u64, end, rnb[i].rnb_offset + rnb[i].rnb_len);
615
616                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_2BIG_NIOBUF))
617                         rnb[i].rnb_len = 100 * 1024 * 1024;
618
619                 rc = dt_bufs_get(env, ofd_object_child(fo), rnb + i,
620                                  lnb + j, maxlnb, dbt);
621                 if (unlikely(rc < 0))
622                         GOTO(buf_put, rc);
623                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
624                 /* correct index for local buffers to continue with */
625                 j += rc;
626                 *nr_local += rc;
627                 maxlnb -= rc;
628                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
629                 tot_bytes += rnb[i].rnb_len;
630         }
631
632         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
633         rc = dt_read_prep(env, ofd_object_child(fo), lnb, *nr_local);
634         if (unlikely(rc))
635                 GOTO(buf_put, rc);
636
637         ofd_access(env, ofd,
638                 &(struct lu_fid) {
639                         .f_seq = oa->o_parent_seq,
640                         .f_oid = oa->o_parent_oid,
641                         .f_ver = oa->o_stripe_idx,
642                 },
643                 begin, end,
644                 tot_bytes,
645                 niocount,
646                 READ);
647
648         ofd_counter_incr(exp, LPROC_OFD_STATS_READ_BYTES, jobid, tot_bytes);
649         ofd_counter_incr(exp, LPROC_OFD_STATS_READ, jobid,
650                          ktime_us_delta(ktime_get(), kstart));
651         RETURN(0);
652
653 buf_put:
654         dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
655 unlock:
656         ofd_read_unlock(env, fo);
657         ofd_object_put(env, fo);
658         return rc;
659 }
660
661 /**
662  * Prepare buffers for write request processing.
663  *
664  * This function converts remote buffers from client to local buffers
665  * and prepares the latter. If there is recovery in progress and required
666  * object is missing then it can be re-created before write.
667  *
668  * \param[in] env       execution environment
669  * \param[in] exp       OBD export of client
670  * \param[in] ofd       OFD device
671  * \param[in] fid       FID of object
672  * \param[in] la        object attributes
673  * \param[in] oa        OBDO structure from client
674  * \param[in] objcount  always 1
675  * \param[in] obj       object data
676  * \param[in] rnb       remote buffers
677  * \param[in] nr_local  number of local buffers
678  * \param[in] lnb       local buffers
679  * \param[in] jobid     job ID name
680  *
681  * \retval              0 on successful prepare
682  * \retval              negative value on error
683  */
684 static int ofd_preprw_write(const struct lu_env *env, struct obd_export *exp,
685                             struct ofd_device *ofd, const struct lu_fid *fid,
686                             struct lu_attr *la, struct obdo *oa,
687                             int objcount, struct obd_ioobj *obj,
688                             struct niobuf_remote *rnb, int *nr_local,
689                             struct niobuf_local *lnb, char *jobid)
690 {
691         struct ofd_object *fo;
692         int i, j, k, rc = 0, tot_bytes = 0;
693         enum dt_bufs_type dbt = DT_BUFS_TYPE_WRITE;
694         int maxlnb = *nr_local;
695         __u64 begin, end;
696         ktime_t kstart = ktime_get();
697         struct range_lock *range = &ofd_info(env)->fti_write_range;
698
699         ENTRY;
700         LASSERT(env != NULL);
701         LASSERT(objcount == 1);
702
703         if (unlikely(exp->exp_obd->obd_recovering)) {
704                 u64 seq = fid_seq(fid);
705                 u64 oid = fid_oid(fid);
706                 struct ofd_seq *oseq;
707
708                 oseq = ofd_seq_load(env, ofd, seq);
709                 if (IS_ERR(oseq)) {
710                         CERROR("%s: Can't find FID Sequence %#llx: rc = %d\n",
711                                ofd_name(ofd), seq, (int)PTR_ERR(oseq));
712                         GOTO(out, rc = -EINVAL);
713                 }
714
715                 if (oid > ofd_seq_last_oid(oseq)) {
716                         int sync = 0;
717                         int diff;
718
719                         mutex_lock(&oseq->os_create_lock);
720                         diff = oid - ofd_seq_last_oid(oseq);
721
722                         /* Do sync create if the seq is about to used up */
723                         if (fid_seq_is_idif(seq) || fid_seq_is_mdt0(seq)) {
724                                 if (unlikely(oid >= IDIF_MAX_OID - 1))
725                                         sync = 1;
726                         } else if (fid_seq_is_norm(seq)) {
727                                 if (unlikely(oid >=
728                                              LUSTRE_DATA_SEQ_MAX_WIDTH - 1))
729                                         sync = 1;
730                         } else {
731                                 CERROR("%s : invalid o_seq "DOSTID"\n",
732                                        ofd_name(ofd), POSTID(&oa->o_oi));
733                                 mutex_unlock(&oseq->os_create_lock);
734                                 ofd_seq_put(env, oseq);
735                                 GOTO(out, rc = -EINVAL);
736                         }
737
738                         while (diff > 0) {
739                                 u64 next_id = ofd_seq_last_oid(oseq) + 1;
740                                 int count = ofd_precreate_batch(ofd, diff);
741
742                                 rc = ofd_precreate_objects(env, ofd, next_id,
743                                                            oseq, count, sync);
744                                 if (rc < 0) {
745                                         mutex_unlock(&oseq->os_create_lock);
746                                         ofd_seq_put(env, oseq);
747                                         GOTO(out, rc);
748                                 }
749
750                                 diff -= rc;
751                         }
752
753                         mutex_unlock(&oseq->os_create_lock);
754                 }
755
756                 ofd_seq_put(env, oseq);
757         }
758
759         /* Process incoming grant info, set OBD_BRW_GRANTED flag and grant some
760          * space back if possible, we have to do this outside of the lock as
761          * grant preparation may need to sync whole fs thus wait for all the
762          * transactions to complete. */
763         tgt_grant_prepare_write(env, exp, oa, rnb, obj->ioo_bufcnt);
764
765         fo = ofd_object_find(env, ofd, fid);
766         if (IS_ERR(fo))
767                 GOTO(out, rc = PTR_ERR(fo));
768         LASSERT(fo != NULL);
769
770         ofd_info(env)->fti_obj = fo;
771
772         ofd_read_lock(env, fo);
773         if (!ofd_object_exists(fo)) {
774                 CERROR("%s: BRW to missing obj "DOSTID"\n",
775                        exp->exp_obd->obd_name, POSTID(&obj->ioo_oid));
776                 ofd_read_unlock(env, fo);
777                 ofd_object_put(env, fo);
778                 GOTO(out, rc = -ENOENT);
779         }
780
781         if (ofd->ofd_lfsck_verify_pfid && oa->o_valid & OBD_MD_FLFID) {
782                 rc = ofd_verify_ff(env, fo, oa);
783                 if (rc != 0) {
784                         ofd_read_unlock(env, fo);
785                         ofd_object_put(env, fo);
786                         GOTO(out, rc);
787                 }
788         }
789
790         /* need to verify layout version */
791         if (oa->o_valid & OBD_MD_LAYOUT_VERSION) {
792                 rc = ofd_verify_layout_version(env, fo, oa);
793                 if (rc) {
794                         ofd_read_unlock(env, fo);
795                         ofd_object_put(env, fo);
796                         GOTO(out, rc);
797                 }
798
799                 oa->o_valid &= ~OBD_MD_LAYOUT_VERSION;
800         }
801
802         if (ptlrpc_connection_is_local(exp->exp_connection))
803                 dbt |= DT_BUFS_TYPE_LOCAL;
804
805         begin = -1;
806         end = 0;
807
808         /* parse remote buffers to local buffers and prepare the latter */
809         for (*nr_local = 0, i = 0, j = 0; i < obj->ioo_bufcnt; i++) {
810                 begin = min_t(__u64, begin, rnb[i].rnb_offset);
811                 end = max_t(__u64, end, rnb[i].rnb_offset + rnb[i].rnb_len);
812
813                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_2BIG_NIOBUF))
814                         rnb[i].rnb_len += PAGE_SIZE;
815                 rc = dt_bufs_get(env, ofd_object_child(fo),
816                                  rnb + i, lnb + j, maxlnb, dbt);
817                 if (unlikely(rc < 0))
818                         GOTO(err, rc);
819                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
820                 /* correct index for local buffers to continue with */
821                 for (k = 0; k < rc; k++) {
822                         lnb[j+k].lnb_flags = rnb[i].rnb_flags;
823                         lnb[j+k].lnb_flags &= ~OBD_BRW_LOCALS;
824                         if (!(rnb[i].rnb_flags & OBD_BRW_GRANTED))
825                                 lnb[j+k].lnb_rc = -ENOSPC;
826                 }
827                 j += rc;
828                 *nr_local += rc;
829                 maxlnb -= rc;
830                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
831                 tot_bytes += rnb[i].rnb_len;
832         }
833         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
834
835         rc = dt_write_prep(env, ofd_object_child(fo), lnb, *nr_local);
836         if (unlikely(rc != 0))
837                 GOTO(err, rc);
838
839         ofd_read_unlock(env, fo);
840
841         ofd_access(env, ofd,
842                 &(struct lu_fid) {
843                         .f_seq = oa->o_parent_seq,
844                         .f_oid = oa->o_parent_oid,
845                         .f_ver = oa->o_stripe_idx,
846                 },
847                 begin, end,
848                 tot_bytes,
849                 obj->ioo_bufcnt,
850                 WRITE);
851
852         /*
853          * Reordering precautions: make sure that request processing that
854          * was able to receive its bulk data should not get reordered with
855          * overlapping BRW requests, e.g.
856          *  1) BRW1 sent, bulk data received, but disk I/O delayed
857          *  2) BRW1 resent and fully processed
858          *  3) the page was unlocked on the client and its writeback bit reset
859          *  4) BRW2 sent and fully processed
860          *  5) BRW1 processing wakes up and writes stale data to disk
861          * If on step 1 bulk data was not received, client resend will invalidate
862          * its bulk descriptor and the RPC will be dropped due to failed bulk
863          * transfer, which is just fine.
864          */
865         range_lock_init(range,
866                         rnb[0].rnb_offset,
867                         rnb[obj->ioo_bufcnt - 1].rnb_offset +
868                         rnb[obj->ioo_bufcnt - 1].rnb_len - 1);
869         range_lock(&fo->ofo_write_tree, range);
870         ofd_info(env)->fti_range_locked = 1;
871
872         ofd_counter_incr(exp, LPROC_OFD_STATS_WRITE_BYTES, jobid, tot_bytes);
873         ofd_counter_incr(exp, LPROC_OFD_STATS_WRITE, jobid,
874                          ktime_us_delta(ktime_get(), kstart));
875         RETURN(0);
876 err:
877         dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
878         ofd_read_unlock(env, fo);
879         ofd_object_put(env, fo);
880         /* tgt_grant_prepare_write() was called, so we must commit */
881         tgt_grant_commit(exp, oa->o_grant_used, rc);
882 out:
883         /* let's still process incoming grant information packed in the oa,
884          * but without enforcing grant since we won't proceed with the write.
885          * Just like a read request actually. */
886         tgt_grant_prepare_read(env, exp, oa);
887         return rc;
888 }
889
890 /**
891  * Prepare bulk IO requests for processing.
892  *
893  * This function does initial checks of IO and calls corresponding
894  * functions for read/write processing.
895  *
896  * \param[in] env       execution environment
897  * \param[in] cmd       IO type (read/write)
898  * \param[in] exp       OBD export of client
899  * \param[in] oa        OBDO structure from request
900  * \param[in] objcount  always 1
901  * \param[in] obj       object data
902  * \param[in] rnb       remote buffers
903  * \param[in] nr_local  number of local buffers
904  * \param[in] lnb       local buffers
905  *
906  * \retval              0 on successful prepare
907  * \retval              negative value on error
908  */
909 int ofd_preprw(const struct lu_env *env, int cmd, struct obd_export *exp,
910                struct obdo *oa, int objcount, struct obd_ioobj *obj,
911                struct niobuf_remote *rnb, int *nr_local,
912                struct niobuf_local *lnb)
913 {
914         struct tgt_session_info *tsi = tgt_ses_info(env);
915         struct ofd_device       *ofd = ofd_exp(exp);
916         struct ofd_thread_info  *info;
917         char                    *jobid;
918         const struct lu_fid     *fid = &oa->o_oi.oi_fid;
919         int                      rc = 0;
920
921         if (*nr_local > PTLRPC_MAX_BRW_PAGES) {
922                 CERROR("%s: bulk has too many pages %d, which exceeds the maximum pages per RPC of %d\n",
923                        exp->exp_obd->obd_name, *nr_local, PTLRPC_MAX_BRW_PAGES);
924                 RETURN(-EPROTO);
925         }
926
927         if (tgt_ses_req(tsi) == NULL) { /* echo client case */
928                 info = ofd_info_init(env, exp);
929                 jobid = NULL;
930         } else {
931                 info = tsi2ofd_info(tsi);
932                 jobid = tsi->tsi_jobid;
933         }
934
935         LASSERT(oa != NULL);
936
937         if (OBD_FAIL_CHECK(OBD_FAIL_SRV_ENOENT)) {
938                 struct ofd_seq          *oseq;
939
940                 oseq = ofd_seq_load(env, ofd, ostid_seq(&oa->o_oi));
941                 if (IS_ERR(oseq)) {
942                         CERROR("%s: Can not find seq for "DOSTID
943                                ": rc = %ld\n", ofd_name(ofd), POSTID(&oa->o_oi),
944                                PTR_ERR(oseq));
945                         RETURN(-EINVAL);
946                 }
947
948                 if (oseq->os_destroys_in_progress == 0) {
949                         /* don't fail lookups for orphan recovery, it causes
950                          * later LBUGs when objects still exist during
951                          * precreate */
952                         ofd_seq_put(env, oseq);
953                         RETURN(-ENOENT);
954                 }
955                 ofd_seq_put(env, oseq);
956         }
957
958         LASSERT(objcount == 1);
959         LASSERT(obj->ioo_bufcnt > 0);
960
961         if (cmd == OBD_BRW_WRITE) {
962                 la_from_obdo(&info->fti_attr, oa, OBD_MD_FLGETATTR);
963                 rc = ofd_preprw_write(env, exp, ofd, fid, &info->fti_attr, oa,
964                                       objcount, obj, rnb, nr_local, lnb, jobid);
965         } else if (cmd == OBD_BRW_READ) {
966                 tgt_grant_prepare_read(env, exp, oa);
967                 rc = ofd_preprw_read(env, exp, ofd, fid, &info->fti_attr, oa,
968                                      obj->ioo_bufcnt, rnb, nr_local, lnb,
969                                      jobid);
970         } else {
971                 CERROR("%s: wrong cmd %d received!\n",
972                        exp->exp_obd->obd_name, cmd);
973                 rc = -EPROTO;
974         }
975         RETURN(rc);
976 }
977
978 /**
979  * Drop reference on local buffers for read bulk IO.
980  *
981  * This will free all local buffers use by this read request.
982  *
983  * \param[in] env       execution environment
984  * \param[in] ofd       OFD device
985  * \param[in] fid       object FID
986  * \param[in] objcount  always 1
987  * \param[in] niocount  number of local buffers
988  * \param[in] lnb       local buffers
989  *
990  * \retval              0 on successful execution
991  * \retval              negative value on error
992  */
993 static int
994 ofd_commitrw_read(const struct lu_env *env, struct ofd_device *ofd,
995                   const struct lu_fid *fid, int objcount, int niocount,
996                   struct niobuf_local *lnb)
997 {
998         struct ofd_object *fo;
999
1000         ENTRY;
1001
1002         LASSERT(niocount > 0);
1003
1004         fo = ofd_info(env)->fti_obj;
1005         LASSERT(fo != NULL);
1006         LASSERT(ofd_object_exists(fo));
1007         dt_bufs_put(env, ofd_object_child(fo), lnb, niocount);
1008
1009         ofd_read_unlock(env, fo);
1010         ofd_object_put(env, fo);
1011
1012         RETURN(0);
1013 }
1014
1015 /**
1016  * Set attributes of object during write bulk IO processing.
1017  *
1018  * Change object attributes and write parent FID into extended
1019  * attributes when needed.
1020  *
1021  * \param[in] env       execution environment
1022  * \param[in] ofd       OFD device
1023  * \param[in] ofd_obj   OFD object
1024  * \param[in] la        object attributes
1025  * \param[in] oa        obdo
1026  *
1027  * \retval              0 on successful attributes update
1028  * \retval              negative value on error
1029  */
1030 static int
1031 ofd_write_attr_set(const struct lu_env *env, struct ofd_device *ofd,
1032                    struct ofd_object *ofd_obj, struct lu_attr *la,
1033                    struct obdo *oa)
1034 {
1035         struct ofd_thread_info  *info = ofd_info(env);
1036         struct filter_fid       *ff = &info->fti_mds_fid;
1037         __u64                    valid = la->la_valid;
1038         struct thandle          *th;
1039         struct dt_object        *dt_obj;
1040         int                      fl = 0;
1041         int                      rc;
1042
1043         ENTRY;
1044
1045         LASSERT(la);
1046
1047         dt_obj = ofd_object_child(ofd_obj);
1048         LASSERT(dt_obj != NULL);
1049
1050         la->la_valid &= LA_UID | LA_GID | LA_PROJID;
1051
1052         rc = ofd_attr_handle_id(env, ofd_obj, la, 0 /* !is_setattr */);
1053         if (rc != 0)
1054                 GOTO(out, rc);
1055
1056         if (!la->la_valid && !(oa->o_valid &
1057             (OBD_MD_FLFID | OBD_MD_FLOSTLAYOUT | OBD_MD_LAYOUT_VERSION)))
1058                 /* no attributes to set */
1059                 GOTO(out, rc = 0);
1060
1061         th = ofd_trans_create(env, ofd);
1062         if (IS_ERR(th))
1063                 GOTO(out, rc = PTR_ERR(th));
1064
1065         if (la->la_valid) {
1066                 rc = dt_declare_attr_set(env, dt_obj, la, th);
1067                 if (rc)
1068                         GOTO(out_tx, rc);
1069         }
1070
1071         if (oa->o_valid & (OBD_MD_FLFID | OBD_MD_FLOSTLAYOUT |
1072                            OBD_MD_LAYOUT_VERSION)) {
1073                 rc = dt_declare_xattr_set(env, dt_obj, &info->fti_buf,
1074                                           XATTR_NAME_FID, 0, th);
1075                 if (rc)
1076                         GOTO(out_tx, rc);
1077         }
1078         /* We don't need a transno for this operation which will be re-executed
1079          * anyway when the OST_WRITE (with a transno assigned) is replayed */
1080         rc = dt_trans_start_local(env, ofd->ofd_osd , th);
1081         if (rc)
1082                 GOTO(out_tx, rc);
1083
1084         ofd_read_lock(env, ofd_obj);
1085
1086         rc = ofd_attr_handle_id(env, ofd_obj, la, 0 /* !is_setattr */);
1087         if (rc != 0)
1088                 GOTO(out_unlock, rc);
1089
1090         if (!la->la_valid && !(oa->o_valid &
1091             (OBD_MD_FLFID | OBD_MD_FLOSTLAYOUT | OBD_MD_LAYOUT_VERSION)))
1092                 /* no attributes to set */
1093                 GOTO(out_unlock, rc = 0);
1094
1095
1096
1097         /* set uid/gid/projid */
1098         if (la->la_valid) {
1099                 rc = dt_attr_set(env, dt_obj, la, th);
1100                 if (rc)
1101                         GOTO(out_unlock, rc);
1102         }
1103
1104         fl = ofd_object_ff_update(env, ofd_obj, oa, ff);
1105         if (fl <= 0)
1106                 GOTO(out_unlock, rc = fl);
1107
1108         /* set filter fid EA.
1109          * FIXME: it holds read lock of ofd object to modify the XATTR_NAME_FID
1110          * while the write lock should be held. However, it should work because
1111          * write RPCs only modify ff_{parent,layout} and those information will
1112          * be the same from all the write RPCs. The reason that fl is not used
1113          * in dt_xattr_set() is to allow this race. */
1114         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NOPFID))
1115                 GOTO(out_unlock, rc);
1116         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR1))
1117                 ff->ff_parent.f_oid = cpu_to_le32(1UL << 31);
1118         else if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR2))
1119                 le32_add_cpu(&ff->ff_parent.f_oid, -1);
1120
1121         info->fti_buf.lb_buf = ff;
1122         info->fti_buf.lb_len = sizeof(*ff);
1123         rc = dt_xattr_set(env, dt_obj, &info->fti_buf, XATTR_NAME_FID, 0, th);
1124         if (rc == 0)
1125                 filter_fid_le_to_cpu(&ofd_obj->ofo_ff, ff, sizeof(*ff));
1126
1127         GOTO(out_unlock, rc);
1128
1129 out_unlock:
1130         ofd_read_unlock(env, ofd_obj);
1131 out_tx:
1132         dt_trans_stop(env, ofd->ofd_osd, th);
1133 out:
1134         la->la_valid = valid;
1135         return rc;
1136 }
1137
1138 struct ofd_soft_sync_callback {
1139         struct dt_txn_commit_cb  ossc_cb;
1140         struct obd_export       *ossc_exp;
1141 };
1142
1143 /**
1144  * Callback function for "soft sync" update.
1145  *
1146  * Reset fed_soft_sync_count upon committing the "soft_sync" update.
1147  * See ofd_soft_sync_cb_add() below for more details on soft sync.
1148  *
1149  * \param[in] env       execution environment
1150  * \param[in] th        transaction handle
1151  * \param[in] cb        callback data
1152  * \param[in] err       error code
1153  */
1154 static void ofd_cb_soft_sync(struct lu_env *env, struct thandle *th,
1155                              struct dt_txn_commit_cb *cb, int err)
1156 {
1157         struct ofd_soft_sync_callback   *ossc;
1158
1159         ossc = container_of(cb, struct ofd_soft_sync_callback, ossc_cb);
1160
1161         CDEBUG(D_INODE, "export %p soft sync count is reset\n", ossc->ossc_exp);
1162         atomic_set(&ossc->ossc_exp->exp_filter_data.fed_soft_sync_count, 0);
1163
1164         class_export_cb_put(ossc->ossc_exp);
1165         OBD_FREE_PTR(ossc);
1166 }
1167
1168 /**
1169  * Add callback for "soft sync" processing.
1170  *
1171  * The "soft sync" mechanism does asynchronous commit when OBD_BRW_SOFT_SYNC
1172  * flag is set in client buffers. The intention is for this operation to
1173  * commit pages belonging to a client which has "too many" outstanding
1174  * unstable pages in its cache. See LU-2139 for details.
1175  *
1176  * This function adds callback to be called when commit is done.
1177  *
1178  * \param[in] th        transaction handle
1179  * \param[in] exp       OBD export of client
1180  *
1181  * \retval              0 on successful callback adding
1182  * \retval              negative value on error
1183  */
1184 static int ofd_soft_sync_cb_add(struct thandle *th, struct obd_export *exp)
1185 {
1186         struct ofd_soft_sync_callback           *ossc;
1187         struct dt_txn_commit_cb                 *dcb;
1188         int                                      rc;
1189
1190         OBD_ALLOC_PTR(ossc);
1191         if (ossc == NULL)
1192                 return -ENOMEM;
1193
1194         ossc->ossc_exp = class_export_cb_get(exp);
1195
1196         dcb = &ossc->ossc_cb;
1197         dcb->dcb_func = ofd_cb_soft_sync;
1198         INIT_LIST_HEAD(&dcb->dcb_linkage);
1199         strlcpy(dcb->dcb_name, "ofd_cb_soft_sync", sizeof(dcb->dcb_name));
1200
1201         rc = dt_trans_cb_add(th, dcb);
1202         if (rc) {
1203                 class_export_cb_put(exp);
1204                 OBD_FREE_PTR(ossc);
1205         }
1206
1207         return rc;
1208 }
1209
1210 /**
1211  * Commit bulk IO buffers to the storage.
1212  *
1213  * This function finalizes write IO processing by writing data to the disk.
1214  * That write can be synchronous or asynchronous depending on buffers flags.
1215  *
1216  * \param[in] env       execution environment
1217  * \param[in] exp       OBD export of client
1218  * \param[in] ofd       OFD device
1219  * \param[in] fid       FID of object
1220  * \param[in] la        object attributes
1221  * \param[in] ff        parent FID of object
1222  * \param[in] objcount  always 1
1223  * \param[in] niocount  number of local buffers
1224  * \param[in] lnb       local buffers
1225  * \param[in] granted   grant space consumed for the bulk I/O
1226  * \param[in] old_rc    result of processing at this point
1227  *
1228  * \retval              0 on successful commit
1229  * \retval              negative value on error
1230  */
1231 static int
1232 ofd_commitrw_write(const struct lu_env *env, struct obd_export *exp,
1233                    struct ofd_device *ofd, const struct lu_fid *fid,
1234                    struct lu_attr *la, struct obdo *oa, int objcount,
1235                    int niocount, struct niobuf_local *lnb,
1236                    unsigned long granted, int old_rc)
1237 {
1238         struct ofd_thread_info *info = ofd_info(env);
1239         struct filter_export_data *fed = &exp->exp_filter_data;
1240         struct ofd_object *fo;
1241         struct dt_object *o;
1242         struct thandle *th;
1243         int rc = 0;
1244         int rc2 = 0;
1245         int retries = 0;
1246         int i, restart = 0;
1247         bool soft_sync = false;
1248         bool cb_registered = false;
1249         bool fake_write = false;
1250         struct range_lock *range = &ofd_info(env)->fti_write_range;
1251
1252         ENTRY;
1253
1254         LASSERT(objcount == 1);
1255
1256         fo = ofd_info(env)->fti_obj;
1257         LASSERT(fo != NULL);
1258
1259         o = ofd_object_child(fo);
1260         LASSERT(o != NULL);
1261
1262         if (old_rc)
1263                 GOTO(out, rc = old_rc);
1264         if (!ofd_object_exists(fo))
1265                 GOTO(out, rc = -ENOENT);
1266
1267         /*
1268          * The first write to each object must set some attributes.  It is
1269          * important to set the uid/gid before calling
1270          * dt_declare_write_commit() since quota enforcement is now handled in
1271          * declare phases.
1272          */
1273         rc = ofd_write_attr_set(env, ofd, fo, la, oa);
1274         if (rc)
1275                 GOTO(out, rc);
1276
1277         la->la_valid &= LA_ATIME | LA_MTIME | LA_CTIME;
1278
1279         /* do fake write, to simulate the write case for performance testing */
1280         if (OBD_FAIL_CHECK(OBD_FAIL_OST_FAKE_RW)) {
1281                 struct niobuf_local *last = &lnb[niocount - 1];
1282                 __u64 file_size = last->lnb_file_offset + last->lnb_len;
1283                 __u64 valid = la->la_valid;
1284
1285                 la->la_valid = LA_SIZE;
1286                 la->la_size = 0;
1287                 rc = dt_attr_get(env, o, la);
1288                 if (rc < 0 && rc != -ENOENT)
1289                         GOTO(out, rc);
1290
1291                 if (file_size < la->la_size)
1292                         file_size = la->la_size;
1293
1294                 /* dirty inode by setting file size */
1295                 la->la_valid = valid | LA_SIZE;
1296                 la->la_size = file_size;
1297
1298                 fake_write = true;
1299         }
1300
1301 retry:
1302         th = ofd_trans_create(env, ofd);
1303         if (IS_ERR(th))
1304                 GOTO(out, rc = PTR_ERR(th));
1305
1306         th->th_sync |= ofd->ofd_sync_journal;
1307         if (th->th_sync == 0) {
1308                 for (i = 0; i < niocount; i++) {
1309                         if (!(lnb[i].lnb_flags & OBD_BRW_ASYNC)) {
1310                                 th->th_sync = 1;
1311                                 break;
1312                         }
1313                         if (lnb[i].lnb_flags & OBD_BRW_SOFT_SYNC)
1314                                 soft_sync = true;
1315                 }
1316         }
1317
1318         if (OBD_FAIL_CHECK(OBD_FAIL_OST_DQACQ_NET))
1319                 GOTO(out_stop, rc = -EINPROGRESS);
1320
1321         if (likely(!fake_write)) {
1322                 rc = dt_declare_write_commit(env, o, lnb, niocount, th);
1323                 if (rc)
1324                         GOTO(out_stop, rc);
1325         }
1326
1327         /* don't update atime on disk if it is older */
1328         if (la->la_valid & LA_ATIME && la->la_atime <= fo->ofo_atime_ondisk)
1329                 la->la_valid &= ~LA_ATIME;
1330
1331         if (la->la_valid) {
1332                 /* update [mac]time if needed */
1333                 rc = dt_declare_attr_set(env, o, la, th);
1334                 if (rc)
1335                         GOTO(out_stop, rc);
1336         }
1337
1338         rc = ofd_trans_start(env, ofd, fo, th);
1339         if (rc)
1340                 GOTO(out_stop, rc);
1341
1342         ofd_read_lock(env, fo);
1343         if (!ofd_object_exists(fo))
1344                 GOTO(out_unlock, rc = -ENOENT);
1345
1346         /* Don't update timestamps if this write is older than a
1347          * setattr which modifies the timestamps. b=10150 */
1348         if (la->la_valid && tgt_fmd_check(exp, fid, info->fti_xid)) {
1349                 rc = dt_attr_set(env, o, la, th);
1350                 if (rc)
1351                         GOTO(out_unlock, rc);
1352                 if (la->la_valid & LA_ATIME)
1353                         fo->ofo_atime_ondisk = la->la_atime;
1354         }
1355
1356         if (likely(!fake_write)) {
1357                 OBD_FAIL_TIMEOUT_ORSET(OBD_FAIL_OST_WR_ATTR_DELAY,
1358                                        OBD_FAIL_ONCE, cfs_fail_val);
1359                 rc = dt_write_commit(env, o, lnb, niocount, th, oa->o_size);
1360                 if (rc) {
1361                         restart = th->th_restart_tran;
1362                         GOTO(out_unlock, rc);
1363                 }
1364         }
1365
1366         /* get attr to return */
1367         rc = dt_attr_get(env, o, la);
1368
1369 out_unlock:
1370         ofd_read_unlock(env, fo);
1371 out_stop:
1372         /* Force commit to make the just-deleted blocks
1373          * reusable. LU-456 */
1374         if (rc == -ENOSPC)
1375                 th->th_sync = 1;
1376
1377         /* do this before trans stop in case commit has finished */
1378         if (!th->th_sync && soft_sync && !cb_registered) {
1379                 ofd_soft_sync_cb_add(th, exp);
1380                 cb_registered = true;
1381         }
1382
1383         if (rc == 0 && granted > 0) {
1384                 if (tgt_grant_commit_cb_add(th, exp, granted) == 0)
1385                         granted = 0;
1386         }
1387
1388         rc2 = ofd_trans_stop(env, ofd, th, restart ? 0 : rc);
1389         if (!rc)
1390                 rc = rc2;
1391         if (rc == -ENOSPC && retries++ < 3) {
1392                 CDEBUG(D_INODE, "retry after force commit, retries:%d\n",
1393                        retries);
1394                 goto retry;
1395         }
1396
1397         if (restart) {
1398                 retries++;
1399                 restart = 0;
1400                 if (retries % 10000 == 0)
1401                         CERROR("%s: restart IO write too many times: %d\n",
1402                                 ofd_name(ofd), retries);
1403                 CDEBUG(D_INODE, "retry transaction, retries:%d\n",
1404                        retries);
1405                 goto retry;
1406         }
1407         if (!soft_sync)
1408                 /* reset fed_soft_sync_count upon non-SOFT_SYNC RPC */
1409                 atomic_set(&fed->fed_soft_sync_count, 0);
1410         else if (atomic_inc_return(&fed->fed_soft_sync_count) ==
1411                  ofd->ofd_soft_sync_limit)
1412                 dt_commit_async(env, ofd->ofd_osd);
1413
1414 out:
1415         if (info->fti_range_locked) {
1416                 range_unlock(&fo->ofo_write_tree, range);
1417                 info->fti_range_locked = 0;
1418         }
1419         dt_bufs_put(env, o, lnb, niocount);
1420         ofd_object_put(env, fo);
1421         if (granted > 0)
1422                 tgt_grant_commit(exp, granted, old_rc);
1423         RETURN(rc);
1424 }
1425
1426 /**
1427  * Commit bulk IO to the storage.
1428  *
1429  * This is companion function to the ofd_preprw(). It finishes bulk IO
1430  * request processing by committing buffers to the storage (WRITE) and/or
1431  * freeing those buffers (read/write). See ofd_commitrw_read() and
1432  * ofd_commitrw_write() for details about each type of IO.
1433  *
1434  * \param[in] env       execution environment
1435  * \param[in] cmd       IO type (READ/WRITE)
1436  * \param[in] exp       OBD export of client
1437  * \param[in] oa        OBDO structure from client
1438  * \param[in] objcount  always 1
1439  * \param[in] obj       object data
1440  * \param[in] rnb       remote buffers
1441  * \param[in] npages    number of local buffers
1442  * \param[in] lnb       local buffers
1443  * \param[in] old_rc    result of processing at this point
1444  *
1445  * \retval              0 on successful commit
1446  * \retval              negative value on error
1447  */
1448 int ofd_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
1449                  struct obdo *oa, int objcount, struct obd_ioobj *obj,
1450                  struct niobuf_remote *rnb, int npages,
1451                  struct niobuf_local *lnb, int old_rc)
1452 {
1453         struct ofd_thread_info *info = ofd_info(env);
1454         struct ofd_device *ofd = ofd_exp(exp);
1455         const struct lu_fid *fid = &oa->o_oi.oi_fid;
1456         struct ldlm_namespace *ns = ofd->ofd_namespace;
1457         struct ldlm_resource *rs = NULL;
1458         __u64 valid;
1459         int rc = 0;
1460
1461         LASSERT(npages > 0);
1462
1463         if (cmd == OBD_BRW_WRITE) {
1464                 struct lu_nodemap *nodemap;
1465
1466                 valid = OBD_MD_FLUID | OBD_MD_FLGID | OBD_MD_FLPROJID |
1467                         OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME;
1468                 la_from_obdo(&info->fti_attr, oa, valid);
1469
1470                 rc = ofd_commitrw_write(env, exp, ofd, fid, &info->fti_attr,
1471                                         oa, objcount, npages, lnb,
1472                                         oa->o_grant_used, old_rc);
1473                 if (rc == 0)
1474                         obdo_from_la(oa, &info->fti_attr,
1475                                      OFD_VALID_FLAGS | LA_GID | LA_UID |
1476                                      LA_PROJID);
1477                 else
1478                         obdo_from_la(oa, &info->fti_attr, LA_GID | LA_UID |
1479                                      LA_PROJID);
1480
1481                 /* don't report overquota flag if we failed before reaching
1482                  * commit */
1483                 if (old_rc == 0 && (rc == 0 || rc == -EDQUOT)) {
1484                         /* return the overquota flags to client */
1485                         if (lnb[0].lnb_flags & OBD_BRW_OVER_USRQUOTA) {
1486                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1487                                         oa->o_flags |= OBD_FL_NO_USRQUOTA;
1488                                 else
1489                                         oa->o_flags = OBD_FL_NO_USRQUOTA;
1490                         }
1491
1492                         if (lnb[0].lnb_flags & OBD_BRW_OVER_GRPQUOTA) {
1493                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1494                                         oa->o_flags |= OBD_FL_NO_GRPQUOTA;
1495                                 else
1496                                         oa->o_flags = OBD_FL_NO_GRPQUOTA;
1497                         }
1498                         if (lnb[0].lnb_flags & OBD_BRW_OVER_PRJQUOTA) {
1499                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1500                                         oa->o_flags |= OBD_FL_NO_PRJQUOTA;
1501                                 else
1502                                         oa->o_flags = OBD_FL_NO_PRJQUOTA;
1503                         }
1504
1505                         oa->o_valid |= OBD_MD_FLFLAGS;
1506                         oa->o_valid |= OBD_MD_FLALLQUOTA;
1507                 }
1508
1509                 /**
1510                  * Update LVB after writing finish for server lock, see
1511                  * comments in ldlm_lock_decref_internal(), If this is a
1512                  * local lock on a server namespace and this was the last
1513                  * reference, lock will be destroyed directly thus there
1514                  * is no chance for ldlm_request_cancel() to update lvb.
1515                  */
1516                 if (rc == 0 && (rnb[0].rnb_flags & OBD_BRW_SRVLOCK)) {
1517                         ost_fid_build_resid(fid, &info->fti_resid);
1518                         rs = ldlm_resource_get(ns, NULL, &info->fti_resid,
1519                                                LDLM_EXTENT, 0);
1520                         if (!IS_ERR(rs)) {
1521                                 ldlm_res_lvbo_update(rs, NULL, 1);
1522                                 ldlm_resource_putref(rs);
1523                         }
1524                 }
1525
1526                 /* Convert back to client IDs. LU-9671.
1527                  * nodemap_get_from_exp() may fail due to nodemap deactivated,
1528                  * server ID will be returned back to client in that case. */
1529                 nodemap = nodemap_get_from_exp(exp);
1530                 if (nodemap != NULL && !IS_ERR(nodemap)) {
1531                         oa->o_uid = nodemap_map_id(nodemap, NODEMAP_UID,
1532                                                    NODEMAP_FS_TO_CLIENT,
1533                                                    oa->o_uid);
1534                         oa->o_gid = nodemap_map_id(nodemap, NODEMAP_GID,
1535                                                    NODEMAP_FS_TO_CLIENT,
1536                                                    oa->o_gid);
1537                         nodemap_putref(nodemap);
1538                 }
1539         } else if (cmd == OBD_BRW_READ) {
1540                 rc = ofd_commitrw_read(env, ofd, fid, objcount,
1541                                        npages, lnb);
1542                 if (old_rc)
1543                         rc = old_rc;
1544         } else {
1545                 LBUG();
1546                 rc = -EPROTO;
1547         }
1548
1549         RETURN(rc);
1550 }