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