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