Whamcloud - gitweb
LU-3136 test: add /bin:/usr/sbin to do_rpc_node()
[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, 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
49 #include "ofd_internal.h"
50
51 /* Slab for OFD object allocation */
52 static cfs_mem_cache_t *ofd_object_kmem;
53
54 static struct lu_kmem_descr ofd_caches[] = {
55         {
56                 .ckd_cache = &ofd_object_kmem,
57                 .ckd_name  = "ofd_obj",
58                 .ckd_size  = sizeof(struct ofd_object)
59         },
60         {
61                 .ckd_cache = NULL
62         }
63 };
64
65 static int ofd_connect_to_next(const struct lu_env *env, struct ofd_device *m,
66                                const char *next, struct obd_export **exp)
67 {
68         struct obd_connect_data *data = NULL;
69         struct obd_device       *obd;
70         int                      rc;
71         ENTRY;
72
73         OBD_ALLOC_PTR(data);
74         if (data == NULL)
75                 GOTO(out, rc = -ENOMEM);
76
77         obd = class_name2obd(next);
78         if (obd == NULL) {
79                 CERROR("%s: can't locate next device: %s\n",
80                        m->ofd_dt_dev.dd_lu_dev.ld_obd->obd_name, next);
81                 GOTO(out, rc = -ENOTCONN);
82         }
83
84         data->ocd_connect_flags = OBD_CONNECT_VERSION;
85         data->ocd_version = LUSTRE_VERSION_CODE;
86
87         rc = obd_connect(NULL, exp, obd, &obd->obd_uuid, data, NULL);
88         if (rc) {
89                 CERROR("%s: cannot connect to next dev %s: rc = %d\n",
90                        m->ofd_dt_dev.dd_lu_dev.ld_obd->obd_name, next, rc);
91                 GOTO(out, rc);
92         }
93
94         m->ofd_dt_dev.dd_lu_dev.ld_site =
95                 m->ofd_osd_exp->exp_obd->obd_lu_dev->ld_site;
96         LASSERT(m->ofd_dt_dev.dd_lu_dev.ld_site);
97         m->ofd_osd = lu2dt_dev(m->ofd_osd_exp->exp_obd->obd_lu_dev);
98         m->ofd_dt_dev.dd_lu_dev.ld_site->ls_top_dev = &m->ofd_dt_dev.dd_lu_dev;
99
100 out:
101         if (data)
102                 OBD_FREE_PTR(data);
103         RETURN(rc);
104 }
105
106 static int ofd_stack_init(const struct lu_env *env,
107                           struct ofd_device *m, struct lustre_cfg *cfg)
108 {
109         const char              *dev = lustre_cfg_string(cfg, 0);
110         struct lu_device        *d;
111         struct ofd_thread_info  *info = ofd_info(env);
112         struct lustre_mount_info *lmi;
113         int                      rc;
114         char                    *osdname;
115
116         ENTRY;
117
118         lmi = server_get_mount(dev);
119         if (lmi == NULL) {
120                 CERROR("Cannot get mount info for %s!\n", dev);
121                 RETURN(-ENODEV);
122         }
123
124         /* find bottom osd */
125         OBD_ALLOC(osdname, MTI_NAME_MAXLEN);
126         if (osdname == NULL)
127                 RETURN(-ENOMEM);
128
129         snprintf(osdname, MTI_NAME_MAXLEN, "%s-osd", dev);
130         rc = ofd_connect_to_next(env, m, osdname, &m->ofd_osd_exp);
131         OBD_FREE(osdname, MTI_NAME_MAXLEN);
132         if (rc)
133                 RETURN(rc);
134
135         d = m->ofd_osd_exp->exp_obd->obd_lu_dev;
136         LASSERT(d);
137         m->ofd_osd = lu2dt_dev(d);
138
139         snprintf(info->fti_u.name, sizeof(info->fti_u.name),
140                  "%s-osd", lustre_cfg_string(cfg, 0));
141
142         RETURN(rc);
143 }
144
145 static void ofd_stack_fini(const struct lu_env *env, struct ofd_device *m,
146                            struct lu_device *top)
147 {
148         struct obd_device       *obd = ofd_obd(m);
149         struct lustre_cfg_bufs   bufs;
150         struct lustre_cfg       *lcfg;
151         char                     flags[3] = "";
152
153         ENTRY;
154
155         lu_site_purge(env, top->ld_site, ~0);
156
157         /* process cleanup, pass mdt obd name to get obd umount flags */
158         lustre_cfg_bufs_reset(&bufs, obd->obd_name);
159         if (obd->obd_force)
160                 strcat(flags, "F");
161         if (obd->obd_fail)
162                 strcat(flags, "A");
163         lustre_cfg_bufs_set_string(&bufs, 1, flags);
164         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
165         if (!lcfg) {
166                 CERROR("Cannot alloc lcfg!\n");
167                 RETURN_EXIT;
168         }
169
170         LASSERT(top);
171         top->ld_ops->ldo_process_config(env, top, lcfg);
172         lustre_cfg_free(lcfg);
173
174         lu_site_purge(env, top->ld_site, ~0);
175
176         LASSERT(m->ofd_osd_exp);
177         obd_disconnect(m->ofd_osd_exp);
178         m->ofd_osd = NULL;
179
180         EXIT;
181 }
182
183 /* For interoperability, see mdt_interop_param[]. */
184 static struct cfg_interop_param ofd_interop_param[] = {
185         { "ost.quota_type",     NULL },
186         { NULL }
187 };
188
189 /* used by MGS to process specific configurations */
190 static int ofd_process_config(const struct lu_env *env, struct lu_device *d,
191                               struct lustre_cfg *cfg)
192 {
193         struct ofd_device       *m = ofd_dev(d);
194         struct dt_device        *dt_next = m->ofd_osd;
195         struct lu_device        *next = &dt_next->dd_lu_dev;
196         int                      rc;
197
198         ENTRY;
199
200         switch (cfg->lcfg_command) {
201         case LCFG_PARAM: {
202                 struct lprocfs_static_vars lvars;
203
204                 /* For interoperability */
205                 struct cfg_interop_param   *ptr = NULL;
206                 struct lustre_cfg          *old_cfg = NULL;
207                 char                       *param = NULL;
208
209                 param = lustre_cfg_string(cfg, 1);
210                 if (param == NULL) {
211                         CERROR("param is empty\n");
212                         rc = -EINVAL;
213                         break;
214                 }
215
216                 ptr = class_find_old_param(param, ofd_interop_param);
217                 if (ptr != NULL) {
218                         if (ptr->new_param == NULL) {
219                                 rc = 0;
220                                 CWARN("For interoperability, skip this %s."
221                                       " It is obsolete.\n", ptr->old_param);
222                                 break;
223                         }
224
225                         CWARN("Found old param %s, changed it to %s.\n",
226                               ptr->old_param, ptr->new_param);
227
228                         old_cfg = cfg;
229                         cfg = lustre_cfg_rename(old_cfg, ptr->new_param);
230                         if (IS_ERR(cfg)) {
231                                 rc = PTR_ERR(cfg);
232                                 break;
233                         }
234                 }
235
236                 lprocfs_ofd_init_vars(&lvars);
237                 rc = class_process_proc_param(PARAM_OST, lvars.obd_vars, cfg,
238                                               d->ld_obd);
239                 if (rc > 0 || rc == -ENOSYS)
240                         /* we don't understand; pass it on */
241                         rc = next->ld_ops->ldo_process_config(env, next, cfg);
242                 break;
243         }
244         case LCFG_SPTLRPC_CONF: {
245                 rc = -ENOTSUPP;
246                 break;
247         }
248         default:
249                 /* others are passed further */
250                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
251                 break;
252         }
253         RETURN(rc);
254 }
255
256 static int ofd_object_init(const struct lu_env *env, struct lu_object *o,
257                            const struct lu_object_conf *conf)
258 {
259         struct ofd_device       *d = ofd_dev(o->lo_dev);
260         struct lu_device        *under;
261         struct lu_object        *below;
262         int                      rc = 0;
263
264         ENTRY;
265
266         CDEBUG(D_INFO, "object init, fid = "DFID"\n",
267                PFID(lu_object_fid(o)));
268
269         under = &d->ofd_osd->dd_lu_dev;
270         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
271         if (below != NULL)
272                 lu_object_add(o, below);
273         else
274                 rc = -ENOMEM;
275
276         RETURN(rc);
277 }
278
279 static void ofd_object_free(const struct lu_env *env, struct lu_object *o)
280 {
281         struct ofd_object       *of = ofd_obj(o);
282         struct lu_object_header *h;
283
284         ENTRY;
285
286         h = o->lo_header;
287         CDEBUG(D_INFO, "object free, fid = "DFID"\n",
288                PFID(lu_object_fid(o)));
289
290         lu_object_fini(o);
291         lu_object_header_fini(h);
292         OBD_SLAB_FREE_PTR(of, ofd_object_kmem);
293         EXIT;
294 }
295
296 static int ofd_object_print(const struct lu_env *env, void *cookie,
297                             lu_printer_t p, const struct lu_object *o)
298 {
299         return (*p)(env, cookie, LUSTRE_OST_NAME"-object@%p", o);
300 }
301
302 struct lu_object_operations ofd_obj_ops = {
303         .loo_object_init        = ofd_object_init,
304         .loo_object_free        = ofd_object_free,
305         .loo_object_print       = ofd_object_print
306 };
307
308 static struct lu_object *ofd_object_alloc(const struct lu_env *env,
309                                           const struct lu_object_header *hdr,
310                                           struct lu_device *d)
311 {
312         struct ofd_object *of;
313
314         ENTRY;
315
316         OBD_SLAB_ALLOC_PTR_GFP(of, ofd_object_kmem, CFS_ALLOC_IO);
317         if (of != NULL) {
318                 struct lu_object        *o;
319                 struct lu_object_header *h;
320
321                 o = &of->ofo_obj.do_lu;
322                 h = &of->ofo_header;
323                 lu_object_header_init(h);
324                 lu_object_init(o, h, d);
325                 lu_object_add_top(h, o);
326                 o->lo_ops = &ofd_obj_ops;
327                 RETURN(o);
328         } else {
329                 RETURN(NULL);
330         }
331 }
332
333 extern int ost_handle(struct ptlrpc_request *req);
334
335 static int ofd_prepare(const struct lu_env *env, struct lu_device *pdev,
336                        struct lu_device *dev)
337 {
338         struct ofd_thread_info *info;
339         struct ofd_device       *ofd = ofd_dev(dev);
340         struct obd_device       *obd = ofd_obd(ofd);
341         struct lu_device        *next = &ofd->ofd_osd->dd_lu_dev;
342         int                      rc;
343
344         ENTRY;
345
346         rc = lu_env_refill((struct lu_env *)env);
347         if (rc != 0) {
348                 CERROR("Failure to refill session: '%d'\n", rc);
349                 RETURN(rc);
350         }
351
352         info = ofd_info_init(env, NULL);
353         if (info == NULL)
354                 RETURN(-EFAULT);
355
356         /* initialize lower device */
357         rc = next->ld_ops->ldo_prepare(env, dev, next);
358
359         target_recovery_init(&ofd->ofd_lut, ost_handle);
360         LASSERT(obd->obd_no_conn);
361         spin_lock(&obd->obd_dev_lock);
362         obd->obd_no_conn = 0;
363         spin_unlock(&obd->obd_dev_lock);
364
365         if (obd->obd_recovering == 0)
366                 ofd_postrecov(env, ofd);
367
368         RETURN(rc);
369 }
370
371 static int ofd_recovery_complete(const struct lu_env *env,
372                                  struct lu_device *dev)
373 {
374         struct ofd_device       *ofd = ofd_dev(dev);
375         struct lu_device        *next = &ofd->ofd_osd->dd_lu_dev;
376         int                      rc = 0;
377
378         ENTRY;
379
380         /* Grant space for object precreation on the self export.
381          * This initial reserved space (i.e. 20MB for zfs and 560KB for ldiskfs)
382          * is enough to create 20k objects. It is then adapted based on the
383          * precreate request size (see ofd_grant_create()
384          */
385         ofd_grant_connect(env, dev->ld_obd->obd_self_export,
386                           OST_MAX_PRECREATE * ofd->ofd_dt_conf.ddp_inodespace);
387         rc = next->ld_ops->ldo_recovery_complete(env, next);
388         RETURN(rc);
389 }
390
391 static struct lu_device_operations ofd_lu_ops = {
392         .ldo_object_alloc       = ofd_object_alloc,
393         .ldo_process_config     = ofd_process_config,
394         .ldo_recovery_complete  = ofd_recovery_complete,
395         .ldo_prepare            = ofd_prepare,
396 };
397
398 static int ofd_procfs_init(struct ofd_device *ofd)
399 {
400         struct lprocfs_static_vars       lvars;
401         struct obd_device               *obd = ofd_obd(ofd);
402         cfs_proc_dir_entry_t            *entry;
403         int                              rc = 0;
404
405         ENTRY;
406
407         /* lprocfs must be setup before the ofd so state can be safely added
408          * to /proc incrementally as the ofd is setup */
409         lprocfs_ofd_init_vars(&lvars);
410         rc = lprocfs_obd_setup(obd, lvars.obd_vars);
411         if (rc) {
412                 CERROR("%s: lprocfs_obd_setup failed: %d.\n",
413                        obd->obd_name, rc);
414                 RETURN(rc);
415         }
416
417         rc = lprocfs_alloc_obd_stats(obd, LPROC_OFD_LAST);
418         if (rc) {
419                 CERROR("%s: lprocfs_alloc_obd_stats failed: %d.\n",
420                        obd->obd_name, rc);
421                 GOTO(obd_cleanup, rc);
422         }
423
424         /* Init OFD private stats here */
425         lprocfs_counter_init(obd->obd_stats, LPROC_OFD_READ_BYTES,
426                              LPROCFS_CNTR_AVGMINMAX, "read_bytes", "bytes");
427         lprocfs_counter_init(obd->obd_stats, LPROC_OFD_WRITE_BYTES,
428                              LPROCFS_CNTR_AVGMINMAX, "write_bytes", "bytes");
429
430         entry = lprocfs_register("exports", obd->obd_proc_entry, NULL, NULL);
431         if (IS_ERR(entry)) {
432                 rc = PTR_ERR(entry);
433                 CERROR("%s: error %d setting up lprocfs for %s\n",
434                        obd->obd_name, rc, "exports");
435                 GOTO(obd_cleanup, rc);
436         }
437         obd->obd_proc_exports_entry = entry;
438
439         entry = lprocfs_add_simple(obd->obd_proc_exports_entry, "clear",
440                                    lprocfs_nid_stats_clear_read,
441                                    lprocfs_nid_stats_clear_write, obd, NULL);
442         if (IS_ERR(entry)) {
443                 rc = PTR_ERR(entry);
444                 CERROR("%s: add proc entry 'clear' failed: %d.\n",
445                        obd->obd_name, rc);
446                 GOTO(obd_cleanup, rc);
447         }
448
449         rc = lprocfs_job_stats_init(obd, LPROC_OFD_STATS_LAST,
450                                     ofd_stats_counter_init);
451         if (rc)
452                 GOTO(remove_entry_clear, rc);
453         RETURN(0);
454 remove_entry_clear:
455         lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
456 obd_cleanup:
457         lprocfs_obd_cleanup(obd);
458         lprocfs_free_obd_stats(obd);
459
460         return rc;
461 }
462
463 static void ofd_procfs_add_brw_stats_symlink(struct ofd_device *ofd)
464 {
465         struct obd_device       *obd = ofd_obd(ofd);
466         struct obd_device       *osd_obd = ofd->ofd_osd_exp->exp_obd;
467         cfs_proc_dir_entry_t    *osd_root = osd_obd->obd_type->typ_procroot;
468         cfs_proc_dir_entry_t    *osd_dir;
469
470         osd_dir = lprocfs_srch(osd_root, obd->obd_name);
471         if (osd_dir == NULL)
472                 return;
473
474         if (lprocfs_srch(osd_dir, "brw_stats") == NULL)
475                 return;
476
477         lprocfs_add_symlink("brw_stats", obd->obd_proc_entry,
478                             "../../%s/%s/brw_stats",
479                             osd_root->name, osd_dir->name);
480 }
481
482 static void ofd_procfs_fini(struct ofd_device *ofd)
483 {
484         struct obd_device *obd = ofd_obd(ofd);
485
486         lprocfs_remove_proc_entry("brw_stats", obd->obd_proc_entry);
487         lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
488         lprocfs_free_per_client_stats(obd);
489         lprocfs_obd_cleanup(obd);
490         lprocfs_free_obd_stats(obd);
491         lprocfs_job_stats_fini(obd);
492 }
493
494 extern int ost_handle(struct ptlrpc_request *req);
495
496 int ofd_fid_fini(const struct lu_env *env, struct ofd_device *ofd)
497 {
498         return seq_site_fini(env, &ofd->ofd_seq_site);
499 }
500
501 int ofd_fid_init(const struct lu_env *env, struct ofd_device *ofd)
502 {
503         struct seq_server_site  *ss = &ofd->ofd_seq_site;
504         struct lu_device        *lu = &ofd->ofd_dt_dev.dd_lu_dev;
505         char                    *obd_name = ofd_name(ofd);
506         char                    *name = NULL;
507         int                     rc = 0;
508
509         ss = &ofd->ofd_seq_site;
510         lu->ld_site->ld_seq_site = ss;
511         ss->ss_lu = lu->ld_site;
512         ss->ss_node_id = ofd->ofd_lut.lut_lsd.lsd_osd_index;
513
514         OBD_ALLOC_PTR(ss->ss_server_seq);
515         if (ss->ss_server_seq == NULL)
516                 GOTO(out_free, rc = -ENOMEM);
517
518         OBD_ALLOC(name, strlen(obd_name) + 10);
519         if (!name) {
520                 OBD_FREE_PTR(ss->ss_server_seq);
521                 ss->ss_server_seq = NULL;
522                 GOTO(out_free, rc = -ENOMEM);
523         }
524
525         rc = seq_server_init(ss->ss_server_seq, ofd->ofd_osd, obd_name,
526                              LUSTRE_SEQ_SERVER, ss, env);
527         if (rc) {
528                 CERROR("%s : seq server init error %d\n", obd_name, rc);
529                 GOTO(out_free, rc);
530         }
531         ss->ss_server_seq->lss_space.lsr_index = ss->ss_node_id;
532
533         OBD_ALLOC_PTR(ss->ss_client_seq);
534         if (ss->ss_client_seq == NULL)
535                 GOTO(out_free, -ENOMEM);
536
537         snprintf(name, strlen(obd_name) + 6, "%p-super", obd_name);
538         rc = seq_client_init(ss->ss_client_seq, NULL, LUSTRE_SEQ_DATA,
539                              name, NULL);
540         if (rc) {
541                 CERROR("%s : seq client init error %d\n", obd_name, rc);
542                 GOTO(out_free, rc);
543         }
544         OBD_FREE(name, strlen(obd_name) + 10);
545         name = NULL;
546
547         rc = seq_server_set_cli(ss->ss_server_seq, ss->ss_client_seq, env);
548
549 out_free:
550         if (rc) {
551                 if (ss->ss_server_seq) {
552                         seq_server_fini(ss->ss_server_seq, env);
553                         OBD_FREE_PTR(ss->ss_server_seq);
554                         ss->ss_server_seq = NULL;
555                 }
556
557                 if (ss->ss_client_seq) {
558                         seq_client_fini(ss->ss_client_seq);
559                         OBD_FREE_PTR(ss->ss_client_seq);
560                         ss->ss_client_seq = NULL;
561                 }
562
563                 if (name) {
564                         OBD_FREE(name, strlen(obd_name) + 10);
565                         name = NULL;
566                 }
567         }
568
569         return rc;
570 }
571
572 static int ofd_init0(const struct lu_env *env, struct ofd_device *m,
573                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
574 {
575         const char              *dev = lustre_cfg_string(cfg, 0);
576         struct ofd_thread_info  *info = NULL;
577         struct obd_device       *obd;
578         struct obd_statfs       *osfs;
579         int                      rc;
580
581         ENTRY;
582
583         obd = class_name2obd(dev);
584         if (obd == NULL) {
585                 CERROR("Cannot find obd with name %s\n", dev);
586                 RETURN(-ENODEV);
587         }
588
589         rc = lu_env_refill((struct lu_env *)env);
590         if (rc != 0)
591                 RETURN(rc);
592
593         obd->u.obt.obt_magic = OBT_MAGIC;
594
595         m->ofd_fmd_max_num = OFD_FMD_MAX_NUM_DEFAULT;
596         m->ofd_fmd_max_age = OFD_FMD_MAX_AGE_DEFAULT;
597
598         spin_lock_init(&m->ofd_flags_lock);
599         m->ofd_raid_degraded = 0;
600         m->ofd_syncjournal = 0;
601         ofd_slc_set(m);
602         m->ofd_grant_compat_disable = 0;
603
604         /* statfs data */
605         spin_lock_init(&m->ofd_osfs_lock);
606         m->ofd_osfs_age = cfs_time_shift_64(-1000);
607         m->ofd_osfs_unstable = 0;
608         m->ofd_statfs_inflight = 0;
609         m->ofd_osfs_inflight = 0;
610
611         /* grant data */
612         spin_lock_init(&m->ofd_grant_lock);
613         m->ofd_tot_dirty = 0;
614         m->ofd_tot_granted = 0;
615         m->ofd_tot_pending = 0;
616         m->ofd_seq_count = 0;
617
618         spin_lock_init(&m->ofd_batch_lock);
619         rwlock_init(&obd->u.filter.fo_sptlrpc_lock);
620         sptlrpc_rule_set_init(&obd->u.filter.fo_sptlrpc_rset);
621
622         obd->u.filter.fo_fl_oss_capa = 0;
623         CFS_INIT_LIST_HEAD(&obd->u.filter.fo_capa_keys);
624         obd->u.filter.fo_capa_hash = init_capa_hash();
625         if (obd->u.filter.fo_capa_hash == NULL)
626                 RETURN(-ENOMEM);
627
628         m->ofd_dt_dev.dd_lu_dev.ld_ops = &ofd_lu_ops;
629         m->ofd_dt_dev.dd_lu_dev.ld_obd = obd;
630         /* set this lu_device to obd, because error handling need it */
631         obd->obd_lu_dev = &m->ofd_dt_dev.dd_lu_dev;
632
633         rc = ofd_procfs_init(m);
634         if (rc) {
635                 CERROR("Can't init ofd lprocfs, rc %d\n", rc);
636                 RETURN(rc);
637         }
638
639         /* No connection accepted until configurations will finish */
640         spin_lock(&obd->obd_dev_lock);
641         obd->obd_no_conn = 1;
642         spin_unlock(&obd->obd_dev_lock);
643         obd->obd_replayable = 1;
644         if (cfg->lcfg_bufcount > 4 && LUSTRE_CFG_BUFLEN(cfg, 4) > 0) {
645                 char *str = lustre_cfg_string(cfg, 4);
646
647                 if (strchr(str, 'n')) {
648                         CWARN("%s: recovery disabled\n", obd->obd_name);
649                         obd->obd_replayable = 0;
650                 }
651         }
652
653         info = ofd_info_init(env, NULL);
654         if (info == NULL)
655                 RETURN(-EFAULT);
656
657         rc = ofd_stack_init(env, m, cfg);
658         if (rc) {
659                 CERROR("Can't init device stack, rc %d\n", rc);
660                 GOTO(err_fini_proc, rc);
661         }
662
663         ofd_procfs_add_brw_stats_symlink(m);
664
665         /* populate cached statfs data */
666         osfs = &ofd_info(env)->fti_u.osfs;
667         rc = ofd_statfs_internal(env, m, osfs, 0, NULL);
668         if (rc != 0) {
669                 CERROR("%s: can't get statfs data, rc %d\n", obd->obd_name, rc);
670                 GOTO(err_fini_stack, rc);
671         }
672         if (!IS_PO2(osfs->os_bsize)) {
673                 CERROR("%s: blocksize (%d) is not a power of 2\n",
674                                 obd->obd_name, osfs->os_bsize);
675                 GOTO(err_fini_stack, rc = -EPROTO);
676         }
677         m->ofd_blockbits = fls(osfs->os_bsize) - 1;
678
679         m->ofd_precreate_batch = OFD_PRECREATE_BATCH_DEFAULT;
680         if (osfs->os_bsize * osfs->os_blocks < OFD_PRECREATE_SMALL_FS)
681                 m->ofd_precreate_batch = OFD_PRECREATE_BATCH_SMALL;
682
683         snprintf(info->fti_u.name, sizeof(info->fti_u.name), "filter-%p", m);
684         m->ofd_namespace = ldlm_namespace_new(obd, info->fti_u.name,
685                                               LDLM_NAMESPACE_SERVER,
686                                               LDLM_NAMESPACE_GREEDY,
687                                               LDLM_NS_TYPE_OST);
688         if (m->ofd_namespace == NULL)
689                 GOTO(err_fini_stack, rc = -ENOMEM);
690         /* set obd_namespace for compatibility with old code */
691         obd->obd_namespace = m->ofd_namespace;
692         ldlm_register_intent(m->ofd_namespace, ofd_intent_policy);
693         m->ofd_namespace->ns_lvbo = &ofd_lvbo;
694         m->ofd_namespace->ns_lvbp = m;
695
696         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
697                            "filter_ldlm_cb_client", &obd->obd_ldlm_client);
698
699         dt_conf_get(env, m->ofd_osd, &m->ofd_dt_conf);
700
701         /* Allow at most ddp_grant_reserved% of the available filesystem space
702          * to be granted to clients, so that any errors in the grant overhead
703          * calculations do not allow granting more space to clients than can be
704          * written. Assumes that in aggregate the grant overhead calculations do
705          * not have more than ddp_grant_reserved% estimation error in them. */
706         m->ofd_grant_ratio =
707                 ofd_grant_ratio_conv(m->ofd_dt_conf.ddp_grant_reserved);
708
709         rc = tgt_init(env, &m->ofd_lut, obd, m->ofd_osd);
710         if (rc)
711                 GOTO(err_free_ns, rc);
712
713         rc = ofd_fs_setup(env, m, obd);
714         if (rc)
715                 GOTO(err_fini_lut, rc);
716
717         RETURN(0);
718 err_fini_lut:
719         tgt_fini(env, &m->ofd_lut);
720 err_free_ns:
721         ldlm_namespace_free(m->ofd_namespace, 0, obd->obd_force);
722         obd->obd_namespace = m->ofd_namespace = NULL;
723 err_fini_stack:
724         ofd_stack_fini(env, m, &m->ofd_osd->dd_lu_dev);
725 err_fini_proc:
726         ofd_procfs_fini(m);
727         return rc;
728 }
729
730 static void ofd_fini(const struct lu_env *env, struct ofd_device *m)
731 {
732         struct obd_device *obd = ofd_obd(m);
733         struct lu_device  *d = &m->ofd_dt_dev.dd_lu_dev;
734
735         target_recovery_fini(obd);
736         obd_exports_barrier(obd);
737         obd_zombie_barrier();
738
739         tgt_fini(env, &m->ofd_lut);
740         ofd_fs_cleanup(env, m);
741
742         ofd_free_capa_keys(m);
743         cleanup_capa_hash(obd->u.filter.fo_capa_hash);
744
745         if (m->ofd_namespace != NULL) {
746                 ldlm_namespace_free(m->ofd_namespace, NULL,
747                                     d->ld_obd->obd_force);
748                 d->ld_obd->obd_namespace = m->ofd_namespace = NULL;
749         }
750
751         ofd_stack_fini(env, m, &m->ofd_dt_dev.dd_lu_dev);
752         ofd_procfs_fini(m);
753         LASSERT(cfs_atomic_read(&d->ld_ref) == 0);
754         server_put_mount(obd->obd_name, NULL);
755         EXIT;
756 }
757
758 static struct lu_device *ofd_device_fini(const struct lu_env *env,
759                                          struct lu_device *d)
760 {
761         ENTRY;
762         ofd_fini(env, ofd_dev(d));
763         RETURN(NULL);
764 }
765
766 static struct lu_device *ofd_device_free(const struct lu_env *env,
767                                          struct lu_device *d)
768 {
769         struct ofd_device *m = ofd_dev(d);
770
771         dt_device_fini(&m->ofd_dt_dev);
772         OBD_FREE_PTR(m);
773         RETURN(NULL);
774 }
775
776 static struct lu_device *ofd_device_alloc(const struct lu_env *env,
777                                           struct lu_device_type *t,
778                                           struct lustre_cfg *cfg)
779 {
780         struct ofd_device *m;
781         struct lu_device  *l;
782         int                rc;
783
784         OBD_ALLOC_PTR(m);
785         if (m == NULL)
786                 return ERR_PTR(-ENOMEM);
787
788         l = &m->ofd_dt_dev.dd_lu_dev;
789         dt_device_init(&m->ofd_dt_dev, t);
790         rc = ofd_init0(env, m, t, cfg);
791         if (rc != 0) {
792                 ofd_device_free(env, l);
793                 l = ERR_PTR(rc);
794         }
795
796         return l;
797 }
798
799 /* thread context key constructor/destructor */
800 LU_KEY_INIT_FINI(ofd, struct ofd_thread_info);
801
802 static void ofd_key_exit(const struct lu_context *ctx,
803                          struct lu_context_key *key, void *data)
804 {
805         struct ofd_thread_info *info = data;
806
807         info->fti_env = NULL;
808         info->fti_exp = NULL;
809
810         info->fti_xid = 0;
811         info->fti_transno = 0;
812         info->fti_pre_version = 0;
813         info->fti_obj = NULL;
814         info->fti_has_trans = 0;
815         info->fti_mult_trans = 0;
816         info->fti_used = 0;
817
818         memset(&info->fti_attr, 0, sizeof info->fti_attr);
819 }
820
821 struct lu_context_key ofd_thread_key = {
822         .lct_tags = LCT_DT_THREAD,
823         .lct_init = ofd_key_init,
824         .lct_fini = ofd_key_fini,
825         .lct_exit = ofd_key_exit
826 };
827
828 /* type constructor/destructor: mdt_type_init, mdt_type_fini */
829 LU_TYPE_INIT_FINI(ofd, &ofd_thread_key);
830
831 static struct lu_device_type_operations ofd_device_type_ops = {
832         .ldto_init              = ofd_type_init,
833         .ldto_fini              = ofd_type_fini,
834
835         .ldto_start             = ofd_type_start,
836         .ldto_stop              = ofd_type_stop,
837
838         .ldto_device_alloc      = ofd_device_alloc,
839         .ldto_device_free       = ofd_device_free,
840         .ldto_device_fini       = ofd_device_fini
841 };
842
843 static struct lu_device_type ofd_device_type = {
844         .ldt_tags       = LU_DEVICE_DT,
845         .ldt_name       = LUSTRE_OST_NAME,
846         .ldt_ops        = &ofd_device_type_ops,
847         .ldt_ctx_tags   = LCT_DT_THREAD
848 };
849
850 int __init ofd_init(void)
851 {
852         struct lprocfs_static_vars      lvars;
853         int                             rc;
854
855         rc = lu_kmem_init(ofd_caches);
856         if (rc)
857                 return rc;
858
859         rc = ofd_fmd_init();
860         if (rc) {
861                 lu_kmem_fini(ofd_caches);
862                 return(rc);
863         }
864
865         lprocfs_ofd_init_vars(&lvars);
866
867         rc = class_register_type(&ofd_obd_ops, NULL, lvars.module_vars,
868                                  LUSTRE_OST_NAME, &ofd_device_type);
869         return rc;
870 }
871
872 void __exit ofd_exit(void)
873 {
874         ofd_fmd_exit();
875         lu_kmem_fini(ofd_caches);
876         class_unregister_type(LUSTRE_OST_NAME);
877 }
878
879 MODULE_AUTHOR("Whamcloud, Inc. <http://www.whamcloud.com/>");
880 MODULE_DESCRIPTION("Lustre Object Filtering Device");
881 MODULE_LICENSE("GPL");
882
883 module_init(ofd_init);
884 module_exit(ofd_exit);