Whamcloud - gitweb
947160329dae991899f8a8f0bf2695a60a71be0e
[fs/lustre-release.git] / lustre / include / lustre_log.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) 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  * lustre/include/lustre_log.h
37  *
38  * Generic infrastructure for managing a collection of logs.
39  * These logs are used for:
40  *
41  * - orphan recovery: OST adds record on create
42  * - mtime/size consistency: the OST adds a record on first write
43  * - open/unlinked objects: OST adds a record on destroy
44  *
45  * - mds unlink log: the MDS adds an entry upon delete
46  *
47  * - raid1 replication log between OST's
48  * - MDS replication logs
49  */
50
51 #ifndef _LUSTRE_LOG_H
52 #define _LUSTRE_LOG_H
53
54 /** \defgroup log log
55  *
56  * @{
57  */
58
59 #if defined(__linux__)
60 #include <linux/lustre_log.h>
61 #elif defined(__APPLE__)
62 #include <darwin/lustre_log.h>
63 #elif defined(__WINNT__)
64 #include <winnt/lustre_log.h>
65 #else
66 #error Unsupported operating system.
67 #endif
68
69 #include <obd_class.h>
70 #include <obd_ost.h>
71 #include <lustre/lustre_idl.h>
72 #include <dt_object.h>
73
74 #define LOG_NAME_LIMIT(logname, name)                   \
75         snprintf(logname, sizeof(logname), "LOGS/%s", name)
76 #define LLOG_EEMPTY 4711
77
78 struct plain_handle_data {
79         cfs_list_t          phd_entry;
80         struct llog_handle *phd_cat_handle;
81         struct llog_cookie  phd_cookie; /* cookie of this log in its cat */
82 };
83
84 struct cat_handle_data {
85         cfs_list_t              chd_head;
86         struct llog_handle     *chd_current_log; /* currently open log */
87         struct llog_handle      *chd_next_log; /* llog to be used next */
88 };
89
90 static inline void logid_to_fid(struct llog_logid *id, struct lu_fid *fid)
91 {
92         /* For compatibility purposes we identify pre-OSD (~< 2.3.51 MDS)
93          * logid's by non-zero ogen (inode generation) and convert them
94          * into IGIF */
95         if (id->lgl_ogen == 0) {
96                 fid->f_seq = id->lgl_oseq;
97                 fid->f_oid = id->lgl_oid;
98                 fid->f_ver = 0;
99         } else {
100                 lu_igif_build(fid, id->lgl_oid, id->lgl_ogen);
101         }
102 }
103
104 static inline void fid_to_logid(struct lu_fid *fid, struct llog_logid *id)
105 {
106         id->lgl_oseq = fid->f_seq;
107         id->lgl_oid = fid->f_oid;
108         id->lgl_ogen = 0;
109 }
110
111 struct llog_handle;
112
113 /* llog.c  -  general API */
114 typedef int (*llog_cb_t)(const struct lu_env *env, struct llog_handle *lgh,
115                          struct llog_rec_hdr *rec, void *data);
116 extern struct llog_handle *llog_alloc_handle(void);
117 int llog_init_handle(const struct lu_env *env, struct llog_handle *handle,
118                      int flags, struct obd_uuid *uuid);
119 extern void llog_free_handle(struct llog_handle *handle);
120 int llog_process(const struct lu_env *env, struct llog_handle *loghandle,
121                  llog_cb_t cb, void *data, void *catdata);
122 int llog_reverse_process(const struct lu_env *env,
123                          struct llog_handle *loghandle, llog_cb_t cb,
124                          void *data, void *catdata);
125 int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
126                     int index);
127 int llog_close(const struct lu_env *env, struct llog_handle *cathandle);
128 int llog_get_size(struct llog_handle *loghandle);
129
130 /* llog_process flags */
131 #define LLOG_FLAG_NODEAMON 0x0001
132
133 /* llog_cat.c - catalog api */
134 struct llog_process_data {
135         /**
136          * Any useful data needed while processing catalog. This is
137          * passed later to process callback.
138          */
139         void                *lpd_data;
140         /**
141          * Catalog process callback function, called for each record
142          * in catalog.
143          */
144         llog_cb_t            lpd_cb;
145         /**
146          * Start processing the catalog from startcat/startidx
147          */
148         int                  lpd_startcat;
149         int                  lpd_startidx;
150 };
151
152 struct llog_process_cat_data {
153         /**
154          * Temporary stored first_idx while scanning log.
155          */
156         int                  lpcd_first_idx;
157         /**
158          * Temporary stored last_idx while scanning log.
159          */
160         int                  lpcd_last_idx;
161 };
162
163 struct llog_process_cat_args {
164         /**
165          * Llog context used in recovery thread on OST (recov_thread.c)
166          */
167         struct llog_ctxt    *lpca_ctxt;
168         /**
169          * Llog callback used in recovery thread on OST (recov_thread.c)
170          */
171         void                *lpca_cb;
172         /**
173          * Data pointer for llog callback.
174          */
175         void                *lpca_arg;
176 };
177
178 int cat_cancel_cb(const struct lu_env *env, struct llog_handle *cathandle,
179                   struct llog_rec_hdr *rec, void *data);
180 int llog_cat_put(const struct lu_env *env, struct llog_handle *cathandle);
181 int llog_cat_add_rec(const struct lu_env *env, struct llog_handle *cathandle,
182                      struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
183                      void *buf);
184 int llog_cat_cancel_records(const struct lu_env *env,
185                             struct llog_handle *cathandle, int count,
186                             struct llog_cookie *cookies);
187 int __llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
188                        llog_cb_t cb, void *data, int startcat, int startidx,
189                        int fork);
190 int llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
191                      llog_cb_t cb, void *data, int startcat, int startidx);
192 int llog_cat_process_thread(void *data);
193 int llog_cat_reverse_process(const struct lu_env *env,
194                              struct llog_handle *cat_llh, llog_cb_t cb,
195                              void *data);
196 int llog_cat_set_first_idx(struct llog_handle *cathandle, int index);
197
198 /* llog_obd.c */
199 int llog_setup_named(struct obd_device *obd, struct obd_llog_group *olg,
200                      int index, struct obd_device *disk_obd, int count,
201                      struct llog_logid *logid, const char *logname,
202                      struct llog_operations *op);
203 int llog_setup(struct obd_device *obd, struct obd_llog_group *olg, int index,
204                struct obd_device *disk_obd, int count, struct llog_logid *logid,
205                struct llog_operations *op);
206 int __llog_ctxt_put(struct llog_ctxt *ctxt);
207 int llog_cleanup(struct llog_ctxt *);
208 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp, int flags);
209 int llog_add(const struct lu_env *env, struct llog_ctxt *ctxt,
210              struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
211              struct llog_cookie *logcookies, int numcookies);
212 int llog_cancel(const struct lu_env *env, struct llog_ctxt *ctxt,
213                 struct lov_stripe_md *lsm, int count,
214                 struct llog_cookie *cookies, int flags);
215 int llog_obd_origin_setup(const struct lu_env *env, struct obd_device *obd,
216                           struct obd_llog_group *olg, int index,
217                           struct obd_device *disk_obd, int count,
218                           struct llog_logid *logid, const char *name);
219 int llog_obd_origin_cleanup(const struct lu_env *env, struct llog_ctxt *ctxt);
220 int llog_obd_origin_add(const struct lu_env *env, struct llog_ctxt *ctxt,
221                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
222                         struct llog_cookie *logcookies, int numcookies);
223
224 int obd_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
225                   struct obd_device *disk_obd, int *idx);
226
227 int obd_llog_finish(struct obd_device *obd, int count);
228
229 /* llog_ioctl.c */
230 int llog_ioctl(struct llog_ctxt *ctxt, int cmd, struct obd_ioctl_data *data);
231 int llog_catalog_list(struct obd_device *obd, int count,
232                       struct obd_ioctl_data *data);
233
234 /* llog_net.c */
235 int llog_initiator_connect(struct llog_ctxt *ctxt);
236 int llog_receptor_accept(struct llog_ctxt *ctxt, struct obd_import *imp);
237 int llog_origin_connect(struct llog_ctxt *ctxt,
238                         struct llog_logid *logid, struct llog_gen *gen,
239                         struct obd_uuid *uuid);
240 int llog_handle_connect(struct ptlrpc_request *req);
241
242 /* recov_thread.c */
243 int llog_obd_repl_cancel(const struct lu_env *env, struct llog_ctxt *ctxt,
244                          struct lov_stripe_md *lsm, int count,
245                          struct llog_cookie *cookies, int flags);
246 int llog_obd_repl_sync(struct llog_ctxt *ctxt, struct obd_export *exp,
247                        int flags);
248 int llog_obd_repl_connect(struct llog_ctxt *ctxt,
249                           struct llog_logid *logid, struct llog_gen *gen,
250                           struct obd_uuid *uuid);
251
252 struct llog_operations {
253         int (*lop_destroy)(const struct lu_env *env,
254                            struct llog_handle *handle);
255         int (*lop_next_block)(const struct lu_env *env, struct llog_handle *h,
256                               int *curr_idx, int next_idx, __u64 *offset,
257                               void *buf, int len);
258         int (*lop_prev_block)(const struct lu_env *env, struct llog_handle *h,
259                               int prev_idx, void *buf, int len);
260         int (*lop_read_header)(const struct lu_env *env,
261                                struct llog_handle *handle);
262         int (*lop_setup)(const struct lu_env *env, struct obd_device *obd,
263                          struct obd_llog_group *olg, int ctxt_idx,
264                          struct obd_device *disk_obd, int count,
265                          struct llog_logid *logid, const char *name);
266         int (*lop_sync)(struct llog_ctxt *ctxt, struct obd_export *exp,
267                         int flags);
268         int (*lop_cleanup)(const struct lu_env *env, struct llog_ctxt *ctxt);
269         int (*lop_cancel)(const struct lu_env *env, struct llog_ctxt *ctxt,
270                           struct lov_stripe_md *lsm, int count,
271                           struct llog_cookie *cookies, int flags);
272         int (*lop_connect)(struct llog_ctxt *ctxt, struct llog_logid *logid,
273                            struct llog_gen *gen, struct obd_uuid *uuid);
274         int (*lop_create)(const struct lu_env *env, struct llog_ctxt *ctxt,
275                           struct llog_handle **h, struct llog_logid *logid,
276                           char *name);
277         int (*lop_write_rec)(const struct lu_env *env,
278                              struct llog_handle *loghandle,
279                              struct llog_rec_hdr *rec,
280                              struct llog_cookie *logcookies, int numcookies,
281                              void *, int idx);
282         int (*lop_add)(const struct lu_env *env, struct llog_ctxt *ctxt,
283                        struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
284                        struct llog_cookie *logcookies, int numcookies);
285         int (*lop_close)(const struct lu_env *env, struct llog_handle *handle);
286 };
287
288 /* In-memory descriptor for a log object or log catalog */
289 struct llog_handle {
290         cfs_rw_semaphore_t       lgh_lock;
291         struct llog_logid        lgh_id; /* id of this log */
292         struct llog_log_hdr     *lgh_hdr;
293         cfs_spinlock_t           lgh_hdr_lock; /* protect lgh_hdr data */
294         union {
295                 struct file             *lgh_file;
296                 struct dt_object        *lgh_obj;
297         };
298         int                      lgh_last_idx;
299         int                      lgh_cur_idx; /* used during llog_process */
300         __u64                    lgh_cur_offset; /* used during llog_process */
301         struct llog_ctxt        *lgh_ctxt;
302         union {
303                 struct plain_handle_data         phd;
304                 struct cat_handle_data           chd;
305         } u;
306         char                    *lgh_name;
307         void                    *private_data;
308         struct llog_operations  *lgh_logops;
309 };
310
311 /* llog_lvfs.c */
312 extern struct llog_operations llog_lvfs_ops;
313 int llog_get_cat_list(struct obd_device *disk_obd,
314                       char *name, int idx, int count,
315                       struct llog_catid *idarray);
316
317 int llog_put_cat_list(struct obd_device *disk_obd,
318                       char *name, int idx, int count, struct llog_catid *idarray);
319
320 #define LLOG_CTXT_FLAG_UNINITIALIZED     0x00000001
321 #define LLOG_CTXT_FLAG_STOP              0x00000002
322
323 struct llog_ctxt {
324         int                      loc_idx; /* my index the obd array of ctxt's */
325         struct llog_gen          loc_gen;
326         struct obd_device       *loc_obd; /* points back to the containing obd*/
327         struct obd_llog_group   *loc_olg; /* group containing that ctxt */
328         struct obd_export       *loc_exp; /* parent "disk" export (e.g. MDS) */
329         struct obd_import       *loc_imp; /* to use in RPC's: can be backward
330                                              pointing import */
331         struct llog_operations  *loc_logops;
332         struct llog_handle      *loc_handle;
333         struct llog_commit_master *loc_lcm;
334         struct llog_canceld_ctxt *loc_llcd;
335         cfs_mutex_t              loc_mutex; /* protects loc_llcd and loc_imp */
336         cfs_atomic_t             loc_refcount;
337         void                    *llog_proc_cb;
338         long                     loc_flags; /* flags, see above defines */
339         struct dt_object        *loc_dir;
340 };
341
342 #define LCM_NAME_SIZE 64
343
344 struct llog_commit_master {
345         /**
346          * Thread control flags (start, stop, etc.)
347          */
348         long                       lcm_flags;
349         /**
350          * Number of llcds onthis lcm.
351          */
352         cfs_atomic_t               lcm_count;
353         /**
354          * The refcount for lcm
355          */
356          cfs_atomic_t              lcm_refcount;
357         /**
358          * Thread control structure. Used for control commit thread.
359          */
360         struct ptlrpcd_ctl         lcm_pc;
361         /**
362          * Lock protecting list of llcds.
363          */
364         cfs_spinlock_t             lcm_lock;
365         /**
366          * Llcds in flight for debugging purposes.
367          */
368         cfs_list_t                 lcm_llcds;
369         /**
370          * Commit thread name buffer. Only used for thread start.
371          */
372         char                       lcm_name[LCM_NAME_SIZE];
373 };
374
375 static inline struct llog_commit_master
376 *lcm_get(struct llog_commit_master *lcm)
377 {
378         cfs_atomic_inc(&lcm->lcm_refcount);
379         return lcm;
380 }
381
382 static inline void
383 lcm_put(struct llog_commit_master *lcm)
384 {
385         LASSERT_ATOMIC_POS(&lcm->lcm_refcount);
386         if (cfs_atomic_dec_and_test(&lcm->lcm_refcount))
387                 OBD_FREE_PTR(lcm);
388 }
389
390 struct llog_canceld_ctxt {
391         /**
392          * Llog context this llcd is attached to. Used for accessing
393          * ->loc_import and others in process of canceling cookies
394          * gathered in this llcd.
395          */
396         struct llog_ctxt          *llcd_ctxt;
397         /**
398          * Cancel thread control stucture pointer. Used for accessing
399          * it to see if should stop processing and other needs.
400          */
401         struct llog_commit_master *llcd_lcm;
402         /**
403          * Maximal llcd size. Used in calculations on how much of room
404          * left in llcd to cookie comming cookies.
405          */
406         int                        llcd_size;
407         /**
408          * Link to lcm llcds list.
409          */
410         cfs_list_t                 llcd_list;
411         /**
412          * Current llcd size while gathering cookies. This should not be
413          * more than ->llcd_size. Used for determining if we need to
414          * send this llcd (if full) and allocate new one. This is also
415          * used for copying new cookie at the end of buffer.
416          */
417         int                        llcd_cookiebytes;
418         /**
419          * Pointer to the start of cookies buffer.
420          */
421         struct llog_cookie         llcd_cookies[0];
422 };
423
424 /* ptlrpc/recov_thread.c */
425 extern struct llog_commit_master *llog_recov_thread_init(char *name);
426 extern void llog_recov_thread_fini(struct llog_commit_master *lcm,
427                                    int force);
428 extern int llog_recov_thread_start(struct llog_commit_master *lcm);
429 extern void llog_recov_thread_stop(struct llog_commit_master *lcm,
430                                     int force);
431
432 static inline void llog_gen_init(struct llog_ctxt *ctxt)
433 {
434         struct obd_device *obd = ctxt->loc_exp->exp_obd;
435
436         LASSERTF(obd->u.obt.obt_magic == OBT_MAGIC,
437                  "%s: wrong obt magic %#x\n",
438                  obd->obd_name, obd->u.obt.obt_magic);
439         ctxt->loc_gen.mnt_cnt = obd->u.obt.obt_mount_count;
440         ctxt->loc_gen.conn_cnt++;
441 }
442
443 static inline int llog_gen_lt(struct llog_gen a, struct llog_gen b)
444 {
445         if (a.mnt_cnt < b.mnt_cnt)
446                 return 1;
447         if (a.mnt_cnt > b.mnt_cnt)
448                 return 0;
449         return(a.conn_cnt < b.conn_cnt ? 1 : 0);
450 }
451
452 #define LLOG_PROC_BREAK 0x0001
453 #define LLOG_DEL_RECORD 0x0002
454
455 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
456                                struct llog_operations **lop)
457 {
458         if (ctxt == NULL)
459                 return -ENOTCONN;
460
461         *lop = ctxt->loc_logops;
462         if (*lop == NULL)
463                 return -EOPNOTSUPP;
464
465         return 0;
466 }
467
468 static inline int llog_handle2ops(struct llog_handle *loghandle,
469                                   struct llog_operations **lop)
470 {
471         if (loghandle == NULL)
472                 return -EINVAL;
473
474         return llog_obd2ops(loghandle->lgh_ctxt, lop);
475 }
476
477 static inline int llog_data_len(int len)
478 {
479         return cfs_size_round(len);
480 }
481
482 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
483 {
484         cfs_atomic_inc(&ctxt->loc_refcount);
485         CDEBUG(D_INFO, "GETting ctxt %p : new refcount %d\n", ctxt,
486                cfs_atomic_read(&ctxt->loc_refcount));
487         return ctxt;
488 }
489
490 static inline void llog_ctxt_put(struct llog_ctxt *ctxt)
491 {
492         if (ctxt == NULL)
493                 return;
494         LASSERT_ATOMIC_GT_LT(&ctxt->loc_refcount, 0, LI_POISON);
495         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
496                cfs_atomic_read(&ctxt->loc_refcount) - 1);
497         __llog_ctxt_put(ctxt);
498 }
499
500 static inline void llog_group_init(struct obd_llog_group *olg, int group)
501 {
502         cfs_waitq_init(&olg->olg_waitq);
503         cfs_spin_lock_init(&olg->olg_lock);
504         cfs_mutex_init(&olg->olg_cat_processing);
505         olg->olg_seq = group;
506 }
507
508 static inline void llog_group_set_export(struct obd_llog_group *olg,
509                                          struct obd_export *exp)
510 {
511         LASSERT(exp != NULL);
512
513         cfs_spin_lock(&olg->olg_lock);
514         if (olg->olg_exp != NULL && olg->olg_exp != exp)
515                 CWARN("%s: export for group %d is changed: 0x%p -> 0x%p\n",
516                       exp->exp_obd->obd_name, olg->olg_seq,
517                       olg->olg_exp, exp);
518         olg->olg_exp = exp;
519         cfs_spin_unlock(&olg->olg_lock);
520 }
521
522 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
523                                       struct llog_ctxt *ctxt, int index)
524 {
525         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
526
527         cfs_spin_lock(&olg->olg_lock);
528         if (olg->olg_ctxts[index] != NULL) {
529                 cfs_spin_unlock(&olg->olg_lock);
530                 return -EEXIST;
531         }
532         olg->olg_ctxts[index] = ctxt;
533         cfs_spin_unlock(&olg->olg_lock);
534         return 0;
535 }
536
537 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
538                                                     int index)
539 {
540         struct llog_ctxt *ctxt;
541
542         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
543
544         cfs_spin_lock(&olg->olg_lock);
545         if (olg->olg_ctxts[index] == NULL) {
546                 ctxt = NULL;
547         } else {
548                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
549         }
550         cfs_spin_unlock(&olg->olg_lock);
551         return ctxt;
552 }
553
554 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
555                                                  int index)
556 {
557         return llog_group_get_ctxt(&obd->obd_olg, index);
558 }
559
560 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
561 {
562         return (olg->olg_ctxts[index] == NULL);
563 }
564
565 static inline int llog_ctxt_null(struct obd_device *obd, int index)
566 {
567         return (llog_group_ctxt_null(&obd->obd_olg, index));
568 }
569
570 static inline int llog_write_rec(const struct lu_env *env,
571                                  struct llog_handle *handle,
572                                  struct llog_rec_hdr *rec,
573                                  struct llog_cookie *logcookies,
574                                  int numcookies, void *buf, int idx)
575 {
576         struct llog_operations *lop;
577         int raised, rc, buflen;
578
579         ENTRY;
580
581         rc = llog_handle2ops(handle, &lop);
582         if (rc)
583                 RETURN(rc);
584         LASSERT(lop);
585         if (lop->lop_write_rec == NULL)
586                 RETURN(-EOPNOTSUPP);
587
588         /* FIXME:  Why doesn't caller just set the right lrh_len itself? */
589         if (buf)
590                 buflen = rec->lrh_len + sizeof(struct llog_rec_hdr) +
591                          sizeof(struct llog_rec_tail);
592         else
593                 buflen = rec->lrh_len;
594         LASSERT(cfs_size_round(buflen) == buflen);
595
596         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
597         if (!raised)
598                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
599         rc = lop->lop_write_rec(env, handle, rec, logcookies, numcookies,
600                                 buf, idx);
601         if (!raised)
602                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
603         RETURN(rc);
604 }
605
606 static inline int llog_read_header(const struct lu_env *env,
607                                    struct llog_handle *handle)
608 {
609         struct llog_operations *lop;
610         int rc;
611
612         ENTRY;
613
614         rc = llog_handle2ops(handle, &lop);
615         if (rc)
616                 RETURN(rc);
617         if (lop->lop_read_header == NULL)
618                 RETURN(-EOPNOTSUPP);
619
620         rc = lop->lop_read_header(env, handle);
621         RETURN(rc);
622 }
623
624 static inline int llog_destroy(const struct lu_env *env,
625                                struct llog_handle *handle)
626 {
627         struct llog_operations *lop;
628         int rc;
629
630         ENTRY;
631
632         rc = llog_handle2ops(handle, &lop);
633         if (rc)
634                 RETURN(rc);
635         if (lop->lop_destroy == NULL)
636                 RETURN(-EOPNOTSUPP);
637
638         rc = lop->lop_destroy(env, handle);
639         RETURN(rc);
640 }
641
642 static inline int llog_next_block(const struct lu_env *env,
643                                   struct llog_handle *loghandle, int *cur_idx,
644                                   int next_idx, __u64 *cur_offset, void *buf,
645                                   int len)
646 {
647         struct llog_operations *lop;
648         int rc;
649
650         ENTRY;
651
652         rc = llog_handle2ops(loghandle, &lop);
653         if (rc)
654                 RETURN(rc);
655         if (lop->lop_next_block == NULL)
656                 RETURN(-EOPNOTSUPP);
657
658         rc = lop->lop_next_block(env, loghandle, cur_idx, next_idx,
659                                  cur_offset, buf, len);
660         RETURN(rc);
661 }
662
663 static inline int llog_prev_block(const struct lu_env *env,
664                                   struct llog_handle *loghandle,
665                                   int prev_idx, void *buf, int len)
666 {
667         struct llog_operations *lop;
668         int rc;
669
670         ENTRY;
671
672         rc = llog_handle2ops(loghandle, &lop);
673         if (rc)
674                 RETURN(rc);
675         if (lop->lop_prev_block == NULL)
676                 RETURN(-EOPNOTSUPP);
677
678         rc = lop->lop_prev_block(env, loghandle, prev_idx, buf, len);
679         RETURN(rc);
680 }
681
682 static inline int llog_create(const struct lu_env *env, struct llog_ctxt *ctxt,
683                               struct llog_handle **res,
684                               struct llog_logid *logid, char *name)
685 {
686         struct llog_operations *lop;
687         int raised, rc;
688
689         ENTRY;
690
691         rc = llog_obd2ops(ctxt, &lop);
692         if (rc)
693                 RETURN(rc);
694         if (lop->lop_create == NULL)
695                 RETURN(-EOPNOTSUPP);
696
697         raised = cfs_cap_raised(CFS_CAP_SYS_RESOURCE);
698         if (!raised)
699                 cfs_cap_raise(CFS_CAP_SYS_RESOURCE);
700         rc = lop->lop_create(env, ctxt, res, logid, name);
701         if (!raised)
702                 cfs_cap_lower(CFS_CAP_SYS_RESOURCE);
703         RETURN(rc);
704 }
705
706 static inline int llog_connect(struct llog_ctxt *ctxt,
707                                struct llog_logid *logid, struct llog_gen *gen,
708                                struct obd_uuid *uuid)
709 {
710         struct llog_operations *lop;
711         int rc;
712         ENTRY;
713
714         rc = llog_obd2ops(ctxt, &lop);
715         if (rc)
716                 RETURN(rc);
717         if (lop->lop_connect == NULL)
718                 RETURN(-EOPNOTSUPP);
719
720         rc = lop->lop_connect(ctxt, logid, gen, uuid);
721         RETURN(rc);
722 }
723
724 int lustre_process_log(struct super_block *sb, char *logname,
725                        struct config_llog_instance *cfg);
726 int lustre_end_log(struct super_block *sb, char *logname,
727                    struct config_llog_instance *cfg);
728
729 /** @} log */
730
731 #endif