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