blob: 73e00a5c13a93d496392b67f1d89e3ec9e0b8a6b [file] [log] [blame]
Jens Axboe50d16972011-09-29 17:45:28 -06001#ifndef FIO_SERVER_H
2#define FIO_SERVER_H
3
Jens Axboe132159a2011-09-30 15:01:32 -06004#include <inttypes.h>
Jens Axboe142575e2011-09-30 17:35:45 -06005#include <string.h>
Jens Axboe132159a2011-09-30 15:01:32 -06006#include <endian.h>
7
8/*
9 * On-wire encoding is little endian
10 */
11struct fio_net_cmd {
12 uint16_t version; /* protocol version */
13 uint16_t opcode; /* command opcode */
14 uint32_t flags; /* modifier flags */
15 uint64_t serial; /* serial number */
Jens Axboe132159a2011-09-30 15:01:32 -060016 uint32_t pdu_len; /* length of post-cmd layload */
Jens Axboefcee5ff2011-09-30 22:50:39 -060017 uint16_t cmd_crc16; /* cmd checksum */
18 uint16_t pdu_crc16; /* payload checksum */
Jens Axboe132159a2011-09-30 15:01:32 -060019 uint8_t payload[0]; /* payload */
20};
21
22enum {
23 FIO_SERVER_VER = 1,
24 FIO_SERVER_VER1 = 1,
25
26 FIO_SERVER_MAX_PDU = 4096,
27
28 FIO_NET_CMD_QUIT = 1,
29 FIO_NET_CMD_JOB = 2,
30 FIO_NET_CMD_JOB_END = 3,
31 FIO_NET_CMD_ACK = 4,
32 FIO_NET_CMD_NAK = 5,
Jens Axboe37db14f2011-09-30 17:00:42 -060033 FIO_NET_CMD_TEXT = 6,
Jens Axboefcee5ff2011-09-30 22:50:39 -060034
35 /* crc does not include the crc fields */
36 FIO_NET_CMD_CRC_SZ = sizeof(struct fio_net_cmd) -
37 2 * sizeof(uint16_t),
Jens Axboe132159a2011-09-30 15:01:32 -060038};
39
Jens Axboe50d16972011-09-29 17:45:28 -060040extern int fio_server(void);
Jens Axboe142575e2011-09-30 17:35:45 -060041extern int fio_server_text_output(const char *, unsigned int len);
42extern int fio_server_log(const char *format, ...);
Jens Axboe132159a2011-09-30 15:01:32 -060043
44extern int fio_client_connect(const char *);
45extern int fio_client_send_ini(const char *);
Jens Axboe37db14f2011-09-30 17:00:42 -060046extern int fio_handle_clients(void);
Jens Axboe132159a2011-09-30 15:01:32 -060047
48extern int fio_recv_data(int sk, void *p, unsigned int len);
49extern int fio_send_data(int sk, const void *p, unsigned int len);
50extern void fio_net_cmd_crc(struct fio_net_cmd *);
Jens Axboe37db14f2011-09-30 17:00:42 -060051extern struct fio_net_cmd *fio_net_cmd_read(int sk);
Jens Axboe132159a2011-09-30 15:01:32 -060052
Jens Axboe009b1be2011-09-29 18:27:02 -060053extern int exit_backend;
Jens Axboe132159a2011-09-30 15:01:32 -060054extern int fio_net_port;
55
56#if __BYTE_ORDER == __LITTLE_ENDIAN
57#define le16_to_cpu(x) (x)
58#define le32_to_cpu(x) (x)
59#define le64_to_cpu(x) (x)
60#define cpu_to_le16(x) (x)
61#define cpu_to_le32(x) (x)
62#define cpu_to_le64(x) (x)
63#elif __BYTE_ORDER == __BIG_ENDIAN
64#define le16_to_cpu(x) __bswap_16(x)
65#define le32_to_cpu(x) __bswap_32(x)
66#define le64_to_cpu(x) __bswap_64(x)
67#define cpu_to_le16(x) __bswap_16(x)
68#define cpu_to_le32(x) __bswap_32(x)
69#define cpu_to_le64(x) __bswap_64(x)
70#else
71#error "Endianness not detected"
72#endif
73
Jens Axboe4d8f8782011-09-30 22:24:17 -060074static inline void fio_init_net_cmd(struct fio_net_cmd *cmd, uint16_t opcode,
75 const void *pdu, uint32_t pdu_len)
Jens Axboe132159a2011-09-30 15:01:32 -060076{
77 memset(cmd, 0, sizeof(*cmd));
Jens Axboe4d8f8782011-09-30 22:24:17 -060078
79 cmd->version = cpu_to_le16(FIO_SERVER_VER1);
Jens Axboe82fa6b22011-09-30 22:29:08 -060080 cmd->opcode = cpu_to_le16(opcode);
Jens Axboe4d8f8782011-09-30 22:24:17 -060081
82 if (pdu) {
83 cmd->pdu_len = cpu_to_le32(pdu_len);
84 memcpy(&cmd->payload, pdu, pdu_len);
85 }
Jens Axboe132159a2011-09-30 15:01:32 -060086}
Jens Axboe50d16972011-09-29 17:45:28 -060087
88#endif