Whamcloud - gitweb
LU-15894 ofd: revert range locking in ofd
[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_entry(ofd->ofd_inconsistency_list.next,
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_entry(ofd->ofd_inconsistency_list.next,
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         __u32 layout_version;
443         int rc;
444         ENTRY;
445
446         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_OST_SKIP_LV_CHECK)))
447                 GOTO(out, rc = 0);
448
449         rc = ofd_object_ff_load(env, fo);
450         if (rc < 0) {
451                 if (rc == -ENODATA)
452                         rc = -EINPROGRESS;
453                 GOTO(out, rc);
454         }
455
456         layout_version = fo->ofo_ff.ff_layout_version;
457         if (oa->o_layout_version >= layout_version &&
458             oa->o_layout_version <= layout_version + fo->ofo_ff.ff_range)
459                 GOTO(out, rc = 0);
460
461         /* normal traffic, decide if to return ESTALE or EINPROGRESS */
462         layout_version &= ~LU_LAYOUT_RESYNC;
463
464         /* this update is not legitimate */
465         if ((oa->o_layout_version & ~LU_LAYOUT_RESYNC) <= layout_version)
466                 GOTO(out, rc = -ESTALE);
467
468         /* layout version may not be transmitted yet */
469         if ((oa->o_layout_version & ~LU_LAYOUT_RESYNC) > layout_version)
470                 GOTO(out, rc = -EINPROGRESS);
471
472         EXIT;
473
474 out:
475         CDEBUG(D_INODE, DFID " verify layout version: %u vs. %u/%u, rc: %d\n",
476                PFID(lu_object_fid(&fo->ofo_obj.do_lu)),
477                oa->o_layout_version, fo->ofo_ff.ff_layout_version,
478                fo->ofo_ff.ff_range, rc);
479         return rc;
480
481 }
482
483 /*
484  * Lazy ATIME update to refresh atime every ofd_atime_diff
485  * seconds so that external scanning tool can see it actual
486  * within that period and be able to identify accessed files
487  */
488 static void ofd_handle_atime(const struct lu_env *env, struct ofd_device *ofd,
489                              struct ofd_object *fo, time64_t atime)
490 {
491         struct lu_attr *la;
492         struct dt_object *o;
493         struct thandle *th;
494         int rc;
495
496         if (ofd->ofd_atime_diff == 0)
497                 return;
498
499         la = &ofd_info(env)->fti_attr2;
500         o = ofd_object_child(fo);
501
502         if (unlikely(fo->ofo_atime_ondisk == 0)) {
503                 rc = dt_attr_get(env, o, la);
504                 if (unlikely(rc))
505                         return;
506                 LASSERT(la->la_valid & LA_ATIME);
507                 if (la->la_atime == 0)
508                         la->la_atime = la->la_mtime;
509                 fo->ofo_atime_ondisk = la->la_atime;
510         }
511         if (atime - fo->ofo_atime_ondisk < ofd->ofd_atime_diff)
512                 return;
513
514         /* atime hasn't been updated too long, update it */
515         fo->ofo_atime_ondisk = atime;
516
517         th = ofd_trans_create(env, ofd);
518         if (IS_ERR(th)) {
519                 CERROR("%s: cannot create transaction: rc = %d\n",
520                        ofd_name(ofd), (int)PTR_ERR(th));
521                 return;
522         }
523
524         la->la_valid = LA_ATIME;
525         rc = dt_declare_attr_set(env, o, la, th);
526         if (rc)
527                 GOTO(out_tx, rc);
528
529         rc = dt_trans_start_local(env, ofd->ofd_osd , th);
530         if (rc) {
531                 CERROR("%s: cannot start transaction: rc = %d\n",
532                        ofd_name(ofd), rc);
533                 GOTO(out_tx, rc);
534         }
535
536         ofd_read_lock(env, fo);
537         if (ofd_object_exists(fo)) {
538                 la->la_atime = fo->ofo_atime_ondisk;
539                 rc = dt_attr_set(env, o, la, th);
540         }
541
542         ofd_read_unlock(env, fo);
543
544 out_tx:
545         ofd_trans_stop(env, ofd, th, rc);
546 }
547
548 /**
549  * Prepare buffers for read request processing.
550  *
551  * This function converts remote buffers from client to local buffers
552  * and prepares the latter.
553  *
554  * \param[in] env       execution environment
555  * \param[in] exp       OBD export of client
556  * \param[in] ofd       OFD device
557  * \param[in] fid       FID of object
558  * \param[in] la        object attributes
559  * \param[in] oa        OBDO structure from client
560  * \param[in] niocount  number of remote buffers
561  * \param[in] rnb       remote buffers
562  * \param[in] nr_local  number of local buffers
563  * \param[in] lnb       local buffers
564  * \param[in] jobid     job ID name
565  *
566  * \retval              0 on successful prepare
567  * \retval              negative value on error
568  */
569 static int ofd_preprw_read(const struct lu_env *env, struct obd_export *exp,
570                            struct ofd_device *ofd, const struct lu_fid *fid,
571                            struct lu_attr *la, struct obdo *oa, int niocount,
572                            struct niobuf_remote *rnb, int *nr_local,
573                            struct niobuf_local *lnb)
574 {
575         struct ofd_object *fo;
576         int i, j, rc, tot_bytes = 0;
577         enum dt_bufs_type dbt = DT_BUFS_TYPE_READ;
578         int maxlnb = *nr_local;
579         __u64 begin, end;
580
581         ENTRY;
582         LASSERT(env != NULL);
583
584         fo = ofd_object_find(env, ofd, fid);
585         if (IS_ERR(fo))
586                 RETURN(PTR_ERR(fo));
587         LASSERT(fo != NULL);
588
589         ofd_info(env)->fti_obj = fo;
590
591         if (oa->o_valid & OBD_MD_FLATIME)
592                 ofd_handle_atime(env, ofd, fo, oa->o_atime);
593
594         ofd_read_lock(env, fo);
595         if (!ofd_object_exists(fo))
596                 GOTO(unlock, rc = -ENOENT);
597
598         if (ofd->ofd_lfsck_verify_pfid && oa->o_valid & OBD_MD_FLFID) {
599                 rc = ofd_verify_ff(env, fo, oa);
600                 if (rc != 0)
601                         GOTO(unlock, rc);
602         }
603
604         if (ptlrpc_connection_is_local(exp->exp_connection))
605                 dbt |= DT_BUFS_TYPE_LOCAL;
606
607         begin = -1;
608         end = 0;
609
610         for (*nr_local = 0, i = 0, j = 0; i < niocount; i++) {
611                 begin = min_t(__u64, begin, rnb[i].rnb_offset);
612                 end = max_t(__u64, end, rnb[i].rnb_offset + rnb[i].rnb_len);
613
614                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_2BIG_NIOBUF))
615                         rnb[i].rnb_len = 100 * 1024 * 1024;
616
617                 rc = dt_bufs_get(env, ofd_object_child(fo), rnb + i,
618                                  lnb + j, maxlnb, dbt);
619                 if (unlikely(rc < 0))
620                         GOTO(buf_put, rc);
621                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
622                 /* correct index for local buffers to continue with */
623                 j += rc;
624                 *nr_local += rc;
625                 maxlnb -= rc;
626                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
627                 tot_bytes += rnb[i].rnb_len;
628         }
629
630         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
631         rc = dt_read_prep(env, ofd_object_child(fo), lnb, *nr_local);
632         if (unlikely(rc))
633                 GOTO(buf_put, rc);
634         ofd_read_unlock(env, fo);
635
636         ofd_access(env, ofd,
637                 &(struct lu_fid) {
638                         .f_seq = oa->o_parent_seq,
639                         .f_oid = oa->o_parent_oid,
640                         .f_ver = oa->o_stripe_idx,
641                 },
642                 begin, end,
643                 tot_bytes,
644                 niocount,
645                 READ);
646
647         RETURN(0);
648
649 buf_put:
650         dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
651 unlock:
652         ofd_read_unlock(env, fo);
653         ofd_object_put(env, fo);
654         return rc;
655 }
656
657 /**
658  * Prepare buffers for write request processing.
659  *
660  * This function converts remote buffers from client to local buffers
661  * and prepares the latter. If there is recovery in progress and required
662  * object is missing then it can be re-created before write.
663  *
664  * \param[in] env       execution environment
665  * \param[in] exp       OBD export of client
666  * \param[in] ofd       OFD device
667  * \param[in] fid       FID of object
668  * \param[in] la        object attributes
669  * \param[in] oa        OBDO structure from client
670  * \param[in] objcount  always 1
671  * \param[in] obj       object data
672  * \param[in] rnb       remote buffers
673  * \param[in] nr_local  number of local buffers
674  * \param[in] lnb       local buffers
675  * \param[in] jobid     job ID name
676  *
677  * \retval              0 on successful prepare
678  * \retval              negative value on error
679  */
680 static int ofd_preprw_write(const struct lu_env *env, struct obd_export *exp,
681                             struct ofd_device *ofd, const struct lu_fid *fid,
682                             struct lu_attr *la, struct obdo *oa,
683                             int objcount, struct obd_ioobj *obj,
684                             struct niobuf_remote *rnb, int *nr_local,
685                             struct niobuf_local *lnb)
686 {
687         struct ofd_object *fo;
688         int i, j, k, rc = 0, tot_bytes = 0;
689         enum dt_bufs_type dbt = DT_BUFS_TYPE_WRITE;
690         int maxlnb = *nr_local;
691         __u64 begin, end;
692
693         ENTRY;
694         LASSERT(env != NULL);
695         LASSERT(objcount == 1);
696
697         if (unlikely(exp->exp_obd->obd_recovering)) {
698                 u64 seq = ostid_seq(&oa->o_oi);
699                 u64 oid = ostid_id(&oa->o_oi);
700                 struct ofd_seq *oseq;
701
702                 oseq = ofd_seq_load(env, ofd, seq);
703                 if (IS_ERR(oseq)) {
704                         CERROR("%s: Can't find FID Sequence %#llx: rc = %d\n",
705                                ofd_name(ofd), seq, (int)PTR_ERR(oseq));
706                         GOTO(out, rc = -EINVAL);
707                 }
708
709                 if (oid > ofd_seq_last_oid(oseq)) {
710                         int sync = 0;
711                         int diff;
712
713                         mutex_lock(&oseq->os_create_lock);
714                         diff = oid - ofd_seq_last_oid(oseq);
715
716                         /* Do sync create if the seq is about to used up */
717                         if (fid_seq_is_idif(seq) || fid_seq_is_mdt0(seq)) {
718                                 if (unlikely(oid >= IDIF_MAX_OID - 1))
719                                         sync = 1;
720                         } else if (fid_seq_is_norm(seq)) {
721                                 if (unlikely(oid >=
722                                              LUSTRE_DATA_SEQ_MAX_WIDTH - 1))
723                                         sync = 1;
724                         } else {
725                                 CERROR("%s : invalid o_seq "DOSTID"\n",
726                                        ofd_name(ofd), POSTID(&oa->o_oi));
727                                 mutex_unlock(&oseq->os_create_lock);
728                                 ofd_seq_put(env, oseq);
729                                 GOTO(out, rc = -EINVAL);
730                         }
731
732                         while (diff > 0) {
733                                 u64 next_id = ofd_seq_last_oid(oseq) + 1;
734                                 int count = ofd_precreate_batch(ofd, diff);
735
736                                 rc = ofd_precreate_objects(env, ofd, next_id,
737                                                            oseq, count, sync);
738                                 if (rc < 0) {
739                                         mutex_unlock(&oseq->os_create_lock);
740                                         ofd_seq_put(env, oseq);
741                                         GOTO(out, rc);
742                                 }
743
744                                 diff -= rc;
745                         }
746
747                         mutex_unlock(&oseq->os_create_lock);
748                 }
749
750                 ofd_seq_put(env, oseq);
751         }
752
753         /* Process incoming grant info, set OBD_BRW_GRANTED flag and grant some
754          * space back if possible, we have to do this outside of the lock as
755          * grant preparation may need to sync whole fs thus wait for all the
756          * transactions to complete. */
757         tgt_grant_prepare_write(env, exp, oa, rnb, obj->ioo_bufcnt);
758
759         fo = ofd_object_find(env, ofd, fid);
760         if (IS_ERR(fo))
761                 GOTO(out, rc = PTR_ERR(fo));
762         LASSERT(fo != NULL);
763
764         ofd_info(env)->fti_obj = fo;
765
766         if (!ofd_object_exists(fo)) {
767                 CERROR("%s: BRW to missing obj "DOSTID"\n",
768                        exp->exp_obd->obd_name, POSTID(&obj->ioo_oid));
769                 ofd_object_put(env, fo);
770                 GOTO(out, rc = -ENOENT);
771         }
772
773         if (ptlrpc_connection_is_local(exp->exp_connection))
774                 dbt |= DT_BUFS_TYPE_LOCAL;
775
776         begin = -1;
777         end = 0;
778
779         /* parse remote buffers to local buffers and prepare the latter */
780         for (*nr_local = 0, i = 0, j = 0; i < obj->ioo_bufcnt; i++) {
781                 begin = min_t(__u64, begin, rnb[i].rnb_offset);
782                 end = max_t(__u64, end, rnb[i].rnb_offset + rnb[i].rnb_len);
783
784                 if (OBD_FAIL_CHECK(OBD_FAIL_OST_2BIG_NIOBUF))
785                         rnb[i].rnb_len += PAGE_SIZE;
786                 rc = dt_bufs_get(env, ofd_object_child(fo),
787                                  rnb + i, lnb + j, maxlnb, dbt);
788                 if (unlikely(rc < 0))
789                         GOTO(err_nolock, rc);
790                 LASSERT(rc <= PTLRPC_MAX_BRW_PAGES);
791                 /* correct index for local buffers to continue with */
792                 for (k = 0; k < rc; k++) {
793                         lnb[j+k].lnb_flags = rnb[i].rnb_flags;
794                         lnb[j+k].lnb_flags &= ~OBD_BRW_LOCALS;
795                         if (!(rnb[i].rnb_flags & OBD_BRW_GRANTED))
796                                 lnb[j+k].lnb_rc = -ENOSPC;
797                 }
798                 j += rc;
799                 *nr_local += rc;
800                 maxlnb -= rc;
801                 LASSERT(j <= PTLRPC_MAX_BRW_PAGES);
802                 tot_bytes += rnb[i].rnb_len;
803         }
804         LASSERT(*nr_local > 0 && *nr_local <= PTLRPC_MAX_BRW_PAGES);
805
806         ofd_read_lock(env, fo);
807         if (!ofd_object_exists(fo)) {
808                 CERROR("%s: BRW to missing obj "DOSTID": rc = -ENOENT\n",
809                        exp->exp_obd->obd_name, POSTID(&obj->ioo_oid));
810                 GOTO(err, rc = -ENOENT);
811         }
812
813         if (ofd->ofd_lfsck_verify_pfid && oa->o_valid & OBD_MD_FLFID) {
814                 rc = ofd_verify_ff(env, fo, oa);
815                 if (rc != 0)
816                         GOTO(err, rc);
817         }
818
819         /* need to verify layout version */
820         if (oa->o_valid & OBD_MD_LAYOUT_VERSION) {
821                 rc = ofd_verify_layout_version(env, fo, oa);
822                 if (rc)
823                         GOTO(err, rc);
824                 oa->o_valid &= ~OBD_MD_LAYOUT_VERSION;
825         }
826
827         rc = dt_write_prep(env, ofd_object_child(fo), lnb, *nr_local);
828         if (unlikely(rc != 0))
829                 GOTO(err, rc);
830
831         ofd_read_unlock(env, fo);
832
833         ofd_access(env, ofd,
834                 &(struct lu_fid) {
835                         .f_seq = oa->o_parent_seq,
836                         .f_oid = oa->o_parent_oid,
837                         .f_ver = oa->o_stripe_idx,
838                 },
839                 begin, end,
840                 tot_bytes,
841                 obj->ioo_bufcnt,
842                 WRITE);
843
844         RETURN(0);
845
846 err:
847         ofd_read_unlock(env, fo);
848 err_nolock:
849         dt_bufs_put(env, ofd_object_child(fo), lnb, *nr_local);
850         ofd_object_put(env, fo);
851         /* tgt_grant_prepare_write() was called, so we must commit */
852         tgt_grant_commit(exp, oa->o_grant_used, rc);
853 out:
854         /* let's still process incoming grant information packed in the oa,
855          * but without enforcing grant since we won't proceed with the write.
856          * Just like a read request actually. */
857         tgt_grant_prepare_read(env, exp, oa);
858         return rc;
859 }
860
861 /**
862  * Prepare bulk IO requests for processing.
863  *
864  * This function does initial checks of IO and calls corresponding
865  * functions for read/write processing.
866  *
867  * \param[in] env       execution environment
868  * \param[in] cmd       IO type (read/write)
869  * \param[in] exp       OBD export of client
870  * \param[in] oa        OBDO structure from request
871  * \param[in] objcount  always 1
872  * \param[in] obj       object data
873  * \param[in] rnb       remote buffers
874  * \param[in] nr_local  number of local buffers
875  * \param[in] lnb       local buffers
876  *
877  * \retval              0 on successful prepare
878  * \retval              negative value on error
879  */
880 int ofd_preprw(const struct lu_env *env, int cmd, struct obd_export *exp,
881                struct obdo *oa, int objcount, struct obd_ioobj *obj,
882                struct niobuf_remote *rnb, int *nr_local,
883                struct niobuf_local *lnb)
884 {
885         struct tgt_session_info *tsi = tgt_ses_info(env);
886         struct ofd_device       *ofd = ofd_exp(exp);
887         struct ofd_thread_info  *info;
888         const struct lu_fid     *fid = &oa->o_oi.oi_fid;
889         int                      rc = 0;
890
891         if (*nr_local > PTLRPC_MAX_BRW_PAGES) {
892                 CERROR("%s: bulk has too many pages %d, which exceeds the maximum pages per RPC of %d\n",
893                        exp->exp_obd->obd_name, *nr_local, PTLRPC_MAX_BRW_PAGES);
894                 RETURN(-EPROTO);
895         }
896
897         if (tgt_ses_req(tsi) == NULL) { /* echo client case */
898                 info = ofd_info_init(env, exp);
899         } else {
900                 info = tsi2ofd_info(tsi);
901         }
902
903         LASSERT(oa != NULL);
904
905         if (OBD_FAIL_CHECK(OBD_FAIL_SRV_ENOENT)) {
906                 struct ofd_seq          *oseq;
907
908                 oseq = ofd_seq_load(env, ofd, ostid_seq(&oa->o_oi));
909                 if (IS_ERR(oseq)) {
910                         CERROR("%s: Can not find seq for "DOSTID
911                                ": rc = %ld\n", ofd_name(ofd), POSTID(&oa->o_oi),
912                                PTR_ERR(oseq));
913                         RETURN(-EINVAL);
914                 }
915
916                 if (oseq->os_destroys_in_progress == 0) {
917                         /* don't fail lookups for orphan recovery, it causes
918                          * later LBUGs when objects still exist during
919                          * precreate */
920                         ofd_seq_put(env, oseq);
921                         RETURN(-ENOENT);
922                 }
923                 ofd_seq_put(env, oseq);
924         }
925
926         LASSERT(objcount == 1);
927         LASSERT(obj->ioo_bufcnt > 0);
928
929         if (cmd == OBD_BRW_WRITE) {
930                 la_from_obdo(&info->fti_attr, oa, OBD_MD_FLGETATTR);
931                 rc = ofd_preprw_write(env, exp, ofd, fid, &info->fti_attr, oa,
932                                       objcount, obj, rnb, nr_local, lnb);
933         } else if (cmd == OBD_BRW_READ) {
934                 tgt_grant_prepare_read(env, exp, oa);
935                 rc = ofd_preprw_read(env, exp, ofd, fid, &info->fti_attr, oa,
936                                      obj->ioo_bufcnt, rnb, nr_local, lnb);
937         } else {
938                 CERROR("%s: wrong cmd %d received!\n",
939                        exp->exp_obd->obd_name, cmd);
940                 rc = -EPROTO;
941         }
942         RETURN(rc);
943 }
944
945 /**
946  * Drop reference on local buffers for read bulk IO.
947  *
948  * This will free all local buffers use by this read request.
949  *
950  * \param[in] env       execution environment
951  * \param[in] ofd       OFD device
952  * \param[in] fid       object FID
953  * \param[in] objcount  always 1
954  * \param[in] niocount  number of local buffers
955  * \param[in] lnb       local buffers
956  *
957  * \retval              0 on successful execution
958  * \retval              negative value on error
959  */
960 static int
961 ofd_commitrw_read(const struct lu_env *env, struct ofd_device *ofd,
962                   const struct lu_fid *fid, int objcount, int niocount,
963                   struct niobuf_local *lnb)
964 {
965         struct ofd_object *fo;
966
967         ENTRY;
968
969         LASSERT(niocount > 0);
970
971         fo = ofd_info(env)->fti_obj;
972         LASSERT(fo != NULL);
973         LASSERT(ofd_object_exists(fo));
974         dt_bufs_put(env, ofd_object_child(fo), lnb, niocount);
975
976         ofd_object_put(env, fo);
977
978         RETURN(0);
979 }
980
981 /**
982  * Set attributes of object during write bulk IO processing.
983  *
984  * Change object attributes and write parent FID into extended
985  * attributes when needed.
986  *
987  * \param[in] env       execution environment
988  * \param[in] ofd       OFD device
989  * \param[in] ofd_obj   OFD object
990  * \param[in] la        object attributes
991  * \param[in] oa        obdo
992  *
993  * \retval              0 on successful attributes update
994  * \retval              negative value on error
995  */
996 static int
997 ofd_write_attr_set(const struct lu_env *env, struct ofd_device *ofd,
998                    struct ofd_object *ofd_obj, struct lu_attr *la,
999                    struct obdo *oa)
1000 {
1001         struct ofd_thread_info  *info = ofd_info(env);
1002         struct filter_fid       *ff = &info->fti_mds_fid;
1003         __u64                    valid = la->la_valid;
1004         struct thandle          *th;
1005         struct dt_object        *dt_obj;
1006         int                      fl = 0;
1007         int                      rc;
1008
1009         ENTRY;
1010
1011         LASSERT(la);
1012
1013         dt_obj = ofd_object_child(ofd_obj);
1014         LASSERT(dt_obj != NULL);
1015
1016         la->la_valid &= LA_UID | LA_GID | LA_PROJID;
1017
1018         rc = ofd_attr_handle_id(env, ofd_obj, la, 0 /* !is_setattr */);
1019         if (rc != 0)
1020                 GOTO(out, rc);
1021
1022         if (!la->la_valid && !(oa->o_valid &
1023             (OBD_MD_FLFID | OBD_MD_FLOSTLAYOUT | OBD_MD_LAYOUT_VERSION)))
1024                 /* no attributes to set */
1025                 GOTO(out, rc = 0);
1026
1027         th = ofd_trans_create(env, ofd);
1028         if (IS_ERR(th))
1029                 GOTO(out, rc = PTR_ERR(th));
1030
1031         if (la->la_valid) {
1032                 rc = dt_declare_attr_set(env, dt_obj, la, th);
1033                 if (rc)
1034                         GOTO(out_tx, rc);
1035         }
1036
1037         if (oa->o_valid & (OBD_MD_FLFID | OBD_MD_FLOSTLAYOUT |
1038                            OBD_MD_LAYOUT_VERSION)) {
1039                 rc = dt_declare_xattr_set(env, dt_obj, &info->fti_buf,
1040                                           XATTR_NAME_FID, 0, th);
1041                 if (rc)
1042                         GOTO(out_tx, rc);
1043         }
1044         /* We don't need a transno for this operation which will be re-executed
1045          * anyway when the OST_WRITE (with a transno assigned) is replayed */
1046         rc = dt_trans_start_local(env, ofd->ofd_osd , th);
1047         if (rc)
1048                 GOTO(out_tx, rc);
1049
1050         ofd_read_lock(env, ofd_obj);
1051
1052         rc = ofd_attr_handle_id(env, ofd_obj, la, 0 /* !is_setattr */);
1053         if (rc != 0)
1054                 GOTO(out_unlock, 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_unlock, rc = 0);
1060
1061
1062
1063         /* set uid/gid/projid */
1064         if (la->la_valid) {
1065                 rc = dt_attr_set(env, dt_obj, la, th);
1066                 if (rc)
1067                         GOTO(out_unlock, rc);
1068         }
1069
1070         fl = ofd_object_ff_update(env, ofd_obj, oa, ff);
1071         if (fl <= 0)
1072                 GOTO(out_unlock, rc = fl);
1073
1074         /* set filter fid EA.
1075          * FIXME: it holds read lock of ofd object to modify the XATTR_NAME_FID
1076          * while the write lock should be held. However, it should work because
1077          * write RPCs only modify ff_{parent,layout} and those information will
1078          * be the same from all the write RPCs. The reason that fl is not used
1079          * in dt_xattr_set() is to allow this race. */
1080         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NOPFID))
1081                 GOTO(out_unlock, rc);
1082         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR1))
1083                 ff->ff_parent.f_oid = cpu_to_le32(1UL << 31);
1084         else if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_UNMATCHED_PAIR2))
1085                 le32_add_cpu(&ff->ff_parent.f_oid, -1);
1086
1087         info->fti_buf.lb_buf = ff;
1088         info->fti_buf.lb_len = sizeof(*ff);
1089         rc = dt_xattr_set(env, dt_obj, &info->fti_buf, XATTR_NAME_FID, 0, th);
1090         if (rc == 0)
1091                 filter_fid_le_to_cpu(&ofd_obj->ofo_ff, ff, sizeof(*ff));
1092
1093         GOTO(out_unlock, rc);
1094
1095 out_unlock:
1096         ofd_read_unlock(env, ofd_obj);
1097 out_tx:
1098         dt_trans_stop(env, ofd->ofd_osd, th);
1099 out:
1100         la->la_valid = valid;
1101         return rc;
1102 }
1103
1104 struct ofd_soft_sync_callback {
1105         struct dt_txn_commit_cb  ossc_cb;
1106         struct obd_export       *ossc_exp;
1107 };
1108
1109 /**
1110  * Callback function for "soft sync" update.
1111  *
1112  * Reset fed_soft_sync_count upon committing the "soft_sync" update.
1113  * See ofd_soft_sync_cb_add() below for more details on soft sync.
1114  *
1115  * \param[in] env       execution environment
1116  * \param[in] th        transaction handle
1117  * \param[in] cb        callback data
1118  * \param[in] err       error code
1119  */
1120 static void ofd_cb_soft_sync(struct lu_env *env, struct thandle *th,
1121                              struct dt_txn_commit_cb *cb, int err)
1122 {
1123         struct ofd_soft_sync_callback   *ossc;
1124
1125         ossc = container_of(cb, struct ofd_soft_sync_callback, ossc_cb);
1126
1127         CDEBUG(D_INODE, "export %p soft sync count is reset\n", ossc->ossc_exp);
1128         atomic_set(&ossc->ossc_exp->exp_filter_data.fed_soft_sync_count, 0);
1129
1130         class_export_cb_put(ossc->ossc_exp);
1131         OBD_FREE_PTR(ossc);
1132 }
1133
1134 /**
1135  * Add callback for "soft sync" processing.
1136  *
1137  * The "soft sync" mechanism does asynchronous commit when OBD_BRW_SOFT_SYNC
1138  * flag is set in client buffers. The intention is for this operation to
1139  * commit pages belonging to a client which has "too many" outstanding
1140  * unstable pages in its cache. See LU-2139 for details.
1141  *
1142  * This function adds callback to be called when commit is done.
1143  *
1144  * \param[in] th        transaction handle
1145  * \param[in] exp       OBD export of client
1146  *
1147  * \retval              0 on successful callback adding
1148  * \retval              negative value on error
1149  */
1150 static int ofd_soft_sync_cb_add(struct thandle *th, struct obd_export *exp)
1151 {
1152         struct ofd_soft_sync_callback           *ossc;
1153         struct dt_txn_commit_cb                 *dcb;
1154         int                                      rc;
1155
1156         OBD_ALLOC_PTR(ossc);
1157         if (ossc == NULL)
1158                 return -ENOMEM;
1159
1160         ossc->ossc_exp = class_export_cb_get(exp);
1161
1162         dcb = &ossc->ossc_cb;
1163         dcb->dcb_func = ofd_cb_soft_sync;
1164         INIT_LIST_HEAD(&dcb->dcb_linkage);
1165         strlcpy(dcb->dcb_name, "ofd_cb_soft_sync", sizeof(dcb->dcb_name));
1166
1167         rc = dt_trans_cb_add(th, dcb);
1168         if (rc) {
1169                 class_export_cb_put(exp);
1170                 OBD_FREE_PTR(ossc);
1171         }
1172
1173         return rc;
1174 }
1175
1176 /**
1177  * Commit bulk IO buffers to the storage.
1178  *
1179  * This function finalizes write IO processing by writing data to the disk.
1180  * That write can be synchronous or asynchronous depending on buffers flags.
1181  *
1182  * \param[in] env       execution environment
1183  * \param[in] exp       OBD export of client
1184  * \param[in] ofd       OFD device
1185  * \param[in] fid       FID of object
1186  * \param[in] la        object attributes
1187  * \param[in] ff        parent FID of object
1188  * \param[in] objcount  always 1
1189  * \param[in] niocount  number of local buffers
1190  * \param[in] lnb       local buffers
1191  * \param[in] granted   grant space consumed for the bulk I/O
1192  * \param[in] old_rc    result of processing at this point
1193  *
1194  * \retval              0 on successful commit
1195  * \retval              negative value on error
1196  */
1197 static int
1198 ofd_commitrw_write(const struct lu_env *env, struct obd_export *exp,
1199                    struct ofd_device *ofd, const struct lu_fid *fid,
1200                    struct lu_attr *la, struct obdo *oa, int objcount,
1201                    int niocount, struct niobuf_local *lnb,
1202                    unsigned long granted, int old_rc)
1203 {
1204         struct ofd_thread_info *info = ofd_info(env);
1205         struct filter_export_data *fed = &exp->exp_filter_data;
1206         struct ofd_object *fo;
1207         struct dt_object *o;
1208         struct thandle *th;
1209         int rc = 0;
1210         int rc2 = 0;
1211         int retries = 0;
1212         int i, restart = 0;
1213         bool soft_sync = false;
1214         bool cb_registered = false;
1215         bool fake_write = false;
1216
1217         ENTRY;
1218
1219         LASSERT(objcount == 1);
1220
1221         fo = ofd_info(env)->fti_obj;
1222         LASSERT(fo != NULL);
1223
1224         o = ofd_object_child(fo);
1225         LASSERT(o != NULL);
1226
1227         if (old_rc)
1228                 GOTO(out, rc = old_rc);
1229         if (!ofd_object_exists(fo))
1230                 GOTO(out, rc = -ENOENT);
1231
1232         /*
1233          * The first write to each object must set some attributes.  It is
1234          * important to set the uid/gid before calling
1235          * dt_declare_write_commit() since quota enforcement is now handled in
1236          * declare phases.
1237          */
1238         rc = ofd_write_attr_set(env, ofd, fo, la, oa);
1239         if (rc)
1240                 GOTO(out, rc);
1241
1242         la->la_valid &= LA_ATIME | LA_MTIME | LA_CTIME;
1243
1244         /* do fake write, to simulate the write case for performance testing */
1245         if (OBD_FAIL_CHECK_QUIET(OBD_FAIL_OST_FAKE_RW)) {
1246                 struct niobuf_local *last = &lnb[niocount - 1];
1247                 __u64 file_size = last->lnb_file_offset + last->lnb_len;
1248                 __u64 valid = la->la_valid;
1249
1250                 la->la_valid = LA_SIZE;
1251                 la->la_size = 0;
1252                 rc = dt_attr_get(env, o, la);
1253                 if (rc < 0 && rc != -ENOENT)
1254                         GOTO(out, rc);
1255
1256                 if (file_size < la->la_size)
1257                         file_size = la->la_size;
1258
1259                 /* dirty inode by setting file size */
1260                 la->la_valid = valid | LA_SIZE;
1261                 la->la_size = file_size;
1262
1263                 fake_write = true;
1264         }
1265
1266 retry:
1267         th = ofd_trans_create(env, ofd);
1268         if (IS_ERR(th))
1269                 GOTO(out, rc = PTR_ERR(th));
1270
1271         th->th_sync |= ofd->ofd_sync_journal;
1272         if (th->th_sync == 0) {
1273                 for (i = 0; i < niocount; i++) {
1274                         if (!(lnb[i].lnb_flags & OBD_BRW_ASYNC)) {
1275                                 th->th_sync = 1;
1276                                 break;
1277                         }
1278                         if (lnb[i].lnb_flags & OBD_BRW_SOFT_SYNC)
1279                                 soft_sync = true;
1280                 }
1281         }
1282
1283         if (OBD_FAIL_CHECK(OBD_FAIL_OST_DQACQ_NET))
1284                 GOTO(out_stop, rc = -EINPROGRESS);
1285
1286         if (likely(!fake_write)) {
1287                 rc = dt_declare_write_commit(env, o, lnb, niocount, th);
1288                 if (rc)
1289                         GOTO(out_stop, rc);
1290         }
1291
1292         /* don't update atime on disk if it is older */
1293         if (la->la_valid & LA_ATIME && la->la_atime <= fo->ofo_atime_ondisk)
1294                 la->la_valid &= ~LA_ATIME;
1295
1296         if (la->la_valid) {
1297                 /* update [mac]time if needed */
1298                 rc = dt_declare_attr_set(env, o, la, th);
1299                 if (rc)
1300                         GOTO(out_stop, rc);
1301         }
1302
1303         rc = ofd_trans_start(env, ofd, fo, th);
1304         if (rc)
1305                 GOTO(out_stop, rc);
1306
1307         ofd_read_lock(env, fo);
1308         if (!ofd_object_exists(fo))
1309                 GOTO(out_unlock, rc = -ENOENT);
1310
1311         /* Don't update timestamps if this write is older than a
1312          * setattr which modifies the timestamps. b=10150 */
1313         if (la->la_valid && tgt_fmd_check(exp, fid, info->fti_xid)) {
1314                 rc = dt_attr_set(env, o, la, th);
1315                 if (rc)
1316                         GOTO(out_unlock, rc);
1317                 if (la->la_valid & LA_ATIME)
1318                         fo->ofo_atime_ondisk = la->la_atime;
1319         }
1320
1321         if (likely(!fake_write)) {
1322                 OBD_FAIL_TIMEOUT_ORSET(OBD_FAIL_OST_WR_ATTR_DELAY,
1323                                        OBD_FAIL_ONCE, cfs_fail_val);
1324                 rc = dt_write_commit(env, o, lnb, niocount, th, oa->o_size);
1325                 if (rc) {
1326                         restart = th->th_restart_tran;
1327                         GOTO(out_unlock, rc);
1328                 }
1329         }
1330
1331         /* get attr to return */
1332         rc = dt_attr_get(env, o, la);
1333
1334 out_unlock:
1335         ofd_read_unlock(env, fo);
1336 out_stop:
1337         /* Force commit to make the just-deleted blocks
1338          * reusable. LU-456 */
1339         if (rc == -ENOSPC)
1340                 th->th_sync = 1;
1341
1342         /* do this before trans stop in case commit has finished */
1343         if (!th->th_sync && soft_sync && !cb_registered) {
1344                 ofd_soft_sync_cb_add(th, exp);
1345                 cb_registered = true;
1346         }
1347
1348         if (rc == 0 && granted > 0) {
1349                 if (tgt_grant_commit_cb_add(th, exp, granted) == 0)
1350                         granted = 0;
1351         }
1352
1353         rc2 = ofd_trans_stop(env, ofd, th, restart ? 0 : rc);
1354         if (!rc)
1355                 rc = rc2;
1356         if (rc == -ENOSPC && retries++ < 3) {
1357                 CDEBUG(D_INODE, "retry after force commit, retries:%d\n",
1358                        retries);
1359                 goto retry;
1360         }
1361
1362         if (restart) {
1363                 retries++;
1364                 restart = 0;
1365                 if (retries % 10000 == 0)
1366                         CERROR("%s: restart IO write too many times: %d\n",
1367                                 ofd_name(ofd), retries);
1368                 CDEBUG(D_INODE, "retry transaction, retries:%d\n",
1369                        retries);
1370                 goto retry;
1371         }
1372         if (!soft_sync)
1373                 /* reset fed_soft_sync_count upon non-SOFT_SYNC RPC */
1374                 atomic_set(&fed->fed_soft_sync_count, 0);
1375         else if (atomic_inc_return(&fed->fed_soft_sync_count) ==
1376                  ofd->ofd_soft_sync_limit)
1377                 dt_commit_async(env, ofd->ofd_osd);
1378
1379 out:
1380         dt_bufs_put(env, o, lnb, niocount);
1381         ofd_object_put(env, fo);
1382         if (granted > 0)
1383                 tgt_grant_commit(exp, granted, old_rc);
1384         RETURN(rc);
1385 }
1386
1387 /**
1388  * Commit bulk IO to the storage.
1389  *
1390  * This is companion function to the ofd_preprw(). It finishes bulk IO
1391  * request processing by committing buffers to the storage (WRITE) and/or
1392  * freeing those buffers (read/write). See ofd_commitrw_read() and
1393  * ofd_commitrw_write() for details about each type of IO.
1394  *
1395  * \param[in] env       execution environment
1396  * \param[in] cmd       IO type (READ/WRITE)
1397  * \param[in] exp       OBD export of client
1398  * \param[in] oa        OBDO structure from client
1399  * \param[in] objcount  always 1
1400  * \param[in] obj       object data
1401  * \param[in] rnb       remote buffers
1402  * \param[in] npages    number of local buffers
1403  * \param[in] lnb       local buffers
1404  * \param[in] old_rc    result of processing at this point
1405  *
1406  * \retval              0 on successful commit
1407  * \retval              negative value on error
1408  */
1409 int ofd_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
1410                  struct obdo *oa, int objcount, struct obd_ioobj *obj,
1411                  struct niobuf_remote *rnb, int npages,
1412                  struct niobuf_local *lnb, int old_rc, int nob, ktime_t kstart)
1413 {
1414         struct tgt_session_info *tsi = tgt_ses_info(env);
1415         struct ofd_thread_info *info = ofd_info(env);
1416         struct ofd_device *ofd = ofd_exp(exp);
1417         const struct lu_fid *fid = &oa->o_oi.oi_fid;
1418         struct ldlm_namespace *ns = ofd->ofd_namespace;
1419         struct ldlm_resource *rs = NULL;
1420         char *jobid;
1421         __u64 valid;
1422         int rc = 0;
1423         int root_squash = 0;
1424
1425         LASSERT(npages > 0);
1426
1427         if (tgt_ses_req(tsi) == NULL) { /* echo client case */
1428                 jobid = NULL;
1429         } else {
1430                 jobid = tsi->tsi_jobid;
1431         }
1432
1433         if (cmd == OBD_BRW_WRITE) {
1434                 struct lu_nodemap *nodemap;
1435                 __u32 mapped_uid, mapped_gid, mapped_projid;
1436
1437                 /* doing this before the commit operation places the counter
1438                  * update almost immediately after reply to the client, which
1439                  * gives reasonable time stats and lets us use the actual
1440                  * bytes of i/o (rather than requested)
1441                  */
1442                 ofd_counter_incr(exp, LPROC_OFD_STATS_WRITE_BYTES, jobid, nob);
1443                 ofd_counter_incr(exp, LPROC_OFD_STATS_WRITE, jobid,
1444                                  ktime_us_delta(ktime_get(), kstart));
1445
1446                 nodemap = nodemap_get_from_exp(exp);
1447                 if (IS_ERR(nodemap))
1448                         RETURN(PTR_ERR(nodemap));
1449                 mapped_uid = nodemap_map_id(nodemap, NODEMAP_UID,
1450                                             NODEMAP_FS_TO_CLIENT,
1451                                             oa->o_uid);
1452                 mapped_gid = nodemap_map_id(nodemap, NODEMAP_GID,
1453                                             NODEMAP_FS_TO_CLIENT,
1454                                             oa->o_gid);
1455                 mapped_projid = nodemap_map_id(nodemap, NODEMAP_PROJID,
1456                                                NODEMAP_FS_TO_CLIENT,
1457                                                oa->o_projid);
1458
1459                 if (!IS_ERR_OR_NULL(nodemap)) {
1460                         /* do not bypass quota enforcement if squashed uid */
1461                         if (unlikely(mapped_uid == nodemap->nm_squash_uid)) {
1462                                 int idx;
1463
1464                                 for (idx = 0; idx < npages; idx++)
1465                                         lnb[idx].lnb_flags &=
1466                                                 ~OBD_BRW_SYS_RESOURCE;
1467                                 root_squash = 1;
1468                         }
1469                         nodemap_putref(nodemap);
1470                 }
1471
1472                 valid = OBD_MD_FLUID | OBD_MD_FLGID | OBD_MD_FLPROJID |
1473                         OBD_MD_FLATIME | OBD_MD_FLMTIME | OBD_MD_FLCTIME;
1474                 la_from_obdo(&info->fti_attr, oa, valid);
1475
1476                 rc = ofd_commitrw_write(env, exp, ofd, fid, &info->fti_attr,
1477                                         oa, objcount, npages, lnb,
1478                                         oa->o_grant_used, old_rc);
1479                 if (rc == 0)
1480                         obdo_from_la(oa, &info->fti_attr,
1481                                      OFD_VALID_FLAGS | LA_GID | LA_UID |
1482                                      LA_PROJID);
1483                 else
1484                         obdo_from_la(oa, &info->fti_attr, LA_GID | LA_UID |
1485                                      LA_PROJID);
1486
1487                 /* don't report overquota flag if we failed before reaching
1488                  * commit */
1489                 if (old_rc == 0 && (rc == 0 || rc == -EDQUOT)) {
1490                         /* return the overquota flags to client */
1491                         if (lnb[0].lnb_flags & OBD_BRW_OVER_USRQUOTA) {
1492                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1493                                         oa->o_flags |= OBD_FL_NO_USRQUOTA;
1494                                 else
1495                                         oa->o_flags = OBD_FL_NO_USRQUOTA;
1496                         }
1497
1498                         if (lnb[0].lnb_flags & OBD_BRW_OVER_GRPQUOTA) {
1499                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1500                                         oa->o_flags |= OBD_FL_NO_GRPQUOTA;
1501                                 else
1502                                         oa->o_flags = OBD_FL_NO_GRPQUOTA;
1503                         }
1504                         if (lnb[0].lnb_flags & OBD_BRW_OVER_PRJQUOTA) {
1505                                 if (oa->o_valid & OBD_MD_FLFLAGS)
1506                                         oa->o_flags |= OBD_FL_NO_PRJQUOTA;
1507                                 else
1508                                         oa->o_flags = OBD_FL_NO_PRJQUOTA;
1509                         }
1510
1511                         if (root_squash)
1512                                 oa->o_flags |= OBD_FL_ROOT_SQUASH;
1513
1514                         oa->o_valid |= OBD_MD_FLFLAGS;
1515                         oa->o_valid |= OBD_MD_FLALLQUOTA;
1516                 }
1517
1518                 /**
1519                  * Update LVB after writing finish for server lock, see
1520                  * comments in ldlm_lock_decref_internal(), If this is a
1521                  * local lock on a server namespace and this was the last
1522                  * reference, lock will be destroyed directly thus there
1523                  * is no chance for ldlm_request_cancel() to update lvb.
1524                  */
1525                 if (rc == 0 && (rnb[0].rnb_flags & OBD_BRW_SRVLOCK)) {
1526                         ost_fid_build_resid(fid, &info->fti_resid);
1527                         rs = ldlm_resource_get(ns, NULL, &info->fti_resid,
1528                                                LDLM_EXTENT, 0);
1529                         if (!IS_ERR(rs)) {
1530                                 ldlm_res_lvbo_update(rs, NULL, 1);
1531                                 ldlm_resource_putref(rs);
1532                         }
1533                 }
1534
1535                 /* Convert back to client IDs. LU-9671.
1536                  * nodemap_get_from_exp() may fail due to nodemap deactivated,
1537                  * server ID will be returned back to client in that case. */
1538                 oa->o_uid = mapped_uid;
1539                 oa->o_gid = mapped_gid;
1540                 oa->o_projid = mapped_projid;
1541         } else if (cmd == OBD_BRW_READ) {
1542                 /* see comment on LPROC_OFD_STATS_WRITE_BYTES usage above */
1543                 ofd_counter_incr(exp, LPROC_OFD_STATS_READ_BYTES, jobid, nob);
1544                 ofd_counter_incr(exp, LPROC_OFD_STATS_READ, jobid,
1545                          ktime_us_delta(ktime_get(), kstart));
1546
1547                 rc = ofd_commitrw_read(env, ofd, fid, objcount,
1548                                        npages, lnb);
1549                 if (old_rc)
1550                         rc = old_rc;
1551         } else {
1552                 LBUG();
1553                 rc = -EPROTO;
1554         }
1555
1556         RETURN(rc);
1557 }