Whamcloud - gitweb
2df6149a711ddab698146c1c437ce6811677a8cf
[fs/lustre-release.git] / lustre / ofd / ofd_internal.h
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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _OFD_INTERNAL_H
38 #define _OFD_INTERNAL_H
39
40 #include <obd.h>
41 #include <obd_class.h>
42 #include <dt_object.h>
43 #include <lustre_fid.h>
44 #include <lustre_capa.h>
45
46 #define OFD_INIT_OBJID  0
47 #define OFD_ROCOMPAT_SUPP (0)
48 #define OFD_INCOMPAT_SUPP (OBD_INCOMPAT_GROUPS | OBD_INCOMPAT_OST | \
49                            OBD_INCOMPAT_COMMON_LR)
50 #define OFD_MAX_GROUPS  256
51
52 struct ofd_device {
53         struct dt_device         ofd_dt_dev;
54         struct dt_device        *ofd_osd;
55         struct dt_device_param   ofd_dt_conf;
56         /* DLM name-space for meta-data locks maintained by this server */
57         struct ldlm_namespace   *ofd_namespace;
58
59         /* last_rcvd file */
60         struct lu_target         ofd_lut;
61         struct dt_object        *ofd_last_group_file;
62         struct dt_object        *ofd_health_check_file;
63
64         int                      ofd_subdir_count;
65
66         int                      ofd_max_group;
67         obd_id                   ofd_last_objids[OFD_MAX_GROUPS];
68         cfs_mutex_t              ofd_create_locks[OFD_MAX_GROUPS];
69         struct dt_object        *ofd_lastid_obj[OFD_MAX_GROUPS];
70         cfs_spinlock_t           ofd_objid_lock;
71
72         struct lu_site           ofd_site;
73 };
74
75 static inline struct ofd_device *ofd_dev(struct lu_device *d)
76 {
77         return container_of0(d, struct ofd_device, ofd_dt_dev.dd_lu_dev);
78 }
79
80 static inline struct obd_device *ofd_obd(struct ofd_device *ofd)
81 {
82         return ofd->ofd_dt_dev.dd_lu_dev.ld_obd;
83 }
84
85 static inline struct ofd_device *ofd_exp(struct obd_export *exp)
86 {
87         return ofd_dev(exp->exp_obd->obd_lu_dev);
88 }
89
90 static inline char *ofd_name(struct ofd_device *ofd)
91 {
92         return ofd->ofd_dt_dev.dd_lu_dev.ld_obd->obd_name;
93 }
94
95 struct ofd_object {
96         struct lu_object_header ofo_header;
97         struct dt_object        ofo_obj;
98 };
99
100 static inline struct ofd_object *ofd_obj(struct lu_object *o)
101 {
102         return container_of0(o, struct ofd_object, ofo_obj.do_lu);
103 }
104
105 /*
106  * Common data shared by obdofd-level handlers. This is allocated per-thread
107  * to reduce stack consumption.
108  */
109 struct ofd_thread_info {
110         const struct lu_env             *fti_env;
111
112         struct obd_export               *fti_exp;
113         struct lu_fid                    fti_fid;
114         struct lu_attr                   fti_attr;
115         union {
116                 char                     name[64]; /* for ofd_init0() */
117                 struct obd_statfs        osfs;    /* for obdofd_statfs() */
118         } fti_u;
119
120         struct dt_object_format          fti_dof;
121         struct lu_buf                    fti_buf;
122         loff_t                           fti_off;
123 };
124
125 static inline int ofd_export_stats_init(struct ofd_device *ofd,
126                                         struct obd_export *exp, void *data)
127 {
128         return 0;
129 }
130
131 extern void target_recovery_fini(struct obd_device *obd);
132 extern void target_recovery_init(struct lu_target *lut, svc_handler_t handler);
133
134 /* ofd_capa.c */
135 int ofd_update_capa_key(struct ofd_device *ofd, struct lustre_capa_key *key);
136 int ofd_auth_capa(struct obd_export *exp, struct lu_fid *fid, obd_seq seq,
137                   struct lustre_capa *capa, __u64 opc);
138 void ofd_free_capa_keys(struct ofd_device *ofd);
139
140 /* ofd_dev.c */
141 extern struct lu_context_key ofd_thread_key;
142
143 /* ofd_obd.c */
144 extern struct obd_ops ofd_obd_ops;
145
146 /* ofd_fs.c */
147 obd_id ofd_last_id(struct ofd_device *ofd, obd_seq seq);
148 int ofd_group_load(const struct lu_env *env, struct ofd_device *ofd, int);
149 int ofd_fs_setup(const struct lu_env *env, struct ofd_device *ofd,
150                  struct obd_device *obd);
151 void ofd_fs_cleanup(const struct lu_env *env, struct ofd_device *ofd);
152
153 /* lproc_ofd.c */
154 void lprocfs_ofd_init_vars(struct lprocfs_static_vars *lvars);
155
156 static inline struct ofd_thread_info * ofd_info(const struct lu_env *env)
157 {
158         struct ofd_thread_info *info;
159
160         info = lu_context_key_get(&env->le_ctx, &ofd_thread_key);
161         LASSERT(info);
162         LASSERT(info->fti_env);
163         LASSERT(info->fti_env == env);
164         return info;
165 }
166
167 static inline struct ofd_thread_info * ofd_info_init(const struct lu_env *env,
168                                                      struct obd_export *exp)
169 {
170         struct ofd_thread_info *info;
171
172         info = lu_context_key_get(&env->le_ctx, &ofd_thread_key);
173         LASSERT(info);
174         LASSERT(info->fti_exp == NULL);
175         LASSERT(info->fti_env == NULL);
176
177         info->fti_env = env;
178         info->fti_exp = exp;
179         return info;
180 }
181
182 #endif /* _OFD_INTERNAL_H */