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