Whamcloud - gitweb
LU-1818 quota: en/disable quota enforcement via conf_param
[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, 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 _MGS_INTERNAL_H
38 #define _MGS_INTERNAL_H
39
40 #ifdef __KERNEL__
41 # include <linux/fs.h>
42 #endif
43 #include <libcfs/libcfs.h>
44 #include <lustre/lustre_idl.h>
45 #include <lustre_lib.h>
46 #include <lustre_dlm.h>
47 #include <lustre_log.h>
48 #include <lustre_export.h>
49
50 #define MGSSELF_NAME    "_mgs"
51
52 #define MGS_SERVICE_WATCHDOG_FACTOR 2
53
54 /* -- imperative recovery control data structures -- */
55 /**
56  * restarting targets.
57  */
58 struct mgs_nidtbl;
59 struct mgs_nidtbl_target {
60         cfs_list_t              mnt_list;
61         struct mgs_nidtbl      *mnt_fs;
62         u64                     mnt_version;
63         int                     mnt_type; /* OST or MDT */
64         cfs_time_t              mnt_last_active;
65         struct mgs_target_info  mnt_mti;
66 };
67
68 enum {
69         IR_FULL = 0,
70         IR_STARTUP,
71         IR_DISABLED,
72         IR_PARTIAL
73 };
74
75 #define IR_STRINGS { "full", "startup", "disabled", "partial" }
76
77 /**
78  */
79 struct fs_db;
80
81 /**
82  * maintain fs client nodes of mgs.
83  */
84 struct mgs_fsc {
85         struct fs_db      *mfc_fsdb;
86         /**
87          * Where the fs client comes from.
88          */
89         struct obd_export *mfc_export;
90         /**
91          * list of fs clients from the same export,
92          * protected by mgs_export_data->med_lock
93          */
94         cfs_list_t         mfc_export_list;
95         /**
96          * list of fs clients in the same fsdb, protected by fsdb->fsdb_mutex
97          */
98         cfs_list_t        mfc_fsdb_list;
99         unsigned          mfc_ir_capable:1;
100 };
101
102 struct mgs_nidtbl {
103         struct fs_db *mn_fsdb;
104         struct file  *mn_version_file;
105         cfs_mutex_t   mn_lock;
106         u64           mn_version;
107         int           mn_nr_targets;
108         cfs_list_t    mn_targets;
109 };
110
111 struct mgs_tgt_srpc_conf {
112         struct mgs_tgt_srpc_conf  *mtsc_next;
113         char                      *mtsc_tgt;
114         struct sptlrpc_rule_set    mtsc_rset;
115 };
116
117 #define INDEX_MAP_SIZE  8192     /* covers indicies to FFFF */
118
119 #define FSDB_LOG_EMPTY          (0)  /* missing client log */
120 #define FSDB_OLDLOG14           (1)  /* log starts in old (1.4) style */
121 #define FSDB_REVOKING_LOCK      (2)  /* DLM lock is being revoked */
122 #define FSDB_MGS_SELF           (3)  /* for '_mgs', used by sptlrpc */
123 #define FSDB_OSCNAME18          (4)  /* old 1.8 style OSC naming */
124 #define FSDB_UDESC              (5)  /* sptlrpc user desc, will be obsolete */
125
126 struct fs_db {
127         char              fsdb_name[9];
128         cfs_list_t        fsdb_list;           /* list of databases */
129         cfs_mutex_t       fsdb_mutex;
130         void             *fsdb_ost_index_map;  /* bitmap of used indicies */
131         void             *fsdb_mdt_index_map;  /* bitmap of used indicies */
132         int               fsdb_mdt_count;
133         /* COMPAT_146 these items must be recorded out of the old client log */
134         char             *fsdb_clilov;       /* COMPAT_146 client lov name */
135         char             *fsdb_clilmv;
136         char             *fsdb_mdtlov;       /* COMPAT_146 mds lov name */
137         char             *fsdb_mdtlmv;
138         char             *fsdb_mdc;          /* COMPAT_146 mdc name */
139         /* end COMPAT_146 */
140         unsigned long     fsdb_flags;
141         __u32             fsdb_gen;
142
143         /* in-memory copy of the srpc rules, guarded by fsdb_lock */
144         struct sptlrpc_rule_set   fsdb_srpc_gen;
145         struct mgs_tgt_srpc_conf *fsdb_srpc_tgt;
146
147         /* list of fs clients, mgs_fsc. protected by mgs_mutex */
148         cfs_list_t           fsdb_clients;
149         int                  fsdb_nonir_clients;
150         int                  fsdb_ir_state;
151
152         /* Target NIDs Table */
153         struct mgs_nidtbl    fsdb_nidtbl;
154
155         /* async thread to notify clients */
156         struct obd_device   *fsdb_obd;
157         cfs_waitq_t          fsdb_notify_waitq;
158         cfs_completion_t     fsdb_notify_comp;
159         cfs_time_t           fsdb_notify_start;
160         cfs_atomic_t         fsdb_notify_phase;
161         volatile int         fsdb_notify_async:1,
162                              fsdb_notify_stop:1;
163         /* statistic data */
164         unsigned int         fsdb_notify_total;
165         unsigned int         fsdb_notify_max;
166         unsigned int         fsdb_notify_count;
167 };
168
169 /* mgs_llog.c */
170 int class_dentry_readdir(struct obd_device *obd, struct dentry *dir,
171                          struct vfsmount *inmnt,
172                          cfs_list_t *dentry_list);
173
174 int mgs_init_fsdb_list(struct obd_device *obd);
175 int mgs_cleanup_fsdb_list(struct obd_device *obd);
176 int mgs_find_or_make_fsdb(struct obd_device *obd, char *name,
177                           struct fs_db **dbh);
178 struct fs_db *mgs_find_fsdb(struct obd_device *obd, char *fsname);
179 int mgs_get_fsdb_srpc_from_llog(struct obd_device *obd, struct fs_db *fsdb);
180 int mgs_check_index(struct obd_device *obd, struct mgs_target_info *mti);
181 int mgs_check_failnid(struct obd_device *obd, struct mgs_target_info *mti);
182 int mgs_write_log_target(struct obd_device *obd, struct mgs_target_info *mti,
183                          struct fs_db *fsdb);
184 int mgs_upgrade_sv_14(struct obd_device *obd, struct mgs_target_info *mti,
185                       struct fs_db *fsdb);
186 int mgs_erase_log(struct obd_device *obd, char *name);
187 int mgs_erase_logs(struct obd_device *obd, char *fsname);
188 int mgs_setparam(struct obd_device *obd, struct lustre_cfg *lcfg, char *fsname);
189
190 int mgs_pool_cmd(struct obd_device *obd, enum lcfg_command_type cmd,
191                  char *poolname, char *fsname, char *ostname);
192
193 /* mgs_handler.c */
194 int  mgs_get_lock(struct obd_device *obd, struct ldlm_res_id *res,
195                   struct lustre_handle *lockh);
196 int  mgs_put_lock(struct lustre_handle *lockh);
197 void mgs_revoke_lock(struct obd_device *obd, struct fs_db *fsdb, int type);
198
199 /* mgs_nids.c */
200 int  mgs_ir_update(struct obd_device *obd, struct mgs_target_info *mti);
201 int  mgs_ir_init_fs(struct obd_device *obd, struct fs_db *fsdb);
202 void mgs_ir_fini_fs(struct obd_device *obd, struct fs_db *fsdb);
203 void mgs_ir_notify_complete(struct fs_db *fsdb);
204 int  mgs_get_ir_logs(struct ptlrpc_request *req);
205 int  lprocfs_wr_ir_state(struct file *file, const char *buffer,
206                            unsigned long count, void *data);
207 int  lprocfs_rd_ir_state(struct seq_file *seq, void *data);
208 int  lprocfs_wr_ir_timeout(struct file *file, const char *buffer,
209                            unsigned long count, void *data);
210 int  lprocfs_rd_ir_timeout(char *page, char **start, off_t off, int count,
211                            int *eof, void *data);
212 void mgs_fsc_cleanup(struct obd_export *exp);
213 void mgs_fsc_cleanup_by_fsdb(struct fs_db *fsdb);
214 int  mgs_fsc_attach(struct obd_export *exp, char *fsname);
215
216 /* mgs_fs.c */
217 int mgs_export_stats_init(struct obd_device *obd, struct obd_export *exp,
218                           void *localdata);
219 int mgs_client_free(struct obd_export *exp);
220 int mgs_fs_setup(struct obd_device *obd, struct vfsmount *mnt);
221 int mgs_fs_cleanup(struct obd_device *obddev);
222
223 #define strsuf(buf, suffix) (strcmp((buf)+strlen(buf)-strlen(suffix), (suffix)))
224 #ifdef LPROCFS
225 int lproc_mgs_setup(struct obd_device *dev);
226 int lproc_mgs_cleanup(struct obd_device *obd);
227 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb);
228 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb);
229 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars);
230 #else
231 static inline int lproc_mgs_setup(struct obd_device *dev)
232 {return 0;}
233 static inline int lproc_mgs_cleanup(struct obd_device *obd)
234 {return 0;}
235 static inline int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
236 {return 0;}
237 static inline int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
238 {return 0;}
239 static void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
240 {
241         memset(lvars, 0, sizeof(*lvars));
242 }
243 #endif
244
245 /* mgs/lproc_mgs.c */
246 enum {
247         LPROC_MGS_CONNECT = 0,
248         LPROC_MGS_DISCONNECT,
249         LPROC_MGS_EXCEPTION,
250         LPROC_MGS_TARGET_REG,
251         LPROC_MGS_TARGET_DEL,
252         LPROC_MGS_LAST
253 };
254 void mgs_counter_incr(struct obd_export *exp, int opcode);
255 void mgs_stats_counter_init(struct lprocfs_stats *stats);
256
257 #endif /* _MGS_INTERNAL_H */