Whamcloud - gitweb
LU-3963 ofd: convert to linux list api
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ofd/ofd.c
37  *
38  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
39  * Author: Mike Pershin <tappro@whamcloud.com>
40  * Author: Johann Lombardi <johann@whamcloud.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_FILTER
44
45 #include <obd_class.h>
46 #include <lustre_param.h>
47 #include <lustre_fid.h>
48 #include <lustre_lfsck.h>
49 #include <lustre/lustre_idl.h>
50 #include <lustre_dlm.h>
51 #include <lustre_quota.h>
52
53 #include "ofd_internal.h"
54
55 /* Slab for OFD object allocation */
56 static struct kmem_cache *ofd_object_kmem;
57
58 static struct lu_kmem_descr ofd_caches[] = {
59         {
60                 .ckd_cache = &ofd_object_kmem,
61                 .ckd_name  = "ofd_obj",
62                 .ckd_size  = sizeof(struct ofd_object)
63         },
64         {
65                 .ckd_cache = NULL
66         }
67 };
68
69 static int ofd_connect_to_next(const struct lu_env *env, struct ofd_device *m,
70                                const char *next, struct obd_export **exp)
71 {
72         struct obd_connect_data *data = NULL;
73         struct obd_device       *obd;
74         int                      rc;
75         ENTRY;
76
77         OBD_ALLOC_PTR(data);
78         if (data == NULL)
79                 GOTO(out, rc = -ENOMEM);
80
81         obd = class_name2obd(next);
82         if (obd == NULL) {
83                 CERROR("%s: can't locate next device: %s\n",
84                        ofd_name(m), next);
85                 GOTO(out, rc = -ENOTCONN);
86         }
87
88         data->ocd_connect_flags = OBD_CONNECT_VERSION;
89         data->ocd_version = LUSTRE_VERSION_CODE;
90
91         rc = obd_connect(NULL, exp, obd, &obd->obd_uuid, data, NULL);
92         if (rc) {
93                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
94                        ofd_name(m), next, rc);
95                 GOTO(out, rc);
96         }
97
98         m->ofd_dt_dev.dd_lu_dev.ld_site =
99                 m->ofd_osd_exp->exp_obd->obd_lu_dev->ld_site;
100         LASSERT(m->ofd_dt_dev.dd_lu_dev.ld_site);
101         m->ofd_osd = lu2dt_dev(m->ofd_osd_exp->exp_obd->obd_lu_dev);
102         m->ofd_dt_dev.dd_lu_dev.ld_site->ls_top_dev = &m->ofd_dt_dev.dd_lu_dev;
103
104 out:
105         if (data)
106                 OBD_FREE_PTR(data);
107         RETURN(rc);
108 }
109
110 static int ofd_stack_init(const struct lu_env *env,
111                           struct ofd_device *m, struct lustre_cfg *cfg)
112 {
113         const char              *dev = lustre_cfg_string(cfg, 0);
114         struct lu_device        *d;
115         struct ofd_thread_info  *info = ofd_info(env);
116         struct lustre_mount_info *lmi;
117         int                      rc;
118         char                    *osdname;
119
120         ENTRY;
121
122         lmi = server_get_mount(dev);
123         if (lmi == NULL) {
124                 CERROR("Cannot get mount info for %s!\n", dev);
125                 RETURN(-ENODEV);
126         }
127
128         /* find bottom osd */
129         OBD_ALLOC(osdname, MTI_NAME_MAXLEN);
130         if (osdname == NULL)
131                 RETURN(-ENOMEM);
132
133         snprintf(osdname, MTI_NAME_MAXLEN, "%s-osd", dev);
134         rc = ofd_connect_to_next(env, m, osdname, &m->ofd_osd_exp);
135         OBD_FREE(osdname, MTI_NAME_MAXLEN);
136         if (rc)
137                 RETURN(rc);
138
139         d = m->ofd_osd_exp->exp_obd->obd_lu_dev;
140         LASSERT(d);
141         m->ofd_osd = lu2dt_dev(d);
142
143         snprintf(info->fti_u.name, sizeof(info->fti_u.name),
144                  "%s-osd", lustre_cfg_string(cfg, 0));
145
146         RETURN(rc);
147 }
148
149 static void ofd_stack_fini(const struct lu_env *env, struct ofd_device *m,
150                            struct lu_device *top)
151 {
152         struct obd_device       *obd = ofd_obd(m);
153         struct lustre_cfg_bufs   bufs;
154         struct lustre_cfg       *lcfg;
155         char                     flags[3] = "";
156
157         ENTRY;
158
159         lu_site_purge(env, top->ld_site, ~0);
160         /* process cleanup, pass mdt obd name to get obd umount flags */
161         lustre_cfg_bufs_reset(&bufs, obd->obd_name);
162         if (obd->obd_force)
163                 strcat(flags, "F");
164         if (obd->obd_fail)
165                 strcat(flags, "A");
166         lustre_cfg_bufs_set_string(&bufs, 1, flags);
167         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
168         if (!lcfg) {
169                 CERROR("Cannot alloc lcfg!\n");
170                 RETURN_EXIT;
171         }
172
173         LASSERT(top);
174         top->ld_ops->ldo_process_config(env, top, lcfg);
175         lustre_cfg_free(lcfg);
176
177         lu_site_purge(env, top->ld_site, ~0);
178         if (!cfs_hash_is_empty(top->ld_site->ls_obj_hash)) {
179                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);
180                 lu_site_print(env, top->ld_site, &msgdata, lu_cdebug_printer);
181         }
182
183         LASSERT(m->ofd_osd_exp);
184         obd_disconnect(m->ofd_osd_exp);
185
186         EXIT;
187 }
188
189 /* For interoperability, see mdt_interop_param[]. */
190 static struct cfg_interop_param ofd_interop_param[] = {
191         { "ost.quota_type",     NULL },
192         { NULL }
193 };
194
195 /* Some parameters were moved from ofd to osd and only their
196  * symlinks were kept in ofd by LU-3106. They are:
197  * -writehthrough_cache_enable
198  * -readcache_max_filese
199  * -read_cache_enable
200  * -brw_stats
201  * Since they are not included by the static lprocfs var list,
202  * a pre-check is added for them to avoid "unknown param" error
203  * message confuses the customer. If they are matched in this
204  * check, they will be passed to the osd directly.
205  */
206 static bool match_symlink_param(char *param)
207 {
208         char *sval;
209         int paramlen;
210
211         if (class_match_param(param, PARAM_OST, &param) == 0) {
212                 sval = strchr(param, '=');
213                 if (sval != NULL) {
214                         paramlen = sval - param;
215                         if (strncmp(param, "writethrough_cache_enable",
216                                     paramlen) == 0 ||
217                             strncmp(param, "readcache_max_filesize",
218                                     paramlen) == 0 ||
219                             strncmp(param, "read_cache_enable",
220                                     paramlen) == 0 ||
221                             strncmp(param, "brw_stats", paramlen) == 0)
222                                 return true;
223                 }
224         }
225
226         return false;
227 }
228
229 /* used by MGS to process specific configurations */
230 static int ofd_process_config(const struct lu_env *env, struct lu_device *d,
231                               struct lustre_cfg *cfg)
232 {
233         struct ofd_device       *m = ofd_dev(d);
234         struct dt_device        *dt_next = m->ofd_osd;
235         struct lu_device        *next = &dt_next->dd_lu_dev;
236         int                      rc;
237
238         ENTRY;
239
240         switch (cfg->lcfg_command) {
241         case LCFG_PARAM: {
242                 struct obd_device       *obd = ofd_obd(m);
243                 /* For interoperability */
244                 struct cfg_interop_param   *ptr = NULL;
245                 struct lustre_cfg          *old_cfg = NULL;
246                 char                       *param = NULL;
247
248                 param = lustre_cfg_string(cfg, 1);
249                 if (param == NULL) {
250                         CERROR("param is empty\n");
251                         rc = -EINVAL;
252                         break;
253                 }
254
255                 ptr = class_find_old_param(param, ofd_interop_param);
256                 if (ptr != NULL) {
257                         if (ptr->new_param == NULL) {
258                                 rc = 0;
259                                 CWARN("For interoperability, skip this %s."
260                                       " It is obsolete.\n", ptr->old_param);
261                                 break;
262                         }
263
264                         CWARN("Found old param %s, changed it to %s.\n",
265                               ptr->old_param, ptr->new_param);
266
267                         old_cfg = cfg;
268                         cfg = lustre_cfg_rename(old_cfg, ptr->new_param);
269                         if (IS_ERR(cfg)) {
270                                 rc = PTR_ERR(cfg);
271                                 break;
272                         }
273                 }
274
275                 if (match_symlink_param(param)) {
276                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
277                         break;
278                 }
279
280                 rc = class_process_proc_seq_param(PARAM_OST, obd->obd_vars, cfg,
281                                               d->ld_obd);
282                 if (rc > 0 || rc == -ENOSYS) {
283                         CDEBUG(D_CONFIG, "pass param %s down the stack.\n",
284                                param);
285                         /* we don't understand; pass it on */
286                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
287                 }
288                 break;
289         }
290         case LCFG_SPTLRPC_CONF: {
291                 rc = -ENOTSUPP;
292                 break;
293         }
294         default:
295                 /* others are passed further */
296                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
297                 break;
298         }
299         RETURN(rc);
300 }
301
302 static int ofd_object_init(const struct lu_env *env, struct lu_object *o,
303                            const struct lu_object_conf *conf)
304 {
305         struct ofd_device       *d = ofd_dev(o->lo_dev);
306         struct lu_device        *under;
307         struct lu_object        *below;
308         int                      rc = 0;
309
310         ENTRY;
311
312         CDEBUG(D_INFO, "object init, fid = "DFID"\n",
313                PFID(lu_object_fid(o)));
314
315         under = &d->ofd_osd->dd_lu_dev;
316         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
317         if (below != NULL)
318                 lu_object_add(o, below);
319         else
320                 rc = -ENOMEM;
321
322         RETURN(rc);
323 }
324
325 static void ofd_object_free(const struct lu_env *env, struct lu_object *o)
326 {
327         struct ofd_object       *of = ofd_obj(o);
328         struct lu_object_header *h;
329
330         ENTRY;
331
332         h = o->lo_header;
333         CDEBUG(D_INFO, "object free, fid = "DFID"\n",
334                PFID(lu_object_fid(o)));
335
336         lu_object_fini(o);
337         lu_object_header_fini(h);
338         OBD_SLAB_FREE_PTR(of, ofd_object_kmem);
339         EXIT;
340 }
341
342 static int ofd_object_print(const struct lu_env *env, void *cookie,
343                             lu_printer_t p, const struct lu_object *o)
344 {
345         return (*p)(env, cookie, LUSTRE_OST_NAME"-object@%p", o);
346 }
347
348 struct lu_object_operations ofd_obj_ops = {
349         .loo_object_init        = ofd_object_init,
350         .loo_object_free        = ofd_object_free,
351         .loo_object_print       = ofd_object_print
352 };
353
354 static struct lu_object *ofd_object_alloc(const struct lu_env *env,
355                                           const struct lu_object_header *hdr,
356                                           struct lu_device *d)
357 {
358         struct ofd_object *of;
359
360         ENTRY;
361
362         OBD_SLAB_ALLOC_PTR_GFP(of, ofd_object_kmem, GFP_NOFS);
363         if (of != NULL) {
364                 struct lu_object        *o;
365                 struct lu_object_header *h;
366
367                 o = &of->ofo_obj.do_lu;
368                 h = &of->ofo_header;
369                 lu_object_header_init(h);
370                 lu_object_init(o, h, d);
371                 lu_object_add_top(h, o);
372                 o->lo_ops = &ofd_obj_ops;
373                 RETURN(o);
374         } else {
375                 RETURN(NULL);
376         }
377 }
378
379 extern int ost_handle(struct ptlrpc_request *req);
380
381 static int ofd_lfsck_out_notify(const struct lu_env *env, void *data,
382                                 enum lfsck_events event)
383 {
384         struct ofd_device *ofd = data;
385         struct obd_device *obd = ofd_obd(ofd);
386
387         switch (event) {
388         case LE_LASTID_REBUILDING:
389                 CWARN("%s: Found crashed LAST_ID, deny creating new OST-object "
390                       "on the device until the LAST_ID rebuilt successfully.\n",
391                       obd->obd_name);
392                 down_write(&ofd->ofd_lastid_rwsem);
393                 ofd->ofd_lastid_rebuilding = 1;
394                 up_write(&ofd->ofd_lastid_rwsem);
395                 break;
396         case LE_LASTID_REBUILT: {
397                 down_write(&ofd->ofd_lastid_rwsem);
398                 ofd_seqs_free(env, ofd);
399                 ofd->ofd_lastid_rebuilding = 0;
400                 ofd->ofd_lastid_gen++;
401                 up_write(&ofd->ofd_lastid_rwsem);
402                 break;
403         }
404         default:
405                 CERROR("%s: unknown lfsck event: rc = %d\n",
406                        ofd_name(ofd), event);
407                 return -EINVAL;
408         }
409
410         return 0;
411 }
412
413 static int ofd_prepare(const struct lu_env *env, struct lu_device *pdev,
414                        struct lu_device *dev)
415 {
416         struct ofd_thread_info          *info;
417         struct ofd_device               *ofd = ofd_dev(dev);
418         struct obd_device               *obd = ofd_obd(ofd);
419         struct lu_device                *next = &ofd->ofd_osd->dd_lu_dev;
420         int                              rc;
421
422         ENTRY;
423
424         info = ofd_info_init(env, NULL);
425         if (info == NULL)
426                 RETURN(-EFAULT);
427
428         /* initialize lower device */
429         rc = next->ld_ops->ldo_prepare(env, dev, next);
430         if (rc != 0)
431                 RETURN(rc);
432
433         rc = lfsck_register(env, ofd->ofd_osd, ofd->ofd_osd, obd,
434                             ofd_lfsck_out_notify, ofd, false);
435         if (rc != 0) {
436                 CERROR("%s: failed to initialize lfsck: rc = %d\n",
437                        obd->obd_name, rc);
438                 RETURN(rc);
439         }
440
441         rc = lfsck_register_namespace(env, ofd->ofd_osd, ofd->ofd_namespace);
442         /* The LFSCK instance is registered just now, so it must be there when
443          * register the namespace to such instance. */
444         LASSERTF(rc == 0, "register namespace failed: rc = %d\n", rc);
445
446         target_recovery_init(&ofd->ofd_lut, tgt_request_handle);
447         LASSERT(obd->obd_no_conn);
448         spin_lock(&obd->obd_dev_lock);
449         obd->obd_no_conn = 0;
450         spin_unlock(&obd->obd_dev_lock);
451
452         if (obd->obd_recovering == 0)
453                 ofd_postrecov(env, ofd);
454
455         RETURN(rc);
456 }
457
458 static int ofd_recovery_complete(const struct lu_env *env,
459                                  struct lu_device *dev)
460 {
461         struct ofd_device       *ofd = ofd_dev(dev);
462         struct lu_device        *next = &ofd->ofd_osd->dd_lu_dev;
463         int                      rc = 0, max_precreate;
464
465         ENTRY;
466
467         /* Grant space for object precreation on the self export.
468          * This initial reserved space (i.e. 10MB for zfs and 280KB for ldiskfs)
469          * is enough to create 10k objects. More space is then acquired for
470          * precreation in ofd_grant_create().
471          */
472         max_precreate = OST_MAX_PRECREATE * ofd->ofd_dt_conf.ddp_inodespace / 2;
473         ofd_grant_connect(env, dev->ld_obd->obd_self_export, max_precreate,
474                           false);
475         rc = next->ld_ops->ldo_recovery_complete(env, next);
476         RETURN(rc);
477 }
478
479 static struct lu_device_operations ofd_lu_ops = {
480         .ldo_object_alloc       = ofd_object_alloc,
481         .ldo_process_config     = ofd_process_config,
482         .ldo_recovery_complete  = ofd_recovery_complete,
483         .ldo_prepare            = ofd_prepare,
484 };
485
486 LPROC_SEQ_FOPS(lprocfs_nid_stats_clear);
487
488 static int ofd_procfs_init(struct ofd_device *ofd)
489 {
490         struct obd_device               *obd = ofd_obd(ofd);
491         cfs_proc_dir_entry_t            *entry;
492         int                              rc = 0;
493
494         ENTRY;
495
496         /* lprocfs must be setup before the ofd so state can be safely added
497          * to /proc incrementally as the ofd is setup */
498         obd->obd_vars = lprocfs_ofd_obd_vars;
499         rc = lprocfs_seq_obd_setup(obd);
500         if (rc) {
501                 CERROR("%s: lprocfs_obd_setup failed: %d.\n",
502                        obd->obd_name, rc);
503                 RETURN(rc);
504         }
505
506         rc = lprocfs_alloc_obd_stats(obd, LPROC_OFD_STATS_LAST);
507         if (rc) {
508                 CERROR("%s: lprocfs_alloc_obd_stats failed: %d.\n",
509                        obd->obd_name, rc);
510                 GOTO(obd_cleanup, rc);
511         }
512
513         obd->obd_uses_nid_stats = 1;
514
515         entry = lprocfs_seq_register("exports", obd->obd_proc_entry, NULL,
516                                      NULL);
517         if (IS_ERR(entry)) {
518                 rc = PTR_ERR(entry);
519                 CERROR("%s: error %d setting up lprocfs for %s\n",
520                        obd->obd_name, rc, "exports");
521                 GOTO(obd_cleanup, rc);
522         }
523         obd->obd_proc_exports_entry = entry;
524
525         entry = lprocfs_add_simple(obd->obd_proc_exports_entry, "clear",
526 #ifndef HAVE_ONLY_PROCFS_SEQ
527                                    NULL, NULL,
528 #endif
529                                    obd, &lprocfs_nid_stats_clear_fops);
530         if (IS_ERR(entry)) {
531                 rc = PTR_ERR(entry);
532                 CERROR("%s: add proc entry 'clear' failed: %d.\n",
533                        obd->obd_name, rc);
534                 GOTO(obd_cleanup, rc);
535         }
536
537         ofd_stats_counter_init(obd->obd_stats);
538
539         rc = lprocfs_job_stats_init(obd, LPROC_OFD_STATS_LAST,
540                                     ofd_stats_counter_init);
541         if (rc)
542                 GOTO(obd_cleanup, rc);
543         RETURN(0);
544 obd_cleanup:
545         lprocfs_obd_cleanup(obd);
546         lprocfs_free_obd_stats(obd);
547
548         return rc;
549 }
550
551 /**
552  * ofd_procfs_add_brw_stats_symlink - expose osd stats to ofd layer
553  *
554  * The osd interfaces to the backend file system exposes useful data
555  * such as brw_stats and read or write cache states. This same data
556  * needs to be exposed into the obdfilter (ofd) layer to maintain
557  * backwards compatibility. This function creates the symlinks in the
558  * proc layer to enable this.
559  */
560 static void ofd_procfs_add_brw_stats_symlink(struct ofd_device *ofd)
561 {
562         struct obd_device       *obd = ofd_obd(ofd);
563         struct obd_device       *osd_obd = ofd->ofd_osd_exp->exp_obd;
564
565         if (obd->obd_proc_entry == NULL)
566                 return;
567
568         lprocfs_add_symlink("brw_stats", obd->obd_proc_entry,
569                             "../../%s/%s/brw_stats",
570                             osd_obd->obd_type->typ_name, obd->obd_name);
571
572         lprocfs_add_symlink("read_cache_enable", obd->obd_proc_entry,
573                             "../../%s/%s/read_cache_enable",
574                             osd_obd->obd_type->typ_name, obd->obd_name);
575
576         lprocfs_add_symlink("readcache_max_filesize",
577                             obd->obd_proc_entry,
578                             "../../%s/%s/readcache_max_filesize",
579                             osd_obd->obd_type->typ_name, obd->obd_name);
580
581         lprocfs_add_symlink("writethrough_cache_enable",
582                             obd->obd_proc_entry,
583                             "../../%s/%s/writethrough_cache_enable",
584                             osd_obd->obd_type->typ_name, obd->obd_name);
585 }
586
587 static void ofd_procfs_fini(struct ofd_device *ofd)
588 {
589         struct obd_device *obd = ofd_obd(ofd);
590
591         lprocfs_free_per_client_stats(obd);
592         lprocfs_obd_cleanup(obd);
593         lprocfs_free_obd_stats(obd);
594         lprocfs_job_stats_fini(obd);
595 }
596
597 extern int ost_handle(struct ptlrpc_request *req);
598
599 int ofd_fid_fini(const struct lu_env *env, struct ofd_device *ofd)
600 {
601         return seq_site_fini(env, &ofd->ofd_seq_site);
602 }
603
604 int ofd_fid_init(const struct lu_env *env, struct ofd_device *ofd)
605 {
606         struct seq_server_site  *ss = &ofd->ofd_seq_site;
607         struct lu_device        *lu = &ofd->ofd_dt_dev.dd_lu_dev;
608         char                    *obd_name = ofd_name(ofd);
609         char                    *name = NULL;
610         int                     rc = 0;
611
612         ss = &ofd->ofd_seq_site;
613         lu->ld_site->ld_seq_site = ss;
614         ss->ss_lu = lu->ld_site;
615         ss->ss_node_id = ofd->ofd_lut.lut_lsd.lsd_osd_index;
616
617         OBD_ALLOC_PTR(ss->ss_server_seq);
618         if (ss->ss_server_seq == NULL)
619                 GOTO(out_free, rc = -ENOMEM);
620
621         OBD_ALLOC(name, strlen(obd_name) + 10);
622         if (!name) {
623                 OBD_FREE_PTR(ss->ss_server_seq);
624                 ss->ss_server_seq = NULL;
625                 GOTO(out_free, rc = -ENOMEM);
626         }
627
628         rc = seq_server_init(env, ss->ss_server_seq, ofd->ofd_osd, obd_name,
629                              LUSTRE_SEQ_SERVER, ss);
630         if (rc) {
631                 CERROR("%s : seq server init error %d\n", obd_name, rc);
632                 GOTO(out_free, rc);
633         }
634         ss->ss_server_seq->lss_space.lsr_index = ss->ss_node_id;
635
636         OBD_ALLOC_PTR(ss->ss_client_seq);
637         if (ss->ss_client_seq == NULL)
638                 GOTO(out_free, rc = -ENOMEM);
639
640         snprintf(name, strlen(obd_name) + 6, "%p-super", obd_name);
641         rc = seq_client_init(ss->ss_client_seq, NULL, LUSTRE_SEQ_DATA,
642                              name, NULL);
643         if (rc) {
644                 CERROR("%s : seq client init error %d\n", obd_name, rc);
645                 GOTO(out_free, rc);
646         }
647         OBD_FREE(name, strlen(obd_name) + 10);
648         name = NULL;
649
650         rc = seq_server_set_cli(env, ss->ss_server_seq, ss->ss_client_seq);
651
652 out_free:
653         if (rc) {
654                 if (ss->ss_server_seq) {
655                         seq_server_fini(ss->ss_server_seq, env);
656                         OBD_FREE_PTR(ss->ss_server_seq);
657                         ss->ss_server_seq = NULL;
658                 }
659
660                 if (ss->ss_client_seq) {
661                         seq_client_fini(ss->ss_client_seq);
662                         OBD_FREE_PTR(ss->ss_client_seq);
663                         ss->ss_client_seq = NULL;
664                 }
665
666                 if (name) {
667                         OBD_FREE(name, strlen(obd_name) + 10);
668                         name = NULL;
669                 }
670         }
671
672         return rc;
673 }
674
675 int ofd_set_info_hdl(struct tgt_session_info *tsi)
676 {
677         struct ptlrpc_request   *req = tgt_ses_req(tsi);
678         struct ost_body         *body = NULL, *repbody;
679         void                    *key, *val = NULL;
680         int                      keylen, vallen, rc = 0;
681         bool                     is_grant_shrink;
682         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
683
684         ENTRY;
685
686         key = req_capsule_client_get(tsi->tsi_pill, &RMF_SETINFO_KEY);
687         if (key == NULL) {
688                 DEBUG_REQ(D_HA, req, "no set_info key");
689                 RETURN(err_serious(-EFAULT));
690         }
691         keylen = req_capsule_get_size(tsi->tsi_pill, &RMF_SETINFO_KEY,
692                                       RCL_CLIENT);
693
694         val = req_capsule_client_get(tsi->tsi_pill, &RMF_SETINFO_VAL);
695         if (val == NULL) {
696                 DEBUG_REQ(D_HA, req, "no set_info val");
697                 RETURN(err_serious(-EFAULT));
698         }
699         vallen = req_capsule_get_size(tsi->tsi_pill, &RMF_SETINFO_VAL,
700                                       RCL_CLIENT);
701
702         is_grant_shrink = KEY_IS(KEY_GRANT_SHRINK);
703         if (is_grant_shrink)
704                 /* In this case the value is actually an RMF_OST_BODY, so we
705                  * transmutate the type of this PTLRPC */
706                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_SET_GRANT_INFO);
707
708         rc = req_capsule_server_pack(tsi->tsi_pill);
709         if (rc < 0)
710                 RETURN(rc);
711
712         if (is_grant_shrink) {
713                 body = req_capsule_client_get(tsi->tsi_pill, &RMF_OST_BODY);
714
715                 repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
716                 *repbody = *body;
717
718                 /** handle grant shrink, similar to a read request */
719                 ofd_grant_prepare_read(tsi->tsi_env, tsi->tsi_exp,
720                                        &repbody->oa);
721         } else if (KEY_IS(KEY_EVICT_BY_NID)) {
722                 if (vallen > 0)
723                         obd_export_evict_by_nid(tsi->tsi_exp->exp_obd, val);
724                 rc = 0;
725         } else if (KEY_IS(KEY_CAPA_KEY)) {
726                 rc = ofd_update_capa_key(ofd, val);
727         } else if (KEY_IS(KEY_SPTLRPC_CONF)) {
728                 rc = tgt_adapt_sptlrpc_conf(tsi->tsi_tgt, 0);
729         } else {
730                 CERROR("%s: Unsupported key %s\n",
731                        tgt_name(tsi->tsi_tgt), (char *)key);
732                 rc = -EOPNOTSUPP;
733         }
734         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_SET_INFO,
735                          tsi->tsi_jobid, 1);
736
737         RETURN(rc);
738 }
739
740 int ofd_fiemap_get(const struct lu_env *env, struct ofd_device *ofd,
741                    struct lu_fid *fid, struct ll_user_fiemap *fiemap)
742 {
743         struct ofd_object       *fo;
744         int                      rc;
745
746         fo = ofd_object_find(env, ofd, fid);
747         if (IS_ERR(fo)) {
748                 CERROR("%s: error finding object "DFID"\n",
749                        ofd_name(ofd), PFID(fid));
750                 return PTR_ERR(fo);
751         }
752
753         ofd_read_lock(env, fo);
754         if (ofd_object_exists(fo))
755                 rc = dt_fiemap_get(env, ofd_object_child(fo), fiemap);
756         else
757                 rc = -ENOENT;
758         ofd_read_unlock(env, fo);
759         ofd_object_put(env, fo);
760         return rc;
761 }
762
763 struct locked_region {
764         struct list_head        list;
765         struct lustre_handle    lh;
766 };
767
768 static int lock_region(struct ldlm_namespace *ns, struct ldlm_res_id *res_id,
769                        unsigned long long begin, unsigned long long end,
770                        struct list_head *locked)
771 {
772         struct locked_region    *region = NULL;
773         __u64                    flags = 0;
774         int                      rc;
775
776         LASSERT(begin <= end);
777         OBD_ALLOC_PTR(region);
778         if (region == NULL)
779                 return -ENOMEM;
780
781         rc = tgt_extent_lock(ns, res_id, begin, end, &region->lh,
782                              LCK_PR, &flags);
783         if (rc != 0)
784                 return rc;
785
786         CDEBUG(D_OTHER, "ost lock [%llu,%llu], lh=%p\n", begin, end,
787                &region->lh);
788         list_add(&region->list, locked);
789
790         return 0;
791 }
792
793 static int lock_zero_regions(struct ldlm_namespace *ns,
794                              struct ldlm_res_id *res_id,
795                              struct ll_user_fiemap *fiemap,
796                              struct list_head *locked)
797 {
798         __u64 begin = fiemap->fm_start;
799         unsigned int i;
800         int rc = 0;
801         struct ll_fiemap_extent *fiemap_start = fiemap->fm_extents;
802
803         ENTRY;
804
805         CDEBUG(D_OTHER, "extents count %u\n", fiemap->fm_mapped_extents);
806         for (i = 0; i < fiemap->fm_mapped_extents; i++) {
807                 if (fiemap_start[i].fe_logical > begin) {
808                         CDEBUG(D_OTHER, "ost lock [%llu,%llu]\n",
809                                begin, fiemap_start[i].fe_logical);
810                         rc = lock_region(ns, res_id, begin,
811                                          fiemap_start[i].fe_logical, locked);
812                         if (rc)
813                                 RETURN(rc);
814                 }
815
816                 begin = fiemap_start[i].fe_logical + fiemap_start[i].fe_length;
817         }
818
819         if (begin < (fiemap->fm_start + fiemap->fm_length)) {
820                 CDEBUG(D_OTHER, "ost lock [%llu,%llu]\n",
821                        begin, fiemap->fm_start + fiemap->fm_length);
822                 rc = lock_region(ns, res_id, begin,
823                                  fiemap->fm_start + fiemap->fm_length, locked);
824         }
825
826         RETURN(rc);
827 }
828
829 static void
830 unlock_zero_regions(struct ldlm_namespace *ns, struct list_head *locked)
831 {
832         struct locked_region *entry, *temp;
833
834         list_for_each_entry_safe(entry, temp, locked, list) {
835                 CDEBUG(D_OTHER, "ost unlock lh=%p\n", &entry->lh);
836                 tgt_extent_unlock(&entry->lh, LCK_PR);
837                 list_del(&entry->list);
838                 OBD_FREE_PTR(entry);
839         }
840 }
841
842 int ofd_get_info_hdl(struct tgt_session_info *tsi)
843 {
844         struct obd_export               *exp = tsi->tsi_exp;
845         struct ofd_device               *ofd = ofd_exp(exp);
846         struct ofd_thread_info          *fti = tsi2ofd_info(tsi);
847         void                            *key;
848         int                              keylen;
849         int                              replylen, rc = 0;
850
851         ENTRY;
852
853         /* this common part for get_info rpc */
854         key = req_capsule_client_get(tsi->tsi_pill, &RMF_GETINFO_KEY);
855         if (key == NULL) {
856                 DEBUG_REQ(D_HA, tgt_ses_req(tsi), "no get_info key");
857                 RETURN(err_serious(-EPROTO));
858         }
859         keylen = req_capsule_get_size(tsi->tsi_pill, &RMF_GETINFO_KEY,
860                                       RCL_CLIENT);
861
862         if (KEY_IS(KEY_LAST_ID)) {
863                 obd_id          *last_id;
864                 struct ofd_seq  *oseq;
865
866                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_GET_INFO_LAST_ID);
867                 rc = req_capsule_server_pack(tsi->tsi_pill);
868                 if (rc)
869                         RETURN(err_serious(rc));
870
871                 last_id = req_capsule_server_get(tsi->tsi_pill, &RMF_OBD_ID);
872
873                 oseq = ofd_seq_load(tsi->tsi_env, ofd,
874                                     (obd_seq)exp->exp_filter_data.fed_group);
875                 if (IS_ERR(oseq))
876                         rc = -EFAULT;
877                 else
878                         *last_id = ofd_seq_last_oid(oseq);
879                 ofd_seq_put(tsi->tsi_env, oseq);
880         } else if (KEY_IS(KEY_FIEMAP)) {
881                 struct ll_fiemap_info_key       *fm_key;
882                 struct ll_user_fiemap           *fiemap;
883                 struct lu_fid                   *fid;
884
885                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_GET_INFO_FIEMAP);
886
887                 fm_key = req_capsule_client_get(tsi->tsi_pill, &RMF_FIEMAP_KEY);
888                 rc = tgt_validate_obdo(tsi, &fm_key->oa);
889                 if (rc)
890                         RETURN(err_serious(rc));
891
892                 fid = &fm_key->oa.o_oi.oi_fid;
893
894                 CDEBUG(D_INODE, "get FIEMAP of object "DFID"\n", PFID(fid));
895
896                 replylen = fiemap_count_to_size(fm_key->fiemap.fm_extent_count);
897                 req_capsule_set_size(tsi->tsi_pill, &RMF_FIEMAP_VAL,
898                                      RCL_SERVER, replylen);
899
900                 rc = req_capsule_server_pack(tsi->tsi_pill);
901                 if (rc)
902                         RETURN(err_serious(rc));
903
904                 fiemap = req_capsule_server_get(tsi->tsi_pill, &RMF_FIEMAP_VAL);
905                 if (fiemap == NULL)
906                         RETURN(-ENOMEM);
907
908                 *fiemap = fm_key->fiemap;
909                 rc = ofd_fiemap_get(tsi->tsi_env, ofd, fid, fiemap);
910
911                 /* LU-3219: Lock the sparse areas to make sure dirty
912                  * flushed back from client, then call fiemap again. */
913                 if (fm_key->oa.o_valid & OBD_MD_FLFLAGS &&
914                     fm_key->oa.o_flags & OBD_FL_SRVLOCK) {
915                         struct list_head locked;
916
917                         INIT_LIST_HEAD(&locked);
918                         ost_fid_build_resid(fid, &fti->fti_resid);
919                         rc = lock_zero_regions(ofd->ofd_namespace,
920                                                &fti->fti_resid, fiemap,
921                                                &locked);
922                         if (rc == 0 && !list_empty(&locked)) {
923                                 rc = ofd_fiemap_get(tsi->tsi_env, ofd, fid,
924                                                     fiemap);
925                                 unlock_zero_regions(ofd->ofd_namespace,
926                                                     &locked);
927                         }
928                 }
929         } else if (KEY_IS(KEY_LAST_FID)) {
930                 struct ofd_device       *ofd = ofd_exp(exp);
931                 struct ofd_seq          *oseq;
932                 struct lu_fid           *fid;
933                 int                      rc;
934
935                 req_capsule_extend(tsi->tsi_pill, &RQF_OST_GET_INFO_LAST_FID);
936                 rc = req_capsule_server_pack(tsi->tsi_pill);
937                 if (rc)
938                         RETURN(err_serious(rc));
939
940                 fid = req_capsule_client_get(tsi->tsi_pill, &RMF_FID);
941                 if (fid == NULL)
942                         RETURN(err_serious(-EPROTO));
943
944                 fid_le_to_cpu(&fti->fti_ostid.oi_fid, fid);
945
946                 fid = req_capsule_server_get(tsi->tsi_pill, &RMF_FID);
947                 if (fid == NULL)
948                         RETURN(-ENOMEM);
949
950                 oseq = ofd_seq_load(tsi->tsi_env, ofd,
951                                     ostid_seq(&fti->fti_ostid));
952                 if (IS_ERR(oseq))
953                         RETURN(PTR_ERR(oseq));
954
955                 rc = ostid_to_fid(fid, &oseq->os_oi,
956                                   ofd->ofd_lut.lut_lsd.lsd_osd_index);
957                 if (rc != 0)
958                         GOTO(out_put, rc);
959
960                 CDEBUG(D_HA, "%s: LAST FID is "DFID"\n", ofd_name(ofd),
961                        PFID(fid));
962 out_put:
963                 ofd_seq_put(tsi->tsi_env, oseq);
964         } else {
965                 CERROR("%s: not supported key %s\n", tgt_name(tsi->tsi_tgt),
966                        (char *)key);
967                 rc = -EOPNOTSUPP;
968         }
969         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_GET_INFO,
970                          tsi->tsi_jobid, 1);
971
972         RETURN(rc);
973 }
974
975 static int ofd_getattr_hdl(struct tgt_session_info *tsi)
976 {
977         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
978         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
979         struct ost_body         *repbody;
980         struct lustre_handle     lh = { 0 };
981         struct ofd_object       *fo;
982         __u64                    flags = 0;
983         ldlm_mode_t              lock_mode = LCK_PR;
984         bool                     srvlock;
985         int                      rc;
986         ENTRY;
987
988         LASSERT(tsi->tsi_ost_body != NULL);
989
990         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
991         if (repbody == NULL)
992                 RETURN(-ENOMEM);
993
994         repbody->oa.o_oi = tsi->tsi_ost_body->oa.o_oi;
995         repbody->oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
996
997         srvlock = tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLFLAGS &&
998                   tsi->tsi_ost_body->oa.o_flags & OBD_FL_SRVLOCK;
999
1000         if (srvlock) {
1001                 if (unlikely(tsi->tsi_ost_body->oa.o_flags & OBD_FL_FLUSH))
1002                         lock_mode = LCK_PW;
1003
1004                 rc = tgt_extent_lock(tsi->tsi_tgt->lut_obd->obd_namespace,
1005                                      &tsi->tsi_resid, 0, OBD_OBJECT_EOF, &lh,
1006                                      lock_mode, &flags);
1007                 if (rc != 0)
1008                         RETURN(rc);
1009         }
1010
1011         fo = ofd_object_find_exists(tsi->tsi_env, ofd, &tsi->tsi_fid);
1012         if (IS_ERR(fo))
1013                 GOTO(out, rc = PTR_ERR(fo));
1014
1015         rc = ofd_attr_get(tsi->tsi_env, fo, &fti->fti_attr);
1016         if (rc == 0) {
1017                 __u64    curr_version;
1018
1019                 obdo_from_la(&repbody->oa, &fti->fti_attr,
1020                              OFD_VALID_FLAGS | LA_UID | LA_GID);
1021                 tgt_drop_id(tsi->tsi_exp, &repbody->oa);
1022
1023                 /* Store object version in reply */
1024                 curr_version = dt_version_get(tsi->tsi_env,
1025                                               ofd_object_child(fo));
1026                 if ((__s64)curr_version != -EOPNOTSUPP) {
1027                         repbody->oa.o_valid |= OBD_MD_FLDATAVERSION;
1028                         repbody->oa.o_data_version = curr_version;
1029                 }
1030         }
1031
1032         ofd_object_put(tsi->tsi_env, fo);
1033 out:
1034         if (srvlock)
1035                 tgt_extent_unlock(&lh, lock_mode);
1036
1037         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_GETATTR,
1038                          tsi->tsi_jobid, 1);
1039
1040         repbody->oa.o_valid |= OBD_MD_FLFLAGS;
1041         repbody->oa.o_flags = OBD_FL_FLUSH;
1042
1043         RETURN(rc);
1044 }
1045
1046 static int ofd_setattr_hdl(struct tgt_session_info *tsi)
1047 {
1048         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
1049         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
1050         struct ost_body         *body = tsi->tsi_ost_body;
1051         struct ost_body         *repbody;
1052         struct ldlm_resource    *res;
1053         struct ofd_object       *fo;
1054         struct filter_fid       *ff = NULL;
1055         int                      rc = 0;
1056
1057         ENTRY;
1058
1059         LASSERT(body != NULL);
1060
1061         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1062         if (repbody == NULL)
1063                 RETURN(-ENOMEM);
1064
1065         repbody->oa.o_oi = body->oa.o_oi;
1066         repbody->oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1067
1068         /* This would be very bad - accidentally truncating a file when
1069          * changing the time or similar - bug 12203. */
1070         if (body->oa.o_valid & OBD_MD_FLSIZE &&
1071             body->oa.o_size != OBD_OBJECT_EOF) {
1072                 static char mdsinum[48];
1073
1074                 if (body->oa.o_valid & OBD_MD_FLFID)
1075                         snprintf(mdsinum, sizeof(mdsinum) - 1,
1076                                  "of parent "DFID, body->oa.o_parent_seq,
1077                                  body->oa.o_parent_oid, 0);
1078                 else
1079                         mdsinum[0] = '\0';
1080
1081                 CERROR("%s: setattr from %s is trying to truncate object "DFID
1082                        " %s\n", ofd_name(ofd), obd_export_nid2str(tsi->tsi_exp),
1083                        PFID(&tsi->tsi_fid), mdsinum);
1084                 RETURN(-EPERM);
1085         }
1086
1087         fo = ofd_object_find_exists(tsi->tsi_env, ofd, &tsi->tsi_fid);
1088         if (IS_ERR(fo))
1089                 GOTO(out, rc = PTR_ERR(fo));
1090
1091         la_from_obdo(&fti->fti_attr, &body->oa, body->oa.o_valid);
1092         fti->fti_attr.la_valid &= ~LA_TYPE;
1093
1094         if (body->oa.o_valid & OBD_MD_FLFID) {
1095                 ff = &fti->fti_mds_fid;
1096                 ofd_prepare_fidea(ff, &body->oa);
1097         }
1098
1099         /* setting objects attributes (including owner/group) */
1100         rc = ofd_attr_set(tsi->tsi_env, fo, &fti->fti_attr, ff);
1101         if (rc != 0)
1102                 GOTO(out_put, rc);
1103
1104         obdo_from_la(&repbody->oa, &fti->fti_attr,
1105                      OFD_VALID_FLAGS | LA_UID | LA_GID);
1106         tgt_drop_id(tsi->tsi_exp, &repbody->oa);
1107
1108         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_SETATTR,
1109                          tsi->tsi_jobid, 1);
1110         EXIT;
1111 out_put:
1112         ofd_object_put(tsi->tsi_env, fo);
1113 out:
1114         if (rc == 0) {
1115                 /* we do not call this before to avoid lu_object_find() in
1116                  *  ->lvbo_update() holding another reference on the object.
1117                  * otherwise concurrent destroy can make the object unavailable
1118                  * for 2nd lu_object_find() waiting for the first reference
1119                  * to go... deadlock! */
1120                 res = ldlm_resource_get(ofd->ofd_namespace, NULL,
1121                                         &tsi->tsi_resid, LDLM_EXTENT, 0);
1122                 if (!IS_ERR(res)) {
1123                         ldlm_res_lvbo_update(res, NULL, 0);
1124                         ldlm_resource_putref(res);
1125                 }
1126         }
1127         return rc;
1128 }
1129
1130 static int ofd_orphans_destroy(const struct lu_env *env,
1131                                struct obd_export *exp,
1132                                struct ofd_device *ofd, struct obdo *oa)
1133 {
1134         struct ofd_thread_info  *info   = ofd_info(env);
1135         struct lu_fid           *fid    = &info->fti_fid;
1136         struct ost_id           *oi     = &oa->o_oi;
1137         struct ofd_seq          *oseq;
1138         obd_seq                  seq    = ostid_seq(oi);
1139         obd_id                   end_id = ostid_id(oi);
1140         obd_id                   last;
1141         obd_id                   oid;
1142         int                      skip_orphan;
1143         int                      rc     = 0;
1144
1145         ENTRY;
1146
1147         oseq = ofd_seq_get(ofd, seq);
1148         if (oseq == NULL) {
1149                 CERROR("%s: Can not find seq for "DOSTID"\n",
1150                        ofd_name(ofd), POSTID(oi));
1151                 RETURN(-EINVAL);
1152         }
1153
1154         *fid = oi->oi_fid;
1155         last = ofd_seq_last_oid(oseq);
1156         oid = last;
1157
1158         LASSERT(exp != NULL);
1159         skip_orphan = !!(exp_connect_flags(exp) & OBD_CONNECT_SKIP_ORPHAN);
1160
1161         if (OBD_FAIL_CHECK(OBD_FAIL_OST_NODESTROY))
1162                 goto done;
1163
1164         LCONSOLE(D_INFO, "%s: deleting orphan objects from "DOSTID
1165                  " to "DOSTID"\n", ofd_name(ofd), seq, end_id + 1, seq, last);
1166
1167         while (oid > end_id) {
1168                 rc = fid_set_id(fid, oid);
1169                 if (unlikely(rc != 0))
1170                         GOTO(out_put, rc);
1171
1172                 rc = ofd_destroy_by_fid(env, ofd, fid, 1);
1173                 if (rc != 0 && rc != -ENOENT && rc != -ESTALE &&
1174                     likely(rc != -EREMCHG && rc != -EINPROGRESS))
1175                         /* this is pretty fatal... */
1176                         CEMERG("%s: error destroying precreated id "
1177                                DFID": rc = %d\n",
1178                                ofd_name(ofd), PFID(fid), rc);
1179
1180                 oid--;
1181                 if (!skip_orphan) {
1182                         ofd_seq_last_oid_set(oseq, oid);
1183                         /* update last_id on disk periodically so that if we
1184                          * restart * we don't need to re-scan all of the just
1185                          * deleted objects. */
1186                         if ((oid & 511) == 0)
1187                                 ofd_seq_last_oid_write(env, ofd, oseq);
1188                 }
1189         }
1190
1191         CDEBUG(D_HA, "%s: after destroy: set last_id to "DOSTID"\n",
1192                ofd_name(ofd), seq, oid);
1193
1194 done:
1195         if (!skip_orphan) {
1196                 ofd_seq_last_oid_set(oseq, oid);
1197                 rc = ofd_seq_last_oid_write(env, ofd, oseq);
1198         } else {
1199                 /* don't reuse orphan object, return last used objid */
1200                 ostid_set_id(oi, last);
1201                 rc = 0;
1202         }
1203
1204         GOTO(out_put, rc);
1205
1206 out_put:
1207         ofd_seq_put(env, oseq);
1208         return rc;
1209 }
1210
1211 static int ofd_create_hdl(struct tgt_session_info *tsi)
1212 {
1213         struct ptlrpc_request   *req = tgt_ses_req(tsi);
1214         struct ost_body         *repbody;
1215         const struct obdo       *oa = &tsi->tsi_ost_body->oa;
1216         struct obdo             *rep_oa;
1217         struct obd_export       *exp = tsi->tsi_exp;
1218         struct ofd_device       *ofd = ofd_exp(exp);
1219         obd_seq                  seq = ostid_seq(&oa->o_oi);
1220         obd_id                   oid = ostid_id(&oa->o_oi);
1221         struct ofd_seq          *oseq;
1222         int                      rc = 0, diff;
1223         int                      sync_trans = 0;
1224
1225         ENTRY;
1226
1227         if (OBD_FAIL_CHECK(OBD_FAIL_OST_EROFS))
1228                 RETURN(-EROFS);
1229
1230         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1231         if (repbody == NULL)
1232                 RETURN(-ENOMEM);
1233
1234         down_read(&ofd->ofd_lastid_rwsem);
1235         /* Currently, for safe, we do not distinguish which LAST_ID is broken,
1236          * we may do that in the future.
1237          * Return -ENOSPC until the LAST_ID rebuilt. */
1238         if (unlikely(ofd->ofd_lastid_rebuilding))
1239                 GOTO(out_sem, rc = -ENOSPC);
1240
1241         rep_oa = &repbody->oa;
1242         rep_oa->o_oi = oa->o_oi;
1243
1244         LASSERT(seq >= FID_SEQ_OST_MDT0);
1245         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
1246
1247         CDEBUG(D_INFO, "ofd_create("DOSTID")\n", POSTID(&oa->o_oi));
1248
1249         oseq = ofd_seq_load(tsi->tsi_env, ofd, seq);
1250         if (IS_ERR(oseq)) {
1251                 CERROR("%s: Can't find FID Sequence "LPX64": rc = %ld\n",
1252                        ofd_name(ofd), seq, PTR_ERR(oseq));
1253                 GOTO(out_sem, rc = -EINVAL);
1254         }
1255
1256         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
1257             (oa->o_flags & OBD_FL_RECREATE_OBJS)) {
1258                 if (!ofd_obd(ofd)->obd_recovering ||
1259                     oid > ofd_seq_last_oid(oseq)) {
1260                         CERROR("%s: recreate objid "DOSTID" > last id "LPU64
1261                                "\n", ofd_name(ofd), POSTID(&oa->o_oi),
1262                                ofd_seq_last_oid(oseq));
1263                         GOTO(out_nolock, rc = -EINVAL);
1264                 }
1265                 /* Do nothing here, we re-create objects during recovery
1266                  * upon write replay, see ofd_preprw_write() */
1267                 GOTO(out_nolock, rc = 0);
1268         }
1269         /* former ofd_handle_precreate */
1270         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
1271             (oa->o_flags & OBD_FL_DELORPHAN)) {
1272                 exp->exp_filter_data.fed_lastid_gen = ofd->ofd_lastid_gen;
1273
1274                 /* destroy orphans */
1275                 if (lustre_msg_get_conn_cnt(tgt_ses_req(tsi)->rq_reqmsg) <
1276                     exp->exp_conn_cnt) {
1277                         CERROR("%s: dropping old orphan cleanup request\n",
1278                                ofd_name(ofd));
1279                         GOTO(out_nolock, rc = 0);
1280                 }
1281                 /* This causes inflight precreates to abort and drop lock */
1282                 oseq->os_destroys_in_progress = 1;
1283                 mutex_lock(&oseq->os_create_lock);
1284                 if (!oseq->os_destroys_in_progress) {
1285                         CERROR("%s:["LPU64"] destroys_in_progress already"
1286                                " cleared\n", ofd_name(ofd), seq);
1287                         ostid_set_id(&rep_oa->o_oi, ofd_seq_last_oid(oseq));
1288                         GOTO(out, rc = 0);
1289                 }
1290                 diff = oid - ofd_seq_last_oid(oseq);
1291                 CDEBUG(D_HA, "ofd_last_id() = "LPU64" -> diff = %d\n",
1292                         ofd_seq_last_oid(oseq), diff);
1293                 if (-diff > OST_MAX_PRECREATE) {
1294                         /* FIXME: should reset precreate_next_id on MDS */
1295                         rc = 0;
1296                 } else if (diff < 0) {
1297                         rc = ofd_orphans_destroy(tsi->tsi_env, exp,
1298                                                  ofd, rep_oa);
1299                         oseq->os_destroys_in_progress = 0;
1300                 } else {
1301                         /* XXX: Used by MDS for the first time! */
1302                         oseq->os_destroys_in_progress = 0;
1303                 }
1304         } else {
1305                 if (unlikely(exp->exp_filter_data.fed_lastid_gen !=
1306                              ofd->ofd_lastid_gen)) {
1307                         ofd_obd_disconnect(exp);
1308                         GOTO(out_nolock, rc = -ENOTCONN);
1309                 }
1310
1311                 mutex_lock(&oseq->os_create_lock);
1312                 if (lustre_msg_get_conn_cnt(tgt_ses_req(tsi)->rq_reqmsg) <
1313                     exp->exp_conn_cnt) {
1314                         CERROR("%s: dropping old precreate request\n",
1315                                ofd_name(ofd));
1316                         GOTO(out, rc = 0);
1317                 }
1318                 /* only precreate if seq is 0, IDIF or normal and also o_id
1319                  * must be specfied */
1320                 if ((!fid_seq_is_mdt(seq) && !fid_seq_is_norm(seq) &&
1321                      !fid_seq_is_idif(seq)) || oid == 0) {
1322                         diff = 1; /* shouldn't we create this right now? */
1323                 } else {
1324                         diff = oid - ofd_seq_last_oid(oseq);
1325                         /* Do sync create if the seq is about to used up */
1326                         if (fid_seq_is_idif(seq) || fid_seq_is_mdt0(seq)) {
1327                                 if (unlikely(oid >= IDIF_MAX_OID - 1))
1328                                         sync_trans = 1;
1329                         } else if (fid_seq_is_norm(seq)) {
1330                                 if (unlikely(oid >=
1331                                              LUSTRE_DATA_SEQ_MAX_WIDTH - 1))
1332                                         sync_trans = 1;
1333                         } else {
1334                                 CERROR("%s : invalid o_seq "DOSTID"\n",
1335                                        ofd_name(ofd), POSTID(&oa->o_oi));
1336                                 GOTO(out, rc = -EINVAL);
1337                         }
1338                 }
1339         }
1340         if (diff > 0) {
1341                 cfs_time_t       enough_time = cfs_time_shift(DISK_TIMEOUT);
1342                 obd_id           next_id;
1343                 int              created = 0;
1344                 int              count;
1345
1346                 if (!(oa->o_valid & OBD_MD_FLFLAGS) ||
1347                     !(oa->o_flags & OBD_FL_DELORPHAN)) {
1348                         /* don't enforce grant during orphan recovery */
1349                         rc = ofd_grant_create(tsi->tsi_env,
1350                                               ofd_obd(ofd)->obd_self_export,
1351                                               &diff);
1352                         if (rc) {
1353                                 CDEBUG(D_HA, "%s: failed to acquire grant "
1354                                        "space for precreate (%d): rc = %d\n",
1355                                        ofd_name(ofd), diff, rc);
1356                                 diff = 0;
1357                         }
1358                 }
1359
1360                 /* This can happen if a new OST is formatted and installed
1361                  * in place of an old one at the same index.  Instead of
1362                  * precreating potentially millions of deleted old objects
1363                  * (possibly filling the OST), only precreate the last batch.
1364                  * LFSCK will eventually clean up any orphans. LU-14 */
1365                 if (diff > 5 * OST_MAX_PRECREATE) {
1366                         diff = OST_MAX_PRECREATE / 2;
1367                         LCONSOLE_WARN("%s: precreate FID "DOSTID" is over %u "
1368                                       "larger than the LAST_ID "DOSTID", only "
1369                                       "precreating the last %u objects.\n",
1370                                       ofd_name(ofd), POSTID(&oa->o_oi),
1371                                       5 * OST_MAX_PRECREATE,
1372                                       POSTID(&oseq->os_oi), diff);
1373                         ofd_seq_last_oid_set(oseq, ostid_id(&oa->o_oi) - diff);
1374                 }
1375
1376                 while (diff > 0) {
1377                         next_id = ofd_seq_last_oid(oseq) + 1;
1378                         count = ofd_precreate_batch(ofd, diff);
1379
1380                         CDEBUG(D_HA, "%s: reserve %d objects in group "LPX64
1381                                " at "LPU64"\n", ofd_name(ofd),
1382                                count, seq, next_id);
1383
1384                         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1385                             && cfs_time_after(jiffies, enough_time)) {
1386                                 CDEBUG(D_HA, "%s: Slow creates, %d/%d objects"
1387                                       " created at a rate of %d/s\n",
1388                                       ofd_name(ofd), created, diff + created,
1389                                       created / DISK_TIMEOUT);
1390                                 break;
1391                         }
1392
1393                         rc = ofd_precreate_objects(tsi->tsi_env, ofd, next_id,
1394                                                    oseq, count, sync_trans);
1395                         if (rc > 0) {
1396                                 created += rc;
1397                                 diff -= rc;
1398                         } else if (rc < 0) {
1399                                 break;
1400                         }
1401                 }
1402
1403                 if (diff > 0 &&
1404                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1405                         LCONSOLE_WARN("%s: can't create the same count of"
1406                                       " objects when replaying the request"
1407                                       " (diff is %d). see LU-4621\n",
1408                                       ofd_name(ofd), diff);
1409
1410                 if (created > 0)
1411                         /* some objects got created, we can return
1412                          * them, even if last creation failed */
1413                         rc = 0;
1414                 else
1415                         CERROR("%s: unable to precreate: rc = %d\n",
1416                                ofd_name(ofd), rc);
1417
1418                 if (!(oa->o_valid & OBD_MD_FLFLAGS) ||
1419                     !(oa->o_flags & OBD_FL_DELORPHAN))
1420                         ofd_grant_commit(tsi->tsi_env,
1421                                          ofd_obd(ofd)->obd_self_export, rc);
1422
1423                 ostid_set_id(&rep_oa->o_oi, ofd_seq_last_oid(oseq));
1424         }
1425         EXIT;
1426         ofd_counter_incr(exp, LPROC_OFD_STATS_CREATE,
1427                          tsi->tsi_jobid, 1);
1428 out:
1429         mutex_unlock(&oseq->os_create_lock);
1430 out_nolock:
1431         if (rc == 0) {
1432 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 8, 53, 0)
1433                 struct ofd_thread_info  *info = ofd_info(tsi->tsi_env);
1434                 struct lu_fid           *fid = &info->fti_fid;
1435
1436                 /* For compatible purpose, it needs to convert back to
1437                  * OST ID before put it on wire. */
1438                 *fid = rep_oa->o_oi.oi_fid;
1439                 fid_to_ostid(fid, &rep_oa->o_oi);
1440 #endif
1441                 rep_oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGROUP;
1442         }
1443         ofd_seq_put(tsi->tsi_env, oseq);
1444
1445 out_sem:
1446         up_read(&ofd->ofd_lastid_rwsem);
1447         return rc;
1448 }
1449
1450 static int ofd_destroy_hdl(struct tgt_session_info *tsi)
1451 {
1452         const struct ost_body   *body = tsi->tsi_ost_body;
1453         struct ost_body         *repbody;
1454         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
1455         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
1456         struct lu_fid           *fid = &fti->fti_fid;
1457         obd_id                   oid;
1458         obd_count                count;
1459         int                      rc = 0;
1460
1461         ENTRY;
1462
1463         if (OBD_FAIL_CHECK(OBD_FAIL_OST_EROFS))
1464                 RETURN(-EROFS);
1465
1466         /* This is old case for clients before Lustre 2.4 */
1467         /* If there's a DLM request, cancel the locks mentioned in it */
1468         if (req_capsule_field_present(tsi->tsi_pill, &RMF_DLM_REQ,
1469                                       RCL_CLIENT)) {
1470                 struct ldlm_request *dlm;
1471
1472                 dlm = req_capsule_client_get(tsi->tsi_pill, &RMF_DLM_REQ);
1473                 if (dlm == NULL)
1474                         RETURN(-EFAULT);
1475                 ldlm_request_cancel(tgt_ses_req(tsi), dlm, 0);
1476         }
1477
1478         *fid = body->oa.o_oi.oi_fid;
1479         oid = ostid_id(&body->oa.o_oi);
1480         LASSERT(oid != 0);
1481
1482         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1483
1484         /* check that o_misc makes sense */
1485         if (body->oa.o_valid & OBD_MD_FLOBJCOUNT)
1486                 count = body->oa.o_misc;
1487         else
1488                 count = 1; /* default case - single destroy */
1489
1490         CDEBUG(D_HA, "%s: Destroy object "DOSTID" count %d\n", ofd_name(ofd),
1491                POSTID(&body->oa.o_oi), count);
1492
1493         while (count > 0) {
1494                 int lrc;
1495
1496                 lrc = ofd_destroy_by_fid(tsi->tsi_env, ofd, fid, 0);
1497                 if (lrc == -ENOENT) {
1498                         CDEBUG(D_INODE,
1499                                "%s: destroying non-existent object "DFID"\n",
1500                                ofd_name(ofd), PFID(fid));
1501                         /* rewrite rc with -ENOENT only if it is 0 */
1502                         if (rc == 0)
1503                                 rc = lrc;
1504                 } else if (lrc != 0) {
1505                         CERROR("%s: error destroying object "DFID": %d\n",
1506                                ofd_name(ofd), PFID(fid), lrc);
1507                         rc = lrc;
1508                 }
1509
1510                 count--;
1511                 oid++;
1512                 lrc = fid_set_id(fid, oid);
1513                 if (unlikely(lrc != 0 && count > 0))
1514                         GOTO(out, rc = lrc);
1515         }
1516
1517         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_DESTROY,
1518                          tsi->tsi_jobid, 1);
1519
1520         GOTO(out, rc);
1521
1522 out:
1523         fid_to_ostid(fid, &repbody->oa.o_oi);
1524         return rc;
1525 }
1526
1527 static int ofd_statfs_hdl(struct tgt_session_info *tsi)
1528 {
1529         struct obd_statfs       *osfs;
1530         int                      rc;
1531
1532         ENTRY;
1533
1534         osfs = req_capsule_server_get(tsi->tsi_pill, &RMF_OBD_STATFS);
1535
1536         rc = ofd_statfs(tsi->tsi_env, tsi->tsi_exp, osfs,
1537                         cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS), 0);
1538         if (rc != 0)
1539                 CERROR("%s: statfs failed: rc = %d\n",
1540                        tgt_name(tsi->tsi_tgt), rc);
1541
1542         if (OBD_FAIL_CHECK(OBD_FAIL_OST_STATFS_EINPROGRESS))
1543                 rc = -EINPROGRESS;
1544
1545         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_STATFS,
1546                          tsi->tsi_jobid, 1);
1547
1548         RETURN(rc);
1549 }
1550
1551 static int ofd_sync_hdl(struct tgt_session_info *tsi)
1552 {
1553         struct ost_body         *body = tsi->tsi_ost_body;
1554         struct ost_body         *repbody;
1555         struct ofd_thread_info  *fti = tsi2ofd_info(tsi);
1556         struct ofd_device       *ofd = ofd_exp(tsi->tsi_exp);
1557         struct ofd_object       *fo = NULL;
1558         int                      rc = 0;
1559
1560         ENTRY;
1561
1562         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1563
1564         /* if no objid is specified, it means "sync whole filesystem" */
1565         if (!fid_is_zero(&tsi->tsi_fid)) {
1566                 fo = ofd_object_find_exists(tsi->tsi_env, ofd, &tsi->tsi_fid);
1567                 if (IS_ERR(fo))
1568                         RETURN(PTR_ERR(fo));
1569         }
1570
1571         rc = tgt_sync(tsi->tsi_env, tsi->tsi_tgt,
1572                       fo != NULL ? ofd_object_child(fo) : NULL,
1573                       repbody->oa.o_size, repbody->oa.o_blocks);
1574         if (rc)
1575                 GOTO(put, rc);
1576
1577         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_SYNC,
1578                          tsi->tsi_jobid, 1);
1579         if (fo == NULL)
1580                 RETURN(0);
1581
1582         repbody->oa.o_oi = body->oa.o_oi;
1583         repbody->oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1584
1585         rc = ofd_attr_get(tsi->tsi_env, fo, &fti->fti_attr);
1586         if (rc == 0)
1587                 obdo_from_la(&repbody->oa, &fti->fti_attr,
1588                              OFD_VALID_FLAGS);
1589         else
1590                 /* don't return rc from getattr */
1591                 rc = 0;
1592         EXIT;
1593 put:
1594         if (fo != NULL)
1595                 ofd_object_put(tsi->tsi_env, fo);
1596         return rc;
1597 }
1598
1599 static int ofd_punch_hdl(struct tgt_session_info *tsi)
1600 {
1601         const struct obdo       *oa = &tsi->tsi_ost_body->oa;
1602         struct ost_body         *repbody;
1603         struct ofd_thread_info  *info = tsi2ofd_info(tsi);
1604         struct ldlm_namespace   *ns = tsi->tsi_tgt->lut_obd->obd_namespace;
1605         struct ldlm_resource    *res;
1606         struct ofd_object       *fo;
1607         struct filter_fid       *ff = NULL;
1608         __u64                    flags = 0;
1609         struct lustre_handle     lh = { 0, };
1610         int                      rc;
1611         __u64                    start, end;
1612         bool                     srvlock;
1613
1614         ENTRY;
1615
1616         /* check that we do support OBD_CONNECT_TRUNCLOCK. */
1617         CLASSERT(OST_CONNECT_SUPPORTED & OBD_CONNECT_TRUNCLOCK);
1618
1619         if ((oa->o_valid & (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS)) !=
1620             (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS))
1621                 RETURN(err_serious(-EPROTO));
1622
1623         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
1624         if (repbody == NULL)
1625                 RETURN(err_serious(-ENOMEM));
1626
1627         /* punch start,end are passed in o_size,o_blocks throught wire */
1628         start = oa->o_size;
1629         end = oa->o_blocks;
1630
1631         if (end != OBD_OBJECT_EOF) /* Only truncate is supported */
1632                 RETURN(-EPROTO);
1633
1634         /* standard truncate optimization: if file body is completely
1635          * destroyed, don't send data back to the server. */
1636         if (start == 0)
1637                 flags |= LDLM_FL_AST_DISCARD_DATA;
1638
1639         repbody->oa.o_oi = oa->o_oi;
1640         repbody->oa.o_valid = OBD_MD_FLID;
1641
1642         srvlock = oa->o_valid & OBD_MD_FLFLAGS &&
1643                   oa->o_flags & OBD_FL_SRVLOCK;
1644
1645         if (srvlock) {
1646                 rc = tgt_extent_lock(ns, &tsi->tsi_resid, start, end, &lh,
1647                                      LCK_PW, &flags);
1648                 if (rc != 0)
1649                         RETURN(rc);
1650         }
1651
1652         CDEBUG(D_INODE, "calling punch for object "DFID", valid = "LPX64
1653                ", start = "LPD64", end = "LPD64"\n", PFID(&tsi->tsi_fid),
1654                oa->o_valid, start, end);
1655
1656         fo = ofd_object_find_exists(tsi->tsi_env, ofd_exp(tsi->tsi_exp),
1657                                     &tsi->tsi_fid);
1658         if (IS_ERR(fo))
1659                 GOTO(out, rc = PTR_ERR(fo));
1660
1661         la_from_obdo(&info->fti_attr, oa,
1662                      OBD_MD_FLMTIME | OBD_MD_FLATIME | OBD_MD_FLCTIME);
1663         info->fti_attr.la_size = start;
1664         info->fti_attr.la_valid |= LA_SIZE;
1665
1666         if (oa->o_valid & OBD_MD_FLFID) {
1667                 ff = &info->fti_mds_fid;
1668                 ofd_prepare_fidea(ff, oa);
1669         }
1670
1671         rc = ofd_object_punch(tsi->tsi_env, fo, start, end, &info->fti_attr,
1672                               ff, (struct obdo *)oa);
1673         if (rc)
1674                 GOTO(out_put, rc);
1675
1676         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_PUNCH,
1677                          tsi->tsi_jobid, 1);
1678         EXIT;
1679 out_put:
1680         ofd_object_put(tsi->tsi_env, fo);
1681 out:
1682         if (srvlock)
1683                 tgt_extent_unlock(&lh, LCK_PW);
1684         if (rc == 0) {
1685                 /* we do not call this before to avoid lu_object_find() in
1686                  *  ->lvbo_update() holding another reference on the object.
1687                  * otherwise concurrent destroy can make the object unavailable
1688                  * for 2nd lu_object_find() waiting for the first reference
1689                  * to go... deadlock! */
1690                 res = ldlm_resource_get(ns, NULL, &tsi->tsi_resid,
1691                                         LDLM_EXTENT, 0);
1692                 if (!IS_ERR(res)) {
1693                         ldlm_res_lvbo_update(res, NULL, 0);
1694                         ldlm_resource_putref(res);
1695                 }
1696         }
1697         return rc;
1698 }
1699
1700 static int ofd_quotactl(struct tgt_session_info *tsi)
1701 {
1702         struct obd_quotactl     *oqctl, *repoqc;
1703         int                      rc;
1704
1705         ENTRY;
1706
1707         oqctl = req_capsule_client_get(tsi->tsi_pill, &RMF_OBD_QUOTACTL);
1708         if (oqctl == NULL)
1709                 RETURN(err_serious(-EPROTO));
1710
1711         repoqc = req_capsule_server_get(tsi->tsi_pill, &RMF_OBD_QUOTACTL);
1712         if (repoqc == NULL)
1713                 RETURN(err_serious(-ENOMEM));
1714
1715         /* report success for quota on/off for interoperability with current MDT
1716          * stack */
1717         if (oqctl->qc_cmd == Q_QUOTAON || oqctl->qc_cmd == Q_QUOTAOFF)
1718                 RETURN(0);
1719
1720         *repoqc = *oqctl;
1721         rc = lquotactl_slv(tsi->tsi_env, tsi->tsi_tgt->lut_bottom, repoqc);
1722
1723         ofd_counter_incr(tsi->tsi_exp, LPROC_OFD_STATS_QUOTACTL,
1724                          tsi->tsi_jobid, 1);
1725
1726         RETURN(rc);
1727 }
1728
1729 /* High priority request handlers for OFD */
1730
1731 /* prolong locks for the current service time of the corresponding
1732  * portal (= OST_IO_PORTAL)
1733  */
1734 static inline int prolong_timeout(struct ptlrpc_request *req)
1735 {
1736         struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
1737
1738         if (AT_OFF)
1739                 return obd_timeout / 2;
1740
1741         return max(at_est2timeout(at_get(&svcpt->scp_at_estimate)),
1742                    ldlm_timeout);
1743 }
1744
1745 static int ofd_prolong_one_lock(struct tgt_session_info *tsi,
1746                                 struct ldlm_lock *lock,
1747                                 struct ldlm_extent *extent, int timeout)
1748 {
1749
1750         if (lock->l_flags & LDLM_FL_DESTROYED) /* lock already cancelled */
1751                 return 0;
1752
1753         /* XXX: never try to grab resource lock here because we're inside
1754          * exp_bl_list_lock; in ldlm_lockd.c to handle waiting list we take
1755          * res lock and then exp_bl_list_lock. */
1756
1757         if (!(lock->l_flags & LDLM_FL_AST_SENT))
1758                 /* ignore locks not being cancelled */
1759                 return 0;
1760
1761         LDLM_DEBUG(lock, "refreshed for req x"LPU64" ext("LPU64"->"LPU64") "
1762                          "to %ds.\n", tgt_ses_req(tsi)->rq_xid, extent->start,
1763                          extent->end, timeout);
1764
1765         /* OK. this is a possible lock the user holds doing I/O
1766          * let's refresh eviction timer for it */
1767         ldlm_refresh_waiting_lock(lock, timeout);
1768         return 1;
1769 }
1770
1771 static int ofd_prolong_extent_locks(struct tgt_session_info *tsi,
1772                                     __u64 start, __u64 end)
1773 {
1774         struct obd_export       *exp = tsi->tsi_exp;
1775         struct obdo             *oa  = &tsi->tsi_ost_body->oa;
1776         struct ldlm_extent       extent = {
1777                 .start = start,
1778                 .end = end
1779         };
1780         struct ldlm_lock        *lock;
1781         int                      timeout = prolong_timeout(tgt_ses_req(tsi));
1782         int                      lock_count = 0;
1783
1784         ENTRY;
1785
1786         if (oa->o_valid & OBD_MD_FLHANDLE) {
1787                 /* mostly a request should be covered by only one lock, try
1788                  * fast path. */
1789                 lock = ldlm_handle2lock(&oa->o_handle);
1790                 if (lock != NULL) {
1791                         /* Fast path to check if the lock covers the whole IO
1792                          * region exclusively. */
1793                         if (lock->l_granted_mode == LCK_PW &&
1794                             ldlm_extent_contain(&lock->l_policy_data.l_extent,
1795                                                 &extent)) {
1796                                 /* bingo */
1797                                 LASSERT(lock->l_export == exp);
1798                                 lock_count = ofd_prolong_one_lock(tsi, lock,
1799                                                              &extent, timeout);
1800                                 LDLM_LOCK_PUT(lock);
1801                                 RETURN(lock_count);
1802                         }
1803                         LDLM_LOCK_PUT(lock);
1804                 }
1805         }
1806
1807         spin_lock_bh(&exp->exp_bl_list_lock);
1808         list_for_each_entry(lock, &exp->exp_bl_list, l_exp_list) {
1809                 LASSERT(lock->l_flags & LDLM_FL_AST_SENT);
1810                 LASSERT(lock->l_resource->lr_type == LDLM_EXTENT);
1811
1812                 if (!ldlm_res_eq(&tsi->tsi_resid, &lock->l_resource->lr_name))
1813                         continue;
1814
1815                 if (!ldlm_extent_overlap(&lock->l_policy_data.l_extent,
1816                                          &extent))
1817                         continue;
1818
1819                 lock_count += ofd_prolong_one_lock(tsi, lock, &extent, timeout);
1820         }
1821         spin_unlock_bh(&exp->exp_bl_list_lock);
1822
1823         RETURN(lock_count);
1824 }
1825
1826 /**
1827  * Returns 1 if the given PTLRPC matches the given LDLM lock, or 0 if it does
1828  * not.
1829  */
1830 static int ofd_rw_hpreq_lock_match(struct ptlrpc_request *req,
1831                                    struct ldlm_lock *lock)
1832 {
1833         struct niobuf_remote    *rnb;
1834         struct obd_ioobj        *ioo;
1835         ldlm_mode_t              mode;
1836         struct ldlm_extent       ext;
1837         __u32                    opc = lustre_msg_get_opc(req->rq_reqmsg);
1838
1839         ENTRY;
1840
1841         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
1842         LASSERT(ioo != NULL);
1843
1844         rnb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
1845         LASSERT(rnb != NULL);
1846
1847         ext.start = rnb->rnb_offset;
1848         rnb += ioo->ioo_bufcnt - 1;
1849         ext.end = rnb->rnb_offset + rnb->rnb_len - 1;
1850
1851         LASSERT(lock->l_resource != NULL);
1852         if (!ostid_res_name_eq(&ioo->ioo_oid, &lock->l_resource->lr_name))
1853                 RETURN(0);
1854
1855         mode = LCK_PW;
1856         if (opc == OST_READ)
1857                 mode |= LCK_PR;
1858
1859         if (!(lock->l_granted_mode & mode))
1860                 RETURN(0);
1861
1862         RETURN(ldlm_extent_overlap(&lock->l_policy_data.l_extent, &ext));
1863 }
1864
1865 /**
1866  * High-priority queue request check for whether the given PTLRPC request
1867  * (\a req) is blocking an LDLM lock cancel.
1868  *
1869  * Returns 1 if the given given PTLRPC request (\a req) is blocking an LDLM lock
1870  * cancel, 0 if it is not, and -EFAULT if the request is malformed.
1871  *
1872  * Only OST_READs, OST_WRITEs and OST_PUNCHes go on the h-p RPC queue.  This
1873  * function looks only at OST_READs and OST_WRITEs.
1874  */
1875 static int ofd_rw_hpreq_check(struct ptlrpc_request *req)
1876 {
1877         struct tgt_session_info *tsi;
1878         struct obd_ioobj        *ioo;
1879         struct niobuf_remote    *rnb;
1880         __u64                    start, end;
1881         int                      lock_count;
1882
1883         ENTRY;
1884
1885         /* Don't use tgt_ses_info() to get session info, because lock_match()
1886          * can be called while request has no processing thread yet. */
1887         tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
1888         LASSERT(tsi != NULL);
1889
1890         /*
1891          * Use LASSERT below because malformed RPCs should have
1892          * been filtered out in tgt_hpreq_handler().
1893          */
1894         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
1895         LASSERT(ioo != NULL);
1896
1897         rnb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
1898         LASSERT(rnb != NULL);
1899         LASSERT(!(rnb->rnb_flags & OBD_BRW_SRVLOCK));
1900
1901         start = rnb->rnb_offset;
1902         rnb += ioo->ioo_bufcnt - 1;
1903         end = rnb->rnb_offset + rnb->rnb_len - 1;
1904
1905         DEBUG_REQ(D_RPCTRACE, req, "%s %s: refresh rw locks: "DFID
1906                                    " ("LPU64"->"LPU64")\n",
1907                   tgt_name(tsi->tsi_tgt), current->comm,
1908                   PFID(&tsi->tsi_fid), start, end);
1909
1910         lock_count = ofd_prolong_extent_locks(tsi, start, end);
1911
1912         CDEBUG(D_DLMTRACE, "%s: refreshed %u locks timeout for req %p.\n",
1913                tgt_name(tsi->tsi_tgt), lock_count, req);
1914
1915         RETURN(lock_count > 0);
1916 }
1917
1918 static void ofd_rw_hpreq_fini(struct ptlrpc_request *req)
1919 {
1920         ofd_rw_hpreq_check(req);
1921 }
1922
1923 /**
1924  * Like tgt_rw_hpreq_lock_match(), but for OST_PUNCH RPCs.
1925  */
1926 static int ofd_punch_hpreq_lock_match(struct ptlrpc_request *req,
1927                                       struct ldlm_lock *lock)
1928 {
1929         struct tgt_session_info *tsi;
1930
1931         /* Don't use tgt_ses_info() to get session info, because lock_match()
1932          * can be called while request has no processing thread yet. */
1933         tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
1934         LASSERT(tsi != NULL);
1935
1936         LASSERT(tsi->tsi_ost_body != NULL);
1937         if (tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLHANDLE &&
1938             tsi->tsi_ost_body->oa.o_handle.cookie == lock->l_handle.h_cookie)
1939                 return 1;
1940
1941         return 0;
1942 }
1943
1944 /**
1945  * Like ost_rw_hpreq_check(), but for OST_PUNCH RPCs.
1946  */
1947 static int ofd_punch_hpreq_check(struct ptlrpc_request *req)
1948 {
1949         struct tgt_session_info *tsi;
1950         struct obdo             *oa;
1951         int                      lock_count;
1952
1953         ENTRY;
1954
1955         /* Don't use tgt_ses_info() to get session info, because lock_match()
1956          * can be called while request has no processing thread yet. */
1957         tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
1958         LASSERT(tsi != NULL);
1959         oa = &tsi->tsi_ost_body->oa;
1960
1961         LASSERT(!(oa->o_valid & OBD_MD_FLFLAGS &&
1962                   oa->o_flags & OBD_FL_SRVLOCK));
1963
1964         CDEBUG(D_DLMTRACE,
1965                "%s: refresh locks: "LPU64"/"LPU64" ("LPU64"->"LPU64")\n",
1966                tgt_name(tsi->tsi_tgt), tsi->tsi_resid.name[0],
1967                tsi->tsi_resid.name[1], oa->o_size, oa->o_blocks);
1968
1969         lock_count = ofd_prolong_extent_locks(tsi, oa->o_size, oa->o_blocks);
1970
1971         CDEBUG(D_DLMTRACE, "%s: refreshed %u locks timeout for req %p.\n",
1972                tgt_name(tsi->tsi_tgt), lock_count, req);
1973
1974         RETURN(lock_count > 0);
1975 }
1976
1977 static void ofd_punch_hpreq_fini(struct ptlrpc_request *req)
1978 {
1979         ofd_punch_hpreq_check(req);
1980 }
1981
1982 struct ptlrpc_hpreq_ops ofd_hpreq_rw = {
1983         .hpreq_lock_match       = ofd_rw_hpreq_lock_match,
1984         .hpreq_check            = ofd_rw_hpreq_check,
1985         .hpreq_fini             = ofd_rw_hpreq_fini
1986 };
1987
1988 struct ptlrpc_hpreq_ops ofd_hpreq_punch = {
1989         .hpreq_lock_match       = ofd_punch_hpreq_lock_match,
1990         .hpreq_check            = ofd_punch_hpreq_check,
1991         .hpreq_fini             = ofd_punch_hpreq_fini
1992 };
1993
1994 /** Assign high priority operations to the IO requests */
1995 static void ofd_hp_brw(struct tgt_session_info *tsi)
1996 {
1997         struct niobuf_remote    *rnb;
1998         struct obd_ioobj        *ioo;
1999
2000         ENTRY;
2001
2002         ioo = req_capsule_client_get(tsi->tsi_pill, &RMF_OBD_IOOBJ);
2003         LASSERT(ioo != NULL); /* must exist after request preprocessing */
2004         if (ioo->ioo_bufcnt > 0) {
2005                 rnb = req_capsule_client_get(tsi->tsi_pill, &RMF_NIOBUF_REMOTE);
2006                 LASSERT(rnb != NULL); /* must exist after request preprocessing */
2007
2008                 /* no high priority if server lock is needed */
2009                 if (rnb->rnb_flags & OBD_BRW_SRVLOCK)
2010                         return;
2011         }
2012         tgt_ses_req(tsi)->rq_ops = &ofd_hpreq_rw;
2013 }
2014
2015 static void ofd_hp_punch(struct tgt_session_info *tsi)
2016 {
2017         LASSERT(tsi->tsi_ost_body != NULL); /* must exists if we are here */
2018         /* no high-priority if server lock is needed */
2019         if (tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLFLAGS &&
2020             tsi->tsi_ost_body->oa.o_flags & OBD_FL_SRVLOCK)
2021                 return;
2022         tgt_ses_req(tsi)->rq_ops = &ofd_hpreq_punch;
2023 }
2024
2025 #define OBD_FAIL_OST_READ_NET   OBD_FAIL_OST_BRW_NET
2026 #define OBD_FAIL_OST_WRITE_NET  OBD_FAIL_OST_BRW_NET
2027 #define OST_BRW_READ    OST_READ
2028 #define OST_BRW_WRITE   OST_WRITE
2029
2030 static struct tgt_handler ofd_tgt_handlers[] = {
2031 TGT_RPC_HANDLER(OST_FIRST_OPC,
2032                 0,                      OST_CONNECT,    tgt_connect,
2033                 &RQF_CONNECT, LUSTRE_OBD_VERSION),
2034 TGT_RPC_HANDLER(OST_FIRST_OPC,
2035                 0,                      OST_DISCONNECT, tgt_disconnect,
2036                 &RQF_OST_DISCONNECT, LUSTRE_OBD_VERSION),
2037 TGT_RPC_HANDLER(OST_FIRST_OPC,
2038                 0,                      OST_SET_INFO,   ofd_set_info_hdl,
2039                 &RQF_OBD_SET_INFO, LUSTRE_OST_VERSION),
2040 TGT_OST_HDL(0,                          OST_GET_INFO,   ofd_get_info_hdl),
2041 TGT_OST_HDL(HABEO_CORPUS| HABEO_REFERO, OST_GETATTR,    ofd_getattr_hdl),
2042 TGT_OST_HDL(HABEO_CORPUS| HABEO_REFERO | MUTABOR,
2043                                         OST_SETATTR,    ofd_setattr_hdl),
2044 TGT_OST_HDL(0           | HABEO_REFERO | MUTABOR,
2045                                         OST_CREATE,     ofd_create_hdl),
2046 TGT_OST_HDL(0           | HABEO_REFERO | MUTABOR,
2047                                         OST_DESTROY,    ofd_destroy_hdl),
2048 TGT_OST_HDL(0           | HABEO_REFERO, OST_STATFS,     ofd_statfs_hdl),
2049 TGT_OST_HDL_HP(HABEO_CORPUS| HABEO_REFERO,
2050                                         OST_BRW_READ,   tgt_brw_read,
2051                                                         ofd_hp_brw),
2052 /* don't set CORPUS flag for brw_write because -ENOENT may be valid case */
2053 TGT_OST_HDL_HP(HABEO_CORPUS| MUTABOR,   OST_BRW_WRITE,  tgt_brw_write,
2054                                                         ofd_hp_brw),
2055 TGT_OST_HDL_HP(HABEO_CORPUS| HABEO_REFERO | MUTABOR,
2056                                         OST_PUNCH,      ofd_punch_hdl,
2057                                                         ofd_hp_punch),
2058 TGT_OST_HDL(HABEO_CORPUS| HABEO_REFERO, OST_SYNC,       ofd_sync_hdl),
2059 TGT_OST_HDL(0           | HABEO_REFERO, OST_QUOTACTL,   ofd_quotactl),
2060 };
2061
2062 static struct tgt_opc_slice ofd_common_slice[] = {
2063         {
2064                 .tos_opc_start  = OST_FIRST_OPC,
2065                 .tos_opc_end    = OST_LAST_OPC,
2066                 .tos_hs         = ofd_tgt_handlers
2067         },
2068         {
2069                 .tos_opc_start  = OBD_FIRST_OPC,
2070                 .tos_opc_end    = OBD_LAST_OPC,
2071                 .tos_hs         = tgt_obd_handlers
2072         },
2073         {
2074                 .tos_opc_start  = LDLM_FIRST_OPC,
2075                 .tos_opc_end    = LDLM_LAST_OPC,
2076                 .tos_hs         = tgt_dlm_handlers
2077         },
2078         {
2079                 .tos_opc_start  = OUT_UPDATE_FIRST_OPC,
2080                 .tos_opc_end    = OUT_UPDATE_LAST_OPC,
2081                 .tos_hs         = tgt_out_handlers
2082         },
2083         {
2084                 .tos_opc_start  = SEQ_FIRST_OPC,
2085                 .tos_opc_end    = SEQ_LAST_OPC,
2086                 .tos_hs         = seq_handlers
2087         },
2088         {
2089                 .tos_opc_start  = LFSCK_FIRST_OPC,
2090                 .tos_opc_end    = LFSCK_LAST_OPC,
2091                 .tos_hs         = tgt_lfsck_handlers
2092         },
2093         {
2094                 .tos_hs         = NULL
2095         }
2096 };
2097
2098 static int ofd_init0(const struct lu_env *env, struct ofd_device *m,
2099                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
2100 {
2101         const char              *dev = lustre_cfg_string(cfg, 0);
2102         struct ofd_thread_info  *info = NULL;
2103         struct obd_device       *obd;
2104         struct obd_statfs       *osfs;
2105         int                      rc;
2106
2107         ENTRY;
2108
2109         obd = class_name2obd(dev);
2110         if (obd == NULL) {
2111                 CERROR("Cannot find obd with name %s\n", dev);
2112                 RETURN(-ENODEV);
2113         }
2114
2115         rc = lu_env_refill((struct lu_env *)env);
2116         if (rc != 0)
2117                 RETURN(rc);
2118
2119         obd->u.obt.obt_magic = OBT_MAGIC;
2120
2121         m->ofd_fmd_max_num = OFD_FMD_MAX_NUM_DEFAULT;
2122         m->ofd_fmd_max_age = OFD_FMD_MAX_AGE_DEFAULT;
2123
2124         spin_lock_init(&m->ofd_flags_lock);
2125         m->ofd_raid_degraded = 0;
2126         m->ofd_syncjournal = 0;
2127         ofd_slc_set(m);
2128         m->ofd_grant_compat_disable = 0;
2129         m->ofd_soft_sync_limit = OFD_SOFT_SYNC_LIMIT_DEFAULT;
2130
2131         /* statfs data */
2132         spin_lock_init(&m->ofd_osfs_lock);
2133         m->ofd_osfs_age = cfs_time_shift_64(-1000);
2134         m->ofd_osfs_unstable = 0;
2135         m->ofd_statfs_inflight = 0;
2136         m->ofd_osfs_inflight = 0;
2137
2138         /* grant data */
2139         spin_lock_init(&m->ofd_grant_lock);
2140         m->ofd_tot_dirty = 0;
2141         m->ofd_tot_granted = 0;
2142         m->ofd_tot_pending = 0;
2143         m->ofd_seq_count = 0;
2144         init_waitqueue_head(&m->ofd_inconsistency_thread.t_ctl_waitq);
2145         INIT_LIST_HEAD(&m->ofd_inconsistency_list);
2146         spin_lock_init(&m->ofd_inconsistency_lock);
2147
2148         spin_lock_init(&m->ofd_batch_lock);
2149         init_rwsem(&m->ofd_lastid_rwsem);
2150
2151         obd->u.filter.fo_fl_oss_capa = 0;
2152         INIT_LIST_HEAD(&obd->u.filter.fo_capa_keys);
2153         obd->u.filter.fo_capa_hash = init_capa_hash();
2154         if (obd->u.filter.fo_capa_hash == NULL)
2155                 RETURN(-ENOMEM);
2156
2157         m->ofd_dt_dev.dd_lu_dev.ld_ops = &ofd_lu_ops;
2158         m->ofd_dt_dev.dd_lu_dev.ld_obd = obd;
2159         /* set this lu_device to obd, because error handling need it */
2160         obd->obd_lu_dev = &m->ofd_dt_dev.dd_lu_dev;
2161
2162         rc = ofd_procfs_init(m);
2163         if (rc) {
2164                 CERROR("Can't init ofd lprocfs, rc %d\n", rc);
2165                 RETURN(rc);
2166         }
2167
2168         /* No connection accepted until configurations will finish */
2169         spin_lock(&obd->obd_dev_lock);
2170         obd->obd_no_conn = 1;
2171         spin_unlock(&obd->obd_dev_lock);
2172         obd->obd_replayable = 1;
2173         if (cfg->lcfg_bufcount > 4 && LUSTRE_CFG_BUFLEN(cfg, 4) > 0) {
2174                 char *str = lustre_cfg_string(cfg, 4);
2175
2176                 if (strchr(str, 'n')) {
2177                         CWARN("%s: recovery disabled\n", obd->obd_name);
2178                         obd->obd_replayable = 0;
2179                 }
2180         }
2181
2182         info = ofd_info_init(env, NULL);
2183         if (info == NULL)
2184                 RETURN(-EFAULT);
2185
2186         rc = ofd_stack_init(env, m, cfg);
2187         if (rc) {
2188                 CERROR("Can't init device stack, rc %d\n", rc);
2189                 GOTO(err_fini_proc, rc);
2190         }
2191
2192         ofd_procfs_add_brw_stats_symlink(m);
2193
2194         /* populate cached statfs data */
2195         osfs = &ofd_info(env)->fti_u.osfs;
2196         rc = ofd_statfs_internal(env, m, osfs, 0, NULL);
2197         if (rc != 0) {
2198                 CERROR("%s: can't get statfs data, rc %d\n", obd->obd_name, rc);
2199                 GOTO(err_fini_stack, rc);
2200         }
2201         if (!IS_PO2(osfs->os_bsize)) {
2202                 CERROR("%s: blocksize (%d) is not a power of 2\n",
2203                                 obd->obd_name, osfs->os_bsize);
2204                 GOTO(err_fini_stack, rc = -EPROTO);
2205         }
2206         m->ofd_blockbits = fls(osfs->os_bsize) - 1;
2207
2208         m->ofd_precreate_batch = OFD_PRECREATE_BATCH_DEFAULT;
2209         if (osfs->os_bsize * osfs->os_blocks < OFD_PRECREATE_SMALL_FS)
2210                 m->ofd_precreate_batch = OFD_PRECREATE_BATCH_SMALL;
2211
2212         snprintf(info->fti_u.name, sizeof(info->fti_u.name), "%s-%s",
2213                  "filter"/*LUSTRE_OST_NAME*/, obd->obd_uuid.uuid);
2214         m->ofd_namespace = ldlm_namespace_new(obd, info->fti_u.name,
2215                                               LDLM_NAMESPACE_SERVER,
2216                                               LDLM_NAMESPACE_GREEDY,
2217                                               LDLM_NS_TYPE_OST);
2218         if (m->ofd_namespace == NULL)
2219                 GOTO(err_fini_stack, rc = -ENOMEM);
2220         /* set obd_namespace for compatibility with old code */
2221         obd->obd_namespace = m->ofd_namespace;
2222         ldlm_register_intent(m->ofd_namespace, ofd_intent_policy);
2223         m->ofd_namespace->ns_lvbo = &ofd_lvbo;
2224         m->ofd_namespace->ns_lvbp = m;
2225
2226         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
2227                            "filter_ldlm_cb_client", &obd->obd_ldlm_client);
2228
2229         dt_conf_get(env, m->ofd_osd, &m->ofd_dt_conf);
2230
2231         /* Allow at most ddp_grant_reserved% of the available filesystem space
2232          * to be granted to clients, so that any errors in the grant overhead
2233          * calculations do not allow granting more space to clients than can be
2234          * written. Assumes that in aggregate the grant overhead calculations do
2235          * not have more than ddp_grant_reserved% estimation error in them. */
2236         m->ofd_grant_ratio =
2237                 ofd_grant_ratio_conv(m->ofd_dt_conf.ddp_grant_reserved);
2238
2239         rc = tgt_init(env, &m->ofd_lut, obd, m->ofd_osd, ofd_common_slice,
2240                       OBD_FAIL_OST_ALL_REQUEST_NET,
2241                       OBD_FAIL_OST_ALL_REPLY_NET);
2242         if (rc)
2243                 GOTO(err_free_ns, rc);
2244
2245         rc = ofd_fs_setup(env, m, obd);
2246         if (rc)
2247                 GOTO(err_fini_lut, rc);
2248
2249         rc = ofd_start_inconsistency_verification_thread(m);
2250         if (rc != 0)
2251                 GOTO(err_fini_fs, rc);
2252
2253         RETURN(0);
2254
2255 err_fini_fs:
2256         ofd_fs_cleanup(env, m);
2257 err_fini_lut:
2258         tgt_fini(env, &m->ofd_lut);
2259 err_free_ns:
2260         ldlm_namespace_free(m->ofd_namespace, 0, obd->obd_force);
2261         obd->obd_namespace = m->ofd_namespace = NULL;
2262 err_fini_stack:
2263         ofd_stack_fini(env, m, &m->ofd_osd->dd_lu_dev);
2264 err_fini_proc:
2265         ofd_procfs_fini(m);
2266         return rc;
2267 }
2268
2269 static void ofd_fini(const struct lu_env *env, struct ofd_device *m)
2270 {
2271         struct obd_device       *obd = ofd_obd(m);
2272         struct lu_device        *d   = &m->ofd_dt_dev.dd_lu_dev;
2273         struct lfsck_stop        stop;
2274
2275         stop.ls_status = LS_PAUSED;
2276         stop.ls_flags = 0;
2277         lfsck_stop(env, m->ofd_osd, &stop);
2278         target_recovery_fini(obd);
2279         obd_exports_barrier(obd);
2280         obd_zombie_barrier();
2281
2282         tgt_fini(env, &m->ofd_lut);
2283         ofd_stop_inconsistency_verification_thread(m);
2284         lfsck_degister(env, m->ofd_osd);
2285         ofd_fs_cleanup(env, m);
2286
2287         ofd_free_capa_keys(m);
2288         cleanup_capa_hash(obd->u.filter.fo_capa_hash);
2289
2290         if (m->ofd_namespace != NULL) {
2291                 ldlm_namespace_free(m->ofd_namespace, NULL,
2292                                     d->ld_obd->obd_force);
2293                 d->ld_obd->obd_namespace = m->ofd_namespace = NULL;
2294         }
2295
2296         ofd_stack_fini(env, m, &m->ofd_dt_dev.dd_lu_dev);
2297         ofd_procfs_fini(m);
2298         LASSERT(atomic_read(&d->ld_ref) == 0);
2299         server_put_mount(obd->obd_name, true);
2300         EXIT;
2301 }
2302
2303 static struct lu_device *ofd_device_fini(const struct lu_env *env,
2304                                          struct lu_device *d)
2305 {
2306         ENTRY;
2307         ofd_fini(env, ofd_dev(d));
2308         RETURN(NULL);
2309 }
2310
2311 static struct lu_device *ofd_device_free(const struct lu_env *env,
2312                                          struct lu_device *d)
2313 {
2314         struct ofd_device *m = ofd_dev(d);
2315
2316         dt_device_fini(&m->ofd_dt_dev);
2317         OBD_FREE_PTR(m);
2318         RETURN(NULL);
2319 }
2320
2321 static struct lu_device *ofd_device_alloc(const struct lu_env *env,
2322                                           struct lu_device_type *t,
2323                                           struct lustre_cfg *cfg)
2324 {
2325         struct ofd_device *m;
2326         struct lu_device  *l;
2327         int                rc;
2328
2329         OBD_ALLOC_PTR(m);
2330         if (m == NULL)
2331                 return ERR_PTR(-ENOMEM);
2332
2333         l = &m->ofd_dt_dev.dd_lu_dev;
2334         dt_device_init(&m->ofd_dt_dev, t);
2335         rc = ofd_init0(env, m, t, cfg);
2336         if (rc != 0) {
2337                 ofd_device_free(env, l);
2338                 l = ERR_PTR(rc);
2339         }
2340
2341         return l;
2342 }
2343
2344 /* thread context key constructor/destructor */
2345 LU_KEY_INIT_FINI(ofd, struct ofd_thread_info);
2346
2347 static void ofd_key_exit(const struct lu_context *ctx,
2348                          struct lu_context_key *key, void *data)
2349 {
2350         struct ofd_thread_info *info = data;
2351
2352         info->fti_env = NULL;
2353         info->fti_exp = NULL;
2354
2355         info->fti_xid = 0;
2356         info->fti_pre_version = 0;
2357         info->fti_used = 0;
2358
2359         memset(&info->fti_attr, 0, sizeof info->fti_attr);
2360 }
2361
2362 struct lu_context_key ofd_thread_key = {
2363         .lct_tags = LCT_DT_THREAD,
2364         .lct_init = ofd_key_init,
2365         .lct_fini = ofd_key_fini,
2366         .lct_exit = ofd_key_exit
2367 };
2368
2369 /* type constructor/destructor: mdt_type_init, mdt_type_fini */
2370 LU_TYPE_INIT_FINI(ofd, &ofd_thread_key);
2371
2372 static struct lu_device_type_operations ofd_device_type_ops = {
2373         .ldto_init              = ofd_type_init,
2374         .ldto_fini              = ofd_type_fini,
2375
2376         .ldto_start             = ofd_type_start,
2377         .ldto_stop              = ofd_type_stop,
2378
2379         .ldto_device_alloc      = ofd_device_alloc,
2380         .ldto_device_free       = ofd_device_free,
2381         .ldto_device_fini       = ofd_device_fini
2382 };
2383
2384 static struct lu_device_type ofd_device_type = {
2385         .ldt_tags       = LU_DEVICE_DT,
2386         .ldt_name       = LUSTRE_OST_NAME,
2387         .ldt_ops        = &ofd_device_type_ops,
2388         .ldt_ctx_tags   = LCT_DT_THREAD
2389 };
2390
2391 int __init ofd_init(void)
2392 {
2393         int                             rc;
2394
2395         rc = lu_kmem_init(ofd_caches);
2396         if (rc)
2397                 return rc;
2398
2399         rc = ofd_fmd_init();
2400         if (rc) {
2401                 lu_kmem_fini(ofd_caches);
2402                 return(rc);
2403         }
2404
2405         rc = class_register_type(&ofd_obd_ops, NULL, true, NULL,
2406 #ifndef HAVE_ONLY_PROCFS_SEQ
2407                                  NULL,
2408 #endif
2409                                  LUSTRE_OST_NAME, &ofd_device_type);
2410         return rc;
2411 }
2412
2413 void __exit ofd_exit(void)
2414 {
2415         ofd_fmd_exit();
2416         lu_kmem_fini(ofd_caches);
2417         class_unregister_type(LUSTRE_OST_NAME);
2418 }
2419
2420 MODULE_AUTHOR("Whamcloud, Inc. <http://www.whamcloud.com/>");
2421 MODULE_DESCRIPTION("Lustre Object Filtering Device");
2422 MODULE_LICENSE("GPL");
2423
2424 module_init(ofd_init);
2425 module_exit(ofd_exit);