mars/kernel/lib_log.h

189 lines
4.9 KiB
C
Raw Normal View History

2014-11-21 10:51:34 +00:00
/*
* MARS Long Distance Replication Software
*
* This file is part of MARS project: http://schoebel.github.io/mars/
*
* Copyright (C) 2010-2014 Thomas Schoebel-Theuer
* Copyright (C) 2011-2014 1&1 Internet AG
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2011-02-23 20:48:06 +00:00
/* Definitions for logfile format.
*
* This is meant for sharing between different transaction logger variants,
* and/or for sharing with userspace tools (e.g. logfile analyzers).
2011-04-18 09:23:04 +00:00
* TODO: factor out some remaining kernelspace issues.
2011-02-23 20:48:06 +00:00
*/
2011-04-18 09:23:04 +00:00
#ifndef LIB_LOG_H
#define LIB_LOG_H
2010-12-15 11:58:22 +00:00
#ifdef __KERNEL__
2010-12-15 11:58:22 +00:00
#include "mars.h"
extern atomic_t global_mref_flying;
#endif
2010-12-15 11:58:22 +00:00
/* The following structure is memory-only.
* Transfers to disk are indirectly via the
* format conversion functions below.
* The advantage is that even newer disk formats can be parsed
* by old code (of course, not all information / features will be
* available then).
*/
2011-03-10 11:40:06 +00:00
#define log_header log_header_v1
struct log_header_v1 {
2019-02-19 09:18:29 +00:00
struct lamport_time l_stamp;
struct lamport_time l_written;
2010-12-15 11:58:22 +00:00
loff_t l_pos;
short l_len;
2011-03-27 15:18:38 +00:00
short l_code;
unsigned int l_seq_nr;
int l_crc;
2010-12-15 11:58:22 +00:00
};
#define FORMAT_VERSION 1 // version of disk format, currently there is no other one
#define CODE_UNKNOWN 0
#define CODE_WRITE_NEW 1
#define CODE_WRITE_OLD 2
#define START_MAGIC 0xa8f7e908d9177957ll
#define END_MAGIC 0x74941fb74ab5726dll
2011-03-27 15:18:38 +00:00
#define START_OVERHEAD \
2010-12-15 11:58:22 +00:00
( \
sizeof(START_MAGIC) + \
2011-03-27 15:18:38 +00:00
sizeof(char) + \
sizeof(char) + \
2010-12-15 11:58:22 +00:00
sizeof(short) + \
2019-02-19 09:18:29 +00:00
sizeof(struct lamport_time) + \
2011-03-27 15:18:38 +00:00
sizeof(loff_t) + \
sizeof(int) + \
2010-12-15 11:58:22 +00:00
sizeof(int) + \
sizeof(short) + \
2011-03-27 15:18:38 +00:00
sizeof(short) + \
0 \
)
#define END_OVERHEAD \
( \
sizeof(END_MAGIC) + \
2010-12-15 11:58:22 +00:00
sizeof(int) + \
2011-03-27 15:18:38 +00:00
sizeof(char) + \
3 + 4 /*spare*/ + \
2019-02-19 09:18:29 +00:00
sizeof(struct lamport_time) + \
2010-12-15 11:58:22 +00:00
0 \
)
2011-03-27 15:18:38 +00:00
#define OVERHEAD (START_OVERHEAD + END_OVERHEAD)
2010-12-15 11:58:22 +00:00
// TODO: make this bytesex-aware.
#define DATA_PUT(data,offset,val) \
do { \
2011-03-27 15:18:38 +00:00
*((typeof(val)*)((data)+offset)) = val; \
2010-12-15 11:58:22 +00:00
offset += sizeof(val); \
} while (0)
#define DATA_GET(data,offset,val) \
do { \
2011-03-27 15:18:38 +00:00
val = *((typeof(val)*)((data)+offset)); \
2010-12-15 11:58:22 +00:00
offset += sizeof(val); \
} while (0)
#define SCAN_TXT "at file_pos = %lld file_offset = %d scan_offset = %d (%lld) test_offset = %d (%lld) restlen = %d: "
#define SCAN_PAR file_pos, file_offset, offset, file_pos + file_offset + offset, i, file_pos + file_offset + i, restlen
2019-07-25 09:14:24 +00:00
extern int log_scan(void *buf,
int len,
loff_t file_pos,
int file_offset,
bool sloppy,
struct log_header *lh,
void **payload, int *payload_len,
void **dealloc,
2019-07-25 09:14:24 +00:00
unsigned int *seq_nr);
2011-03-10 11:40:06 +00:00
////////////////////////////////////////////////////////////////////////////
#ifdef __KERNEL__
/* Bookkeeping status between calls
*/
struct log_status {
2012-12-11 15:33:26 +00:00
// interfacing
wait_queue_head_t *signal_event;
2020-01-29 08:42:43 +00:00
int *signal_flag;
2011-03-11 13:57:54 +00:00
// tunables
loff_t start_pos;
loff_t end_pos;
2011-03-11 13:57:54 +00:00
int align_size; // alignment between requests
int chunk_size; // must be at least 8K (better 64k)
int max_size; // max payload length
2011-03-29 14:40:40 +00:00
int io_prio;
bool do_crc;
2011-03-18 13:15:40 +00:00
// informational
atomic_t mref_flying;
2011-05-13 11:19:28 +00:00
int count;
2011-03-18 13:15:40 +00:00
loff_t log_pos;
2019-02-19 09:18:29 +00:00
struct lamport_time log_pos_stamp;
2011-03-11 13:57:54 +00:00
// internal
2019-02-19 09:18:29 +00:00
struct lamport_time tmp_pos_stamp;
2011-03-10 11:40:06 +00:00
struct mars_input *input;
struct mars_brick *brick;
2011-03-10 11:40:06 +00:00
struct mars_info info;
2011-03-11 13:57:54 +00:00
int offset;
2011-03-10 11:40:06 +00:00
int validflag_offset;
int reallen_offset;
int payload_offset;
int payload_len;
unsigned int seq_nr;
2011-03-10 11:40:06 +00:00
struct mref_object *log_mref;
2011-03-22 14:36:26 +00:00
struct mref_object *read_mref;
wait_queue_head_t event;
int error_code;
bool got;
2011-04-08 09:52:46 +00:00
bool do_free;
2011-03-11 13:57:54 +00:00
void *private;
2011-03-10 11:40:06 +00:00
};
2010-12-15 11:58:22 +00:00
void init_logst(struct log_status *logst, struct mars_input *input, loff_t start_pos, loff_t end_pos);
void exit_logst(struct log_status *logst);
2010-12-15 11:58:22 +00:00
2011-03-22 14:36:26 +00:00
void log_flush(struct log_status *logst);
2011-03-10 11:40:06 +00:00
void *log_reserve(struct log_status *logst, struct log_header *lh);
2013-01-03 09:12:20 +00:00
bool log_finalize(struct log_status *logst, int len, void (*endio)(void *private, int error), void *private);
2011-03-10 11:40:06 +00:00
int log_read(struct log_status *logst,
bool sloppy,
struct log_header *lh,
void **payload, int *payload_len,
void **dealloc);
2011-03-18 13:15:40 +00:00
2011-08-25 10:16:32 +00:00
/////////////////////////////////////////////////////////////////////////
// init
extern int init_log_format(void);
extern void exit_log_format(void);
2011-03-10 11:40:06 +00:00
#endif
2010-12-15 11:58:22 +00:00
#endif