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