Whamcloud - gitweb
c3ff249b3af77b0d90011c1b2f30cdb222629b07
[fs/lustre-release.git] / lustre / include / linux / lustre_log.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <info@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * Generic infrastructure for managing a collection of logs.
22  *
23  * These logs are used for:
24  *
25  * - orphan recovery: OST adds record on create
26  * - mtime/size consistency: the OST adds a record on first write
27  * - open/unlinked objects: OST adds a record on destroy
28  *
29  * - mds unlink log: the MDS adds an entry upon delete
30  *
31  * - raid1 replication log between OST's
32  * - MDS replication logs
33  */
34
35 #ifndef _LUSTRE_LOG_H
36 #define _LUSTRE_LOG_H
37
38 #include <linux/obd.h>
39 #include <linux/lustre_idl.h>
40
41 #define LOG_NAME_LIMIT(logname, name)                   \
42         snprintf(logname, sizeof(logname), "LOGS/%s", name)
43
44 struct plain_handle_data {
45         struct list_head   phd_entry;
46         struct llog_handle     *phd_cat_handle; 
47         struct llog_cookie phd_cookie; /* cookie of this log in its cat */
48         int                phd_last_idx;
49 };
50
51 struct cat_handle_data {
52         struct list_head        chd_head;
53         struct llog_handle     *chd_current_log; /* currently open log */
54 };
55
56 /* In-memory descriptor for a log object or log catalog */
57 struct llog_handle {
58         struct rw_semaphore     lgh_lock;
59         struct llog_logid       lgh_id;              /* id of this log */
60         struct llog_log_hdr    *lgh_hdr;
61         struct file            *lgh_file;
62         int                     lgh_last_idx;
63         struct llog_ctxt       *lgh_ctxt;
64         union {
65                 struct plain_handle_data phd;
66                 struct cat_handle_data   chd;
67         } u;
68 };
69
70 #define LLOG_EEMPTY 4711
71
72 /* llog.c  -  general API */
73 typedef int (*llog_cb_t)(struct llog_handle *, struct llog_rec_hdr *, void *);
74 int llog_init_handle(struct llog_handle *handle, int flags, 
75                      struct obd_uuid *uuid);
76 int llog_process(struct llog_handle *loghandle, llog_cb_t cb, void *data);
77 extern struct llog_handle *llog_alloc_handle(void);
78 extern void llog_free_handle(struct llog_handle *handle);
79 extern int llog_close(struct llog_handle *cathandle);
80 extern int llog_cancel_rec(struct llog_handle *loghandle, int index);
81
82 /* llog_cat.c   -  catalog api */
83 struct llog_process_data {
84         void *lpd_data;
85         llog_cb_t lpd_cb;
86 };
87 int llog_cat_put(struct llog_handle *cathandle);
88 int llog_cat_add_rec(struct llog_handle *cathandle, struct llog_rec_hdr *rec,
89                      struct llog_cookie *reccookie, void *buf);
90 int llog_cat_cancel_records(struct llog_handle *cathandle, int count,
91                             struct llog_cookie *cookies);
92 int llog_cat_process(struct llog_handle *cat_llh, llog_cb_t cb, void *data);
93
94 /* llog_obd.c */
95 int llog_setup(struct obd_device *obd, int index, struct obd_device *disk_obd,
96                int count,  struct llog_logid *logid, struct llog_operations *op);
97 int llog_cleanup(struct llog_ctxt *);
98 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp);
99 int llog_add(struct llog_ctxt *ctxt,
100                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
101                         struct llog_cookie *logcookies, int numcookies);
102 int llog_cancel(struct llog_ctxt *, struct lov_stripe_md *lsm,
103                     int count, struct llog_cookie *cookies, int flags);
104
105 int llog_obd_origin_setup(struct obd_device *obd, int index, 
106                           struct obd_device *disk_obd, int count, 
107                           struct llog_logid *logid);
108 int llog_obd_origin_cleanup(struct llog_ctxt *ctxt);
109 int llog_obd_origin_add(struct llog_ctxt *ctxt,
110                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
111                         struct llog_cookie *logcookies, int numcookies);
112
113 int llog_cat_initialize(struct obd_device *obd, int count);
114 int obd_llog_init(struct obd_device *obd, struct obd_device *disk_obd,
115                   int count, struct llog_logid *logid);
116
117 int obd_llog_finish(struct obd_device *obd, int count);
118
119 /* llog_ioctl.c */
120 int llog_ioctl(struct llog_ctxt *ctxt, int cmd, struct obd_ioctl_data *data);
121 int llog_catlog_list(struct obd_device *obd, int count, 
122                      struct obd_ioctl_data *data);
123
124 /* llog_net.c */
125 int llog_initiator_connect(struct llog_ctxt *ctxt);
126 int llog_receptor_accept(struct llog_ctxt *ctxt, struct obd_import *imp);
127 int llog_origin_connect(struct llog_ctxt *ctxt, int count,
128                         struct llog_logid *logid, struct llog_ctxt_gen *gen);
129 int llog_handle_connect(struct ptlrpc_request *req);
130
131 /* recov_thread.c */
132 int llog_obd_repl_cancel(struct llog_ctxt *ctxt,
133                          struct lov_stripe_md *lsm, int count,
134                          struct llog_cookie *cookies, int flags);
135 int llog_obd_repl_sync(struct llog_ctxt *ctxt, struct obd_export *exp);
136 int llog_repl_connect(struct llog_ctxt *ctxt, int count, 
137                       struct llog_logid *logid, struct llog_ctxt_gen *gen);
138
139 struct llog_operations {
140         int (*lop_write_rec)(struct llog_handle *loghandle,
141                              struct llog_rec_hdr *rec, 
142                              struct llog_cookie *logcookies, 
143                              int numcookies, 
144                              void *,
145                              int idx);
146         int (*lop_destroy)(struct llog_handle *handle);
147         int (*lop_next_block)(struct llog_handle *h, 
148                               int *curr_idx,  
149                               int next_idx, 
150                               __u64 *offset, 
151                               void *buf, 
152                               int len);
153         int (*lop_create)(struct llog_ctxt *ctxt, struct llog_handle **,
154                           struct llog_logid *logid, char *name);
155         int (*lop_close)(struct llog_handle *handle);
156         int (*lop_read_header)(struct llog_handle *handle);
157
158         int (*lop_setup)(struct obd_device *obd, int ctxt_idx, 
159                          struct obd_device *disk_obd, int count, 
160                          struct llog_logid *logid);
161         int (*lop_sync)(struct llog_ctxt *ctxt, struct obd_export *exp);
162         int (*lop_cleanup)(struct llog_ctxt *ctxt);
163         int (*lop_add)(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec, 
164                        struct lov_stripe_md *lsm, 
165                        struct llog_cookie *logcookies, int numcookies);
166         int (*lop_cancel)(struct llog_ctxt *ctxt, struct lov_stripe_md *lsm,
167                           int count, struct llog_cookie *cookies, int flags);
168         int (*lop_connect)(struct llog_ctxt *ctxt, int count,
169                            struct llog_logid *logid, struct llog_ctxt_gen *gen);
170         /* XXX add 2 more: commit callbacks and llog recovery functions */
171 };
172
173 /* llog_lvfs.c */
174 int llog_get_cat_list(struct obd_device *obd, struct obd_device *disk_obd,
175                       char *name, int count, struct llog_logid *idarray);
176 extern struct llog_operations llog_lvfs_ops;
177
178
179 struct llog_ctxt {
180         int                      loc_idx; /* my index the obd array of ctxt's */
181         struct llog_ctxt_gen     loc_gen; 
182         struct obd_device       *loc_obd; /* points back to the containing obd*/
183         struct obd_export       *loc_exp;
184         struct obd_import       *loc_imp; /* to use in RPC's: can be backward 
185                                              pointing import */
186         struct llog_operations  *loc_logops;
187         struct llog_handle      *loc_handle;
188         struct llog_canceld_ctxt *loc_llcd;
189         struct semaphore         loc_sem; /* protects loc_llcd */
190         void                    *llog_proc_cb;
191 };
192
193 static inline void log_gen_init(struct llog_ctxt *ctxt)
194 {
195         struct obd_device *obd = ctxt->loc_exp->exp_obd;
196
197         if (!strcmp(obd->obd_type->typ_name, "mds"))
198                 ctxt->loc_gen.mnt_cnt = obd->u.mds.mds_mount_count;
199         else if (!strstr(obd->obd_type->typ_name, "filter")) {
200                 ctxt->loc_gen.mnt_cnt = obd->u.filter.fo_mount_count; 
201         }
202         else
203                 ctxt->loc_gen.mnt_cnt = 0; 
204 }
205
206 static inline int log_gen_lt(struct llog_ctxt_gen a, struct llog_ctxt_gen b)
207 {
208         if (a.mnt_cnt < b.mnt_cnt)
209                 return 1;
210         if (a.mnt_cnt > b.mnt_cnt)
211                 return 0;
212         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
213 }
214
215
216 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
217                                struct llog_operations **lop)
218 {
219         if (ctxt == NULL)
220                 return -ENOTCONN;
221         *lop = ctxt->loc_logops;
222         if (*lop == NULL)
223                 return -EOPNOTSUPP;
224         return 0;
225 }
226
227 static inline int llog_handle2ops(struct llog_handle *loghandle,
228                                   struct llog_operations **lop)
229 {
230         if (loghandle == NULL)
231                 return -EINVAL;
232         return llog_obd2ops(loghandle->lgh_ctxt, lop);
233 }
234
235 static inline int llog_data_len(int len)
236 {
237         return size_round(len);
238 }
239
240 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
241                                                  int index)
242 {
243         if (index < 0 || index >= LLOG_MAX_CTXTS)
244                 return NULL;
245         else
246                 return obd->obd_llog_ctxt[index];
247 }
248
249 static inline int llog_write_rec(struct llog_handle *handle,
250                                  struct llog_rec_hdr *rec,
251                                  struct llog_cookie *logcookies,
252                                  int numcookies, void *buf, int idx)
253 {
254         struct llog_operations *lop;
255         int rc, buflen;
256         ENTRY;
257         
258         rc = llog_handle2ops(handle, &lop);
259         if (rc)
260                 RETURN(rc);
261         if (lop->lop_write_rec == NULL)
262                 RETURN(-EOPNOTSUPP);
263
264         if (buf)
265                 buflen = le32_to_cpu(rec->lrh_len) + sizeof(struct llog_rec_hdr)
266                                 + sizeof(struct llog_rec_tail);
267         else
268                 buflen = le32_to_cpu(rec->lrh_len);
269         LASSERT(size_round(buflen) == buflen);
270
271         rc = lop->lop_write_rec(handle, rec, logcookies, numcookies, buf, idx);
272         RETURN(rc);
273 }
274
275 static inline int llog_read_header(struct llog_handle *handle)
276 {
277         struct llog_operations *lop;
278         int rc;
279         ENTRY;
280         
281         rc = llog_handle2ops(handle, &lop);
282         if (rc)
283                 RETURN(rc);
284         if (lop->lop_read_header == NULL)
285                 RETURN(-EOPNOTSUPP);
286
287         rc = lop->lop_read_header(handle);
288         RETURN(rc);
289 }
290
291 static inline int llog_destroy(struct llog_handle *handle)
292 {
293         struct llog_operations *lop;
294         int rc;
295         ENTRY;
296         
297         rc = llog_handle2ops(handle, &lop);
298         if (rc)
299                 RETURN(rc);
300         if (lop->lop_destroy == NULL)
301                 RETURN(-EOPNOTSUPP);
302
303         rc = lop->lop_destroy(handle);
304         RETURN(rc);
305 }
306
307 #if 0
308 static inline int llog_cancel(struct obd_export *exp,
309                               struct lov_stripe_md *lsm, int count,
310                               struct llog_cookie *cookies, int flags)
311 {
312         struct llog_operations *lop;
313         int rc;
314         ENTRY;
315
316         rc = llog_handle2ops(loghandle, &lop);
317         if (rc)
318                 RETURN(rc);
319         if (lop->lop_cancel == NULL)
320                 RETURN(-EOPNOTSUPP);
321
322         rc = lop->lop_cancel(exp, lsm, count, cookies, flags);
323         RETURN(rc);
324 }
325 #endif 
326
327 static inline int llog_next_block(struct llog_handle *loghandle, int *cur_idx,
328                                   int next_idx, __u64 *cur_offset, void *buf,
329                                   int len)
330 {
331         struct llog_operations *lop;
332         int rc;
333         ENTRY;
334
335         rc = llog_handle2ops(loghandle, &lop);
336         if (rc)
337                 RETURN(rc);
338         if (lop->lop_next_block == NULL)
339                 RETURN(-EOPNOTSUPP);
340
341         rc = lop->lop_next_block(loghandle, cur_idx, next_idx, cur_offset, buf,
342                                  len);
343         RETURN(rc);
344 }
345
346 static inline int llog_create(struct llog_ctxt *ctxt, 
347                               struct llog_handle **res,
348                               struct llog_logid *logid, char *name)
349 {
350         struct llog_operations *lop;
351         int rc;
352         ENTRY;
353
354         rc = llog_obd2ops(ctxt, &lop);
355         if (rc)
356                 RETURN(rc);
357         if (lop->lop_create == NULL)
358                 RETURN(-EOPNOTSUPP);
359
360         rc = lop->lop_create(ctxt, res, logid, name);
361         RETURN(rc);
362 }
363
364 static inline int llog_connect(struct llog_ctxt *ctxt, int count,
365                                struct llog_logid *logid,
366                                struct llog_ctxt_gen *gen)
367 {
368         struct llog_operations *lop;
369         int rc;
370         ENTRY;
371
372         rc = llog_obd2ops(ctxt, &lop);
373         if (rc)
374                 RETURN(rc);
375         if (lop->lop_connect == NULL)
376                 RETURN(-EOPNOTSUPP);
377
378         rc = lop->lop_connect(ctxt, count, logid, gen);
379         RETURN(rc);
380 }
381
382 #endif