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