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