Whamcloud - gitweb
ad60e1b462a3abef2fddcaf85230fefbdbe6f4b8
[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 extern struct llog_operations llog_lvfs_ops;
174
175
176 struct llog_ctxt {
177         int                      loc_idx; /* my index the obd array of ctxt's */
178         struct llog_ctxt_gen     loc_gen; 
179         struct obd_device       *loc_obd; /* points back to the containing obd*/
180         struct obd_export       *loc_exp;
181         struct obd_import       *loc_imp; /* to use in RPC's: can be backward 
182                                              pointing import */
183         struct llog_operations  *loc_logops;
184         struct llog_handle      *loc_handle;
185         struct llog_canceld_ctxt *loc_llcd;
186         struct semaphore         loc_sem; /* protects loc_llcd */
187         void                    *llog_proc_cb;
188 };
189
190 static inline void log_gen_init(struct llog_ctxt *ctxt)
191 {
192         struct obd_device *obd = ctxt->loc_exp->exp_obd;
193
194         if (!strcmp(obd->obd_type->typ_name, "mds"))
195                 ctxt->loc_gen.mnt_cnt = obd->u.mds.mds_mount_count;
196         else if (!strstr(obd->obd_type->typ_name, "filter")) {
197                 ctxt->loc_gen.mnt_cnt = obd->u.filter.fo_mount_count; 
198         }
199         else
200                 ctxt->loc_gen.mnt_cnt = 0; 
201 }
202
203 static inline int log_gen_lt(struct llog_ctxt_gen a, struct llog_ctxt_gen b)
204 {
205         if (a.mnt_cnt < b.mnt_cnt)
206                 return 1;
207         if (a.mnt_cnt > b.mnt_cnt)
208                 return 0;
209         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
210 }
211
212
213 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
214                                struct llog_operations **lop)
215 {
216         if (ctxt == NULL)
217                 return -ENOTCONN;
218         *lop = ctxt->loc_logops;
219         if (*lop == NULL)
220                 return -EOPNOTSUPP;
221         return 0;
222 }
223
224 static inline int llog_handle2ops(struct llog_handle *loghandle,
225                                   struct llog_operations **lop)
226 {
227         if (loghandle == NULL)
228                 return -EINVAL;
229         return llog_obd2ops(loghandle->lgh_ctxt, lop);
230 }
231
232 static inline int llog_data_len(int len)
233 {
234         return size_round(len);
235 }
236
237 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
238                                                  int index)
239 {
240         if (index < 0 || index >= LLOG_MAX_CTXTS)
241                 return NULL;
242         else
243                 return obd->obd_llog_ctxt[index];
244 }
245
246 static inline int llog_write_rec(struct llog_handle *handle,
247                                  struct llog_rec_hdr *rec,
248                                  struct llog_cookie *logcookies,
249                                  int numcookies, void *buf, int idx)
250 {
251         struct llog_operations *lop;
252         int rc, buflen;
253         ENTRY;
254         
255         rc = llog_handle2ops(handle, &lop);
256         if (rc)
257                 RETURN(rc);
258         if (lop->lop_write_rec == NULL)
259                 RETURN(-EOPNOTSUPP);
260
261         if (buf)
262                 buflen = le32_to_cpu(rec->lrh_len) + sizeof(struct llog_rec_hdr)
263                                 + sizeof(struct llog_rec_tail);
264         else
265                 buflen = le32_to_cpu(rec->lrh_len);
266         LASSERT(size_round(buflen) == buflen);
267
268         rc = lop->lop_write_rec(handle, rec, logcookies, numcookies, buf, idx);
269         RETURN(rc);
270 }
271
272 static inline int llog_read_header(struct llog_handle *handle)
273 {
274         struct llog_operations *lop;
275         int rc;
276         ENTRY;
277         
278         rc = llog_handle2ops(handle, &lop);
279         if (rc)
280                 RETURN(rc);
281         if (lop->lop_read_header == NULL)
282                 RETURN(-EOPNOTSUPP);
283
284         rc = lop->lop_read_header(handle);
285         RETURN(rc);
286 }
287
288 static inline int llog_destroy(struct llog_handle *handle)
289 {
290         struct llog_operations *lop;
291         int rc;
292         ENTRY;
293         
294         rc = llog_handle2ops(handle, &lop);
295         if (rc)
296                 RETURN(rc);
297         if (lop->lop_destroy == NULL)
298                 RETURN(-EOPNOTSUPP);
299
300         rc = lop->lop_destroy(handle);
301         RETURN(rc);
302 }
303
304 #if 0
305 static inline int llog_cancel(struct obd_export *exp,
306                               struct lov_stripe_md *lsm, int count,
307                               struct llog_cookie *cookies, int flags)
308 {
309         struct llog_operations *lop;
310         int rc;
311         ENTRY;
312
313         rc = llog_handle2ops(loghandle, &lop);
314         if (rc)
315                 RETURN(rc);
316         if (lop->lop_cancel == NULL)
317                 RETURN(-EOPNOTSUPP);
318
319         rc = lop->lop_cancel(exp, lsm, count, cookies, flags);
320         RETURN(rc);
321 }
322 #endif 
323
324 static inline int llog_next_block(struct llog_handle *loghandle, int *cur_idx,
325                                   int next_idx, __u64 *cur_offset, void *buf,
326                                   int len)
327 {
328         struct llog_operations *lop;
329         int rc;
330         ENTRY;
331
332         rc = llog_handle2ops(loghandle, &lop);
333         if (rc)
334                 RETURN(rc);
335         if (lop->lop_next_block == NULL)
336                 RETURN(-EOPNOTSUPP);
337
338         rc = lop->lop_next_block(loghandle, cur_idx, next_idx, cur_offset, buf,
339                                  len);
340         RETURN(rc);
341 }
342
343 static inline int llog_create(struct llog_ctxt *ctxt, 
344                               struct llog_handle **res,
345                               struct llog_logid *logid, char *name)
346 {
347         struct llog_operations *lop;
348         int rc;
349         ENTRY;
350
351         rc = llog_obd2ops(ctxt, &lop);
352         if (rc)
353                 RETURN(rc);
354         if (lop->lop_create == NULL)
355                 RETURN(-EOPNOTSUPP);
356
357         rc = lop->lop_create(ctxt, res, logid, name);
358         RETURN(rc);
359 }
360
361 static inline int llog_connect(struct llog_ctxt *ctxt, int count,
362                                struct llog_logid *logid,
363                                struct llog_ctxt_gen *gen)
364 {
365         struct llog_operations *lop;
366         int rc;
367         ENTRY;
368
369         rc = llog_obd2ops(ctxt, &lop);
370         if (rc)
371                 RETURN(rc);
372         if (lop->lop_connect == NULL)
373                 RETURN(-EOPNOTSUPP);
374
375         rc = lop->lop_connect(ctxt, count, logid, gen);
376         RETURN(rc);
377 }
378
379 #endif