hast.h revision 212038
1275970Scy/*-
2275970Scy * Copyright (c) 2009-2010 The FreeBSD Foundation
3275970Scy * All rights reserved.
4275970Scy *
5275970Scy * This software was developed by Pawel Jakub Dawidek under sponsorship from
6275970Scy * the FreeBSD Foundation.
7275970Scy *
8275970Scy * Redistribution and use in source and binary forms, with or without
9275970Scy * modification, are permitted provided that the following conditions
10275970Scy * are met:
11275970Scy * 1. Redistributions of source code must retain the above copyright
12275970Scy *    notice, this list of conditions and the following disclaimer.
13275970Scy * 2. Redistributions in binary form must reproduce the above copyright
14275970Scy *    notice, this list of conditions and the following disclaimer in the
15275970Scy *    documentation and/or other materials provided with the distribution.
16275970Scy *
17275970Scy * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
18275970Scy * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19275970Scy * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20275970Scy * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
21275970Scy * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22275970Scy * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23275970Scy * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24275970Scy * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25275970Scy * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26275970Scy * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27275970Scy * SUCH DAMAGE.
28275970Scy *
29275970Scy * $FreeBSD: head/sbin/hastd/hast.h 212038 2010-08-30 23:26:10Z pjd $
30275970Scy */
31275970Scy
32275970Scy#ifndef	_HAST_H_
33275970Scy#define	_HAST_H_
34275970Scy
35275970Scy#include <sys/queue.h>
36275970Scy#include <sys/socket.h>
37275970Scy
38275970Scy#include <arpa/inet.h>
39275970Scy
40275970Scy#include <netinet/in.h>
41275970Scy
42275970Scy#include <limits.h>
43275970Scy#include <pthread.h>
44275970Scy#include <stdbool.h>
45275970Scy#include <stdint.h>
46275970Scy
47275970Scy#include <activemap.h>
48275970Scy
49275970Scy#include "proto.h"
50275970Scy
51275970Scy/*
52275970Scy * Version history:
53275970Scy * 0 - initial version
54275970Scy * 1 - HIO_KEEPALIVE added
55275970Scy */
56275970Scy#define	HAST_PROTO_VERSION	1
57275970Scy
58275970Scy#define	EHAST_OK		0
59275970Scy#define	EHAST_NOENTRY		1
60275970Scy#define	EHAST_INVALID		2
61275970Scy#define	EHAST_NOMEMORY		3
62275970Scy#define	EHAST_UNIMPLEMENTED	4
63275970Scy
64275970Scy#define	HASTCTL_CMD_UNKNOWN	0
65275970Scy#define	HASTCTL_CMD_SETROLE	1
66275970Scy#define	HASTCTL_CMD_STATUS	2
67275970Scy
68275970Scy#define	HAST_ROLE_UNDEF		0
69275970Scy#define	HAST_ROLE_INIT		1
70275970Scy#define	HAST_ROLE_PRIMARY	2
71275970Scy#define	HAST_ROLE_SECONDARY	3
72275970Scy
73275970Scy#define	HAST_SYNCSRC_UNDEF	0
74275970Scy#define	HAST_SYNCSRC_PRIMARY	1
75275970Scy#define	HAST_SYNCSRC_SECONDARY	2
76275970Scy
77275970Scy#define	HIO_UNDEF		0
78275970Scy#define	HIO_READ		1
79275970Scy#define	HIO_WRITE		2
80275970Scy#define	HIO_DELETE		3
81275970Scy#define	HIO_FLUSH		4
82275970Scy#define	HIO_KEEPALIVE		5
83275970Scy
84#define	HAST_TIMEOUT	5
85#define	HAST_CONFIG	"/etc/hast.conf"
86#define	HAST_CONTROL	"/var/run/hastctl"
87#define	HASTD_PORT	8457
88#define	HASTD_LISTEN	"tcp4://0.0.0.0:8457"
89#define	HASTD_PIDFILE	"/var/run/hastd.pid"
90
91/* Default extent size. */
92#define	HAST_EXTENTSIZE	2097152
93/* Default maximum number of extents that are kept dirty. */
94#define	HAST_KEEPDIRTY	64
95
96#define	HAST_ADDRSIZE	1024
97#define	HAST_TOKEN_SIZE	16
98
99struct hastd_config {
100	/* Address to communicate with hastctl(8). */
101	char	 hc_controladdr[HAST_ADDRSIZE];
102	/* Protocol-specific data. */
103	struct proto_conn *hc_controlconn;
104	/* Address to listen on. */
105	char	 hc_listenaddr[HAST_ADDRSIZE];
106	/* Protocol-specific data. */
107	struct proto_conn *hc_listenconn;
108	/* List of resources. */
109	TAILQ_HEAD(, hast_resource) hc_resources;
110};
111
112#define	HAST_REPLICATION_FULLSYNC	0
113#define	HAST_REPLICATION_MEMSYNC	1
114#define	HAST_REPLICATION_ASYNC		2
115
116/*
117 * Structure that describes single resource.
118 */
119struct hast_resource {
120	/* Resource name. */
121	char	hr_name[NAME_MAX];
122	/* Replication mode (HAST_REPLICATION_*). */
123	int	hr_replication;
124	/* Provider name that will appear in /dev/hast/. */
125	char	hr_provname[NAME_MAX];
126	/* Synchronization extent size. */
127	int	hr_extentsize;
128	/* Maximum number of extents that are kept dirty. */
129	int	hr_keepdirty;
130	/* Path to a program to execute on various events. */
131	char	hr_exec[PATH_MAX];
132
133	/* Path to local component. */
134	char	hr_localpath[PATH_MAX];
135	/* Descriptor to access local component. */
136	int	hr_localfd;
137	/* Offset into local component. */
138	off_t	hr_localoff;
139	/* Size of usable space. */
140	off_t	hr_datasize;
141	/* Size of entire local provider. */
142	off_t	hr_local_mediasize;
143	/* Sector size of local provider. */
144	unsigned int hr_local_sectorsize;
145
146	/* Descriptor for /dev/ggctl communication. */
147	int	hr_ggatefd;
148	/* Unit number for ggate communication. */
149	int	hr_ggateunit;
150
151	/* Address of the remote component. */
152	char	hr_remoteaddr[HAST_ADDRSIZE];
153	/* Connection for incoming data. */
154	struct proto_conn *hr_remotein;
155	/* Connection for outgoing data. */
156	struct proto_conn *hr_remoteout;
157	/* Token to verify both in and out connection are coming from
158	   the same node (not necessarily from the same address). */
159	unsigned char hr_token[HAST_TOKEN_SIZE];
160	/* Connection timeout. */
161	int	hr_timeout;
162
163	/* Resource unique identifier. */
164	uint64_t hr_resuid;
165	/* Primary's local modification count. */
166	uint64_t hr_primary_localcnt;
167	/* Primary's remote modification count. */
168	uint64_t hr_primary_remotecnt;
169	/* Secondary's local modification count. */
170	uint64_t hr_secondary_localcnt;
171	/* Secondary's remote modification count. */
172	uint64_t hr_secondary_remotecnt;
173	/* Synchronization source. */
174	uint8_t hr_syncsrc;
175
176	/* Resource role: HAST_ROLE_{INIT,PRIMARY,SECONDARY}. */
177	int	hr_role;
178	/* Previous resource role: HAST_ROLE_{INIT,PRIMARY,SECONDARY}. */
179	int	hr_previous_role;
180	/* PID of child worker process. 0 - no child. */
181	pid_t	hr_workerpid;
182	/* Control connection between parent and child. */
183	struct proto_conn *hr_ctrl;
184	/* Events from child to parent. */
185	struct proto_conn *hr_event;
186
187	/* Activemap structure. */
188	struct activemap *hr_amp;
189	/* Locked used to synchronize access to hr_amp. */
190	pthread_mutex_t hr_amp_lock;
191
192	/* Next resource. */
193	TAILQ_ENTRY(hast_resource) hr_next;
194};
195
196struct hastd_config *yy_config_parse(const char *config, bool exitonerror);
197void yy_config_free(struct hastd_config *config);
198
199void yyerror(const char *);
200int yylex(void);
201int yyparse(void);
202
203#endif	/* !_HAST_H_ */
204