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