server: debug fixes
[fio.git] / server.h
CommitLineData
50d16976
JA
1#ifndef FIO_SERVER_H
2#define FIO_SERVER_H
3
132159a5 4#include <inttypes.h>
142575e6 5#include <string.h>
132159a5
JA
6#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 */
16 uint32_t pad;
17 uint32_t pdu_len; /* length of post-cmd layload */
18 uint32_t cmd_crc32; /* cmd checksum */
19 uint32_t pdu_crc32; /* payload checksum */
20 uint8_t payload[0]; /* payload */
21};
22
23enum {
24 FIO_SERVER_VER = 1,
25 FIO_SERVER_VER1 = 1,
26
27 FIO_SERVER_MAX_PDU = 4096,
28
29 FIO_NET_CMD_QUIT = 1,
30 FIO_NET_CMD_JOB = 2,
31 FIO_NET_CMD_JOB_END = 3,
32 FIO_NET_CMD_ACK = 4,
33 FIO_NET_CMD_NAK = 5,
37db14fe 34 FIO_NET_CMD_TEXT = 6,
132159a5
JA
35};
36
50d16976 37extern int fio_server(void);
142575e6
JA
38extern int fio_server_text_output(const char *, unsigned int len);
39extern int fio_server_log(const char *format, ...);
132159a5
JA
40
41extern int fio_client_connect(const char *);
42extern int fio_client_send_ini(const char *);
37db14fe 43extern int fio_handle_clients(void);
132159a5
JA
44
45extern int fio_recv_data(int sk, void *p, unsigned int len);
46extern int fio_send_data(int sk, const void *p, unsigned int len);
47extern void fio_net_cmd_crc(struct fio_net_cmd *);
37db14fe 48extern struct fio_net_cmd *fio_net_cmd_read(int sk);
132159a5 49
009b1be4 50extern int exit_backend;
132159a5
JA
51extern int fio_net_port;
52
53#if __BYTE_ORDER == __LITTLE_ENDIAN
54#define le16_to_cpu(x) (x)
55#define le32_to_cpu(x) (x)
56#define le64_to_cpu(x) (x)
57#define cpu_to_le16(x) (x)
58#define cpu_to_le32(x) (x)
59#define cpu_to_le64(x) (x)
60#elif __BYTE_ORDER == __BIG_ENDIAN
61#define le16_to_cpu(x) __bswap_16(x)
62#define le32_to_cpu(x) __bswap_32(x)
63#define le64_to_cpu(x) __bswap_64(x)
64#define cpu_to_le16(x) __bswap_16(x)
65#define cpu_to_le32(x) __bswap_32(x)
66#define cpu_to_le64(x) __bswap_64(x)
67#else
68#error "Endianness not detected"
69#endif
70
4d8f8780
JA
71static inline void fio_init_net_cmd(struct fio_net_cmd *cmd, uint16_t opcode,
72 const void *pdu, uint32_t pdu_len)
132159a5
JA
73{
74 memset(cmd, 0, sizeof(*cmd));
4d8f8780
JA
75
76 cmd->version = cpu_to_le16(FIO_SERVER_VER1);
82fa6b21 77 cmd->opcode = cpu_to_le16(opcode);
4d8f8780
JA
78
79 if (pdu) {
80 cmd->pdu_len = cpu_to_le32(pdu_len);
81 memcpy(&cmd->payload, pdu, pdu_len);
82 }
132159a5 83}
50d16976
JA
84
85#endif