Whamcloud - gitweb
LU-2675 build: remove WinNT "support"
[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, 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  * 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 #else
64 #error Unsupported operating system.
65 #endif
66
67 #include <obd_class.h>
68 #include <lustre/lustre_idl.h>
69 #include <dt_object.h>
70
71 #define LOG_NAME_LIMIT(logname, name)                   \
72         snprintf(logname, sizeof(logname), "LOGS/%s", name)
73 #define LLOG_EEMPTY 4711
74
75 enum llog_open_param {
76         LLOG_OPEN_EXISTS        = 0x0000,
77         LLOG_OPEN_NEW           = 0x0001,
78 };
79
80 struct plain_handle_data {
81         struct list_head        phd_entry;
82         struct llog_handle      *phd_cat_handle;
83         /* cookie of this log in its cat */
84         struct llog_cookie      phd_cookie;
85 };
86
87 struct cat_handle_data {
88         struct list_head        chd_head;
89         struct llog_handle     *chd_current_log;/* currently open log */
90         struct llog_handle     *chd_next_log;   /* llog to be used next */
91 };
92
93 static inline void logid_to_fid(struct llog_logid *id, struct lu_fid *fid)
94 {
95         /* For compatibility purposes we identify pre-OSD (~< 2.3.51 MDS)
96          * logid's by non-zero ogen (inode generation) and convert them
97          * into IGIF */
98         if (id->lgl_ogen == 0) {
99                 fid->f_seq = id->lgl_oi.oi.oi_seq;
100                 fid->f_oid = id->lgl_oi.oi.oi_id;
101                 fid->f_ver = 0;
102         } else {
103                 lu_igif_build(fid, id->lgl_oi.oi.oi_id, id->lgl_ogen);
104         }
105 }
106
107 static inline void fid_to_logid(struct lu_fid *fid, struct llog_logid *id)
108 {
109         id->lgl_oi.oi.oi_seq = fid->f_seq;
110         id->lgl_oi.oi.oi_id = fid->f_oid;
111         id->lgl_ogen = 0;
112 }
113
114 static inline void logid_set_id(struct llog_logid *log_id, __u64 id)
115 {
116         log_id->lgl_oi.oi.oi_id = id;
117 }
118
119 static inline __u64 logid_id(struct llog_logid *log_id)
120 {
121         return log_id->lgl_oi.oi.oi_id;
122 }
123
124 struct llog_handle;
125
126 /* llog.c  -  general API */
127 int llog_init_handle(const struct lu_env *env, struct llog_handle *handle,
128                      int flags, struct obd_uuid *uuid);
129 int llog_copy_handler(const struct lu_env *env, struct llog_handle *llh,
130                       struct llog_rec_hdr *rec, void *data);
131 int llog_process(const struct lu_env *env, struct llog_handle *loghandle,
132                  llog_cb_t cb, void *data, void *catdata);
133 int llog_process_or_fork(const struct lu_env *env,
134                          struct llog_handle *loghandle,
135                          llog_cb_t cb, void *data, void *catdata, bool fork);
136 int llog_reverse_process(const struct lu_env *env,
137                          struct llog_handle *loghandle, llog_cb_t cb,
138                          void *data, void *catdata);
139 int llog_cancel_rec(const struct lu_env *env, struct llog_handle *loghandle,
140                     int index);
141 int llog_open(const struct lu_env *env, struct llog_ctxt *ctxt,
142               struct llog_handle **lgh, struct llog_logid *logid,
143               char *name, enum llog_open_param open_param);
144 int llog_close(const struct lu_env *env, struct llog_handle *cathandle);
145 int llog_is_empty(const struct lu_env *env, struct llog_ctxt *ctxt,
146                   char *name);
147 int llog_backup(const struct lu_env *env, struct obd_device *obd,
148                 struct llog_ctxt *ctxt, struct llog_ctxt *bak_ctxt,
149                 char *name, char *backup);
150
151 /* llog_process flags */
152 #define LLOG_FLAG_NODEAMON 0x0001
153
154 /* llog_cat.c - catalog api */
155 struct llog_process_data {
156         /**
157          * Any useful data needed while processing catalog. This is
158          * passed later to process callback.
159          */
160         void                *lpd_data;
161         /**
162          * Catalog process callback function, called for each record
163          * in catalog.
164          */
165         llog_cb_t            lpd_cb;
166         /**
167          * Start processing the catalog from startcat/startidx
168          */
169         int                  lpd_startcat;
170         int                  lpd_startidx;
171 };
172
173 struct llog_process_cat_data {
174         /**
175          * Temporary stored first_idx while scanning log.
176          */
177         int                  lpcd_first_idx;
178         /**
179          * Temporary stored last_idx while scanning log.
180          */
181         int                  lpcd_last_idx;
182 };
183
184 int llog_cat_close(const struct lu_env *env, struct llog_handle *cathandle);
185 int llog_cat_add_rec(const struct lu_env *env, struct llog_handle *cathandle,
186                      struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
187                      struct thandle *th);
188 int llog_cat_declare_add_rec(const struct lu_env *env,
189                              struct llog_handle *cathandle,
190                              struct llog_rec_hdr *rec, struct thandle *th);
191 int llog_cat_add(const struct lu_env *env, struct llog_handle *cathandle,
192                  struct llog_rec_hdr *rec, struct llog_cookie *reccookie);
193 int llog_cat_cancel_records(const struct lu_env *env,
194                             struct llog_handle *cathandle, int count,
195                             struct llog_cookie *cookies);
196 int llog_cat_process_or_fork(const struct lu_env *env,
197                              struct llog_handle *cat_llh, llog_cb_t cb,
198                              void *data, int startcat, int startidx, bool fork);
199 int llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
200                      llog_cb_t cb, void *data, int startcat, int startidx);
201 int llog_cat_reverse_process(const struct lu_env *env,
202                              struct llog_handle *cat_llh, llog_cb_t cb,
203                              void *data);
204 int llog_cat_init_and_process(const struct lu_env *env,
205                               struct llog_handle *llh);
206
207 /* llog_obd.c */
208 int llog_setup(const struct lu_env *env, struct obd_device *obd,
209                struct obd_llog_group *olg, int index,
210                struct obd_device *disk_obd, struct llog_operations *op);
211 int __llog_ctxt_put(const struct lu_env *env, struct llog_ctxt *ctxt);
212 int llog_cleanup(const struct lu_env *env, struct llog_ctxt *);
213 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp, int flags);
214 int llog_cancel(const struct lu_env *env, struct llog_ctxt *ctxt,
215                 struct llog_cookie *cookies, int flags);
216
217 int obd_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
218                   struct obd_device *disk_obd, int *idx);
219
220 int obd_llog_finish(struct obd_device *obd, int count);
221
222 /* llog_ioctl.c */
223 struct obd_ioctl_data;
224 int llog_ioctl(const struct lu_env *env, struct llog_ctxt *ctxt, int cmd,
225                struct obd_ioctl_data *data);
226 int llog_catalog_list(const struct lu_env *env, struct dt_device *d,
227                       int count, struct obd_ioctl_data *data,
228                       const struct lu_fid *fid);
229
230 /* llog_net.c */
231 int llog_initiator_connect(struct llog_ctxt *ctxt);
232
233 struct llog_operations {
234         int (*lop_destroy)(const struct lu_env *env,
235                            struct llog_handle *handle);
236         int (*lop_next_block)(const struct lu_env *env, struct llog_handle *h,
237                               int *curr_idx, int next_idx, __u64 *offset,
238                               void *buf, int len);
239         int (*lop_prev_block)(const struct lu_env *env, struct llog_handle *h,
240                               int prev_idx, void *buf, int len);
241         int (*lop_read_header)(const struct lu_env *env,
242                                struct llog_handle *handle);
243         int (*lop_setup)(const struct lu_env *env, struct obd_device *obd,
244                          struct obd_llog_group *olg, int ctxt_idx,
245                          struct obd_device *disk_obd);
246         int (*lop_sync)(struct llog_ctxt *ctxt, struct obd_export *exp,
247                         int flags);
248         int (*lop_cleanup)(const struct lu_env *env, struct llog_ctxt *ctxt);
249         int (*lop_cancel)(const struct lu_env *env, struct llog_ctxt *ctxt,
250                           struct llog_cookie *cookies, int flags);
251         int (*lop_connect)(struct llog_ctxt *ctxt, struct llog_logid *logid,
252                            struct llog_gen *gen, struct obd_uuid *uuid);
253         /**
254          * Any llog file must be opened first using llog_open().  Llog can be
255          * opened by name, logid or without both, in last case the new logid
256          * will be generated.
257          */
258         int (*lop_open)(const struct lu_env *env, struct llog_handle *lgh,
259                         struct llog_logid *logid, char *name,
260                         enum llog_open_param);
261         /**
262          * Opened llog may not exist and this must be checked where needed using
263          * the llog_exist() call.
264          */
265         int (*lop_exist)(struct llog_handle *lgh);
266         /**
267          * Close llog file and calls llog_free_handle() implicitly.
268          * Any opened llog must be closed by llog_close() call.
269          */
270         int (*lop_close)(const struct lu_env *env, struct llog_handle *handle);
271         /**
272          * Create new llog file. The llog must be opened.
273          * Must be used only for local llog operations.
274          */
275         int (*lop_declare_create)(const struct lu_env *env,
276                                   struct llog_handle *handle,
277                                   struct thandle *th);
278         int (*lop_create)(const struct lu_env *env, struct llog_handle *handle,
279                           struct thandle *th);
280         /**
281          * write new record in llog. It appends records usually but can edit
282          * existing records too.
283          */
284         int (*lop_declare_write_rec)(const struct lu_env *env,
285                                      struct llog_handle *lgh,
286                                      struct llog_rec_hdr *rec,
287                                      int idx, struct thandle *th);
288         int (*lop_write_rec)(const struct lu_env *env,
289                              struct llog_handle *loghandle,
290                              struct llog_rec_hdr *rec,
291                              struct llog_cookie *cookie,
292                              int idx, struct thandle *th);
293         /**
294          * Add new record in llog catalog. Does the same as llog_write_rec()
295          * but using llog catalog.
296          */
297         int (*lop_declare_add)(const struct lu_env *env,
298                                struct llog_handle *lgh,
299                                struct llog_rec_hdr *rec, struct thandle *th);
300         int (*lop_add)(const struct lu_env *env, struct llog_handle *lgh,
301                        struct llog_rec_hdr *rec, struct llog_cookie *cookie,
302                        struct thandle *th);
303 };
304
305 /* In-memory descriptor for a log object or log catalog */
306 struct llog_handle {
307         struct rw_semaphore      lgh_lock;
308         spinlock_t               lgh_hdr_lock; /* protect lgh_hdr data */
309         struct llog_logid        lgh_id; /* id of this log */
310         struct llog_log_hdr     *lgh_hdr;
311         struct dt_object        *lgh_obj;
312         int                      lgh_last_idx;
313         int                      lgh_cur_idx; /* used during llog_process */
314         __u64                    lgh_cur_offset; /* used during llog_process */
315         struct llog_ctxt        *lgh_ctxt;
316         union {
317                 struct plain_handle_data         phd;
318                 struct cat_handle_data           chd;
319         } u;
320         char                    *lgh_name;
321         void                    *private_data;
322         struct llog_operations  *lgh_logops;
323         atomic_t                 lgh_refcount;
324 };
325
326 /* llog_osd.c */
327 extern struct llog_operations llog_osd_ops;
328 int llog_osd_get_cat_list(const struct lu_env *env, struct dt_device *d,
329                           int idx, int count, struct llog_catid *idarray,
330                           const struct lu_fid *fid);
331 int llog_osd_put_cat_list(const struct lu_env *env, struct dt_device *d,
332                           int idx, int count, struct llog_catid *idarray,
333                           const struct lu_fid *fid);
334
335 #define LLOG_CTXT_FLAG_UNINITIALIZED     0x00000001
336 #define LLOG_CTXT_FLAG_STOP              0x00000002
337
338 struct llog_ctxt {
339         int                      loc_idx; /* my index the obd array of ctxt's */
340         struct obd_device       *loc_obd; /* points back to the containing obd*/
341         struct obd_llog_group   *loc_olg; /* group containing that ctxt */
342         struct obd_export       *loc_exp; /* parent "disk" export (e.g. MDS) */
343         struct obd_import       *loc_imp; /* to use in RPC's: can be backward
344                                              pointing import */
345         struct llog_operations  *loc_logops;
346         struct llog_handle      *loc_handle;
347         struct mutex             loc_mutex; /* protect loc_imp */
348         atomic_t                 loc_refcount;
349         long                     loc_flags; /* flags, see above defines */
350         struct dt_object        *loc_dir;
351         struct local_oid_storage *loc_los_nameless;
352         struct local_oid_storage *loc_los_named;
353 };
354
355 #define LLOG_PROC_BREAK 0x0001
356 #define LLOG_DEL_RECORD 0x0002
357 #define LLOG_DEL_PLAIN  0x0003
358
359 static inline int llog_obd2ops(struct llog_ctxt *ctxt,
360                                struct llog_operations **lop)
361 {
362         if (ctxt == NULL)
363                 return -ENOTCONN;
364
365         *lop = ctxt->loc_logops;
366         if (*lop == NULL)
367                 return -EOPNOTSUPP;
368
369         return 0;
370 }
371
372 static inline int llog_handle2ops(struct llog_handle *loghandle,
373                                   struct llog_operations **lop)
374 {
375         if (loghandle == NULL || loghandle->lgh_logops == NULL)
376                 return -EINVAL;
377
378         *lop = loghandle->lgh_logops;
379         return 0;
380 }
381
382 static inline int llog_data_len(int len)
383 {
384         return cfs_size_round(len);
385 }
386
387 static inline int llog_get_size(struct llog_handle *loghandle)
388 {
389         if (loghandle && loghandle->lgh_hdr)
390                 return loghandle->lgh_hdr->llh_count;
391         return 0;
392 }
393
394 static inline struct llog_ctxt *llog_ctxt_get(struct llog_ctxt *ctxt)
395 {
396         atomic_inc(&ctxt->loc_refcount);
397         CDEBUG(D_INFO, "GETting ctxt %p : new refcount %d\n", ctxt,
398                atomic_read(&ctxt->loc_refcount));
399         return ctxt;
400 }
401
402 static inline void llog_ctxt_put(struct llog_ctxt *ctxt)
403 {
404         if (ctxt == NULL)
405                 return;
406         LASSERT_ATOMIC_GT_LT(&ctxt->loc_refcount, 0, LI_POISON);
407         CDEBUG(D_INFO, "PUTting ctxt %p : new refcount %d\n", ctxt,
408                atomic_read(&ctxt->loc_refcount) - 1);
409         __llog_ctxt_put(NULL, ctxt);
410 }
411
412 static inline void llog_group_init(struct obd_llog_group *olg)
413 {
414         init_waitqueue_head(&olg->olg_waitq);
415         spin_lock_init(&olg->olg_lock);
416         mutex_init(&olg->olg_cat_processing);
417 }
418
419 static inline int llog_group_set_ctxt(struct obd_llog_group *olg,
420                                       struct llog_ctxt *ctxt, int index)
421 {
422         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
423
424         spin_lock(&olg->olg_lock);
425         if (olg->olg_ctxts[index] != NULL) {
426                 spin_unlock(&olg->olg_lock);
427                 return -EEXIST;
428         }
429         olg->olg_ctxts[index] = ctxt;
430         spin_unlock(&olg->olg_lock);
431         return 0;
432 }
433
434 static inline struct llog_ctxt *llog_group_get_ctxt(struct obd_llog_group *olg,
435                                                     int index)
436 {
437         struct llog_ctxt *ctxt;
438
439         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
440
441         spin_lock(&olg->olg_lock);
442         if (olg->olg_ctxts[index] == NULL)
443                 ctxt = NULL;
444         else
445                 ctxt = llog_ctxt_get(olg->olg_ctxts[index]);
446         spin_unlock(&olg->olg_lock);
447         return ctxt;
448 }
449
450 static inline void llog_group_clear_ctxt(struct obd_llog_group *olg, int index)
451 {
452         LASSERT(index >= 0 && index < LLOG_MAX_CTXTS);
453         spin_lock(&olg->olg_lock);
454         olg->olg_ctxts[index] = NULL;
455         spin_unlock(&olg->olg_lock);
456 }
457
458 static inline struct llog_ctxt *llog_get_context(struct obd_device *obd,
459                                                  int index)
460 {
461         return llog_group_get_ctxt(&obd->obd_olg, index);
462 }
463
464 static inline int llog_group_ctxt_null(struct obd_llog_group *olg, int index)
465 {
466         return (olg->olg_ctxts[index] == NULL);
467 }
468
469 static inline int llog_ctxt_null(struct obd_device *obd, int index)
470 {
471         return (llog_group_ctxt_null(&obd->obd_olg, index));
472 }
473
474 static inline int llog_destroy(const struct lu_env *env,
475                                struct llog_handle *handle)
476 {
477         struct llog_operations *lop;
478         int rc;
479
480         ENTRY;
481
482         rc = llog_handle2ops(handle, &lop);
483         if (rc)
484                 RETURN(rc);
485         if (lop->lop_destroy == NULL)
486                 RETURN(-EOPNOTSUPP);
487
488         rc = lop->lop_destroy(env, handle);
489         RETURN(rc);
490 }
491
492 static inline int llog_next_block(const struct lu_env *env,
493                                   struct llog_handle *loghandle, int *cur_idx,
494                                   int next_idx, __u64 *cur_offset, void *buf,
495                                   int len)
496 {
497         struct llog_operations *lop;
498         int rc;
499
500         ENTRY;
501
502         rc = llog_handle2ops(loghandle, &lop);
503         if (rc)
504                 RETURN(rc);
505         if (lop->lop_next_block == NULL)
506                 RETURN(-EOPNOTSUPP);
507
508         rc = lop->lop_next_block(env, loghandle, cur_idx, next_idx,
509                                  cur_offset, buf, len);
510         RETURN(rc);
511 }
512
513 static inline int llog_prev_block(const struct lu_env *env,
514                                   struct llog_handle *loghandle,
515                                   int prev_idx, void *buf, int len)
516 {
517         struct llog_operations *lop;
518         int rc;
519
520         ENTRY;
521
522         rc = llog_handle2ops(loghandle, &lop);
523         if (rc)
524                 RETURN(rc);
525         if (lop->lop_prev_block == NULL)
526                 RETURN(-EOPNOTSUPP);
527
528         rc = lop->lop_prev_block(env, loghandle, prev_idx, buf, len);
529         RETURN(rc);
530 }
531
532 static inline int llog_connect(struct llog_ctxt *ctxt,
533                                struct llog_logid *logid, struct llog_gen *gen,
534                                struct obd_uuid *uuid)
535 {
536         struct llog_operations  *lop;
537         int                      rc;
538
539         ENTRY;
540
541         rc = llog_obd2ops(ctxt, &lop);
542         if (rc)
543                 RETURN(rc);
544         if (lop->lop_connect == NULL)
545                 RETURN(-EOPNOTSUPP);
546
547         rc = lop->lop_connect(ctxt, logid, gen, uuid);
548         RETURN(rc);
549 }
550
551 struct llog_cfg_rec {
552         struct llog_rec_hdr     lcr_hdr;
553         struct lustre_cfg       lcr_cfg;
554         struct llog_rec_tail    lcr_tail;
555 };
556
557 struct llog_cfg_rec *lustre_cfg_rec_new(int cmd, struct lustre_cfg_bufs *bufs);
558 void lustre_cfg_rec_free(struct llog_cfg_rec *lcr);
559
560 enum {
561         LLOG_NEXT_IDX = -1,
562         LLOG_HEADER_IDX = 0,
563 };
564
565 /* llog.c */
566 int llog_exist(struct llog_handle *loghandle);
567 int llog_declare_create(const struct lu_env *env,
568                         struct llog_handle *loghandle, struct thandle *th);
569 int llog_create(const struct lu_env *env, struct llog_handle *handle,
570                 struct thandle *th);
571 int llog_declare_write_rec(const struct lu_env *env,
572                            struct llog_handle *handle,
573                            struct llog_rec_hdr *rec, int idx,
574                            struct thandle *th);
575 int llog_write_rec(const struct lu_env *env, struct llog_handle *handle,
576                    struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
577                    int idx, struct thandle *th);
578 int llog_add(const struct lu_env *env, struct llog_handle *lgh,
579              struct llog_rec_hdr *rec, struct llog_cookie *logcookies,
580              struct thandle *th);
581 int llog_declare_add(const struct lu_env *env, struct llog_handle *lgh,
582                      struct llog_rec_hdr *rec, struct thandle *th);
583 int lustre_process_log(struct super_block *sb, char *logname,
584                        struct config_llog_instance *cfg);
585 int lustre_end_log(struct super_block *sb, char *logname,
586                    struct config_llog_instance *cfg);
587 int llog_open_create(const struct lu_env *env, struct llog_ctxt *ctxt,
588                      struct llog_handle **res, struct llog_logid *logid,
589                      char *name);
590 int llog_erase(const struct lu_env *env, struct llog_ctxt *ctxt,
591                struct llog_logid *logid, char *name);
592 int llog_write(const struct lu_env *env, struct llog_handle *loghandle,
593                struct llog_rec_hdr *rec, int idx);
594
595 /** @} log */
596
597 #endif