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