Whamcloud - gitweb
LU-4783 mgs: start params log during mgs initialization
[fs/lustre-release.git] / lustre / mgs / mgs_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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 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
37 #ifndef _MGS_INTERNAL_H
38 #define _MGS_INTERNAL_H
39
40 #include <libcfs/libcfs.h>
41 #include <lustre_log.h>
42 #include <lustre_export.h>
43 #include <dt_object.h>
44
45 #define MGSSELF_NAME    "_mgs"
46
47 #define MGS_SERVICE_WATCHDOG_FACTOR 2
48
49 /* -- imperative recovery control data structures -- */
50 /**
51  * restarting targets.
52  */
53 struct mgs_nidtbl;
54 struct mgs_nidtbl_target {
55         cfs_list_t              mnt_list;
56         struct mgs_nidtbl      *mnt_fs;
57         u64                     mnt_version;
58         int                     mnt_type; /* OST or MDT */
59         cfs_time_t              mnt_last_active;
60         struct mgs_target_info  mnt_mti;
61 };
62
63 enum {
64         IR_FULL = 0,
65         IR_STARTUP,
66         IR_DISABLED,
67         IR_PARTIAL
68 };
69
70 #define IR_STRINGS { "full", "startup", "disabled", "partial" }
71
72 /**
73  */
74 struct fs_db;
75
76 /**
77  * maintain fs client nodes of mgs.
78  */
79 struct mgs_fsc {
80         struct fs_db      *mfc_fsdb;
81         /**
82          * Where the fs client comes from.
83          */
84         struct obd_export *mfc_export;
85         /**
86          * list of fs clients from the same export,
87          * protected by mgs_export_data->med_lock
88          */
89         cfs_list_t         mfc_export_list;
90         /**
91          * list of fs clients in the same fsdb, protected by fsdb->fsdb_mutex
92          */
93         cfs_list_t        mfc_fsdb_list;
94         unsigned          mfc_ir_capable:1;
95 };
96
97 struct mgs_nidtbl {
98         struct fs_db *mn_fsdb;
99         struct file  *mn_version_file;
100         struct mutex    mn_lock;
101         u64           mn_version;
102         int           mn_nr_targets;
103         cfs_list_t    mn_targets;
104 };
105
106 struct mgs_tgt_srpc_conf {
107         struct mgs_tgt_srpc_conf  *mtsc_next;
108         char                      *mtsc_tgt;
109         struct sptlrpc_rule_set    mtsc_rset;
110 };
111
112 #define INDEX_MAP_SIZE  8192     /* covers indicies to FFFF */
113
114 #define FSDB_LOG_EMPTY          (0)  /* missing client log */
115 #define FSDB_OLDLOG14           (1)  /* log starts in old (1.4) style */
116 #define FSDB_REVOKING_LOCK      (2)  /* DLM lock is being revoked */
117 #define FSDB_MGS_SELF           (3)  /* for '_mgs', used by sptlrpc */
118 #define FSDB_OSCNAME18          (4)  /* old 1.8 style OSC naming */
119 #define FSDB_UDESC              (5)  /* sptlrpc user desc, will be obsolete */
120 #define FSDB_REVOKING_PARAMS    (6)  /* DLM lock is being revoked */
121
122 struct fs_db {
123         char              fsdb_name[9];
124         cfs_list_t        fsdb_list;           /* list of databases */
125         struct mutex      fsdb_mutex;
126         void             *fsdb_ost_index_map;  /* bitmap of used indicies */
127         void             *fsdb_mdt_index_map;  /* bitmap of used indicies */
128         int               fsdb_mdt_count;
129         char             *fsdb_clilov;       /* COMPAT_146 client lov name */
130         char             *fsdb_clilmv;
131         unsigned long     fsdb_flags;
132         __u32             fsdb_gen;
133
134         /* in-memory copy of the srpc rules, guarded by fsdb_lock */
135         struct sptlrpc_rule_set   fsdb_srpc_gen;
136         struct mgs_tgt_srpc_conf *fsdb_srpc_tgt;
137
138         /* list of fs clients, mgs_fsc. protected by mgs_mutex */
139         cfs_list_t           fsdb_clients;
140         int                  fsdb_nonir_clients;
141         int                  fsdb_ir_state;
142
143         /* Target NIDs Table */
144         struct mgs_nidtbl    fsdb_nidtbl;
145
146         /* async thread to notify clients */
147         struct mgs_device    *fsdb_mgs;
148         wait_queue_head_t    fsdb_notify_waitq;
149         struct completion    fsdb_notify_comp;
150         cfs_time_t           fsdb_notify_start;
151         cfs_atomic_t         fsdb_notify_phase;
152         volatile unsigned int fsdb_notify_async:1,
153                              fsdb_notify_stop:1;
154         /* statistic data */
155         unsigned int         fsdb_notify_total;
156         unsigned int         fsdb_notify_max;
157         unsigned int         fsdb_notify_count;
158 };
159
160 struct mgs_device {
161         struct dt_device                 mgs_dt_dev;
162         struct ptlrpc_service           *mgs_service;
163         struct dt_device                *mgs_bottom;
164         struct obd_export               *mgs_bottom_exp;
165         struct dt_object                *mgs_configs_dir;
166         struct dt_object                *mgs_nidtbl_dir;
167         cfs_list_t                       mgs_fs_db_list;
168         spinlock_t                       mgs_lock; /* covers mgs_fs_db_list */
169         cfs_proc_dir_entry_t            *mgs_proc_live;
170         cfs_proc_dir_entry_t            *mgs_proc_osd;
171         cfs_proc_dir_entry_t            *mgs_proc_fstype;
172         cfs_proc_dir_entry_t            *mgs_proc_mntdev;
173         cfs_time_t                       mgs_start_time;
174         struct obd_device               *mgs_obd;
175         struct local_oid_storage        *mgs_los;
176         struct mutex                     mgs_mutex;
177         struct lu_target                 mgs_lut;
178 };
179
180 /* this is a top object */
181 struct mgs_object {
182         struct lu_object_header mgo_header;
183         struct dt_object        mgo_obj;
184         int                     mgo_no_attrs;
185         int                     mgo_reserved;
186 };
187
188 int mgs_init_fsdb_list(struct mgs_device *mgs);
189 int mgs_cleanup_fsdb_list(struct mgs_device *mgs);
190 int mgs_params_fsdb_setup(const struct lu_env *env, struct mgs_device *mgs,
191                           struct fs_db *fsdb);
192 int mgs_params_fsdb_cleanup(const struct lu_env *env, struct mgs_device *mgs);
193 int mgs_find_or_make_fsdb(const struct lu_env *env, struct mgs_device *mgs,
194                           char *name, struct fs_db **dbh);
195 struct fs_db *mgs_find_fsdb(struct mgs_device *mgs, char *fsname);
196 int mgs_get_fsdb_srpc_from_llog(const struct lu_env *env,
197                                 struct mgs_device *mgs, struct fs_db *fsdb);
198 int mgs_check_index(const struct lu_env *env, struct mgs_device *mgs,
199                     struct mgs_target_info *mti);
200 int mgs_check_failnid(const struct lu_env *env, struct mgs_device *mgs,
201                       struct mgs_target_info *mti);
202 int mgs_write_log_target(const struct lu_env *env, struct mgs_device *mgs,
203                          struct mgs_target_info *mti, struct fs_db *fsdb);
204 int mgs_replace_nids(const struct lu_env *env, struct mgs_device *mgs,
205                      char *devname, char *nids);
206 int mgs_erase_log(const struct lu_env *env, struct mgs_device *mgs,
207                   char *name);
208 int mgs_erase_logs(const struct lu_env *env, struct mgs_device *mgs,
209                    char *fsname);
210 int mgs_setparam(const struct lu_env *env, struct mgs_device *mgs,
211                  struct lustre_cfg *lcfg, char *fsname);
212 int mgs_list_logs(const struct lu_env *env, struct mgs_device *mgs,
213                   struct obd_ioctl_data *data);
214 int mgs_pool_cmd(const struct lu_env *env, struct mgs_device *mgs,
215                  enum lcfg_command_type cmd, char *poolname, char *fsname,
216                  char *ostname);
217
218 /* mgs_handler.c */
219 int  mgs_get_lock(struct obd_device *obd, struct ldlm_res_id *res,
220                   struct lustre_handle *lockh);
221 int  mgs_put_lock(struct lustre_handle *lockh);
222 void mgs_revoke_lock(struct mgs_device *mgs, struct fs_db *fsdb, int type);
223
224 /* mgs_nids.c */
225 int  mgs_ir_update(const struct lu_env *env, struct mgs_device *mgs,
226                    struct mgs_target_info *mti);
227 int mgs_ir_init_fs(const struct lu_env *env, struct mgs_device *mgs,
228                    struct fs_db *fsdb);
229 void mgs_ir_fini_fs(struct mgs_device *mgs, struct fs_db *fsdb);
230 void mgs_ir_notify_complete(struct fs_db *fsdb);
231 int  mgs_get_ir_logs(struct ptlrpc_request *req);
232 int  lprocfs_wr_ir_state(struct file *file, const char *buffer,
233                            unsigned long count, void *data);
234 int  lprocfs_rd_ir_state(struct seq_file *seq, void *data);
235 int  lprocfs_wr_ir_timeout(struct file *file, const char *buffer,
236                            unsigned long count, void *data);
237 int  lprocfs_rd_ir_timeout(char *page, char **start, off_t off, int count,
238                            int *eof, void *data);
239 void mgs_fsc_cleanup(struct obd_export *exp);
240 void mgs_fsc_cleanup_by_fsdb(struct fs_db *fsdb);
241 int  mgs_fsc_attach(const struct lu_env *env, struct obd_export *exp,
242                     char *fsname);
243
244 /* mgs_fs.c */
245 int mgs_export_stats_init(struct obd_device *obd, struct obd_export *exp,
246                           void *localdata);
247 int mgs_client_free(struct obd_export *exp);
248 int mgs_fs_setup(const struct lu_env *env, struct mgs_device *m);
249 int mgs_fs_cleanup(const struct lu_env *env, struct mgs_device *m);
250
251 #ifdef LPROCFS
252 int lproc_mgs_setup(struct mgs_device *mgs, const char *osd_name);
253 void lproc_mgs_cleanup(struct mgs_device *mgs);
254 int lproc_mgs_add_live(struct mgs_device *mgs, struct fs_db *fsdb);
255 int lproc_mgs_del_live(struct mgs_device *mgs, struct fs_db *fsdb);
256 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars);
257 #else
258 static inline int lproc_mgs_setup(struct mgs_device *mgs, const char *osd_name)
259 {return 0;}
260 static inline void lproc_mgs_cleanup(struct mgs_device *mgs)
261 {}
262 static inline int lproc_mgs_add_live(struct mgs_device *mgs, struct fs_db *fsdb)
263 {return 0;}
264 static inline int lproc_mgs_del_live(struct mgs_device *mgs, struct fs_db *fsdb)
265 {return 0;}
266 static void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
267 {
268         memset(lvars, 0, sizeof(*lvars));
269 }
270 #endif
271
272 /* mgs/lproc_mgs.c */
273 enum {
274         LPROC_MGS_CONNECT = 0,
275         LPROC_MGS_DISCONNECT,
276         LPROC_MGS_EXCEPTION,
277         LPROC_MGS_TARGET_REG,
278         LPROC_MGS_TARGET_DEL,
279         LPROC_MGS_LAST
280 };
281 void mgs_counter_incr(struct obd_export *exp, int opcode);
282 void mgs_stats_counter_init(struct lprocfs_stats *stats);
283
284 struct temp_comp {
285         struct mgs_target_info  *comp_tmti;
286         struct mgs_target_info  *comp_mti;
287         struct fs_db            *comp_fsdb;
288         struct obd_device       *comp_obd;
289 };
290
291 struct mgs_thread_info {
292         struct lustre_cfg_bufs  mgi_bufs;
293         char                    mgi_fsname[MTI_NAME_MAXLEN];
294         struct cfg_marker       mgi_marker;
295         struct temp_comp        mgi_comp;
296 };
297
298 extern struct lu_context_key mgs_thread_key;
299
300 static inline struct mgs_thread_info *mgs_env_info(const struct lu_env *env)
301 {
302         struct mgs_thread_info  *info;
303         int                     rc;
304
305         info = lu_context_key_get(&env->le_ctx, &mgs_thread_key);
306         if (info == NULL) {
307                 rc = lu_env_refill((struct lu_env *)env);
308                 if (rc != 0)
309                         return ERR_PTR(rc);
310                 info = lu_context_key_get(&env->le_ctx, &mgs_thread_key);
311         }
312         LASSERT(info != NULL);
313         return info;
314 }
315
316 extern const struct lu_device_operations mgs_lu_ops;
317
318 static inline int lu_device_is_mgs(struct lu_device *d)
319 {
320         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &mgs_lu_ops);
321 }
322
323 static inline struct mgs_device* lu2mgs_dev(struct lu_device *d)
324 {
325         LASSERT(lu_device_is_mgs(d));
326         return container_of0(d, struct mgs_device, mgs_dt_dev.dd_lu_dev);
327 }
328
329 static inline struct mgs_device *exp2mgs_dev(struct obd_export *exp)
330 {
331         return lu2mgs_dev(exp->exp_obd->obd_lu_dev);
332 }
333
334 static inline struct lu_device *mgs2lu_dev(struct mgs_device *d)
335 {
336         return (&d->mgs_dt_dev.dd_lu_dev);
337 }
338
339 static inline struct mgs_device *dt2mgs_dev(struct dt_device *d)
340 {
341         LASSERT(lu_device_is_mgs(&d->dd_lu_dev));
342         return container_of0(d, struct mgs_device, mgs_dt_dev);
343 }
344
345 static inline struct mgs_object *lu2mgs_obj(struct lu_object *o)
346 {
347         LASSERT(ergo(o != NULL, lu_device_is_mgs(o->lo_dev)));
348         return container_of0(o, struct mgs_object, mgo_obj.do_lu);
349 }
350
351 static inline struct lu_object *mgs2lu_obj(struct mgs_object *obj)
352 {
353         return &obj->mgo_obj.do_lu;
354 }
355
356 static inline struct mgs_object *mgs_obj(const struct lu_object *o)
357 {
358         LASSERT(lu_device_is_mgs(o->lo_dev));
359         return container_of0(o, struct mgs_object, mgo_obj.do_lu);
360 }
361
362 static inline struct mgs_object *dt2mgs_obj(const struct dt_object *d)
363 {
364         return mgs_obj(&d->do_lu);
365 }
366
367 static inline struct dt_object* mgs_object_child(struct mgs_object *o)
368 {
369         return container_of0(lu_object_next(mgs2lu_obj(o)),
370                              struct dt_object, do_lu);
371 }
372
373 static inline struct dt_object *dt_object_child(struct dt_object *o)
374 {
375         return container_of0(lu_object_next(&(o)->do_lu),
376                              struct dt_object, do_lu);
377 }
378 struct mgs_direntry {
379         cfs_list_t  list;
380         char       *name;
381         int         len;
382 };
383
384 static inline void mgs_direntry_free(struct mgs_direntry *de)
385 {
386         if (de) {
387                 LASSERT(de->len);
388                 OBD_FREE(de->name, de->len);
389                 OBD_FREE_PTR(de);
390         }
391 }
392
393 static inline struct mgs_direntry *mgs_direntry_alloc(int len)
394 {
395         struct mgs_direntry *de;
396
397         OBD_ALLOC_PTR(de);
398         if (de == NULL)
399                 return NULL;
400
401         OBD_ALLOC(de->name, len);
402         if (de->name == NULL) {
403                 OBD_FREE_PTR(de);
404                 return NULL;
405         }
406
407         de->len = len;
408
409         return de;
410 }
411
412 /* mgs_llog.c */
413 int class_dentry_readdir(const struct lu_env *env, struct mgs_device *mgs,
414                          cfs_list_t *list);
415
416 #endif /* _MGS_INTERNAL_H */