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