vitastor/osd_ops.h

145 lines
3.5 KiB
C
Raw Normal View History

2019-12-10 12:07:24 +03:00
#pragma once
2019-12-11 14:18:19 +03:00
#include "blockstore.h"
2019-12-10 12:07:24 +03:00
#include <stdint.h>
2019-12-13 20:16:08 +03:00
// Magic numbers
2019-12-14 20:51:41 +03:00
#define SECONDARY_OSD_OP_MAGIC 0x2bd7b10325434553l
#define SECONDARY_OSD_REPLY_MAGIC 0xbaa699b87b434553l
2019-12-13 20:16:08 +03:00
// Operation request headers and operation reply headers have fixed size after which comes data
2019-12-11 14:18:19 +03:00
#define OSD_OP_PACKET_SIZE 0x80
2019-12-13 22:53:59 +03:00
#define OSD_REPLY_PACKET_SIZE 0x40
2019-12-13 20:16:08 +03:00
// Opcodes
#define OSD_OP_MIN 0x01
2019-12-10 12:07:24 +03:00
#define OSD_OP_SECONDARY_READ 0x01
#define OSD_OP_SECONDARY_WRITE 0x02
#define OSD_OP_SECONDARY_SYNC 0x03
#define OSD_OP_SECONDARY_STABILIZE 0x04
#define OSD_OP_SECONDARY_DELETE 0x05
#define OSD_OP_SECONDARY_LIST 0x10
#define OSD_OP_MAX 0x10
2019-12-13 20:16:08 +03:00
// Alignment & limit for read/write operations
#define OSD_RW_ALIGN 512
#define OSD_RW_MAX 64*1024*1024
2019-12-10 12:07:24 +03:00
2019-12-13 20:16:08 +03:00
// common request and reply headers
2019-12-10 12:07:24 +03:00
struct __attribute__((__packed__)) osd_op_header_t
{
// magic & protocol version
uint64_t magic;
// operation id
uint64_t id;
// operation type
uint64_t opcode;
};
struct __attribute__((__packed__)) osd_reply_header_t
{
// magic & protocol version
uint64_t magic;
// operation id
uint64_t id;
// return value
int64_t retval;
};
// read or write to the secondary OSD
struct __attribute__((__packed__)) osd_op_secondary_rw_t
{
2019-12-13 20:16:08 +03:00
osd_op_header_t header;
// object
object_id oid;
// read/write version (automatic or specific)
uint64_t version;
// offset
uint32_t offset;
// length
uint32_t len;
2019-12-10 12:07:24 +03:00
};
struct __attribute__((__packed__)) osd_reply_secondary_rw_t
{
2019-12-13 20:16:08 +03:00
osd_reply_header_t header;
// buffer size
uint64_t len;
2019-12-10 12:07:24 +03:00
};
// delete object on the secondary OSD
struct __attribute__((__packed__)) osd_op_secondary_del_t
{
2019-12-13 20:16:08 +03:00
osd_op_header_t header;
// object
object_id oid;
// delete version (automatic or specific)
uint64_t version;
2019-12-10 12:07:24 +03:00
};
struct __attribute__((__packed__)) osd_reply_secondary_del_t
{
2019-12-13 20:16:08 +03:00
osd_reply_header_t header;
2019-12-10 12:07:24 +03:00
};
// sync to the secondary OSD
struct __attribute__((__packed__)) osd_op_secondary_sync_t
{
2019-12-13 20:16:08 +03:00
osd_op_header_t header;
2019-12-10 12:07:24 +03:00
};
struct __attribute__((__packed__)) osd_reply_secondary_sync_t
{
2019-12-13 20:16:08 +03:00
osd_reply_header_t header;
2019-12-10 12:07:24 +03:00
};
// stabilize objects on the secondary OSD
struct __attribute__((__packed__)) osd_op_secondary_stabilize_t
{
2019-12-13 20:16:08 +03:00
osd_op_header_t header;
// obj_ver_id array length in bytes
uint32_t len;
2019-12-10 12:07:24 +03:00
};
struct __attribute__((__packed__)) osd_reply_secondary_stabilize_t
{
2019-12-13 20:16:08 +03:00
osd_reply_header_t header;
2019-12-10 12:07:24 +03:00
};
// list objects on replica
struct __attribute__((__packed__)) osd_op_secondary_list_t
{
2019-12-13 20:16:08 +03:00
osd_op_header_t header;
// placement group number
uint64_t pgnum;
2019-12-10 12:07:24 +03:00
};
struct __attribute__((__packed__)) osd_reply_secondary_list_t
{
2019-12-13 20:16:08 +03:00
osd_reply_header_t header;
// oid array length
uint64_t len;
2019-12-10 12:07:24 +03:00
};
2019-12-11 14:18:19 +03:00
union osd_any_op_t
{
osd_op_header_t hdr;
osd_op_secondary_rw_t sec_rw;
osd_op_secondary_del_t sec_del;
osd_op_secondary_sync_t sec_sync;
osd_op_secondary_stabilize_t sec_stabilize;
osd_op_secondary_list_t sec_list;
2019-12-11 14:18:19 +03:00
};
union osd_any_reply_t
{
2019-12-13 22:53:59 +03:00
osd_reply_header_t hdr;
osd_reply_secondary_rw_t sec_rw;
osd_reply_secondary_del_t sec_del;
osd_reply_secondary_sync_t sec_sync;
osd_reply_secondary_stabilize_t sec_stabilize;
osd_reply_secondary_list_t sec_list;
2019-12-11 14:18:19 +03:00
};
static int size_ok = sizeof(osd_any_op_t) < OSD_OP_PACKET_SIZE &&
sizeof(osd_any_reply_t) < OSD_REPLY_PACKET_SIZE
? (perror("BUG: too small packet size"), 0) : 1;