Whamcloud - gitweb
LU-6142 lustre: make ldebugfs_add_vars a void function
[fs/lustre-release.git] / lustre / ofd / ofd_dev.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_dev.c
33  *
34  * This file contains OSD API methods for OBD Filter Device (OFD),
35  * request handlers and supplemental functions to set OFD up and clean it up.
36  *
37  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
38  * Author: Mike Pershin <mike.pershin@intel.com>
39  * Author: Johann Lombardi <johann.lombardi@intel.com>
40  */
41 /*
42  * The OBD Filter Device (OFD) module belongs to the Object Storage
43  * Server stack and connects the RPC oriented Unified Target (TGT)
44  * layer (see lustre/include/lu_target.h) to the storage oriented OSD
45  * layer (see Documentation/osd-api.txt).
46  *
47  *     TGT
48  *      |      DT and OBD APIs
49  *     OFD
50  *      |      DT API
51  *     OSD
52  *
53  * OFD implements the LU and OBD device APIs and is responsible for:
54  *
55  * - Handling client requests (create, destroy, bulk IO, setattr,
56  *   get_info, set_info, statfs) for the objects belonging to the OST
57  *   (together with TGT).
58  *
59  * - Providing grant space management which allows clients to reserve
60  *   disk space for data writeback. OFD tracks grants on global and
61  *   per client levels.
62  *
63  * - Handling object precreation requests from MDTs.
64  *
65  * - Operating the LDLM service that allows clients to maintain object
66  *   data cache coherence.
67  */
68
69 #define DEBUG_SUBSYSTEM S_FILTER
70
71 #include <obd_class.h>
72 #include <obd_cksum.h>
73 #include <uapi/linux/lustre/lustre_param.h>
74 #include <lustre_fid.h>
75 #include <lustre_lfsck.h>
76 #include <lustre_dlm.h>
77 #include <lustre_quota.h>
78 #include <lustre_nodemap.h>
79 #include <lustre_log.h>
80
81 #include "ofd_internal.h"
82
83 /* Slab for OFD object allocation */
84 static struct kmem_cache *ofd_object_kmem;
85 static struct lu_kmem_descr ofd_caches[] = {
86         {
87                 .ckd_cache = &ofd_object_kmem,
88                 .ckd_name  = "ofd_obj",
89                 .ckd_size  = sizeof(struct ofd_object)
90         },
91         {
92                 .ckd_cache = NULL
93         }
94 };
95
96 /**
97  * Connect OFD to the next device in the stack.
98  *
99  * This function is used for device stack configuration and links OFD
100  * device with bottom OSD device.
101  *
102  * \param[in]  env      execution environment
103  * \param[in]  m        OFD device
104  * \param[in]  next     name of next device in the stack
105  * \param[out] exp      export to return
106  *
107  * \retval              0 and export in \a exp if successful
108  * \retval              negative value on error
109  */
110 static int ofd_connect_to_next(const struct lu_env *env, struct ofd_device *m,
111                                const char *next, struct obd_export **exp)
112 {
113         struct obd_connect_data *data = NULL;
114         struct obd_device       *obd;
115         int                      rc;
116         ENTRY;
117
118         OBD_ALLOC_PTR(data);
119         if (data == NULL)
120                 GOTO(out, rc = -ENOMEM);
121
122         obd = class_name2obd(next);
123         if (obd == NULL) {
124                 CERROR("%s: can't locate next device: %s\n",
125                        ofd_name(m), next);
126                 GOTO(out, rc = -ENOTCONN);
127         }
128
129         data->ocd_connect_flags = OBD_CONNECT_VERSION;
130         data->ocd_version = LUSTRE_VERSION_CODE;
131
132         rc = obd_connect(NULL, exp, obd, &obd->obd_uuid, data, NULL);
133         if (rc) {
134                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
135                        ofd_name(m), next, rc);
136                 GOTO(out, rc);
137         }
138
139         m->ofd_dt_dev.dd_lu_dev.ld_site =
140                 m->ofd_osd_exp->exp_obd->obd_lu_dev->ld_site;
141         LASSERT(m->ofd_dt_dev.dd_lu_dev.ld_site);
142         m->ofd_osd = lu2dt_dev(m->ofd_osd_exp->exp_obd->obd_lu_dev);
143         m->ofd_dt_dev.dd_lu_dev.ld_site->ls_top_dev = &m->ofd_dt_dev.dd_lu_dev;
144
145 out:
146         if (data)
147                 OBD_FREE_PTR(data);
148         RETURN(rc);
149 }
150
151 /**
152  * Initialize stack of devices.
153  *
154  * This function initializes OFD-OSD device stack to serve OST requests
155  *
156  * \param[in] env       execution environment
157  * \param[in] m         OFD device
158  * \param[in] cfg       Lustre config for this server
159  *
160  * \retval              0 if successful
161  * \retval              negative value on error
162  */
163 static int ofd_stack_init(const struct lu_env *env,
164                           struct ofd_device *m, struct lustre_cfg *cfg,
165                           u32 *lmd_flags)
166 {
167         const char              *dev = lustre_cfg_string(cfg, 0);
168         struct lu_device        *d;
169         struct ofd_thread_info  *info = ofd_info(env);
170         struct lustre_mount_info *lmi;
171         struct lustre_mount_data *lmd;
172         int                      rc;
173         char                    *osdname;
174
175         ENTRY;
176
177         lmi = server_get_mount(dev);
178         if (lmi == NULL) {
179                 CERROR("Cannot get mount info for %s!\n", dev);
180                 RETURN(-ENODEV);
181         }
182
183         lmd = s2lsi(lmi->lmi_sb)->lsi_lmd;
184         if (lmd) {
185                 if (lmd->lmd_flags & LMD_FLG_SKIP_LFSCK)
186                         m->ofd_skip_lfsck = 1;
187                 if (lmd->lmd_flags & LMD_FLG_NO_PRECREATE)
188                         m->ofd_no_precreate = 1;
189                 *lmd_flags = lmd->lmd_flags;
190         }
191
192         /* find bottom osd */
193         OBD_ALLOC(osdname, MTI_NAME_MAXLEN);
194         if (osdname == NULL)
195                 RETURN(-ENOMEM);
196
197         snprintf(osdname, MTI_NAME_MAXLEN, "%s-osd", dev);
198         rc = ofd_connect_to_next(env, m, osdname, &m->ofd_osd_exp);
199         OBD_FREE(osdname, MTI_NAME_MAXLEN);
200         if (rc)
201                 RETURN(rc);
202
203         d = m->ofd_osd_exp->exp_obd->obd_lu_dev;
204         LASSERT(d);
205         m->ofd_osd = lu2dt_dev(d);
206
207         snprintf(info->fti_u.name, sizeof(info->fti_u.name),
208                  "%s-osd", lustre_cfg_string(cfg, 0));
209
210         RETURN(rc);
211 }
212
213 /**
214  * Finalize the device stack OFD-OSD.
215  *
216  * This function cleans OFD-OSD device stack and
217  * disconnects OFD from the OSD.
218  *
219  * \param[in] env       execution environment
220  * \param[in] m         OFD device
221  * \param[in] top       top device of stack
222  *
223  * \retval              0 if successful
224  * \retval              negative value on error
225  */
226 static void ofd_stack_fini(const struct lu_env *env, struct ofd_device *m,
227                            struct lu_device *top)
228 {
229         struct obd_device       *obd = ofd_obd(m);
230         struct lustre_cfg_bufs   bufs;
231         struct lustre_cfg       *lcfg;
232         char                     flags[3] = "";
233
234         ENTRY;
235
236         lu_site_purge(env, top->ld_site, ~0);
237         /* process cleanup, pass mdt obd name to get obd umount flags */
238         lustre_cfg_bufs_reset(&bufs, obd->obd_name);
239         if (obd->obd_force)
240                 strcat(flags, "F");
241         if (obd->obd_fail)
242                 strcat(flags, "A");
243         lustre_cfg_bufs_set_string(&bufs, 1, flags);
244         OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
245         if (!lcfg)
246                 RETURN_EXIT;
247         lustre_cfg_init(lcfg, LCFG_CLEANUP, &bufs);
248
249         LASSERT(top);
250         top->ld_ops->ldo_process_config(env, top, lcfg);
251         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
252
253         if (m->ofd_los != NULL) {
254                 local_oid_storage_fini(env, m->ofd_los);
255                 m->ofd_los = NULL;
256         }
257
258         lu_site_purge(env, top->ld_site, ~0);
259         if (!cfs_hash_is_empty(top->ld_site->ls_obj_hash)) {
260                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_OTHER, NULL);
261                 lu_site_print(env, top->ld_site, &msgdata, lu_cdebug_printer);
262         }
263
264         LASSERT(m->ofd_osd_exp);
265         obd_disconnect(m->ofd_osd_exp);
266
267         EXIT;
268 }
269
270 static void ofd_stack_pre_fini(const struct lu_env *env, struct ofd_device *m,
271                                struct lu_device *top)
272 {
273         struct lustre_cfg_bufs bufs;
274         struct lustre_cfg *lcfg;
275         ENTRY;
276
277         LASSERT(top);
278
279         lustre_cfg_bufs_reset(&bufs, ofd_name(m));
280         lustre_cfg_bufs_set_string(&bufs, 1, NULL);
281         OBD_ALLOC(lcfg, lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
282         if (!lcfg) {
283                 CERROR("%s: failed to trigger LCFG_PRE_CLEANUP\n", ofd_name(m));
284         } else {
285                 lustre_cfg_init(lcfg, LCFG_PRE_CLEANUP, &bufs);
286                 top->ld_ops->ldo_process_config(env, top, lcfg);
287                 OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount,
288                                               lcfg->lcfg_buflens));
289         }
290
291         EXIT;
292 }
293
294 /* For interoperability, see mdt_interop_param[]. */
295 static struct cfg_interop_param ofd_interop_param[] = {
296         { "ost.quota_type",     NULL },
297         { NULL }
298 };
299
300 /**
301  * Check if parameters are symlinks to the OSD.
302  *
303  * Some parameters were moved from ofd to osd and only their
304  * symlinks were kept in ofd by LU-3106. They are:
305  * -writehthrough_cache_enable
306  * -readcache_max_filesize
307  * -read_cache_enable
308  * -brw_stats
309  *
310  * Since they are not included by the static lprocfs var list, a pre-check
311  * is added for them to avoid "unknown param" errors. If they are matched
312  * in this check, they will be passed to the OSD directly.
313  *
314  * \param[in] param     parameters to check
315  *
316  * \retval              true if param is symlink to OSD param
317  *                      false otherwise
318  */
319 static bool match_symlink_param(char *param)
320 {
321         char *sval;
322         int paramlen;
323
324         if (class_match_param(param, PARAM_OST, &param) == 0) {
325                 sval = strchr(param, '=');
326                 if (sval != NULL) {
327                         paramlen = sval - param;
328                         if (strncmp(param, "brw_stats", paramlen) == 0)
329                                 return true;
330                 }
331         }
332
333         return false;
334 }
335
336 /**
337  * Process various configuration parameters.
338  *
339  * This function is used by MGS to process specific configurations and
340  * pass them through to the next device in server stack, i.e. the OSD.
341  *
342  * \param[in] env       execution environment
343  * \param[in] d         LU device of OFD
344  * \param[in] cfg       parameters to process
345  *
346  * \retval              0 if successful
347  * \retval              negative value on error
348  */
349 static int ofd_process_config(const struct lu_env *env, struct lu_device *d,
350                               struct lustre_cfg *cfg)
351 {
352         struct ofd_device       *m = ofd_dev(d);
353         struct dt_device        *dt_next = m->ofd_osd;
354         struct lu_device        *next = &dt_next->dd_lu_dev;
355         int                      rc;
356
357         ENTRY;
358
359         switch (cfg->lcfg_command) {
360         case LCFG_PARAM: {
361                 /* For interoperability */
362                 struct cfg_interop_param *ptr = NULL;
363                 struct lustre_cfg *old_cfg = NULL;
364                 char *param = NULL;
365                 ssize_t count;
366
367                 param = lustre_cfg_string(cfg, 1);
368                 if (param == NULL) {
369                         CERROR("param is empty\n");
370                         rc = -EINVAL;
371                         break;
372                 }
373
374                 ptr = class_find_old_param(param, ofd_interop_param);
375                 if (ptr != NULL) {
376                         if (ptr->new_param == NULL) {
377                                 rc = 0;
378                                 CWARN("For interoperability, skip this %s."
379                                       " It is obsolete.\n", ptr->old_param);
380                                 break;
381                         }
382
383                         CWARN("Found old param %s, changed it to %s.\n",
384                               ptr->old_param, ptr->new_param);
385
386                         old_cfg = cfg;
387                         cfg = lustre_cfg_rename(old_cfg, ptr->new_param);
388                         if (IS_ERR(cfg)) {
389                                 rc = PTR_ERR(cfg);
390                                 break;
391                         }
392                 }
393
394                 if (match_symlink_param(param)) {
395                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
396                         break;
397                 }
398
399                 count = class_modify_config(cfg, PARAM_OST,
400                                             &d->ld_obd->obd_kset.kobj);
401                 if (count > 0) {
402                         rc = 0;
403                         break;
404                 }
405                 CDEBUG(D_CONFIG, "pass param %s down the stack.\n",
406                        param);
407                 /* we don't understand; pass it on */
408                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
409                 break;
410         }
411         case LCFG_SPTLRPC_CONF: {
412                 rc = -ENOTSUPP;
413                 break;
414         }
415         default:
416                 /* others are passed further */
417                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
418                 break;
419         }
420         RETURN(rc);
421 }
422
423 /**
424  * Implementation of lu_object_operations::loo_object_init for OFD
425  *
426  * Allocate just the next object (OSD) in stack.
427  *
428  * \param[in] env       execution environment
429  * \param[in] o         lu_object of OFD object
430  * \param[in] conf      additional configuration parameters, not used here
431  *
432  * \retval              0 if successful
433  * \retval              negative value on error
434  */
435 static int ofd_object_init(const struct lu_env *env, struct lu_object *o,
436                            const struct lu_object_conf *conf)
437 {
438         struct ofd_device       *d = ofd_dev(o->lo_dev);
439         struct lu_device        *under;
440         struct lu_object        *below;
441         int                      rc = 0;
442
443         ENTRY;
444
445         CDEBUG(D_INFO, "object init, fid = "DFID"\n",
446                PFID(lu_object_fid(o)));
447
448         under = &d->ofd_osd->dd_lu_dev;
449         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
450         if (below != NULL)
451                 lu_object_add(o, below);
452         else
453                 rc = -ENOMEM;
454
455         RETURN(rc);
456 }
457
458 static void ofd_object_free_rcu(struct rcu_head *head)
459 {
460         struct ofd_object *of = container_of(head, struct ofd_object,
461                                              ofo_header.loh_rcu);
462
463         kmem_cache_free(ofd_object_kmem, of);
464 }
465
466 /**
467  * Implementation of lu_object_operations::loo_object_free.
468  *
469  * Finish OFD object lifecycle and free its memory.
470  *
471  * \param[in] env       execution environment
472  * \param[in] o         LU object of OFD object
473  */
474 static void ofd_object_free(const struct lu_env *env, struct lu_object *o)
475 {
476         struct ofd_object       *of = ofd_obj(o);
477         struct lu_object_header *h;
478
479         ENTRY;
480
481         h = o->lo_header;
482         CDEBUG(D_INFO, "object free, fid = "DFID"\n",
483                PFID(lu_object_fid(o)));
484
485         lu_object_fini(o);
486         lu_object_header_fini(h);
487         OBD_FREE_PRE(of, sizeof(*of), "slab-freed");
488         call_rcu(&of->ofo_header.loh_rcu, ofd_object_free_rcu);
489         EXIT;
490 }
491
492 /**
493  * Implementation of lu_object_operations::loo_object_print.
494  *
495  * Print OFD part of compound OFD-OSD object. See lu_object_print() and
496  * LU_OBJECT_DEBUG() for more details about the compound object printing.
497  *
498  * \param[in] env       execution environment
499  * \param[in] cookie    opaque data passed to the printer function
500  * \param[in] p         printer function to use
501  * \param[in] o         LU object of OFD object
502  *
503  * \retval              0 if successful
504  * \retval              negative value on error
505  */
506 static int ofd_object_print(const struct lu_env *env, void *cookie,
507                             lu_printer_t p, const struct lu_object *o)
508 {
509         return (*p)(env, cookie, LUSTRE_OST_NAME"-object@%p", o);
510 }
511
512 static struct lu_object_operations ofd_obj_ops = {
513         .loo_object_init        = ofd_object_init,
514         .loo_object_free        = ofd_object_free,
515         .loo_object_print       = ofd_object_print
516 };
517
518 /**
519  * Implementation of lu_device_operations::lod_object_alloc.
520  *
521  * This function allocates OFD part of compound OFD-OSD object and
522  * initializes its header, because OFD is the top device in stack
523  *
524  * \param[in] env       execution environment
525  * \param[in] hdr       object header, NULL for OFD
526  * \param[in] d         lu_device
527  *
528  * \retval              allocated object if successful
529  * \retval              NULL value on failed allocation
530  */
531 static struct lu_object *ofd_object_alloc(const struct lu_env *env,
532                                           const struct lu_object_header *hdr,
533                                           struct lu_device *d)
534 {
535         struct ofd_object *of;
536
537         ENTRY;
538
539         OBD_SLAB_ALLOC_PTR_GFP(of, ofd_object_kmem, GFP_NOFS);
540         if (of != NULL) {
541                 struct lu_object        *o;
542                 struct lu_object_header *h;
543
544                 o = &of->ofo_obj.do_lu;
545                 h = &of->ofo_header;
546                 lu_object_header_init(h);
547                 lu_object_init(o, h, d);
548                 lu_object_add_top(h, o);
549                 o->lo_ops = &ofd_obj_ops;
550                 RETURN(o);
551         } else {
552                 RETURN(NULL);
553         }
554 }
555
556 /**
557  * Return the result of LFSCK run to the OFD.
558  *
559  * Notify OFD about result of LFSCK run. That may block the new object
560  * creation until problem is fixed by LFSCK.
561  *
562  * \param[in] env       execution environment
563  * \param[in] data      pointer to the OFD device
564  * \param[in] event     LFSCK event type
565  *
566  * \retval              0 if successful
567  * \retval              negative value on unknown event
568  */
569 static int ofd_lfsck_out_notify(const struct lu_env *env, void *data,
570                                 enum lfsck_events event)
571 {
572         struct ofd_device *ofd = data;
573         struct obd_device *obd = ofd_obd(ofd);
574
575         switch (event) {
576         case LE_LASTID_REBUILDING:
577                 CWARN("%s: Found crashed LAST_ID, deny creating new OST-object "
578                       "on the device until the LAST_ID rebuilt successfully.\n",
579                       obd->obd_name);
580                 down_write(&ofd->ofd_lastid_rwsem);
581                 ofd->ofd_lastid_rebuilding = 1;
582                 up_write(&ofd->ofd_lastid_rwsem);
583                 break;
584         case LE_LASTID_REBUILT: {
585                 down_write(&ofd->ofd_lastid_rwsem);
586                 ofd_seqs_free(env, ofd);
587                 ofd->ofd_lastid_rebuilding = 0;
588                 ofd->ofd_lastid_gen++;
589                 up_write(&ofd->ofd_lastid_rwsem);
590                 CWARN("%s: Rebuilt crashed LAST_ID files successfully.\n",
591                       obd->obd_name);
592                 break;
593         }
594         default:
595                 CERROR("%s: unknown lfsck event: rc = %d\n",
596                        ofd_name(ofd), event);
597                 return -EINVAL;
598         }
599
600         return 0;
601 }
602
603 /**
604  * Implementation of lu_device_operations::ldo_prepare.
605  *
606  * This method is called after layer has been initialized and before it starts
607  * serving user requests. In OFD it starts lfsk check routines and initializes
608  * recovery.
609  *
610  * \param[in] env       execution environment
611  * \param[in] pdev      higher device in stack, NULL for OFD
612  * \param[in] dev       lu_device of OFD device
613  *
614  * \retval              0 if successful
615  * \retval              negative value on error
616  */
617 static int ofd_prepare(const struct lu_env *env, struct lu_device *pdev,
618                        struct lu_device *dev)
619 {
620         struct ofd_thread_info          *info;
621         struct ofd_device               *ofd = ofd_dev(dev);
622         struct obd_device               *obd = ofd_obd(ofd);
623         struct lu_device                *next = &ofd->ofd_osd->dd_lu_dev;
624         int                              rc;
625
626         ENTRY;
627
628         info = ofd_info_init(env, NULL);
629         if (info == NULL)
630                 RETURN(-EFAULT);
631
632         /* initialize lower device */
633         rc = next->ld_ops->ldo_prepare(env, dev, next);
634         if (rc != 0)
635                 RETURN(rc);
636
637         rc = lfsck_register(env, ofd->ofd_osd, ofd->ofd_osd, obd,
638                             ofd_lfsck_out_notify, ofd, false);
639         if (rc != 0) {
640                 CERROR("%s: failed to initialize lfsck: rc = %d\n",
641                        obd->obd_name, rc);
642                 RETURN(rc);
643         }
644
645         rc = lfsck_register_namespace(env, ofd->ofd_osd, ofd->ofd_namespace);
646         /* The LFSCK instance is registered just now, so it must be there when
647          * register the namespace to such instance. */
648         LASSERTF(rc == 0, "register namespace failed: rc = %d\n", rc);
649
650         target_recovery_init(&ofd->ofd_lut, tgt_request_handle);
651         OBD_FAIL_TIMEOUT_ORSET(OBD_FAIL_OST_PREPARE_DELAY, OBD_FAIL_ONCE,
652                                (OBD_TIMEOUT_DEFAULT + 1) / 4);
653         LASSERT(obd->obd_no_conn);
654         spin_lock(&obd->obd_dev_lock);
655         obd->obd_no_conn = 0;
656         spin_unlock(&obd->obd_dev_lock);
657
658         if (obd->obd_recovering == 0)
659                 ofd_postrecov(env, ofd);
660
661         RETURN(rc);
662 }
663
664 /**
665  * Implementation of lu_device_operations::ldo_recovery_complete.
666  *
667  * This method notifies all layers about 'recovery complete' event. That means
668  * device is in full state and consistent. An OFD calculates available grant
669  * space upon this event.
670  *
671  * \param[in] env       execution environment
672  * \param[in] dev       lu_device of OFD device
673  *
674  * \retval              0 if successful
675  * \retval              negative value on error
676  */
677 static int ofd_recovery_complete(const struct lu_env *env,
678                                  struct lu_device *dev)
679 {
680         struct ofd_thread_info  *oti = ofd_info(env);
681         struct ofd_device       *ofd = ofd_dev(dev);
682         struct lu_device        *next = &ofd->ofd_osd->dd_lu_dev;
683         int                      rc = 0;
684
685         ENTRY;
686
687         /*
688          * Grant space for object precreation on the self export.
689          * The initial reserved space (i.e. 10MB for zfs and 280KB for ldiskfs)
690          * is enough to create 10k objects. More space is then acquired for
691          * precreation in tgt_grant_create().
692          */
693         memset(&oti->fti_ocd, 0, sizeof(oti->fti_ocd));
694         oti->fti_ocd.ocd_grant = OST_MAX_PRECREATE / 2;
695         oti->fti_ocd.ocd_grant *= ofd->ofd_lut.lut_dt_conf.ddp_inodespace;
696         oti->fti_ocd.ocd_connect_flags = OBD_CONNECT_GRANT |
697                                          OBD_CONNECT_GRANT_PARAM;
698         tgt_grant_connect(env, dev->ld_obd->obd_self_export, &oti->fti_ocd,
699                           true);
700         rc = next->ld_ops->ldo_recovery_complete(env, next);
701         RETURN(rc);
702 }
703
704 /**
705  * lu_device_operations matrix for OFD device.
706  */
707 static struct lu_device_operations ofd_lu_ops = {
708         .ldo_object_alloc       = ofd_object_alloc,
709         .ldo_process_config     = ofd_process_config,
710         .ldo_recovery_complete  = ofd_recovery_complete,
711         .ldo_prepare            = ofd_prepare,
712 };
713
714 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 14, 53, 0)
715 /**
716  * Expose OSD statistics to OFD layer.
717  *
718  * The osd interfaces to the backend file system exposes useful data
719  * such as brw_stats and read or write cache states. This same data
720  * needs to be exposed into the obdfilter (ofd) layer to maintain
721  * backwards compatibility. This function creates the symlinks in the
722  * proc layer to enable this.
723  *
724  * \param[in] ofd       OFD device
725  */
726 static void ofd_procfs_add_brw_stats_symlink(struct ofd_device *ofd)
727 {
728         struct obd_device *obd = ofd_obd(ofd);
729         struct obd_device *osd_obd = ofd->ofd_osd_exp->exp_obd;
730         struct kobj_type *osd_type;
731         int i;
732
733         osd_type = get_ktype(&ofd->ofd_osd->dd_kobj);
734         for (i = 0; osd_type->default_attrs[i]; i++) {
735                 if (strcmp(osd_type->default_attrs[i]->name,
736                            "read_cache_enable") == 0) {
737                         ofd->ofd_read_cache_enable =
738                                 osd_type->default_attrs[i];
739                 }
740
741                 if (strcmp(osd_type->default_attrs[i]->name,
742                            "readcache_max_filesize") == 0) {
743                         ofd->ofd_read_cache_max_filesize =
744                                 osd_type->default_attrs[i];
745                 }
746
747                 if (strcmp(osd_type->default_attrs[i]->name,
748                            "writethrough_cache_enable") == 0) {
749                         ofd->ofd_write_cache_enable =
750                                 osd_type->default_attrs[i];
751                 }
752         }
753
754         if (obd->obd_proc_entry == NULL)
755                 return;
756
757         lprocfs_add_symlink("brw_stats", obd->obd_proc_entry,
758                             "../../%s/%s/brw_stats",
759                             osd_obd->obd_type->typ_name, obd->obd_name);
760 }
761 #endif
762
763 /**
764  * Cleanup all procfs entries in OFD.
765  *
766  * \param[in] ofd       OFD device
767  */
768 static void ofd_procfs_fini(struct ofd_device *ofd)
769 {
770         struct obd_device *obd = ofd_obd(ofd);
771
772         tgt_tunables_fini(&ofd->ofd_lut);
773         lprocfs_free_per_client_stats(obd);
774         lprocfs_obd_cleanup(obd);
775         lprocfs_free_obd_stats(obd);
776         lprocfs_job_stats_fini(obd);
777 }
778
779 /**
780  * Stop SEQ/FID server on OFD.
781  *
782  * \param[in] env       execution environment
783  * \param[in] ofd       OFD device
784  *
785  * \retval              0 if successful
786  * \retval              negative value on error
787  */
788 int ofd_fid_fini(const struct lu_env *env, struct ofd_device *ofd)
789 {
790         return seq_site_fini(env, &ofd->ofd_seq_site);
791 }
792
793 /**
794  * Start SEQ/FID server on OFD.
795  *
796  * The SEQ/FID server on OFD is needed to allocate FIDs for new objects.
797  * It also connects to the master server to get own FID sequence (SEQ) range
798  * to this particular OFD. Typically that happens when the OST is first
799  * formatted or in the rare case that it exhausts the local sequence range.
800  *
801  * The sequence range is allocated out to the MDTs for OST object allocations,
802  * and not directly to the clients.
803  *
804  * \param[in] env       execution environment
805  * \param[in] ofd       OFD device
806  *
807  * \retval              0 if successful
808  * \retval              negative value on error
809  */
810 int ofd_fid_init(const struct lu_env *env, struct ofd_device *ofd)
811 {
812         struct seq_server_site *ss = &ofd->ofd_seq_site;
813         struct lu_device *lu = &ofd->ofd_dt_dev.dd_lu_dev;
814         char *obd_name = ofd_name(ofd);
815         char *name = NULL;
816         int len = strlen(obd_name) + 7;
817         int rc = 0;
818
819         ss = &ofd->ofd_seq_site;
820         lu->ld_site->ld_seq_site = ss;
821         ss->ss_lu = lu->ld_site;
822         ss->ss_node_id = ofd->ofd_lut.lut_lsd.lsd_osd_index;
823
824         OBD_ALLOC(name, len);
825         if (name == NULL)
826                 return -ENOMEM;
827
828         OBD_ALLOC_PTR(ss->ss_server_seq);
829         if (ss->ss_server_seq == NULL)
830                 GOTO(out_name, rc = -ENOMEM);
831
832         rc = seq_server_init(env, ss->ss_server_seq, ofd->ofd_osd, obd_name,
833                              LUSTRE_SEQ_SERVER, ss);
834         if (rc) {
835                 CERROR("%s: seq server init error: rc = %d\n", obd_name, rc);
836                 GOTO(out_server, rc);
837         }
838         ss->ss_server_seq->lss_space.lsr_index = ss->ss_node_id;
839
840         OBD_ALLOC_PTR(ss->ss_client_seq);
841         if (ss->ss_client_seq == NULL)
842                 GOTO(out_server, rc = -ENOMEM);
843
844         snprintf(name, len, "%s-super", obd_name);
845         seq_client_init(ss->ss_client_seq, NULL, LUSTRE_SEQ_DATA,
846                         name, NULL);
847
848         rc = seq_server_set_cli(env, ss->ss_server_seq, ss->ss_client_seq);
849
850         if (rc) {
851                 seq_client_fini(ss->ss_client_seq);
852                 OBD_FREE_PTR(ss->ss_client_seq);
853                 ss->ss_client_seq = NULL;
854 out_server:
855                 seq_server_fini(ss->ss_server_seq, env);
856                 OBD_FREE_PTR(ss->ss_server_seq);
857                 ss->ss_server_seq = NULL;
858         }
859 out_name:
860         OBD_FREE(name, len);
861
862         return rc;
863 }
864
865 /**
866  * OFD request handler for OST_SET_INFO RPC.
867  *
868  * This is OFD-specific part of request handling
869  *
870  * \param[in] tsi       target session environment for this request
871  *
872  * \retval              0 if successful
873  * \retval              negative value on error
874  */
875 static int ofd_set_info_hdl(struct tgt_session_info *tsi)
876 {
877         struct ptlrpc_request   *req = tgt_ses_req(tsi);
878         struct ost_body         *body = NULL, *repbody;
879         void                    *key, *val = NULL;
880         int                      keylen, vallen, rc = 0;
881         bool                     is_grant_shrink;
882
883         ENTRY;
884
885         key = req_capsule_client_get(tsi->tsi_pill, &RMF_SETINFO_KEY);
886         if (key == NULL) {
887                 DEBUG_REQ(D_HA, req, "no set_info key");
888                 RETURN(err_serious(-EFAULT));
889         }
890         keylen = req_capsule_get_size(tsi->tsi_pill, &RMF_SETINFO_KEY,
891                                       RCL_CLIENT);
892
893         val = req_capsule_client_get(tsi->tsi_pill, &RMF_SETINFO_VAL);
894         if (val == NULL) {
895                 DEBUG_REQ(D_HA, req, "no set_info val");
896                 RETURN(err_serious(-EFAULT));
897         }
898         vallen = req_capsule_get_size(tsi->tsi_pill, &RMF_SETINFO_VAL,
899                                       RCL_CLIENT);
900
901         is_grant_shrink = KEY_IS(KEY_GRANT_SHRINK);
902         if (is_grant_shrink)
903                 /* In this case the value is actually an RMF_OST_BODY, so we
904                  * transmutate the type of this PTLRPC */
905                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_SET_GRANT_INFO);
906
907         rc = req_capsule_server_pack(tsi->tsi_pill);
908         if (rc < 0)
909                 RETURN(rc);
910
911         if (is_grant_shrink) {
912                 body = req_capsule_client_get(tsi->tsi_pill, &RMF_OST_BODY);
913
914                 repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
915                 *repbody = *body;
916
917                 /** handle grant shrink, similar to a read request */
918                 tgt_grant_prepare_read(tsi->tsi_env, tsi->tsi_exp,
919                                        &repbody->oa);
920         } else if (KEY_IS(KEY_EVICT_BY_NID)) {
921                 if (vallen > 0)
922                         obd_export_evict_by_nid(tsi->tsi_exp->exp_obd, val);
923                 rc = 0;
924         } else {
925                 CERROR("%s: Unsupported key %s\n",
926                        tgt_name(tsi->tsi_tgt), (char *)key);
927                 rc = -EOPNOTSUPP;
928         }
929         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_SET_INFO,
930                          tsi->tsi_jobid, 1);
931
932         RETURN(rc);
933 }
934
935 /**
936  * Get FIEMAP (FIle Extent MAPping) for object with the given FID.
937  *
938  * This function returns a list of extents which describes how a file's
939  * blocks are laid out on the disk.
940  *
941  * \param[in] env       execution environment
942  * \param[in] ofd       OFD device
943  * \param[in] fid       FID of object
944  * \param[in] fiemap    fiemap structure to fill with data
945  *
946  * \retval              0 if \a fiemap is filled with data successfully
947  * \retval              negative value on error
948  */
949 int ofd_fiemap_get(const struct lu_env *env, struct ofd_device *ofd,
950                    struct lu_fid *fid, struct fiemap *fiemap)
951 {
952         struct ofd_object       *fo;
953         int                      rc;
954
955         fo = ofd_object_find(env, ofd, fid);
956         if (IS_ERR(fo)) {
957                 CERROR("%s: error finding object "DFID"\n",
958                        ofd_name(ofd), PFID(fid));
959                 return PTR_ERR(fo);
960         }
961
962         ofd_read_lock(env, fo);
963         if (ofd_object_exists(fo))
964                 rc = dt_fiemap_get(env, ofd_object_child(fo), fiemap);
965         else
966                 rc = -ENOENT;
967         ofd_read_unlock(env, fo);
968         ofd_object_put(env, fo);
969         return rc;
970 }
971
972
973 static int ofd_lock_unlock_region(const struct lu_env *env,
974                                   struct ldlm_namespace *ns,
975                                   struct ldlm_res_id *res_id,
976                                   unsigned long long begin,
977                                   unsigned long long end)
978 {
979         __u64                    flags = 0;
980         int                      rc;
981         struct lustre_handle     lh = { 0 };
982
983         LASSERT(begin <= end);
984
985         rc = tgt_extent_lock(env, ns, res_id, begin, end, &lh, LCK_PR, &flags);
986         if (rc != 0)
987                 return rc;
988
989         CDEBUG(D_OTHER, "ost lock [%llu,%llu], lh=%p\n", begin, end, &lh);
990         tgt_extent_unlock(&lh, LCK_PR);
991
992         return 0;
993 }
994
995 /**
996  * Lock the sparse areas of given resource.
997  *
998  * The locking of sparse areas will cause dirty data to be flushed back from
999  * clients. This is used when getting the FIEMAP of an object to make sure
1000  * there is no unaccounted cached data on clients.
1001  *
1002  * This function goes through \a fiemap list of extents and locks only sparse
1003  * areas between extents.
1004  *
1005  * \param[in] ns        LDLM namespace
1006  * \param[in] res_id    resource ID
1007  * \param[in] fiemap    file extents mapping on disk
1008  * \param[in] locked    list head of regions list
1009  *
1010  * \retval              0 if successful
1011  * \retval              negative value on error
1012  */
1013 static int lock_zero_regions(const struct lu_env *env,
1014                              struct ldlm_namespace *ns,
1015                              struct ldlm_res_id *res_id,
1016                              struct fiemap *fiemap)
1017 {
1018         __u64 begin = fiemap->fm_start;
1019         unsigned int i;
1020         int rc = 0;
1021         struct fiemap_extent *fiemap_start = fiemap->fm_extents;
1022
1023         ENTRY;
1024
1025         CDEBUG(D_OTHER, "extents count %u\n", fiemap->fm_mapped_extents);
1026         for (i = 0; i < fiemap->fm_mapped_extents; i++) {
1027                 if (fiemap_start[i].fe_logical > begin) {
1028                         CDEBUG(D_OTHER, "ost lock [%llu,%llu]\n",
1029                                begin, fiemap_start[i].fe_logical);
1030                         rc = ofd_lock_unlock_region(env, ns, res_id, begin,
1031                                                     fiemap_start[i].fe_logical);
1032                         if (rc)
1033                                 RETURN(rc);
1034                 }
1035
1036                 begin = fiemap_start[i].fe_logical + fiemap_start[i].fe_length;
1037         }
1038
1039         if (begin < (fiemap->fm_start + fiemap->fm_length)) {
1040                 CDEBUG(D_OTHER, "ost lock [%llu,%llu]\n",
1041                        begin, fiemap->fm_start + fiemap->fm_length);
1042                 rc = ofd_lock_unlock_region(env, ns, res_id, begin,
1043                                 fiemap->fm_start + fiemap->fm_length);
1044         }
1045
1046         RETURN(rc);
1047 }
1048
1049
1050 /**
1051  * OFD request handler for OST_GET_INFO RPC.
1052  *
1053  * This is OFD-specific part of request handling. The OFD-specific keys are:
1054  * - KEY_LAST_ID (obsolete)
1055  * - KEY_FIEMAP
1056  * - KEY_LAST_FID
1057  *
1058  * This function reads needed data from storage and fills reply with it.
1059  *
1060  * Note: the KEY_LAST_ID is obsolete, replaced by KEY_LAST_FID on newer MDTs,
1061  * and is kept for compatibility.
1062  *
1063  * \param[in] tsi       target session environment for this request
1064  *
1065  * \retval              0 if successful
1066  * \retval              negative value on error
1067  */
1068 static int ofd_get_info_hdl(struct tgt_session_info *tsi)
1069 {
1070         struct obd_export               *exp = tsi->tsi_exp;
1071         struct ofd_device               *ofd = ofd_exp(exp);
1072         struct ofd_thread_info          *fti = tsi2ofd_info(tsi);
1073         void                            *key;
1074         int                              keylen;
1075         int                              replylen, rc = 0;
1076
1077         ENTRY;
1078
1079         /* this common part for get_info rpc */
1080         key = req_capsule_client_get(tsi->tsi_pill, &RMF_GETINFO_KEY);
1081         if (key == NULL) {
1082                 DEBUG_REQ(D_HA, tgt_ses_req(tsi), "no get_info key");
1083                 RETURN(err_serious(-EPROTO));
1084         }
1085         keylen = req_capsule_get_size(tsi->tsi_pill, &RMF_GETINFO_KEY,
1086                                       RCL_CLIENT);
1087
1088         if (KEY_IS(KEY_LAST_ID)) {
1089                 u64             *last_id;
1090                 struct ofd_seq  *oseq;
1091
1092                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_GET_INFO_LAST_ID);
1093                 rc = req_capsule_server_pack(tsi->tsi_pill);
1094                 if (rc)
1095                         RETURN(err_serious(rc));
1096
1097                 last_id = req_capsule_server_get(tsi->tsi_pill, &RMF_OBD_ID);
1098
1099                 oseq = ofd_seq_load(tsi->tsi_env, ofd,
1100                                     (u64)exp->exp_filter_data.fed_group);
1101                 if (IS_ERR(oseq))
1102                         rc = -EFAULT;
1103                 else
1104                         *last_id = ofd_seq_last_oid(oseq);
1105                 ofd_seq_put(tsi->tsi_env, oseq);
1106         } else if (KEY_IS(KEY_FIEMAP)) {
1107                 struct ll_fiemap_info_key       *fm_key;
1108                 struct fiemap                   *fiemap;
1109                 struct lu_fid                   *fid;
1110
1111                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_GET_INFO_FIEMAP);
1112
1113                 fm_key = req_capsule_client_get(tsi->tsi_pill, &RMF_FIEMAP_KEY);
1114                 rc = tgt_validate_obdo(tsi, &fm_key->lfik_oa);
1115                 if (rc)
1116                         RETURN(err_serious(rc));
1117
1118                 fid = &fm_key->lfik_oa.o_oi.oi_fid;
1119
1120                 CDEBUG(D_INODE, "get FIEMAP of object "DFID"\n", PFID(fid));
1121
1122                 replylen = fiemap_count_to_size(
1123                                         fm_key->lfik_fiemap.fm_extent_count);
1124                 req_capsule_set_size(tsi->tsi_pill, &RMF_FIEMAP_VAL,
1125                                      RCL_SERVER, replylen);
1126
1127                 rc = req_capsule_server_pack(tsi->tsi_pill);
1128                 if (rc)
1129                         RETURN(err_serious(rc));
1130
1131                 fiemap = req_capsule_server_get(tsi->tsi_pill, &RMF_FIEMAP_VAL);
1132                 if (fiemap == NULL)
1133                         RETURN(-ENOMEM);
1134
1135                 *fiemap = fm_key->lfik_fiemap;
1136                 rc = ofd_fiemap_get(tsi->tsi_env, ofd, fid, fiemap);
1137
1138                 /* LU-3219: Lock the sparse areas to make sure dirty
1139                  * flushed back from client, then call fiemap again. */
1140                 if (fm_key->lfik_oa.o_valid & OBD_MD_FLFLAGS &&
1141                     fm_key->lfik_oa.o_flags & OBD_FL_SRVLOCK) {
1142                         ost_fid_build_resid(fid, &fti->fti_resid);
1143                         rc = lock_zero_regions(tsi->tsi_env, ofd->ofd_namespace,
1144                                                &fti->fti_resid, fiemap);
1145                         if (rc == 0)
1146                                 rc = ofd_fiemap_get(tsi->tsi_env, ofd, fid,
1147                                                     fiemap);
1148                 }
1149         } else if (KEY_IS(KEY_LAST_FID)) {
1150                 struct ofd_device       *ofd = ofd_exp(exp);
1151                 struct ofd_seq          *oseq;
1152                 struct lu_fid           *fid;
1153                 int                      rc;
1154
1155                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_GET_INFO_LAST_FID);
1156                 rc = req_capsule_server_pack(tsi->tsi_pill);
1157                 if (rc)
1158                         RETURN(err_serious(rc));
1159
1160                 fid = req_capsule_client_get(tsi->tsi_pill, &RMF_FID);
1161                 if (fid == NULL)
1162                         RETURN(err_serious(-EPROTO));
1163
1164                 fid_le_to_cpu(&fti->fti_ostid.oi_fid, fid);
1165
1166                 fid = req_capsule_server_get(tsi->tsi_pill, &RMF_FID);
1167                 if (fid == NULL)
1168                         RETURN(-ENOMEM);
1169
1170                 oseq = ofd_seq_load(tsi->tsi_env, ofd,
1171                                     ostid_seq(&fti->fti_ostid));
1172                 if (IS_ERR(oseq))
1173                         RETURN(PTR_ERR(oseq));
1174
1175                 rc = ostid_to_fid(fid, &oseq->os_oi,
1176                                   ofd->ofd_lut.lut_lsd.lsd_osd_index);
1177                 if (rc != 0)
1178                         GOTO(out_put, rc);
1179
1180                 CDEBUG(D_HA, "%s: LAST FID is "DFID"\n", ofd_name(ofd),
1181                        PFID(fid));
1182 out_put:
1183                 ofd_seq_put(tsi->tsi_env, oseq);
1184         } else {
1185                 CERROR("%s: not supported key %s\n", tgt_name(tsi->tsi_tgt),
1186                        (char *)key);
1187                 rc = -EOPNOTSUPP;
1188         }
1189         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_GET_INFO,
1190                          tsi->tsi_jobid, 1);
1191
1192         RETURN(rc);
1193 }
1194
1195 /**
1196  * OFD request handler for OST_GETATTR RPC.
1197  *
1198  * This is OFD-specific part of request handling. It finds the OFD object
1199  * by its FID, gets attributes from storage and packs result to the reply.
1200  *
1201  * \param[in] tsi       target session environment for this request
1202  *
1203  * \retval              0 if successful
1204  * \retval              negative value on error
1205  */
1206 static int ofd_getattr_hdl(struct tgt_session_info *tsi)
1207 {
1208         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
1209         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
1210         struct ost_body         *repbody;
1211         struct lustre_handle     lh = { 0 };
1212         struct ofd_object       *fo;
1213         __u64                    flags = 0;
1214         enum ldlm_mode           lock_mode = LCK_PR;
1215         bool                     srvlock;
1216         int                      rc;
1217         ENTRY;
1218
1219         LASSERT(tsi->tsi_ost_body != NULL);
1220
1221         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1222         if (repbody == NULL)
1223                 RETURN(-ENOMEM);
1224
1225         repbody->oa.o_oi = tsi->tsi_ost_body->oa.o_oi;
1226         repbody->oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1227
1228         srvlock = tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLFLAGS &&
1229                   tsi->tsi_ost_body->oa.o_flags & OBD_FL_SRVLOCK;
1230
1231         if (srvlock) {
1232                 if (unlikely(tsi->tsi_ost_body->oa.o_flags & OBD_FL_FLUSH))
1233                         lock_mode = LCK_PW;
1234
1235                 rc = tgt_extent_lock(tsi->tsi_env,
1236                                      tsi->tsi_tgt->lut_obd->obd_namespace,
1237                                      &tsi->tsi_resid, 0, OBD_OBJECT_EOF, &lh,
1238                                      lock_mode, &flags);
1239                 if (rc != 0)
1240                         RETURN(rc);
1241         }
1242
1243         fo = ofd_object_find_exists(tsi->tsi_env, ofd, &tsi->tsi_fid);
1244         if (IS_ERR(fo))
1245                 GOTO(out, rc = PTR_ERR(fo));
1246
1247         rc = ofd_attr_get(tsi->tsi_env, fo, &fti->fti_attr);
1248         if (rc == 0) {
1249                 __u64    curr_version;
1250
1251                 obdo_from_la(&repbody->oa, &fti->fti_attr,
1252                              OFD_VALID_FLAGS | LA_UID | LA_GID | LA_PROJID);
1253
1254                 /* Store object version in reply */
1255                 curr_version = dt_version_get(tsi->tsi_env,
1256                                               ofd_object_child(fo));
1257                 if ((__s64)curr_version != -EOPNOTSUPP) {
1258                         repbody->oa.o_valid |= OBD_MD_FLDATAVERSION;
1259                         repbody->oa.o_data_version = curr_version;
1260                 }
1261
1262                 if (fo->ofo_ff.ff_layout_version > 0) {
1263                         repbody->oa.o_valid |= OBD_MD_LAYOUT_VERSION;
1264                         repbody->oa.o_layout_version =
1265                              fo->ofo_ff.ff_layout_version + fo->ofo_ff.ff_range;
1266
1267                         CDEBUG(D_INODE, DFID": get layout version: %u\n",
1268                                PFID(&tsi->tsi_fid),
1269                                repbody->oa.o_layout_version);
1270                 }
1271         }
1272
1273         ofd_object_put(tsi->tsi_env, fo);
1274 out:
1275         if (srvlock)
1276                 tgt_extent_unlock(&lh, lock_mode);
1277
1278         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_GETATTR,
1279                          tsi->tsi_jobid, 1);
1280
1281         repbody->oa.o_valid |= OBD_MD_FLFLAGS;
1282         repbody->oa.o_flags = OBD_FL_FLUSH;
1283
1284         RETURN(rc);
1285 }
1286
1287 /**
1288  * OFD request handler for OST_SETATTR RPC.
1289  *
1290  * This is OFD-specific part of request handling. It finds the OFD object
1291  * by its FID, sets attributes from request and packs result to the reply.
1292  *
1293  * \param[in] tsi       target session environment for this request
1294  *
1295  * \retval              0 if successful
1296  * \retval              negative value on error
1297  */
1298 static int ofd_setattr_hdl(struct tgt_session_info *tsi)
1299 {
1300         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
1301         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
1302         struct ost_body         *body = tsi->tsi_ost_body;
1303         struct ost_body         *repbody;
1304         struct ldlm_resource    *res;
1305         struct ofd_object       *fo;
1306         int                      rc = 0;
1307
1308         ENTRY;
1309
1310         LASSERT(body != NULL);
1311
1312         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1313         if (repbody == NULL)
1314                 RETURN(-ENOMEM);
1315
1316         repbody->oa.o_oi = body->oa.o_oi;
1317         repbody->oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1318
1319         /* This would be very bad - accidentally truncating a file when
1320          * changing the time or similar - bug 12203. */
1321         if (body->oa.o_valid & OBD_MD_FLSIZE &&
1322             body->oa.o_size != OBD_OBJECT_EOF) {
1323                 static char mdsinum[48];
1324
1325                 if (body->oa.o_valid & OBD_MD_FLFID)
1326                         snprintf(mdsinum, sizeof(mdsinum) - 1,
1327                                  "of parent "DFID, body->oa.o_parent_seq,
1328                                  body->oa.o_parent_oid, 0);
1329                 else
1330                         mdsinum[0] = '\0';
1331
1332                 CERROR("%s: setattr from %s is trying to truncate object "DFID
1333                        " %s\n", ofd_name(ofd), obd_export_nid2str(tsi->tsi_exp),
1334                        PFID(&tsi->tsi_fid), mdsinum);
1335                 RETURN(-EPERM);
1336         }
1337
1338         fo = ofd_object_find_exists(tsi->tsi_env, ofd, &tsi->tsi_fid);
1339         if (IS_ERR(fo))
1340                 GOTO(out, rc = PTR_ERR(fo));
1341
1342         la_from_obdo(&fti->fti_attr, &body->oa, body->oa.o_valid);
1343         fti->fti_attr.la_valid &= ~LA_TYPE;
1344
1345         /* setting objects attributes (including owner/group) */
1346         rc = ofd_attr_set(tsi->tsi_env, fo, &fti->fti_attr, &body->oa);
1347         if (rc != 0)
1348                 GOTO(out_put, rc);
1349
1350         obdo_from_la(&repbody->oa, &fti->fti_attr,
1351                      OFD_VALID_FLAGS | LA_UID | LA_GID | LA_PROJID);
1352
1353         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_SETATTR,
1354                          tsi->tsi_jobid, 1);
1355         EXIT;
1356 out_put:
1357         ofd_object_put(tsi->tsi_env, fo);
1358 out:
1359         if (rc == 0) {
1360                 /* we do not call this before to avoid lu_object_find() in
1361                  *  ->lvbo_update() holding another reference on the object.
1362                  * otherwise concurrent destroy can make the object unavailable
1363                  * for 2nd lu_object_find() waiting for the first reference
1364                  * to go... deadlock! */
1365                 res = ldlm_resource_get(ofd->ofd_namespace, NULL,
1366                                         &tsi->tsi_resid, LDLM_EXTENT, 0);
1367                 if (!IS_ERR(res)) {
1368                         ldlm_res_lvbo_update(res, NULL, 0);
1369                         ldlm_resource_putref(res);
1370                 }
1371         }
1372         return rc;
1373 }
1374
1375 /**
1376  * Destroy OST orphans.
1377  *
1378  * This is part of OST_CREATE RPC handling. If there is flag OBD_FL_DELORPHAN
1379  * set then we must destroy possible orphaned objects.
1380  *
1381  * \param[in] env       execution environment
1382  * \param[in] exp       OBD export
1383  * \param[in] ofd       OFD device
1384  * \param[in] oa        obdo structure for reply
1385  *
1386  * \retval              0 if successful
1387  * \retval              negative value on error
1388  */
1389 static int ofd_orphans_destroy(const struct lu_env *env,
1390                                struct obd_export *exp,
1391                                struct ofd_device *ofd, struct obdo *oa)
1392 {
1393         struct ofd_thread_info  *info   = ofd_info(env);
1394         struct lu_fid           *fid    = &info->fti_fid;
1395         struct ost_id           *oi     = &oa->o_oi;
1396         struct ofd_seq          *oseq;
1397         u64                      seq    = ostid_seq(oi);
1398         u64                      end_id = ostid_id(oi);
1399         u64                      last;
1400         u64                      oid;
1401         int                      skip_orphan;
1402         int                      rc     = 0;
1403
1404         ENTRY;
1405
1406         oseq = ofd_seq_get(ofd, seq);
1407         if (oseq == NULL) {
1408                 CERROR("%s: Can not find seq for "DOSTID"\n",
1409                        ofd_name(ofd), POSTID(oi));
1410                 RETURN(-EINVAL);
1411         }
1412
1413         *fid = oi->oi_fid;
1414         last = ofd_seq_last_oid(oseq);
1415         oid = last;
1416
1417         LASSERT(exp != NULL);
1418         skip_orphan = !!(exp_connect_flags(exp) & OBD_CONNECT_SKIP_ORPHAN);
1419
1420         if (OBD_FAIL_CHECK(OBD_FAIL_OST_NODESTROY))
1421                 goto done;
1422
1423         LCONSOLE(D_INFO, "%s: deleting orphan objects from "DOSTID
1424                  " to "DOSTID"\n", ofd_name(ofd), seq, end_id + 1, seq, last);
1425
1426         while (oid > end_id) {
1427                 rc = fid_set_id(fid, oid);
1428                 if (unlikely(rc != 0))
1429                         GOTO(out_put, rc);
1430
1431                 rc = ofd_destroy_by_fid(env, ofd, fid, 1);
1432                 if (rc != 0 && rc != -ENOENT && rc != -ESTALE &&
1433                     likely(rc != -EREMCHG && rc != -EINPROGRESS))
1434                         /* this is pretty fatal... */
1435                         CEMERG("%s: error destroying precreated id "
1436                                DFID": rc = %d\n",
1437                                ofd_name(ofd), PFID(fid), rc);
1438
1439                 oid--;
1440                 if (!skip_orphan) {
1441                         ofd_seq_last_oid_set(oseq, oid);
1442                         /* update last_id on disk periodically so that if we
1443                          * restart * we don't need to re-scan all of the just
1444                          * deleted objects. */
1445                         if ((oid & 511) == 0)
1446                                 ofd_seq_last_oid_write(env, ofd, oseq);
1447                 }
1448         }
1449
1450         CDEBUG(D_HA, "%s: after destroy: set last_id to "DOSTID"\n",
1451                ofd_name(ofd), seq, oid);
1452
1453 done:
1454         if (!skip_orphan) {
1455                 ofd_seq_last_oid_set(oseq, oid);
1456                 rc = ofd_seq_last_oid_write(env, ofd, oseq);
1457         } else {
1458                 /* don't reuse orphan object, return last used objid */
1459                 rc = ostid_set_id(oi, last);
1460         }
1461
1462         GOTO(out_put, rc);
1463
1464 out_put:
1465         ofd_seq_put(env, oseq);
1466         return rc;
1467 }
1468
1469 /**
1470  * OFD request handler for OST_CREATE RPC.
1471  *
1472  * This is OFD-specific part of request handling. Its main purpose is to
1473  * create new data objects on OST, but it also used to destroy orphans.
1474  *
1475  * \param[in] tsi       target session environment for this request
1476  *
1477  * \retval              0 if successful
1478  * \retval              negative value on error
1479  */
1480 static int ofd_create_hdl(struct tgt_session_info *tsi)
1481 {
1482         struct ptlrpc_request   *req = tgt_ses_req(tsi);
1483         struct ost_body         *repbody;
1484         const struct obdo       *oa = &tsi->tsi_ost_body->oa;
1485         struct obdo             *rep_oa;
1486         struct obd_export       *exp = tsi->tsi_exp;
1487         struct ofd_device       *ofd = ofd_exp(exp);
1488         u64                      seq = ostid_seq(&oa->o_oi);
1489         u64                      oid = ostid_id(&oa->o_oi);
1490         struct ofd_seq          *oseq;
1491         s64 diff;
1492         int rc = 0;
1493         int                      sync_trans = 0;
1494         long                     granted = 0;
1495
1496         ENTRY;
1497
1498         if (OBD_FAIL_CHECK(OBD_FAIL_OST_EROFS))
1499                 RETURN(-EROFS);
1500
1501         if (ofd->ofd_no_precreate)
1502                 return -EPERM;
1503
1504         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1505         if (repbody == NULL)
1506                 RETURN(-ENOMEM);
1507
1508         down_read(&ofd->ofd_lastid_rwsem);
1509         /* Currently, for safe, we do not distinguish which LAST_ID is broken,
1510          * we may do that in the future.
1511          * Return -ENOSPC until the LAST_ID rebuilt. */
1512         if (unlikely(ofd->ofd_lastid_rebuilding))
1513                 GOTO(out_sem, rc = -ENOSPC);
1514
1515         rep_oa = &repbody->oa;
1516         rep_oa->o_oi = oa->o_oi;
1517
1518         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
1519
1520         CDEBUG(D_INFO, "ofd_create("DOSTID")\n", POSTID(&oa->o_oi));
1521
1522         oseq = ofd_seq_load(tsi->tsi_env, ofd, seq);
1523         if (IS_ERR(oseq)) {
1524                 CERROR("%s: Can't find FID Sequence %#llx: rc = %ld\n",
1525                        ofd_name(ofd), seq, PTR_ERR(oseq));
1526                 GOTO(out_sem, rc = -EINVAL);
1527         }
1528
1529         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
1530             (oa->o_flags & OBD_FL_RECREATE_OBJS)) {
1531                 if (!ofd_obd(ofd)->obd_recovering ||
1532                     oid > ofd_seq_last_oid(oseq)) {
1533                         CERROR("%s: recreate objid "DOSTID" > last id %llu"
1534                                "\n", ofd_name(ofd), POSTID(&oa->o_oi),
1535                                ofd_seq_last_oid(oseq));
1536                         GOTO(out_nolock, rc = -EINVAL);
1537                 }
1538                 /* Do nothing here, we re-create objects during recovery
1539                  * upon write replay, see ofd_preprw_write() */
1540                 GOTO(out_nolock, rc = 0);
1541         }
1542         /* former ofd_handle_precreate */
1543         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
1544             (oa->o_flags & OBD_FL_DELORPHAN)) {
1545                 exp->exp_filter_data.fed_lastid_gen = ofd->ofd_lastid_gen;
1546
1547                 /* destroy orphans */
1548                 if (lustre_msg_get_conn_cnt(tgt_ses_req(tsi)->rq_reqmsg) <
1549                     exp->exp_conn_cnt) {
1550                         CERROR("%s: dropping old orphan cleanup request\n",
1551                                ofd_name(ofd));
1552                         GOTO(out_nolock, rc = 0);
1553                 }
1554                 /* This causes inflight precreates to abort and drop lock */
1555                 oseq->os_destroys_in_progress = 1;
1556                 mutex_lock(&oseq->os_create_lock);
1557                 if (!oseq->os_destroys_in_progress) {
1558                         CDEBUG(D_HA,
1559                                "%s:[%llu] destroys_in_progress already cleared\n",
1560                                ofd_name(ofd), seq);
1561                         rc = ostid_set_id(&rep_oa->o_oi,
1562                                           ofd_seq_last_oid(oseq));
1563                         GOTO(out, rc);
1564                 }
1565                 diff = oid - ofd_seq_last_oid(oseq);
1566                 CDEBUG(D_HA, "ofd_last_id() = %llu -> diff = %lld\n",
1567                        ofd_seq_last_oid(oseq), diff);
1568                 if (-diff > OST_MAX_PRECREATE) {
1569                         LCONSOLE(D_INFO, "%s: too large difference between MDS "
1570                                  "LAST_ID "DFID" (%llu) and OST LAST_ID "DFID" "
1571                                  "(%llu), trust the OST\n",
1572                                  ofd_name(ofd), PFID(&oa->o_oi.oi_fid), oid,
1573                                  PFID(&oseq->os_oi.oi_fid),
1574                                  ofd_seq_last_oid(oseq));
1575
1576                         /* Let MDS know that we are so far ahead. */
1577                         rc = ostid_set_id(&rep_oa->o_oi,
1578                                           ofd_seq_last_oid(oseq) + 1);
1579                 } else if (diff < 0) {
1580                         rc = ofd_orphans_destroy(tsi->tsi_env, exp,
1581                                                  ofd, rep_oa);
1582                         oseq->os_destroys_in_progress = 0;
1583                 } else {
1584                         /* XXX: Used by MDS for the first time! */
1585                         oseq->os_destroys_in_progress = 0;
1586                 }
1587         } else {
1588                 if (unlikely(exp->exp_filter_data.fed_lastid_gen !=
1589                              ofd->ofd_lastid_gen)) {
1590                         /* Keep the export ref so we can send the reply. */
1591                         ofd_obd_disconnect(class_export_get(exp));
1592                         GOTO(out_nolock, rc = -ENOTCONN);
1593                 }
1594
1595                 mutex_lock(&oseq->os_create_lock);
1596                 if (lustre_msg_get_conn_cnt(tgt_ses_req(tsi)->rq_reqmsg) <
1597                     exp->exp_conn_cnt) {
1598                         CERROR("%s: dropping old precreate request\n",
1599                                ofd_name(ofd));
1600                         GOTO(out, rc = 0);
1601                 }
1602                 /* only precreate if seq is 0, IDIF or normal and also o_id
1603                  * must be specfied */
1604                 if ((!fid_seq_is_mdt(seq) && !fid_seq_is_norm(seq) &&
1605                      !fid_seq_is_idif(seq)) || oid == 0) {
1606                         diff = 1; /* shouldn't we create this right now? */
1607                 } else {
1608                         diff = oid - ofd_seq_last_oid(oseq);
1609                         /* Do sync create if the seq is about to used up */
1610                         if (fid_seq_is_idif(seq) || fid_seq_is_mdt0(seq)) {
1611                                 if (unlikely(oid >= IDIF_MAX_OID - 1))
1612                                         sync_trans = 1;
1613                         } else if (fid_seq_is_norm(seq)) {
1614                                 if (unlikely(oid >=
1615                                              LUSTRE_DATA_SEQ_MAX_WIDTH - 1))
1616                                         sync_trans = 1;
1617                         } else {
1618                                 CERROR("%s : invalid o_seq "DOSTID"\n",
1619                                        ofd_name(ofd), POSTID(&oa->o_oi));
1620                                 GOTO(out, rc = -EINVAL);
1621                         }
1622
1623                         if (diff < 0) {
1624                                 /* LU-5648 */
1625                                 CERROR("%s: invalid precreate request for "
1626                                        DOSTID", last_id %llu. "
1627                                        "Likely MDS last_id corruption\n",
1628                                        ofd_name(ofd), POSTID(&oa->o_oi),
1629                                        ofd_seq_last_oid(oseq));
1630                                 GOTO(out, rc = -EINVAL);
1631                         }
1632                 }
1633         }
1634         if (diff > 0) {
1635                 time64_t enough_time = ktime_get_seconds() + DISK_TIMEOUT;
1636                 u64 next_id;
1637                 int created = 0;
1638                 int count;
1639                 int rc2;
1640
1641                 if (!(oa->o_valid & OBD_MD_FLFLAGS) ||
1642                     !(oa->o_flags & OBD_FL_DELORPHAN)) {
1643                         /* don't enforce grant during orphan recovery */
1644                         granted = tgt_grant_create(tsi->tsi_env,
1645                                                 ofd_obd(ofd)->obd_self_export,
1646                                                 &diff);
1647                         if (granted < 0) {
1648                                 rc = granted;
1649                                 granted = 0;
1650                                 CDEBUG(D_HA, "%s: failed to acquire grant "
1651                                        "space for precreate (%lld): rc = %d\n",
1652                                        ofd_name(ofd), diff, rc);
1653                                 diff = 0;
1654                         }
1655                 }
1656
1657                 /* This can happen if a new OST is formatted and installed
1658                  * in place of an old one at the same index.  Instead of
1659                  * precreating potentially millions of deleted old objects
1660                  * (possibly filling the OST), only precreate the last batch.
1661                  * LFSCK will eventually clean up any orphans. LU-14 */
1662                 if (diff > 5 * OST_MAX_PRECREATE) {
1663                         diff = OST_MAX_PRECREATE / 2;
1664                         LCONSOLE_WARN("%s: Too many FIDs to precreate "
1665                                       "OST replaced or reformatted: "
1666                                       "LFSCK will clean up",
1667                                       ofd_name(ofd));
1668
1669                         CDEBUG(D_HA, "%s: precreate FID "DOSTID" is over "
1670                                "%u larger than the LAST_ID "DOSTID", only "
1671                                "precreating the last %lld objects.\n",
1672                                ofd_name(ofd), POSTID(&oa->o_oi),
1673                                5 * OST_MAX_PRECREATE,
1674                                POSTID(&oseq->os_oi), diff);
1675                         ofd_seq_last_oid_set(oseq, ostid_id(&oa->o_oi) - diff);
1676                 }
1677
1678                 while (diff > 0) {
1679                         next_id = ofd_seq_last_oid(oseq) + 1;
1680                         count = ofd_precreate_batch(ofd, (int)diff);
1681
1682                         CDEBUG(D_HA, "%s: reserve %d objects in group %#llx"
1683                                " at %llu\n", ofd_name(ofd),
1684                                count, seq, next_id);
1685
1686                         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1687                             && ktime_get_seconds() > enough_time) {
1688                                 CDEBUG(D_HA, "%s: Slow creates, %d/%lld objects"
1689                                       " created at a rate of %d/s\n",
1690                                       ofd_name(ofd), created, diff + created,
1691                                       created / DISK_TIMEOUT);
1692                                 break;
1693                         }
1694
1695                         rc = ofd_precreate_objects(tsi->tsi_env, ofd, next_id,
1696                                                    oseq, count, sync_trans);
1697                         if (rc > 0) {
1698                                 created += rc;
1699                                 diff -= rc;
1700                         } else if (rc < 0) {
1701                                 break;
1702                         }
1703                 }
1704
1705                 if (diff > 0 &&
1706                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1707                         LCONSOLE_WARN("%s: can't create the same count of"
1708                                       " objects when replaying the request"
1709                                       " (diff is %lld). see LU-4621\n",
1710                                       ofd_name(ofd), diff);
1711
1712                 if (created > 0)
1713                         /* some objects got created, we can return
1714                          * them, even if last creation failed */
1715                         rc = 0;
1716                 else
1717                         CERROR("%s: unable to precreate: rc = %d\n",
1718                                ofd_name(ofd), rc);
1719
1720                 if (!(oa->o_valid & OBD_MD_FLFLAGS) ||
1721                     !(oa->o_flags & OBD_FL_DELORPHAN)) {
1722                         tgt_grant_commit(ofd_obd(ofd)->obd_self_export,
1723                                          granted, rc);
1724                         granted = 0;
1725                 }
1726
1727                 rc2 = ostid_set_id(&rep_oa->o_oi, ofd_seq_last_oid(oseq));
1728                 rc = rc ? : rc2;
1729         }
1730         EXIT;
1731         ofd_counter_incr(exp, LPROC_OFD_STATS_CREATE,
1732                          tsi->tsi_jobid, 1);
1733         if (unlikely(!oseq->os_last_id_synced))
1734                 oseq->os_last_id_synced = 1;
1735 out:
1736         mutex_unlock(&oseq->os_create_lock);
1737 out_nolock:
1738         if (rc == 0)
1739                 rep_oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGROUP;
1740         ofd_seq_put(tsi->tsi_env, oseq);
1741
1742 out_sem:
1743         up_read(&ofd->ofd_lastid_rwsem);
1744         return rc;
1745 }
1746
1747 /**
1748  * OFD request handler for OST_DESTROY RPC.
1749  *
1750  * This is OFD-specific part of request handling. It destroys data objects
1751  * related to destroyed object on MDT.
1752  *
1753  * \param[in] tsi       target session environment for this request
1754  *
1755  * \retval              0 if successful
1756  * \retval              negative value on error
1757  */
1758 static int ofd_destroy_hdl(struct tgt_session_info *tsi)
1759 {
1760         const struct ost_body   *body = tsi->tsi_ost_body;
1761         struct ost_body         *repbody;
1762         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
1763         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
1764         struct lu_fid           *fid = &fti->fti_fid;
1765         u64                      oid;
1766         u32                      count;
1767         int                      rc = 0;
1768
1769         ENTRY;
1770
1771         if (OBD_FAIL_CHECK(OBD_FAIL_OST_EROFS))
1772                 RETURN(-EROFS);
1773
1774         /* This is old case for clients before Lustre 2.4 */
1775         /* If there's a DLM request, cancel the locks mentioned in it */
1776         if (req_capsule_field_present(tsi->tsi_pill, &RMF_DLM_REQ,
1777                                       RCL_CLIENT)) {
1778                 struct ldlm_request *dlm;
1779
1780                 dlm = req_capsule_client_get(tsi->tsi_pill, &RMF_DLM_REQ);
1781                 if (dlm == NULL)
1782                         RETURN(-EFAULT);
1783                 ldlm_request_cancel(tgt_ses_req(tsi), dlm, 0, LATF_SKIP);
1784         }
1785
1786         *fid = body->oa.o_oi.oi_fid;
1787         oid = ostid_id(&body->oa.o_oi);
1788         LASSERT(oid != 0);
1789
1790         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1791
1792         /* check that o_misc makes sense */
1793         if (body->oa.o_valid & OBD_MD_FLOBJCOUNT)
1794                 count = body->oa.o_misc;
1795         else
1796                 count = 1; /* default case - single destroy */
1797
1798         CDEBUG(D_HA, "%s: Destroy object "DOSTID" count %d\n", ofd_name(ofd),
1799                POSTID(&body->oa.o_oi), count);
1800
1801         while (count > 0) {
1802                 int lrc;
1803
1804                 lrc = ofd_destroy_by_fid(tsi->tsi_env, ofd, fid, 0);
1805                 if (lrc == -ENOENT) {
1806                         CDEBUG(D_INODE,
1807                                "%s: destroying non-existent object "DFID"\n",
1808                                ofd_name(ofd), PFID(fid));
1809                         /* rewrite rc with -ENOENT only if it is 0 */
1810                         if (rc == 0)
1811                                 rc = lrc;
1812                 } else if (lrc != 0) {
1813                         CERROR("%s: error destroying object "DFID": %d\n",
1814                                ofd_name(ofd), PFID(fid), lrc);
1815                         rc = lrc;
1816                 }
1817
1818                 count--;
1819                 oid++;
1820                 lrc = fid_set_id(fid, oid);
1821                 if (unlikely(lrc != 0 && count > 0))
1822                         GOTO(out, rc = lrc);
1823         }
1824
1825         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_DESTROY,
1826                          tsi->tsi_jobid, 1);
1827
1828         GOTO(out, rc);
1829
1830 out:
1831         fid_to_ostid(fid, &repbody->oa.o_oi);
1832         return rc;
1833 }
1834
1835 /**
1836  * OFD request handler for OST_STATFS RPC.
1837  *
1838  * This function gets statfs data from storage as part of request
1839  * processing.
1840  *
1841  * \param[in] tsi       target session environment for this request
1842  *
1843  * \retval              0 if successful
1844  * \retval              negative value on error
1845  */
1846 static int ofd_statfs_hdl(struct tgt_session_info *tsi)
1847 {
1848         struct obd_statfs       *osfs;
1849         int                      rc;
1850
1851         ENTRY;
1852
1853         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_STATFS_DELAY, 10);
1854
1855         osfs = req_capsule_server_get(tsi->tsi_pill, &RMF_OBD_STATFS);
1856
1857         rc = ofd_statfs(tsi->tsi_env, tsi->tsi_exp, osfs,
1858                         ktime_get_seconds() - OBD_STATFS_CACHE_SECONDS, 0);
1859         if (rc != 0)
1860                 CERROR("%s: statfs failed: rc = %d\n",
1861                        tgt_name(tsi->tsi_tgt), rc);
1862
1863         if (OBD_FAIL_CHECK(OBD_FAIL_OST_STATFS_EINPROGRESS))
1864                 rc = -EINPROGRESS;
1865
1866         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_STATFS,
1867                          tsi->tsi_jobid, 1);
1868
1869         RETURN(rc);
1870 }
1871
1872 /**
1873  * OFD request handler for OST_SYNC RPC.
1874  *
1875  * Sync object data or all filesystem data to the disk and pack the
1876  * result in reply.
1877  *
1878  * \param[in] tsi       target session environment for this request
1879  *
1880  * \retval              0 if successful
1881  * \retval              negative value on error
1882  */
1883 static int ofd_sync_hdl(struct tgt_session_info *tsi)
1884 {
1885         struct ost_body         *body = tsi->tsi_ost_body;
1886         struct ost_body         *repbody;
1887         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
1888         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
1889         struct ofd_object       *fo = NULL;
1890         int                      rc = 0;
1891
1892         ENTRY;
1893
1894         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1895
1896         /* if no objid is specified, it means "sync whole filesystem" */
1897         if (!fid_is_zero(&tsi->tsi_fid)) {
1898                 fo = ofd_object_find_exists(tsi->tsi_env, ofd, &tsi->tsi_fid);
1899                 if (IS_ERR(fo))
1900                         RETURN(PTR_ERR(fo));
1901         }
1902
1903         rc = tgt_sync(tsi->tsi_env, tsi->tsi_tgt,
1904                       fo != NULL ? ofd_object_child(fo) : NULL,
1905                       repbody->oa.o_size, repbody->oa.o_blocks);
1906         if (rc)
1907                 GOTO(put, rc);
1908
1909         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_SYNC,
1910                          tsi->tsi_jobid, 1);
1911         if (fo == NULL)
1912                 RETURN(0);
1913
1914         repbody->oa.o_oi = body->oa.o_oi;
1915         repbody->oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1916
1917         rc = ofd_attr_get(tsi->tsi_env, fo, &fti->fti_attr);
1918         if (rc == 0)
1919                 obdo_from_la(&repbody->oa, &fti->fti_attr,
1920                              OFD_VALID_FLAGS);
1921         else
1922                 /* don't return rc from getattr */
1923                 rc = 0;
1924         EXIT;
1925 put:
1926         if (fo != NULL)
1927                 ofd_object_put(tsi->tsi_env, fo);
1928         return rc;
1929 }
1930
1931 /**
1932  * OFD request handler for OST_PUNCH RPC.
1933  *
1934  * This is part of request processing. Validate request fields,
1935  * punch (truncate) the given OFD object and pack reply.
1936  *
1937  * \param[in] tsi       target session environment for this request
1938  *
1939  * \retval              0 if successful
1940  * \retval              negative value on error
1941  */
1942 static int ofd_punch_hdl(struct tgt_session_info *tsi)
1943 {
1944         const struct obdo       *oa = &tsi->tsi_ost_body->oa;
1945         struct ost_body         *repbody;
1946         struct ofd_thread_info  *info = tsi2ofd_info(tsi);
1947         struct ldlm_namespace   *ns = tsi->tsi_tgt->lut_obd->obd_namespace;
1948         struct ldlm_resource    *res;
1949         struct ofd_object       *fo;
1950         __u64                    flags = 0;
1951         struct lustre_handle     lh = { 0, };
1952         int                      rc;
1953         __u64                    start, end;
1954         bool                     srvlock;
1955
1956         ENTRY;
1957
1958         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_PAUSE_PUNCH, cfs_fail_val);
1959
1960         /* check that we do support OBD_CONNECT_TRUNCLOCK. */
1961         BUILD_BUG_ON(!(OST_CONNECT_SUPPORTED & OBD_CONNECT_TRUNCLOCK));
1962
1963         if ((oa->o_valid & (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS)) !=
1964             (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS))
1965                 RETURN(err_serious(-EPROTO));
1966
1967         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1968         if (repbody == NULL)
1969                 RETURN(err_serious(-ENOMEM));
1970
1971         /* punch start,end are passed in o_size,o_blocks throught wire */
1972         start = oa->o_size;
1973         end = oa->o_blocks;
1974
1975         if (end != OBD_OBJECT_EOF) /* Only truncate is supported */
1976                 RETURN(-EPROTO);
1977
1978         /* standard truncate optimization: if file body is completely
1979          * destroyed, don't send data back to the server. */
1980         if (start == 0)
1981                 flags |= LDLM_FL_AST_DISCARD_DATA;
1982
1983         repbody->oa.o_oi = oa->o_oi;
1984         repbody->oa.o_valid = OBD_MD_FLID;
1985
1986         srvlock = oa->o_valid & OBD_MD_FLFLAGS &&
1987                   oa->o_flags & OBD_FL_SRVLOCK;
1988
1989         if (srvlock) {
1990                 rc = tgt_extent_lock(tsi->tsi_env, ns, &tsi->tsi_resid, start,
1991                                      end, &lh, LCK_PW, &flags);
1992                 if (rc != 0)
1993                         RETURN(rc);
1994         }
1995
1996         CDEBUG(D_INODE, "calling punch for object "DFID", valid = %#llx"
1997                ", start = %lld, end = %lld\n", PFID(&tsi->tsi_fid),
1998                oa->o_valid, start, end);
1999
2000         fo = ofd_object_find_exists(tsi->tsi_env, ofd_exp(tsi->tsi_exp),
2001                                     &tsi->tsi_fid);
2002         if (IS_ERR(fo))
2003                 GOTO(out, rc = PTR_ERR(fo));
2004
2005         la_from_obdo(&info->fti_attr, oa,
2006                      OBD_MD_FLMTIME | OBD_MD_FLATIME | OBD_MD_FLCTIME);
2007         info->fti_attr.la_size = start;
2008         info->fti_attr.la_valid |= LA_SIZE;
2009
2010         rc = ofd_object_punch(tsi->tsi_env, fo, start, end, &info->fti_attr,
2011                               (struct obdo *)oa);
2012         if (rc)
2013                 GOTO(out_put, rc);
2014
2015         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_PUNCH,
2016                          tsi->tsi_jobid, 1);
2017         EXIT;
2018 out_put:
2019         ofd_object_put(tsi->tsi_env, fo);
2020 out:
2021         if (srvlock)
2022                 tgt_extent_unlock(&lh, LCK_PW);
2023         if (rc == 0) {
2024                 /* we do not call this before to avoid lu_object_find() in
2025                  *  ->lvbo_update() holding another reference on the object.
2026                  * otherwise concurrent destroy can make the object unavailable
2027                  * for 2nd lu_object_find() waiting for the first reference
2028                  * to go... deadlock! */
2029                 res = ldlm_resource_get(ns, NULL, &tsi->tsi_resid,
2030                                         LDLM_EXTENT, 0);
2031                 if (!IS_ERR(res)) {
2032                         struct ost_lvb *res_lvb;
2033
2034                         ldlm_res_lvbo_update(res, NULL, 0);
2035                         res_lvb = res->lr_lvb_data;
2036                         repbody->oa.o_valid |= OBD_MD_FLBLOCKS;
2037                         repbody->oa.o_blocks = res_lvb->lvb_blocks;
2038                         ldlm_resource_putref(res);
2039                 }
2040         }
2041         return rc;
2042 }
2043
2044 static int ofd_ladvise_prefetch(const struct lu_env *env,
2045                                 struct ofd_object *fo,
2046                                 struct niobuf_local *lnb,
2047                                 __u64 start, __u64 end, enum dt_bufs_type dbt)
2048 {
2049         struct ofd_thread_info *info = ofd_info(env);
2050         pgoff_t start_index, end_index, pages;
2051         struct niobuf_remote rnb;
2052         unsigned long nr_local;
2053         int rc = 0;
2054
2055         if (end <= start)
2056                 RETURN(-EINVAL);
2057
2058         ofd_read_lock(env, fo);
2059         if (!ofd_object_exists(fo))
2060                 GOTO(out_unlock, rc = -ENOENT);
2061
2062         rc = ofd_attr_get(env, fo, &info->fti_attr);
2063         if (rc)
2064                 GOTO(out_unlock, rc);
2065
2066         if (end > info->fti_attr.la_size)
2067                 end = info->fti_attr.la_size;
2068
2069         if (end <= start)
2070                 GOTO(out_unlock, rc);
2071
2072         /* We need page aligned offset and length */
2073         start_index = start >> PAGE_SHIFT;
2074         end_index = (end - 1) >> PAGE_SHIFT;
2075         pages = end_index - start_index + 1;
2076         while (pages > 0) {
2077                 nr_local = pages <= PTLRPC_MAX_BRW_PAGES ? pages :
2078                         PTLRPC_MAX_BRW_PAGES;
2079                 rnb.rnb_offset = start_index << PAGE_SHIFT;
2080                 rnb.rnb_len = nr_local << PAGE_SHIFT;
2081                 rc = dt_bufs_get(env, ofd_object_child(fo), &rnb, lnb,
2082                                  PTLRPC_MAX_BRW_PAGES, dbt);
2083                 if (unlikely(rc < 0))
2084                         break;
2085                 nr_local = rc;
2086                 rc = dt_read_prep(env, ofd_object_child(fo), lnb, nr_local);
2087                 dt_bufs_put(env, ofd_object_child(fo), lnb, nr_local);
2088                 if (unlikely(rc))
2089                         break;
2090                 start_index += nr_local;
2091                 pages -= nr_local;
2092         }
2093
2094 out_unlock:
2095         ofd_read_unlock(env, fo);
2096         RETURN(rc);
2097 }
2098
2099 /**
2100  * OFD request handler for OST_LADVISE RPC.
2101  *
2102  * Tune cache or perfetch policies according to advices.
2103  *
2104  * \param[in] tsi       target session environment for this request
2105  *
2106  * \retval              0 if successful
2107  * \retval              negative errno on error
2108  */
2109 static int ofd_ladvise_hdl(struct tgt_session_info *tsi)
2110 {
2111         struct ptlrpc_request *req = tgt_ses_req(tsi);
2112         struct obd_export *exp = tsi->tsi_exp;
2113         struct ofd_device *ofd = ofd_exp(exp);
2114         struct ost_body *body, *repbody;
2115         struct ofd_thread_info *info;
2116         struct ofd_object *fo;
2117         struct ptlrpc_thread *svc_thread = req->rq_svc_thread;
2118         const struct lu_env *env = svc_thread->t_env;
2119         struct tgt_thread_big_cache *tbc = svc_thread->t_data;
2120         enum dt_bufs_type dbt = DT_BUFS_TYPE_READAHEAD;
2121         struct lu_ladvise *ladvise;
2122         int num_advise;
2123         struct ladvise_hdr *ladvise_hdr;
2124         struct obd_ioobj ioo;
2125         struct lustre_handle lockh = { 0 };
2126         __u64 flags = 0;
2127         int i;
2128         struct dt_object *dob;
2129         __u64 start;
2130         __u64 end;
2131         int rc = 0;
2132         ENTRY;
2133
2134         CFS_FAIL_TIMEOUT(OBD_FAIL_OST_LADVISE_PAUSE, cfs_fail_val);
2135         body = tsi->tsi_ost_body;
2136
2137         if ((body->oa.o_valid & OBD_MD_FLID) != OBD_MD_FLID)
2138                 RETURN(err_serious(-EPROTO));
2139
2140         ladvise_hdr = req_capsule_client_get(tsi->tsi_pill,
2141                                              &RMF_OST_LADVISE_HDR);
2142         if (ladvise_hdr == NULL)
2143                 RETURN(err_serious(-EPROTO));
2144
2145         if (ladvise_hdr->lah_magic != LADVISE_MAGIC ||
2146             ladvise_hdr->lah_count < 1)
2147                 RETURN(err_serious(-EPROTO));
2148
2149         if ((ladvise_hdr->lah_flags & (~LF_MASK)) != 0)
2150                 RETURN(err_serious(-EPROTO));
2151
2152         ladvise = req_capsule_client_get(tsi->tsi_pill, &RMF_OST_LADVISE);
2153         if (ladvise == NULL)
2154                 RETURN(err_serious(-EPROTO));
2155
2156         num_advise = req_capsule_get_size(&req->rq_pill,
2157                                           &RMF_OST_LADVISE, RCL_CLIENT) /
2158                                           sizeof(*ladvise);
2159         if (num_advise < ladvise_hdr->lah_count)
2160                 RETURN(err_serious(-EPROTO));
2161
2162         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
2163         repbody->oa = body->oa;
2164
2165         info = ofd_info_init(env, exp);
2166
2167         rc = ostid_to_fid(&info->fti_fid, &body->oa.o_oi,
2168                           ofd->ofd_lut.lut_lsd.lsd_osd_index);
2169         if (rc != 0)
2170                 RETURN(rc);
2171
2172         fo = ofd_object_find(env, ofd, &info->fti_fid);
2173         if (IS_ERR(fo)) {
2174                 rc = PTR_ERR(fo);
2175                 RETURN(rc);
2176         }
2177         LASSERT(fo != NULL);
2178         dob = ofd_object_child(fo);
2179
2180         if (ptlrpc_connection_is_local(exp->exp_connection))
2181                 dbt |= DT_BUFS_TYPE_LOCAL;
2182
2183         for (i = 0; i < num_advise; i++, ladvise++) {
2184                 start = ladvise->lla_start;
2185                 end = ladvise->lla_end;
2186                 if (end <= start) {
2187                         rc = err_serious(-EPROTO);
2188                         break;
2189                 }
2190
2191                 /* Handle different advice types */
2192                 switch (ladvise->lla_advice) {
2193                 default:
2194                         rc = -ENOTSUPP;
2195                         break;
2196                 case LU_LADVISE_WILLREAD:
2197                         if (tbc == NULL)
2198                                 RETURN(-ENOMEM);
2199
2200                         ioo.ioo_oid = body->oa.o_oi;
2201                         ioo.ioo_bufcnt = 1;
2202                         rc = tgt_extent_lock(env, exp->exp_obd->obd_namespace,
2203                                              &tsi->tsi_resid, start, end - 1,
2204                                              &lockh, LCK_PR, &flags);
2205                         if (rc != 0)
2206                                 break;
2207
2208                         req->rq_status = ofd_ladvise_prefetch(env, fo,
2209                                                               tbc->local,
2210                                                               start, end, dbt);
2211                         tgt_extent_unlock(&lockh, LCK_PR);
2212                         break;
2213                 case LU_LADVISE_DONTNEED:
2214                         rc = dt_ladvise(env, dob, ladvise->lla_start,
2215                                         ladvise->lla_end, LU_LADVISE_DONTNEED);
2216                         break;
2217                 }
2218                 if (rc != 0)
2219                         break;
2220         }
2221
2222         ofd_object_put(env, fo);
2223         req->rq_status = rc;
2224         RETURN(rc);
2225 }
2226
2227 /**
2228  * OFD request handler for OST_QUOTACTL RPC.
2229  *
2230  * This is part of request processing to validate incoming request fields,
2231  * get the requested data from OSD and pack reply.
2232  *
2233  * \param[in] tsi       target session environment for this request
2234  *
2235  * \retval              0 if successful
2236  * \retval              negative value on error
2237  */
2238 static int ofd_quotactl(struct tgt_session_info *tsi)
2239 {
2240         struct obd_quotactl *oqctl, *repoqc;
2241         struct lu_nodemap *nodemap;
2242         int id;
2243         int rc;
2244
2245         ENTRY;
2246
2247         oqctl = req_capsule_client_get(tsi->tsi_pill, &RMF_OBD_QUOTACTL);
2248         if (oqctl == NULL)
2249                 RETURN(err_serious(-EPROTO));
2250
2251         repoqc = req_capsule_server_get(tsi->tsi_pill, &RMF_OBD_QUOTACTL);
2252         if (repoqc == NULL)
2253                 RETURN(err_serious(-ENOMEM));
2254
2255         *repoqc = *oqctl;
2256
2257         nodemap = nodemap_get_from_exp(tsi->tsi_exp);
2258         if (IS_ERR(nodemap))
2259                 RETURN(PTR_ERR(nodemap));
2260
2261         id = repoqc->qc_id;
2262         if (oqctl->qc_type == USRQUOTA)
2263                 id = nodemap_map_id(nodemap, NODEMAP_UID,
2264                                     NODEMAP_CLIENT_TO_FS,
2265                                     repoqc->qc_id);
2266         else if (oqctl->qc_type == GRPQUOTA)
2267                 id = nodemap_map_id(nodemap, NODEMAP_GID,
2268                                     NODEMAP_CLIENT_TO_FS,
2269                                     repoqc->qc_id);
2270
2271         nodemap_putref(nodemap);
2272
2273         if (repoqc->qc_id != id)
2274                 swap(repoqc->qc_id, id);
2275
2276         rc = lquotactl_slv(tsi->tsi_env, tsi->tsi_tgt->lut_bottom, repoqc);
2277
2278         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_QUOTACTL,
2279                          tsi->tsi_jobid, 1);
2280
2281         if (repoqc->qc_id != id)
2282                 swap(repoqc->qc_id, id);
2283
2284         RETURN(rc);
2285 }
2286
2287 /**
2288  * Calculate the amount of time for lock prolongation.
2289  *
2290  * This is helper for ofd_prolong_extent_locks() function to get
2291  * the timeout extra time.
2292  *
2293  * \param[in] req       current request
2294  *
2295  * \retval              amount of time to extend the timeout with
2296  */
2297 static inline time64_t prolong_timeout(struct ptlrpc_request *req)
2298 {
2299         struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
2300         time64_t req_timeout;
2301
2302         if (AT_OFF)
2303                 return obd_timeout / 2;
2304
2305         req_timeout = req->rq_deadline - req->rq_arrival_time.tv_sec;
2306         return max_t(time64_t, at_est2timeout(at_get(&svcpt->scp_at_estimate)),
2307                      req_timeout);
2308 }
2309
2310 /**
2311  * Prolong lock timeout for the given extent.
2312  *
2313  * This function finds all locks related with incoming request and
2314  * prolongs their timeout.
2315  *
2316  * If a client is holding a lock for a long time while it sends
2317  * read or write RPCs to the OST for the object under this lock,
2318  * then we don't want the OST to evict the client. Otherwise,
2319  * if the network or disk is very busy then the client may not
2320  * be able to make any progress to clear out dirty pages under
2321  * the lock and the application will fail.
2322  *
2323  * Every time a Bulk Read/Write (BRW) request arrives for the object
2324  * covered by the lock, extend the timeout on that lock. The RPC should
2325  * contain a lock handle for the lock it is using, but this
2326  * isn't handled correctly by all client versions, and the
2327  * request may cover multiple locks.
2328  *
2329  * \param[in] tsi       target session environment for this request
2330  * \param[in] data      struct of data to prolong locks
2331  *
2332  */
2333 static void ofd_prolong_extent_locks(struct tgt_session_info *tsi,
2334                                     struct ldlm_prolong_args *data)
2335 {
2336         struct obdo             *oa  = &tsi->tsi_ost_body->oa;
2337         struct ldlm_lock        *lock;
2338
2339         ENTRY;
2340
2341         data->lpa_timeout = prolong_timeout(tgt_ses_req(tsi));
2342         data->lpa_export = tsi->tsi_exp;
2343         data->lpa_resid = tsi->tsi_resid;
2344
2345         CDEBUG(D_RPCTRACE, "Prolong locks for req %p with x%llu"
2346                " ext(%llu->%llu)\n", tgt_ses_req(tsi),
2347                tgt_ses_req(tsi)->rq_xid, data->lpa_extent.start,
2348                data->lpa_extent.end);
2349
2350         if (oa->o_valid & OBD_MD_FLHANDLE) {
2351                 /* mostly a request should be covered by only one lock, try
2352                  * fast path. */
2353                 lock = ldlm_handle2lock(&oa->o_handle);
2354                 if (lock != NULL) {
2355                         /* Fast path to check if the lock covers the whole IO
2356                          * region exclusively. */
2357                         if (ldlm_extent_contain(&lock->l_policy_data.l_extent,
2358                                                 &data->lpa_extent)) {
2359                                 /* bingo */
2360                                 LASSERT(lock->l_export == data->lpa_export);
2361                                 ldlm_lock_prolong_one(lock, data);
2362                                 LDLM_LOCK_PUT(lock);
2363                                 if (data->lpa_locks_cnt > 0)
2364                                         RETURN_EXIT;
2365                                 /* The lock was destroyed probably lets try
2366                                  * resource tree. */
2367                         } else {
2368                                 lock->l_last_used = ktime_get();
2369                                 LDLM_LOCK_PUT(lock);
2370                         }
2371                 }
2372         }
2373
2374         ldlm_resource_prolong(data);
2375         EXIT;
2376 }
2377
2378 /**
2379  * Implementation of ptlrpc_hpreq_ops::hpreq_lock_match for OFD RW requests.
2380  *
2381  * Determine if \a lock and the lock from request \a req are equivalent
2382  * by comparing their resource names, modes, and extents.
2383  *
2384  * It is used to give priority to read and write RPCs being done
2385  * under this lock so that the client can drop the contended
2386  * lock more quickly and let other clients use it. This improves
2387  * overall performance in the case where the first client gets a
2388  * very large lock extent that prevents other clients from
2389  * submitting their writes.
2390  *
2391  * \param[in] req       ptlrpc_request being processed
2392  * \param[in] lock      contended lock to match
2393  *
2394  * \retval              1 if lock is matched
2395  * \retval              0 otherwise
2396  */
2397 static int ofd_rw_hpreq_lock_match(struct ptlrpc_request *req,
2398                                    struct ldlm_lock *lock)
2399 {
2400         struct niobuf_remote *rnb;
2401         struct obd_ioobj *ioo;
2402         enum ldlm_mode  mode;
2403         struct ldlm_extent ext;
2404         __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
2405
2406         ENTRY;
2407
2408         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
2409         LASSERT(ioo != NULL);
2410
2411         rnb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
2412         LASSERT(rnb != NULL);
2413
2414         ext.start = rnb->rnb_offset;
2415         rnb += ioo->ioo_bufcnt - 1;
2416         ext.end = rnb->rnb_offset + rnb->rnb_len - 1;
2417
2418         LASSERT(lock->l_resource != NULL);
2419         if (!ostid_res_name_eq(&ioo->ioo_oid, &lock->l_resource->lr_name))
2420                 RETURN(0);
2421
2422         /* a bulk write can only hold a reference on a PW extent lock
2423          * or GROUP lock.
2424          */
2425         mode = LCK_PW | LCK_GROUP;
2426         if (opc == OST_READ)
2427                 /* whereas a bulk read can be protected by either a PR or PW
2428                  * extent lock */
2429                 mode |= LCK_PR;
2430
2431         if (!(lock->l_granted_mode & mode))
2432                 RETURN(0);
2433
2434         RETURN(ldlm_extent_overlap(&lock->l_policy_data.l_extent, &ext));
2435 }
2436
2437 /**
2438  * Implementation of ptlrpc_hpreq_ops::hpreq_lock_check for OFD RW requests.
2439  *
2440  * Check for whether the given PTLRPC request (\a req) is blocking
2441  * an LDLM lock cancel. Also checks whether the request is covered by an LDLM
2442  * lock.
2443  *
2444  * \param[in] req       the incoming request
2445  *
2446  * \retval              1 if \a req is blocking an LDLM lock cancel
2447  * \retval              0 if it is not
2448  * \retval              -ESTALE if lock is not found
2449  */
2450 static int ofd_rw_hpreq_check(struct ptlrpc_request *req)
2451 {
2452         struct tgt_session_info *tsi;
2453         struct obd_ioobj        *ioo;
2454         struct niobuf_remote    *rnb;
2455         int opc;
2456         struct ldlm_prolong_args pa = { 0 };
2457
2458         ENTRY;
2459
2460         /* Don't use tgt_ses_info() to get session info, because lock_match()
2461          * can be called while request has no processing thread yet. */
2462         tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
2463
2464         /*
2465          * Use LASSERT below because malformed RPCs should have
2466          * been filtered out in tgt_hpreq_handler().
2467          */
2468         opc = lustre_msg_get_opc(req->rq_reqmsg);
2469         LASSERT(opc == OST_READ || opc == OST_WRITE);
2470
2471         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
2472         LASSERT(ioo != NULL);
2473
2474         rnb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
2475         LASSERT(rnb != NULL);
2476         LASSERT(!(rnb->rnb_flags & OBD_BRW_SRVLOCK));
2477
2478         pa.lpa_mode = LCK_PW | LCK_GROUP;
2479         if (opc == OST_READ)
2480                 pa.lpa_mode |= LCK_PR;
2481
2482         pa.lpa_extent.start = rnb->rnb_offset;
2483         rnb += ioo->ioo_bufcnt - 1;
2484         pa.lpa_extent.end = rnb->rnb_offset + rnb->rnb_len - 1;
2485
2486         DEBUG_REQ(D_RPCTRACE, req,
2487                   "%s %s: refresh rw locks for "DFID" (%llu->%llu)",
2488                   tgt_name(tsi->tsi_tgt), current->comm, PFID(&tsi->tsi_fid),
2489                   pa.lpa_extent.start, pa.lpa_extent.end);
2490
2491         ofd_prolong_extent_locks(tsi, &pa);
2492
2493         CDEBUG(D_DLMTRACE, "%s: refreshed %u locks timeout for req %p\n",
2494                tgt_name(tsi->tsi_tgt), pa.lpa_blocks_cnt, req);
2495
2496         if (pa.lpa_blocks_cnt > 0)
2497                 RETURN(1);
2498
2499         RETURN(pa.lpa_locks_cnt > 0 ? 0 : -ESTALE);
2500 }
2501
2502 /**
2503  * Implementation of ptlrpc_hpreq_ops::hpreq_lock_fini for OFD RW requests.
2504  *
2505  * Called after the request has been handled. It refreshes lock timeout again
2506  * so that client has more time to send lock cancel RPC.
2507  *
2508  * \param[in] req       request which is being processed.
2509  */
2510 static void ofd_rw_hpreq_fini(struct ptlrpc_request *req)
2511 {
2512         ofd_rw_hpreq_check(req);
2513 }
2514
2515 /**
2516  * Implementation of ptlrpc_hpreq_ops::hpreq_lock_match for OST_PUNCH request.
2517  *
2518  * This function checks if the given lock is the same by its resname, mode
2519  * and extent as one taken from the request.
2520  * It is used to give priority to punch/truncate RPCs that might lead to
2521  * the fastest release of that lock when a lock is contended.
2522  *
2523  * \param[in] req       ptlrpc_request being processed
2524  * \param[in] lock      contended lock to match
2525  *
2526  * \retval              1 if lock is matched
2527  * \retval              0 otherwise
2528  */
2529 static int ofd_punch_hpreq_lock_match(struct ptlrpc_request *req,
2530                                       struct ldlm_lock *lock)
2531 {
2532         struct tgt_session_info *tsi;
2533         struct obdo             *oa;
2534         struct ldlm_extent       ext;
2535
2536         ENTRY;
2537
2538         /* Don't use tgt_ses_info() to get session info, because lock_match()
2539          * can be called while request has no processing thread yet. */
2540         tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
2541
2542         /*
2543          * Use LASSERT below because malformed RPCs should have
2544          * been filtered out in tgt_hpreq_handler().
2545          */
2546         LASSERT(tsi->tsi_ost_body != NULL);
2547         if (tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLHANDLE &&
2548             tsi->tsi_ost_body->oa.o_handle.cookie == lock->l_handle.h_cookie)
2549                 RETURN(1);
2550
2551         oa = &tsi->tsi_ost_body->oa;
2552         ext.start = oa->o_size;
2553         ext.end   = oa->o_blocks;
2554
2555         LASSERT(lock->l_resource != NULL);
2556         if (!ostid_res_name_eq(&oa->o_oi, &lock->l_resource->lr_name))
2557                 RETURN(0);
2558
2559         if (!(lock->l_granted_mode & (LCK_PW | LCK_GROUP)))
2560                 RETURN(0);
2561
2562         RETURN(ldlm_extent_overlap(&lock->l_policy_data.l_extent, &ext));
2563 }
2564
2565 /**
2566  * Implementation of ptlrpc_hpreq_ops::hpreq_lock_check for OST_PUNCH request.
2567  *
2568  * High-priority queue request check for whether the given punch request
2569  * (\a req) is blocking an LDLM lock cancel. Also checks whether the request is
2570  * covered by an LDLM lock.
2571  *
2572
2573  *
2574  * \param[in] req       the incoming request
2575  *
2576  * \retval              1 if \a req is blocking an LDLM lock cancel
2577  * \retval              0 if it is not
2578  * \retval              -ESTALE if lock is not found
2579  */
2580 static int ofd_punch_hpreq_check(struct ptlrpc_request *req)
2581 {
2582         struct tgt_session_info *tsi;
2583         struct obdo             *oa;
2584         struct ldlm_prolong_args pa = { 0 };
2585
2586         ENTRY;
2587
2588         /* Don't use tgt_ses_info() to get session info, because lock_match()
2589          * can be called while request has no processing thread yet. */
2590         tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
2591         LASSERT(tsi != NULL);
2592         oa = &tsi->tsi_ost_body->oa;
2593
2594         LASSERT(!(oa->o_valid & OBD_MD_FLFLAGS &&
2595                   oa->o_flags & OBD_FL_SRVLOCK));
2596
2597         pa.lpa_mode = LCK_PW | LCK_GROUP;
2598         pa.lpa_extent.start = oa->o_size;
2599         pa.lpa_extent.end   = oa->o_blocks;
2600
2601         CDEBUG(D_DLMTRACE,
2602                "%s: refresh locks: %llu/%llu (%llu->%llu)\n",
2603                tgt_name(tsi->tsi_tgt), tsi->tsi_resid.name[0],
2604                tsi->tsi_resid.name[1], pa.lpa_extent.start, pa.lpa_extent.end);
2605
2606         ofd_prolong_extent_locks(tsi, &pa);
2607
2608         CDEBUG(D_DLMTRACE, "%s: refreshed %u locks timeout for req %p.\n",
2609                tgt_name(tsi->tsi_tgt), pa.lpa_blocks_cnt, req);
2610
2611         if (pa.lpa_blocks_cnt > 0)
2612                 RETURN(1);
2613
2614         RETURN(pa.lpa_locks_cnt > 0 ? 0 : -ESTALE);
2615 }
2616
2617 /**
2618  * Implementation of ptlrpc_hpreq_ops::hpreq_lock_fini for OST_PUNCH request.
2619  *
2620  * Called after the request has been handled. It refreshes lock timeout again
2621  * so that client has more time to send lock cancel RPC.
2622  *
2623  * \param[in] req       request which is being processed.
2624  */
2625 static void ofd_punch_hpreq_fini(struct ptlrpc_request *req)
2626 {
2627         ofd_punch_hpreq_check(req);
2628 }
2629
2630 static struct ptlrpc_hpreq_ops ofd_hpreq_rw = {
2631         .hpreq_lock_match       = ofd_rw_hpreq_lock_match,
2632         .hpreq_check            = ofd_rw_hpreq_check,
2633         .hpreq_fini             = ofd_rw_hpreq_fini
2634 };
2635
2636 static struct ptlrpc_hpreq_ops ofd_hpreq_punch = {
2637         .hpreq_lock_match       = ofd_punch_hpreq_lock_match,
2638         .hpreq_check            = ofd_punch_hpreq_check,
2639         .hpreq_fini             = ofd_punch_hpreq_fini
2640 };
2641
2642 /**
2643  * Assign high priority operations to an IO request.
2644  *
2645  * Check if the incoming request is a candidate for
2646  * high-priority processing. If it is, assign it a high
2647  * priority operations table.
2648  *
2649  * \param[in] tsi       target session environment for this request
2650  */
2651 static void ofd_hp_brw(struct tgt_session_info *tsi)
2652 {
2653         struct niobuf_remote    *rnb;
2654         struct obd_ioobj        *ioo;
2655
2656         ENTRY;
2657
2658         ioo = req_capsule_client_get(tsi->tsi_pill, &RMF_OBD_IOOBJ);
2659         LASSERT(ioo != NULL); /* must exist after request preprocessing */
2660         if (ioo->ioo_bufcnt > 0) {
2661                 rnb = req_capsule_client_get(tsi->tsi_pill, &RMF_NIOBUF_REMOTE);
2662                 LASSERT(rnb != NULL); /* must exist after request preprocessing */
2663
2664                 /* no high priority if server lock is needed */
2665                 if (rnb->rnb_flags & OBD_BRW_SRVLOCK ||
2666                     (lustre_msg_get_flags(tgt_ses_req(tsi)->rq_reqmsg)
2667                      & MSG_REPLAY))
2668                         return;
2669         }
2670         tgt_ses_req(tsi)->rq_ops = &ofd_hpreq_rw;
2671 }
2672
2673 /**
2674  * Assign high priority operations to an punch request.
2675  *
2676  * Check if the incoming request is a candidate for
2677  * high-priority processing. If it is, assign it a high
2678  * priority operations table.
2679  *
2680  * \param[in] tsi       target session environment for this request
2681  */
2682 static void ofd_hp_punch(struct tgt_session_info *tsi)
2683 {
2684         LASSERT(tsi->tsi_ost_body != NULL); /* must exists if we are here */
2685         /* no high-priority if server lock is needed */
2686         if ((tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLFLAGS &&
2687              tsi->tsi_ost_body->oa.o_flags & OBD_FL_SRVLOCK) ||
2688             tgt_conn_flags(tsi) & OBD_CONNECT_MDS ||
2689             lustre_msg_get_flags(tgt_ses_req(tsi)->rq_reqmsg) & MSG_REPLAY)
2690                 return;
2691         tgt_ses_req(tsi)->rq_ops = &ofd_hpreq_punch;
2692 }
2693
2694 #define OBD_FAIL_OST_READ_NET   OBD_FAIL_OST_BRW_NET
2695 #define OBD_FAIL_OST_WRITE_NET  OBD_FAIL_OST_BRW_NET
2696 #define OST_BRW_READ    OST_READ
2697 #define OST_BRW_WRITE   OST_WRITE
2698
2699 /**
2700  * Table of OFD-specific request handlers
2701  *
2702  * This table contains all opcodes accepted by OFD and
2703  * specifies handlers for them. The tgt_request_handler()
2704  * uses such table from each target to process incoming
2705  * requests.
2706  */
2707 static struct tgt_handler ofd_tgt_handlers[] = {
2708 TGT_RPC_HANDLER(OST_FIRST_OPC,
2709                 0,                      OST_CONNECT,    tgt_connect,
2710                 &RQF_CONNECT, LUSTRE_OBD_VERSION),
2711 TGT_RPC_HANDLER(OST_FIRST_OPC,
2712                 0,                      OST_DISCONNECT, tgt_disconnect,
2713                 &RQF_OST_DISCONNECT, LUSTRE_OBD_VERSION),
2714 TGT_RPC_HANDLER(OST_FIRST_OPC,
2715                 0,                      OST_SET_INFO,   ofd_set_info_hdl,
2716                 &RQF_OBD_SET_INFO, LUSTRE_OST_VERSION),
2717 TGT_OST_HDL(0,                          OST_GET_INFO,   ofd_get_info_hdl),
2718 TGT_OST_HDL(HAS_BODY | HAS_REPLY,       OST_GETATTR,    ofd_getattr_hdl),
2719 TGT_OST_HDL(HAS_BODY | HAS_REPLY | IS_MUTABLE,
2720                                         OST_SETATTR,    ofd_setattr_hdl),
2721 TGT_OST_HDL(HAS_REPLY | IS_MUTABLE,
2722                                         OST_CREATE,     ofd_create_hdl),
2723 TGT_OST_HDL(HAS_REPLY | IS_MUTABLE,
2724                                         OST_DESTROY,    ofd_destroy_hdl),
2725 TGT_OST_HDL(HAS_REPLY,  OST_STATFS,     ofd_statfs_hdl),
2726 TGT_OST_HDL_HP(HAS_BODY | HAS_REPLY,    OST_BRW_READ,   tgt_brw_read,
2727                                                         ofd_hp_brw),
2728 /* don't set CORPUS flag for brw_write because -ENOENT may be valid case */
2729 TGT_OST_HDL_HP(HAS_BODY | IS_MUTABLE,   OST_BRW_WRITE,  tgt_brw_write,
2730                                                         ofd_hp_brw),
2731 TGT_OST_HDL_HP(HAS_BODY | HAS_REPLY | IS_MUTABLE,
2732                                         OST_PUNCH,      ofd_punch_hdl,
2733                                                         ofd_hp_punch),
2734 TGT_OST_HDL(HAS_BODY | HAS_REPLY,       OST_SYNC,       ofd_sync_hdl),
2735 TGT_OST_HDL(HAS_REPLY,  OST_QUOTACTL,   ofd_quotactl),
2736 TGT_OST_HDL(HAS_BODY | HAS_REPLY, OST_LADVISE,  ofd_ladvise_hdl),
2737 };
2738
2739 static struct tgt_opc_slice ofd_common_slice[] = {
2740         {
2741                 .tos_opc_start  = OST_FIRST_OPC,
2742                 .tos_opc_end    = OST_LAST_OPC,
2743                 .tos_hs         = ofd_tgt_handlers
2744         },
2745         {
2746                 .tos_opc_start  = OBD_FIRST_OPC,
2747                 .tos_opc_end    = OBD_LAST_OPC,
2748                 .tos_hs         = tgt_obd_handlers
2749         },
2750         {
2751                 .tos_opc_start  = LDLM_FIRST_OPC,
2752                 .tos_opc_end    = LDLM_LAST_OPC,
2753                 .tos_hs         = tgt_dlm_handlers
2754         },
2755         {
2756                 .tos_opc_start  = OUT_UPDATE_FIRST_OPC,
2757                 .tos_opc_end    = OUT_UPDATE_LAST_OPC,
2758                 .tos_hs         = tgt_out_handlers
2759         },
2760         {
2761                 .tos_opc_start  = SEQ_FIRST_OPC,
2762                 .tos_opc_end    = SEQ_LAST_OPC,
2763                 .tos_hs         = seq_handlers
2764         },
2765         {
2766                 .tos_opc_start  = LFSCK_FIRST_OPC,
2767                 .tos_opc_end    = LFSCK_LAST_OPC,
2768                 .tos_hs         = tgt_lfsck_handlers
2769         },
2770         {
2771                 .tos_opc_start  = SEC_FIRST_OPC,
2772                 .tos_opc_end    = SEC_LAST_OPC,
2773                 .tos_hs         = tgt_sec_ctx_handlers
2774         },
2775         {
2776                 .tos_hs         = NULL
2777         }
2778 };
2779
2780 /* context key constructor/destructor: ofd_key_init(), ofd_key_fini() */
2781 LU_KEY_INIT_FINI(ofd, struct ofd_thread_info);
2782
2783 /**
2784  * Implementation of lu_context_key::lct_key_exit.
2785  *
2786  * Optional method called on lu_context_exit() for all allocated
2787  * keys.
2788  * It is used in OFD to sanitize context values which may be re-used
2789  * during another request processing by the same thread.
2790  *
2791  * \param[in] ctx       execution context
2792  * \param[in] key       context key
2793  * \param[in] data      ofd_thread_info
2794  */
2795 static void ofd_key_exit(const struct lu_context *ctx,
2796                          struct lu_context_key *key, void *data)
2797 {
2798         struct ofd_thread_info *info = data;
2799
2800         info->fti_env = NULL;
2801         info->fti_exp = NULL;
2802
2803         info->fti_xid = 0;
2804         info->fti_pre_version = 0;
2805
2806         memset(&info->fti_attr, 0, sizeof info->fti_attr);
2807 }
2808
2809 struct lu_context_key ofd_thread_key = {
2810         .lct_tags = LCT_DT_THREAD,
2811         .lct_init = ofd_key_init,
2812         .lct_fini = ofd_key_fini,
2813         .lct_exit = ofd_key_exit
2814 };
2815
2816 /**
2817  * Initialize OFD device according to parameters in the config log \a cfg.
2818  *
2819  * This is the main starting point of OFD initialization. It fills all OFD
2820  * parameters with their initial values and calls other initializing functions
2821  * to set up all OFD subsystems.
2822  *
2823  * \param[in] env       execution environment
2824  * \param[in] m         OFD device
2825  * \param[in] ldt       LU device type of OFD
2826  * \param[in] cfg       configuration log
2827  *
2828  * \retval              0 if successful
2829  * \retval              negative value on error
2830  */
2831 static int ofd_init0(const struct lu_env *env, struct ofd_device *m,
2832                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
2833 {
2834         const char *dev = lustre_cfg_string(cfg, 0);
2835         struct ofd_thread_info *info = NULL;
2836         struct obd_device *obd;
2837         struct tg_grants_data *tgd = &m->ofd_lut.lut_tgd;
2838         struct lu_fid fid;
2839         struct nm_config_file *nodemap_config;
2840         struct obd_device_target *obt;
2841         u32 lmd_flags = 0;
2842         int rc;
2843
2844         ENTRY;
2845
2846         obd = class_name2obd(dev);
2847         if (obd == NULL) {
2848                 CERROR("Cannot find obd with name %s\n", dev);
2849                 RETURN(-ENODEV);
2850         }
2851
2852         rc = lu_env_refill((struct lu_env *)env);
2853         if (rc != 0)
2854                 RETURN(rc);
2855
2856         obt = &obd->u.obt;
2857         obt->obt_magic = OBT_MAGIC;
2858
2859         spin_lock_init(&m->ofd_flags_lock);
2860         m->ofd_raid_degraded = 0;
2861         m->ofd_checksum_t10pi_enforce = 0;
2862         m->ofd_sync_journal = 0;
2863         ofd_slc_set(m);
2864         m->ofd_soft_sync_limit = OFD_SOFT_SYNC_LIMIT_DEFAULT;
2865
2866         m->ofd_seq_count = 0;
2867         init_waitqueue_head(&m->ofd_inconsistency_thread.t_ctl_waitq);
2868         INIT_LIST_HEAD(&m->ofd_inconsistency_list);
2869         spin_lock_init(&m->ofd_inconsistency_lock);
2870
2871         spin_lock_init(&m->ofd_batch_lock);
2872         init_rwsem(&m->ofd_lastid_rwsem);
2873
2874         m->ofd_dt_dev.dd_lu_dev.ld_ops = &ofd_lu_ops;
2875         m->ofd_dt_dev.dd_lu_dev.ld_obd = obd;
2876         /* set this lu_device to obd, because error handling need it */
2877         obd->obd_lu_dev = &m->ofd_dt_dev.dd_lu_dev;
2878
2879         /* No connection accepted until configurations will finish */
2880         spin_lock(&obd->obd_dev_lock);
2881         obd->obd_no_conn = 1;
2882         spin_unlock(&obd->obd_dev_lock);
2883         obd->obd_replayable = 1;
2884         if (cfg->lcfg_bufcount > 4 && LUSTRE_CFG_BUFLEN(cfg, 4) > 0) {
2885                 char *str = lustre_cfg_string(cfg, 4);
2886
2887                 if (strchr(str, 'n')) {
2888                         CWARN("%s: recovery disabled\n", obd->obd_name);
2889                         obd->obd_replayable = 0;
2890                 }
2891         }
2892
2893         info = ofd_info_init(env, NULL);
2894         if (info == NULL)
2895                 RETURN(-EFAULT);
2896
2897         rc = ofd_stack_init(env, m, cfg, &lmd_flags);
2898         if (rc) {
2899                 CERROR("%s: can't init device stack, rc %d\n",
2900                        obd->obd_name, rc);
2901                 RETURN(rc);
2902         }
2903
2904 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 14, 53, 0)
2905         ofd_procfs_add_brw_stats_symlink(m);
2906 #endif
2907
2908         snprintf(info->fti_u.name, sizeof(info->fti_u.name), "%s-%s",
2909                  "filter"/*LUSTRE_OST_NAME*/, obd->obd_uuid.uuid);
2910         m->ofd_namespace = ldlm_namespace_new(obd, info->fti_u.name,
2911                                               LDLM_NAMESPACE_SERVER,
2912                                               LDLM_NAMESPACE_GREEDY,
2913                                               LDLM_NS_TYPE_OST);
2914         if (m->ofd_namespace == NULL)
2915                 GOTO(err_fini_stack, rc = -ENOMEM);
2916         /* set obd_namespace for compatibility with old code */
2917         obd->obd_namespace = m->ofd_namespace;
2918         ldlm_register_intent(m->ofd_namespace, ofd_intent_policy);
2919         m->ofd_namespace->ns_lvbo = &ofd_lvbo;
2920         m->ofd_namespace->ns_lvbp = m;
2921
2922         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
2923                            "filter_ldlm_cb_client", &obd->obd_ldlm_client);
2924
2925         rc = tgt_init(env, &m->ofd_lut, obd, m->ofd_osd, ofd_common_slice,
2926                       OBD_FAIL_OST_ALL_REQUEST_NET,
2927                       OBD_FAIL_OST_ALL_REPLY_NET);
2928         if (rc)
2929                 GOTO(err_free_ns, rc);
2930
2931         if (lmd_flags & LMD_FLG_SKIP_LFSCK)
2932                 m->ofd_skip_lfsck = 1;
2933         if (lmd_flags & LMD_FLG_LOCAL_RECOV)
2934                 m->ofd_lut.lut_local_recovery = 1;
2935
2936         rc = ofd_tunables_init(m);
2937         if (rc)
2938                 GOTO(err_fini_lut, rc);
2939
2940         tgd->tgd_reserved_pcnt = 0;
2941
2942         m->ofd_brw_size = m->ofd_lut.lut_dt_conf.ddp_brw_size;
2943         m->ofd_cksum_types_supported =
2944                 obd_cksum_types_supported_server(obd->obd_name);
2945         m->ofd_precreate_batch = OFD_PRECREATE_BATCH_DEFAULT;
2946         if (tgd->tgd_osfs.os_bsize * tgd->tgd_osfs.os_blocks <
2947             OFD_PRECREATE_SMALL_FS)
2948                 m->ofd_precreate_batch = OFD_PRECREATE_BATCH_SMALL;
2949
2950         rc = ofd_fs_setup(env, m, obd);
2951         if (rc)
2952                 GOTO(err_fini_proc, rc);
2953
2954         fid.f_seq = FID_SEQ_LOCAL_NAME;
2955         fid.f_oid = 1;
2956         fid.f_ver = 0;
2957         rc = local_oid_storage_init(env, m->ofd_osd, &fid,
2958                                     &m->ofd_los);
2959         if (rc != 0)
2960                 GOTO(err_fini_fs, rc);
2961
2962         nodemap_config = nm_config_file_register_tgt(env, m->ofd_osd,
2963                                                      m->ofd_los);
2964         if (IS_ERR(nodemap_config)) {
2965                 rc = PTR_ERR(nodemap_config);
2966                 if (rc != -EROFS)
2967                         GOTO(err_fini_los, rc);
2968         } else {
2969                 obt->obt_nodemap_config_file = nodemap_config;
2970         }
2971
2972         rc = ofd_start_inconsistency_verification_thread(m);
2973         if (rc != 0)
2974                 GOTO(err_fini_nm, rc);
2975
2976         tgt_adapt_sptlrpc_conf(&m->ofd_lut);
2977
2978         RETURN(0);
2979
2980 err_fini_nm:
2981         nm_config_file_deregister_tgt(env, obt->obt_nodemap_config_file);
2982         obt->obt_nodemap_config_file = NULL;
2983 err_fini_los:
2984         local_oid_storage_fini(env, m->ofd_los);
2985         m->ofd_los = NULL;
2986 err_fini_fs:
2987         ofd_fs_cleanup(env, m);
2988 err_fini_proc:
2989         ofd_procfs_fini(m);
2990 err_fini_lut:
2991         tgt_fini(env, &m->ofd_lut);
2992 err_free_ns:
2993         ldlm_namespace_free(m->ofd_namespace, NULL, obd->obd_force);
2994         obd->obd_namespace = m->ofd_namespace = NULL;
2995 err_fini_stack:
2996         ofd_stack_fini(env, m, &m->ofd_osd->dd_lu_dev);
2997         return rc;
2998 }
2999
3000 /**
3001  * Stop the OFD device
3002  *
3003  * This function stops the OFD device and all its subsystems.
3004  * This is the end of OFD lifecycle.
3005  *
3006  * \param[in] env       execution environment
3007  * \param[in] m         OFD device
3008  */
3009 static void ofd_fini(const struct lu_env *env, struct ofd_device *m)
3010 {
3011         struct obd_device       *obd = ofd_obd(m);
3012         struct lu_device        *d   = &m->ofd_dt_dev.dd_lu_dev;
3013         struct lfsck_stop        stop;
3014
3015         stop.ls_status = LS_PAUSED;
3016         stop.ls_flags = 0;
3017         lfsck_stop(env, m->ofd_osd, &stop);
3018         ofd_stack_pre_fini(env, m, &m->ofd_dt_dev.dd_lu_dev);
3019         target_recovery_fini(obd);
3020         if (m->ofd_namespace != NULL)
3021                 ldlm_namespace_free_prior(m->ofd_namespace, NULL,
3022                                           d->ld_obd->obd_force);
3023
3024         obd_exports_barrier(obd);
3025         obd_zombie_barrier();
3026
3027         ofd_procfs_fini(m);
3028         tgt_fini(env, &m->ofd_lut);
3029         ofd_stop_inconsistency_verification_thread(m);
3030         lfsck_degister(env, m->ofd_osd);
3031         ofd_fs_cleanup(env, m);
3032         nm_config_file_deregister_tgt(env, obd->u.obt.obt_nodemap_config_file);
3033         obd->u.obt.obt_nodemap_config_file = NULL;
3034
3035         if (m->ofd_namespace != NULL) {
3036                 ldlm_namespace_free_post(m->ofd_namespace);
3037                 d->ld_obd->obd_namespace = m->ofd_namespace = NULL;
3038         }
3039
3040         ofd_stack_fini(env, m, &m->ofd_dt_dev.dd_lu_dev);
3041
3042         LASSERT(atomic_read(&d->ld_ref) == 0);
3043         server_put_mount(obd->obd_name, true);
3044         EXIT;
3045 }
3046
3047 /**
3048  * Implementation of lu_device_type_operations::ldto_device_fini.
3049  *
3050  * Finalize device. Dual to ofd_device_init(). It is called from
3051  * obd_precleanup() and stops the current device.
3052  *
3053  * \param[in] env       execution environment
3054  * \param[in] d         LU device of OFD
3055  *
3056  * \retval              NULL
3057  */
3058 static struct lu_device *ofd_device_fini(const struct lu_env *env,
3059                                          struct lu_device *d)
3060 {
3061         ENTRY;
3062         ofd_fini(env, ofd_dev(d));
3063         RETURN(NULL);
3064 }
3065
3066 /**
3067  * Implementation of lu_device_type_operations::ldto_device_free.
3068  *
3069  * Free OFD device. Dual to ofd_device_alloc().
3070  *
3071  * \param[in] env       execution environment
3072  * \param[in] d         LU device of OFD
3073  *
3074  * \retval              NULL
3075  */
3076 static struct lu_device *ofd_device_free(const struct lu_env *env,
3077                                          struct lu_device *d)
3078 {
3079         struct ofd_device *m = ofd_dev(d);
3080
3081         dt_device_fini(&m->ofd_dt_dev);
3082         OBD_FREE_PTR(m);
3083         RETURN(NULL);
3084 }
3085
3086 /**
3087  * Implementation of lu_device_type_operations::ldto_device_alloc.
3088  *
3089  * This function allocates the new OFD device. It is called from
3090  * obd_setup() if OBD device had lu_device_type defined.
3091  *
3092  * \param[in] env       execution environment
3093  * \param[in] t         lu_device_type of OFD device
3094  * \param[in] cfg       configuration log
3095  *
3096  * \retval              pointer to the lu_device of just allocated OFD
3097  * \retval              ERR_PTR of return value on error
3098  */
3099 static struct lu_device *ofd_device_alloc(const struct lu_env *env,
3100                                           struct lu_device_type *t,
3101                                           struct lustre_cfg *cfg)
3102 {
3103         struct ofd_device *m;
3104         struct lu_device  *l;
3105         int                rc;
3106
3107         OBD_ALLOC_PTR(m);
3108         if (m == NULL)
3109                 return ERR_PTR(-ENOMEM);
3110
3111         l = &m->ofd_dt_dev.dd_lu_dev;
3112         dt_device_init(&m->ofd_dt_dev, t);
3113         rc = ofd_init0(env, m, t, cfg);
3114         if (rc != 0) {
3115                 ofd_device_free(env, l);
3116                 l = ERR_PTR(rc);
3117         }
3118
3119         return l;
3120 }
3121
3122 /* type constructor/destructor: ofd_type_init(), ofd_type_fini() */
3123 LU_TYPE_INIT_FINI(ofd, &ofd_thread_key);
3124
3125 static struct lu_device_type_operations ofd_device_type_ops = {
3126         .ldto_init              = ofd_type_init,
3127         .ldto_fini              = ofd_type_fini,
3128
3129         .ldto_start             = ofd_type_start,
3130         .ldto_stop              = ofd_type_stop,
3131
3132         .ldto_device_alloc      = ofd_device_alloc,
3133         .ldto_device_free       = ofd_device_free,
3134         .ldto_device_fini       = ofd_device_fini
3135 };
3136
3137 static struct lu_device_type ofd_device_type = {
3138         .ldt_tags       = LU_DEVICE_DT,
3139         .ldt_name       = LUSTRE_OST_NAME,
3140         .ldt_ops        = &ofd_device_type_ops,
3141         .ldt_ctx_tags   = LCT_DT_THREAD
3142 };
3143
3144 /**
3145  * Initialize OFD module.
3146  *
3147  * This function is called upon module loading. It registers OFD device type
3148  * and prepares all in-memory structures used by all OFD devices.
3149  *
3150  * \retval              0 if successful
3151  * \retval              negative value on error
3152  */
3153 static int __init ofd_init(void)
3154 {
3155         int                             rc;
3156
3157         rc = lu_kmem_init(ofd_caches);
3158         if (rc)
3159                 return rc;
3160         rc = class_register_type(&ofd_obd_ops, NULL, true, NULL,
3161                                  LUSTRE_OST_NAME, &ofd_device_type);
3162         return rc;
3163 }
3164
3165 /**
3166  * Stop OFD module.
3167  *
3168  * This function is called upon OFD module unloading.
3169  * It frees all related structures and unregisters OFD device type.
3170  */
3171 static void __exit ofd_exit(void)
3172 {
3173         lu_kmem_fini(ofd_caches);
3174         class_unregister_type(LUSTRE_OST_NAME);
3175 }
3176
3177 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
3178 MODULE_DESCRIPTION("Lustre Object Filtering Device");
3179 MODULE_VERSION(LUSTRE_VERSION_STRING);
3180 MODULE_LICENSE("GPL");
3181
3182 module_init(ofd_init);
3183 module_exit(ofd_exit);