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