xref: /freebsd/sys/geom/mirror/g_mirror.h (revision d93a896e)
1 /*-
2  * Copyright (c) 2004-2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #ifndef	_G_MIRROR_H_
30 #define	_G_MIRROR_H_
31 
32 #include <sys/endian.h>
33 #include <sys/md5.h>
34 
35 #define	G_MIRROR_CLASS_NAME	"MIRROR"
36 
37 #define	G_MIRROR_MAGIC		"GEOM::MIRROR"
38 /*
39  * Version history:
40  * 0 - Initial version number.
41  * 1 - Added 'prefer' balance algorithm.
42  * 2 - Added md_genid field to metadata.
43  * 3 - Added md_provsize field to metadata.
44  * 4 - Added 'no failure synchronization' flag.
45  */
46 #define	G_MIRROR_VERSION	4
47 
48 #define	G_MIRROR_BALANCE_NONE		0
49 #define	G_MIRROR_BALANCE_ROUND_ROBIN	1
50 #define	G_MIRROR_BALANCE_LOAD		2
51 #define	G_MIRROR_BALANCE_SPLIT		3
52 #define	G_MIRROR_BALANCE_PREFER		4
53 #define	G_MIRROR_BALANCE_MIN		G_MIRROR_BALANCE_NONE
54 #define	G_MIRROR_BALANCE_MAX		G_MIRROR_BALANCE_PREFER
55 
56 #define	G_MIRROR_DISK_FLAG_DIRTY		0x0000000000000001ULL
57 #define	G_MIRROR_DISK_FLAG_SYNCHRONIZING	0x0000000000000002ULL
58 #define	G_MIRROR_DISK_FLAG_FORCE_SYNC		0x0000000000000004ULL
59 #define	G_MIRROR_DISK_FLAG_INACTIVE		0x0000000000000008ULL
60 #define	G_MIRROR_DISK_FLAG_HARDCODED		0x0000000000000010ULL
61 #define	G_MIRROR_DISK_FLAG_BROKEN		0x0000000000000020ULL
62 #define	G_MIRROR_DISK_FLAG_CANDELETE		0x0000000000000040ULL
63 #define	G_MIRROR_DISK_FLAG_MASK		(G_MIRROR_DISK_FLAG_DIRTY |	\
64 					 G_MIRROR_DISK_FLAG_SYNCHRONIZING | \
65 					 G_MIRROR_DISK_FLAG_FORCE_SYNC | \
66 					 G_MIRROR_DISK_FLAG_INACTIVE | \
67 					 G_MIRROR_DISK_FLAG_CANDELETE)
68 
69 #define	G_MIRROR_DEVICE_FLAG_NOAUTOSYNC	0x0000000000000001ULL
70 #define	G_MIRROR_DEVICE_FLAG_NOFAILSYNC	0x0000000000000002ULL
71 #define	G_MIRROR_DEVICE_FLAG_MASK	(G_MIRROR_DEVICE_FLAG_NOAUTOSYNC | \
72 					 G_MIRROR_DEVICE_FLAG_NOFAILSYNC)
73 
74 #ifdef _KERNEL
75 extern u_int g_mirror_debug;
76 
77 #define	G_MIRROR_DEBUG(lvl, ...)	do {				\
78 	if (g_mirror_debug >= (lvl)) {					\
79 		printf("GEOM_MIRROR");					\
80 		if (g_mirror_debug > 0)					\
81 			printf("[%u]", lvl);				\
82 		printf(": ");						\
83 		printf(__VA_ARGS__);					\
84 		printf("\n");						\
85 	}								\
86 } while (0)
87 #define	G_MIRROR_LOGREQ(lvl, bp, ...)	do {				\
88 	if (g_mirror_debug >= (lvl)) {					\
89 		printf("GEOM_MIRROR");					\
90 		if (g_mirror_debug > 0)					\
91 			printf("[%u]", lvl);				\
92 		printf(": ");						\
93 		printf(__VA_ARGS__);					\
94 		printf(" ");						\
95 		g_print_bio(bp);					\
96 		printf("\n");						\
97 	}								\
98 } while (0)
99 
100 #define	G_MIRROR_BIO_FLAG_REGULAR	0x01
101 #define	G_MIRROR_BIO_FLAG_SYNC		0x02
102 
103 /*
104  * Informations needed for synchronization.
105  */
106 struct g_mirror_disk_sync {
107 	struct g_consumer *ds_consumer;	/* Consumer connected to our mirror. */
108 	off_t		  ds_offset;	/* Offset of next request to send. */
109 	off_t		  ds_offset_done; /* Offset of already synchronized
110 					   region. */
111 	u_int		  ds_syncid;	/* Disk's synchronization ID. */
112 	u_int		  ds_inflight;	/* Number of in-flight sync requests. */
113 	struct bio	**ds_bios;	/* BIOs for synchronization I/O. */
114 };
115 
116 /*
117  * Informations needed for synchronization.
118  */
119 struct g_mirror_device_sync {
120 	struct g_geom	*ds_geom;	/* Synchronization geom. */
121 	u_int		 ds_ndisks;	/* Number of disks in SYNCHRONIZING
122 					   state. */
123 };
124 
125 #define	G_MIRROR_DISK_STATE_NONE		0
126 #define	G_MIRROR_DISK_STATE_NEW			1
127 #define	G_MIRROR_DISK_STATE_ACTIVE		2
128 #define	G_MIRROR_DISK_STATE_STALE		3
129 #define	G_MIRROR_DISK_STATE_SYNCHRONIZING	4
130 #define	G_MIRROR_DISK_STATE_DISCONNECTED	5
131 #define	G_MIRROR_DISK_STATE_DESTROY		6
132 struct g_mirror_disk {
133 	uint32_t	 d_id;		/* Disk ID. */
134 	struct g_consumer *d_consumer;	/* Consumer. */
135 	struct g_mirror_softc	*d_softc; /* Back-pointer to softc. */
136 	int		 d_state;	/* Disk state. */
137 	u_int		 d_priority;	/* Disk priority. */
138 	u_int		 load;		/* Averaged queue length */
139 	off_t		 d_last_offset;	/* Last read offset */
140 	uint64_t	 d_flags;	/* Additional flags. */
141 	u_int		 d_genid;	/* Disk's generation ID. */
142 	struct g_mirror_disk_sync d_sync;/* Sync information. */
143 	LIST_ENTRY(g_mirror_disk) d_next;
144 };
145 #define	d_name	d_consumer->provider->name
146 
147 #define	G_MIRROR_EVENT_DONTWAIT	0x1
148 #define	G_MIRROR_EVENT_WAIT	0x2
149 #define	G_MIRROR_EVENT_DEVICE	0x4
150 #define	G_MIRROR_EVENT_DONE	0x8
151 struct g_mirror_event {
152 	struct g_mirror_disk	*e_disk;
153 	int			 e_state;
154 	int			 e_flags;
155 	int			 e_error;
156 	TAILQ_ENTRY(g_mirror_event) e_next;
157 };
158 
159 #define	G_MIRROR_DEVICE_FLAG_DESTROY	0x0100000000000000ULL
160 #define	G_MIRROR_DEVICE_FLAG_DRAIN	0x0200000000000000ULL
161 #define	G_MIRROR_DEVICE_FLAG_CLOSEWAIT	0x0400000000000000ULL
162 #define	G_MIRROR_DEVICE_FLAG_TASTING	0x0800000000000000ULL
163 #define	G_MIRROR_DEVICE_FLAG_WIPE	0x1000000000000000ULL
164 
165 #define	G_MIRROR_DEVICE_STATE_STARTING		0
166 #define	G_MIRROR_DEVICE_STATE_RUNNING		1
167 
168 #define	G_MIRROR_TYPE_MANUAL	0
169 #define	G_MIRROR_TYPE_AUTOMATIC	1
170 
171 /* Bump syncid on first write. */
172 #define	G_MIRROR_BUMP_SYNCID	0x1
173 /* Bump genid immediately. */
174 #define	G_MIRROR_BUMP_GENID	0x2
175 struct g_mirror_softc {
176 	u_int		sc_type;	/* Device type (manual/automatic). */
177 	u_int		sc_state;	/* Device state. */
178 	uint32_t	sc_slice;	/* Slice size. */
179 	uint8_t		sc_balance;	/* Balance algorithm. */
180 	uint64_t	sc_mediasize;	/* Device size. */
181 	uint32_t	sc_sectorsize;	/* Sector size. */
182 	uint64_t	sc_flags;	/* Additional flags. */
183 
184 	struct g_geom	*sc_geom;
185 	struct g_provider *sc_provider;
186 	int		sc_provider_open;
187 
188 	uint32_t	sc_id;		/* Mirror unique ID. */
189 
190 	struct sx	 sc_lock;
191 	struct bio_queue_head sc_queue;
192 	struct mtx	 sc_queue_mtx;
193 	struct proc	*sc_worker;
194 	struct bio_queue_head sc_regular_delayed; /* Delayed I/O requests due
195 						     collision with sync
196 						     requests. */
197 	struct bio_queue_head sc_inflight; /* In-flight regular write
198 					      requests. */
199 	struct bio_queue_head sc_sync_delayed; /* Delayed sync requests due
200 						  collision with regular
201 						  requests. */
202 
203 	LIST_HEAD(, g_mirror_disk) sc_disks;
204 	u_int		sc_ndisks;	/* Number of disks. */
205 	struct g_mirror_disk *sc_hint;
206 
207 	u_int		sc_genid;	/* Generation ID. */
208 	u_int		sc_syncid;	/* Synchronization ID. */
209 	int		sc_bump_id;
210 	struct g_mirror_device_sync sc_sync;
211 	int		sc_idle;	/* DIRTY flags removed. */
212 	time_t		sc_last_write;
213 	u_int		sc_writes;
214 	u_int		sc_refcnt;	/* Number of softc references */
215 
216 	TAILQ_HEAD(, g_mirror_event) sc_events;
217 	struct mtx	sc_events_mtx;
218 
219 	struct callout	sc_callout;
220 
221 	struct root_hold_token *sc_rootmount;
222 
223 	struct mtx	 sc_done_mtx;
224 };
225 #define	sc_name	sc_geom->name
226 
227 struct g_mirror_metadata;
228 
229 u_int g_mirror_ndisks(struct g_mirror_softc *sc, int state);
230 struct g_geom * g_mirror_create(struct g_class *mp,
231     const struct g_mirror_metadata *md, u_int type);
232 #define	G_MIRROR_DESTROY_SOFT		0
233 #define	G_MIRROR_DESTROY_DELAYED	1
234 #define	G_MIRROR_DESTROY_HARD		2
235 int g_mirror_destroy(struct g_mirror_softc *sc, int how);
236 int g_mirror_event_send(void *arg, int state, int flags);
237 struct g_mirror_metadata;
238 int g_mirror_add_disk(struct g_mirror_softc *sc, struct g_provider *pp,
239     struct g_mirror_metadata *md);
240 int g_mirror_read_metadata(struct g_consumer *cp, struct g_mirror_metadata *md);
241 void g_mirror_fill_metadata(struct g_mirror_softc *sc,
242     struct g_mirror_disk *disk, struct g_mirror_metadata *md);
243 void g_mirror_update_metadata(struct g_mirror_disk *disk);
244 
245 g_ctl_req_t g_mirror_config;
246 #endif	/* _KERNEL */
247 
248 struct g_mirror_metadata {
249 	char		md_magic[16];	/* Magic value. */
250 	uint32_t	md_version;	/* Version number. */
251 	char		md_name[16];	/* Mirror name. */
252 	uint32_t	md_mid;		/* Mirror unique ID. */
253 	uint32_t	md_did;		/* Disk unique ID. */
254 	uint8_t		md_all;		/* Number of disks in mirror. */
255 	uint32_t	md_genid;	/* Generation ID. */
256 	uint32_t	md_syncid;	/* Synchronization ID. */
257 	uint8_t		md_priority;	/* Disk priority. */
258 	uint32_t	md_slice;	/* Slice size. */
259 	uint8_t		md_balance;	/* Balance type. */
260 	uint64_t	md_mediasize;	/* Size of the smallest
261 					   disk in mirror. */
262 	uint32_t	md_sectorsize;	/* Sector size. */
263 	uint64_t	md_sync_offset;	/* Synchronized offset. */
264 	uint64_t	md_mflags;	/* Additional mirror flags. */
265 	uint64_t	md_dflags;	/* Additional disk flags. */
266 	char		md_provider[16]; /* Hardcoded provider. */
267 	uint64_t	md_provsize;	/* Provider's size. */
268 	u_char		md_hash[16];	/* MD5 hash. */
269 };
270 static __inline void
271 mirror_metadata_encode(struct g_mirror_metadata *md, u_char *data)
272 {
273 	MD5_CTX ctx;
274 
275 	bcopy(md->md_magic, data, 16);
276 	le32enc(data + 16, md->md_version);
277 	bcopy(md->md_name, data + 20, 16);
278 	le32enc(data + 36, md->md_mid);
279 	le32enc(data + 40, md->md_did);
280 	*(data + 44) = md->md_all;
281 	le32enc(data + 45, md->md_genid);
282 	le32enc(data + 49, md->md_syncid);
283 	*(data + 53) = md->md_priority;
284 	le32enc(data + 54, md->md_slice);
285 	*(data + 58) = md->md_balance;
286 	le64enc(data + 59, md->md_mediasize);
287 	le32enc(data + 67, md->md_sectorsize);
288 	le64enc(data + 71, md->md_sync_offset);
289 	le64enc(data + 79, md->md_mflags);
290 	le64enc(data + 87, md->md_dflags);
291 	bcopy(md->md_provider, data + 95, 16);
292 	le64enc(data + 111, md->md_provsize);
293 	MD5Init(&ctx);
294 	MD5Update(&ctx, data, 119);
295 	MD5Final(md->md_hash, &ctx);
296 	bcopy(md->md_hash, data + 119, 16);
297 }
298 static __inline int
299 mirror_metadata_decode_v0v1(const u_char *data, struct g_mirror_metadata *md)
300 {
301 	MD5_CTX ctx;
302 
303 	bcopy(data + 20, md->md_name, 16);
304 	md->md_mid = le32dec(data + 36);
305 	md->md_did = le32dec(data + 40);
306 	md->md_all = *(data + 44);
307 	md->md_syncid = le32dec(data + 45);
308 	md->md_priority = *(data + 49);
309 	md->md_slice = le32dec(data + 50);
310 	md->md_balance = *(data + 54);
311 	md->md_mediasize = le64dec(data + 55);
312 	md->md_sectorsize = le32dec(data + 63);
313 	md->md_sync_offset = le64dec(data + 67);
314 	md->md_mflags = le64dec(data + 75);
315 	md->md_dflags = le64dec(data + 83);
316 	bcopy(data + 91, md->md_provider, 16);
317 	bcopy(data + 107, md->md_hash, 16);
318 	MD5Init(&ctx);
319 	MD5Update(&ctx, data, 107);
320 	MD5Final(md->md_hash, &ctx);
321 	if (bcmp(md->md_hash, data + 107, 16) != 0)
322 		return (EINVAL);
323 
324 	/* New fields. */
325 	md->md_genid = 0;
326 	md->md_provsize = 0;
327 
328 	return (0);
329 }
330 static __inline int
331 mirror_metadata_decode_v2(const u_char *data, struct g_mirror_metadata *md)
332 {
333 	MD5_CTX ctx;
334 
335 	bcopy(data + 20, md->md_name, 16);
336 	md->md_mid = le32dec(data + 36);
337 	md->md_did = le32dec(data + 40);
338 	md->md_all = *(data + 44);
339 	md->md_genid = le32dec(data + 45);
340 	md->md_syncid = le32dec(data + 49);
341 	md->md_priority = *(data + 53);
342 	md->md_slice = le32dec(data + 54);
343 	md->md_balance = *(data + 58);
344 	md->md_mediasize = le64dec(data + 59);
345 	md->md_sectorsize = le32dec(data + 67);
346 	md->md_sync_offset = le64dec(data + 71);
347 	md->md_mflags = le64dec(data + 79);
348 	md->md_dflags = le64dec(data + 87);
349 	bcopy(data + 95, md->md_provider, 16);
350 	bcopy(data + 111, md->md_hash, 16);
351 	MD5Init(&ctx);
352 	MD5Update(&ctx, data, 111);
353 	MD5Final(md->md_hash, &ctx);
354 	if (bcmp(md->md_hash, data + 111, 16) != 0)
355 		return (EINVAL);
356 
357 	/* New fields. */
358 	md->md_provsize = 0;
359 
360 	return (0);
361 }
362 static __inline int
363 mirror_metadata_decode_v3v4(const u_char *data, struct g_mirror_metadata *md)
364 {
365 	MD5_CTX ctx;
366 
367 	bcopy(data + 20, md->md_name, 16);
368 	md->md_mid = le32dec(data + 36);
369 	md->md_did = le32dec(data + 40);
370 	md->md_all = *(data + 44);
371 	md->md_genid = le32dec(data + 45);
372 	md->md_syncid = le32dec(data + 49);
373 	md->md_priority = *(data + 53);
374 	md->md_slice = le32dec(data + 54);
375 	md->md_balance = *(data + 58);
376 	md->md_mediasize = le64dec(data + 59);
377 	md->md_sectorsize = le32dec(data + 67);
378 	md->md_sync_offset = le64dec(data + 71);
379 	md->md_mflags = le64dec(data + 79);
380 	md->md_dflags = le64dec(data + 87);
381 	bcopy(data + 95, md->md_provider, 16);
382 	md->md_provsize = le64dec(data + 111);
383 	bcopy(data + 119, md->md_hash, 16);
384 	MD5Init(&ctx);
385 	MD5Update(&ctx, data, 119);
386 	MD5Final(md->md_hash, &ctx);
387 	if (bcmp(md->md_hash, data + 119, 16) != 0)
388 		return (EINVAL);
389 	return (0);
390 }
391 static __inline int
392 mirror_metadata_decode(const u_char *data, struct g_mirror_metadata *md)
393 {
394 	int error;
395 
396 	bcopy(data, md->md_magic, 16);
397 	md->md_version = le32dec(data + 16);
398 	switch (md->md_version) {
399 	case 0:
400 	case 1:
401 		error = mirror_metadata_decode_v0v1(data, md);
402 		break;
403 	case 2:
404 		error = mirror_metadata_decode_v2(data, md);
405 		break;
406 	case 3:
407 	case 4:
408 		error = mirror_metadata_decode_v3v4(data, md);
409 		break;
410 	default:
411 		error = EINVAL;
412 		break;
413 	}
414 	return (error);
415 }
416 
417 static __inline const char *
418 balance_name(u_int balance)
419 {
420 	static const char *algorithms[] = {
421 		[G_MIRROR_BALANCE_NONE] = "none",
422 		[G_MIRROR_BALANCE_ROUND_ROBIN] = "round-robin",
423 		[G_MIRROR_BALANCE_LOAD] = "load",
424 		[G_MIRROR_BALANCE_SPLIT] = "split",
425 		[G_MIRROR_BALANCE_PREFER] = "prefer",
426 		[G_MIRROR_BALANCE_MAX + 1] = "unknown"
427 	};
428 
429 	if (balance > G_MIRROR_BALANCE_MAX)
430 		balance = G_MIRROR_BALANCE_MAX + 1;
431 
432 	return (algorithms[balance]);
433 }
434 
435 static __inline int
436 balance_id(const char *name)
437 {
438 	static const char *algorithms[] = {
439 		[G_MIRROR_BALANCE_NONE] = "none",
440 		[G_MIRROR_BALANCE_ROUND_ROBIN] = "round-robin",
441 		[G_MIRROR_BALANCE_LOAD] = "load",
442 		[G_MIRROR_BALANCE_SPLIT] = "split",
443 		[G_MIRROR_BALANCE_PREFER] = "prefer"
444 	};
445 	int n;
446 
447 	for (n = G_MIRROR_BALANCE_MIN; n <= G_MIRROR_BALANCE_MAX; n++) {
448 		if (strcmp(name, algorithms[n]) == 0)
449 			return (n);
450 	}
451 	return (-1);
452 }
453 
454 static __inline void
455 mirror_metadata_dump(const struct g_mirror_metadata *md)
456 {
457 	static const char hex[] = "0123456789abcdef";
458 	char hash[16 * 2 + 1];
459 	u_int i;
460 
461 	printf("     magic: %s\n", md->md_magic);
462 	printf("   version: %u\n", (u_int)md->md_version);
463 	printf("      name: %s\n", md->md_name);
464 	printf("       mid: %u\n", (u_int)md->md_mid);
465 	printf("       did: %u\n", (u_int)md->md_did);
466 	printf("       all: %u\n", (u_int)md->md_all);
467 	printf("     genid: %u\n", (u_int)md->md_genid);
468 	printf("    syncid: %u\n", (u_int)md->md_syncid);
469 	printf("  priority: %u\n", (u_int)md->md_priority);
470 	printf("     slice: %u\n", (u_int)md->md_slice);
471 	printf("   balance: %s\n", balance_name((u_int)md->md_balance));
472 	printf(" mediasize: %jd\n", (intmax_t)md->md_mediasize);
473 	printf("sectorsize: %u\n", (u_int)md->md_sectorsize);
474 	printf("syncoffset: %jd\n", (intmax_t)md->md_sync_offset);
475 	printf("    mflags:");
476 	if (md->md_mflags == 0)
477 		printf(" NONE");
478 	else {
479 		if ((md->md_mflags & G_MIRROR_DEVICE_FLAG_NOFAILSYNC) != 0)
480 			printf(" NOFAILSYNC");
481 		if ((md->md_mflags & G_MIRROR_DEVICE_FLAG_NOAUTOSYNC) != 0)
482 			printf(" NOAUTOSYNC");
483 	}
484 	printf("\n");
485 	printf("    dflags:");
486 	if (md->md_dflags == 0)
487 		printf(" NONE");
488 	else {
489 		if ((md->md_dflags & G_MIRROR_DISK_FLAG_DIRTY) != 0)
490 			printf(" DIRTY");
491 		if ((md->md_dflags & G_MIRROR_DISK_FLAG_SYNCHRONIZING) != 0)
492 			printf(" SYNCHRONIZING");
493 		if ((md->md_dflags & G_MIRROR_DISK_FLAG_FORCE_SYNC) != 0)
494 			printf(" FORCE_SYNC");
495 		if ((md->md_dflags & G_MIRROR_DISK_FLAG_INACTIVE) != 0)
496 			printf(" INACTIVE");
497 	}
498 	printf("\n");
499 	printf("hcprovider: %s\n", md->md_provider);
500 	printf("  provsize: %ju\n", (uintmax_t)md->md_provsize);
501 	bzero(hash, sizeof(hash));
502 	for (i = 0; i < 16; i++) {
503 		hash[i * 2] = hex[md->md_hash[i] >> 4];
504 		hash[i * 2 + 1] = hex[md->md_hash[i] & 0x0f];
505 	}
506 	printf("  MD5 hash: %s\n", hash);
507 }
508 #endif	/* !_G_MIRROR_H_ */
509