xref: /openbsd-src/usr.bin/dig/lib/dns/rdata/generic/l64_106.c (revision 505ee9ea3b177e2387d907a91ca7da069f3f14d8)
1 /*
2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14  * PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 #ifndef RDATA_GENERIC_L64_106_C
18 #define RDATA_GENERIC_L64_106_C
19 
20 #include <string.h>
21 
22 #include <isc/net.h>
23 
24 static inline isc_result_t
25 totext_l64(ARGS_TOTEXT) {
26 	isc_region_t region;
27 	char buf[sizeof("xxxx:xxxx:xxxx:xxxx")];
28 	unsigned short num;
29 
30 	REQUIRE(rdata->type == dns_rdatatype_l64);
31 	REQUIRE(rdata->length == 10);
32 
33 	UNUSED(tctx);
34 
35 	dns_rdata_toregion(rdata, &region);
36 	num = uint16_fromregion(&region);
37 	isc_region_consume(&region, 2);
38 	snprintf(buf, sizeof(buf), "%u", num);
39 	RETERR(isc_str_tobuffer(buf, target));
40 
41 	RETERR(isc_str_tobuffer(" ", target));
42 
43 	snprintf(buf, sizeof(buf), "%x:%x:%x:%x",
44 		 region.base[0]<<8 | region.base[1],
45 		 region.base[2]<<8 | region.base[3],
46 		 region.base[4]<<8 | region.base[5],
47 		 region.base[6]<<8 | region.base[7]);
48 	return (isc_str_tobuffer(buf, target));
49 }
50 
51 static inline isc_result_t
52 fromwire_l64(ARGS_FROMWIRE) {
53 	isc_region_t sregion;
54 
55 	REQUIRE(type == dns_rdatatype_l64);
56 
57 	UNUSED(type);
58 	UNUSED(options);
59 	UNUSED(rdclass);
60 	UNUSED(dctx);
61 
62 	isc_buffer_activeregion(source, &sregion);
63 	if (sregion.length != 10)
64 		return (DNS_R_FORMERR);
65 	isc_buffer_forward(source, sregion.length);
66 	return (isc_mem_tobuffer(target, sregion.base, sregion.length));
67 }
68 
69 static inline isc_result_t
70 towire_l64(ARGS_TOWIRE) {
71 
72 	REQUIRE(rdata->type == dns_rdatatype_l64);
73 	REQUIRE(rdata->length == 10);
74 
75 	UNUSED(cctx);
76 
77 	return (isc_mem_tobuffer(target, rdata->data, rdata->length));
78 }
79 
80 #endif	/* RDATA_GENERIC_L64_106_C */
81