2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-27 20:49:04 +00:00
bind/lib/dns/rdata/generic/gpos_27.c

238 lines
4.9 KiB
C
Raw Normal View History

1999-02-01 00:15:55 +00:00
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* SPDX-License-Identifier: MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
1999-02-01 00:15:55 +00:00
*/
/* RFC1712 */
1999-02-01 00:15:55 +00:00
#ifndef RDATA_GENERIC_GPOS_27_C
#define RDATA_GENERIC_GPOS_27_C
1999-02-01 00:15:55 +00:00
#define RRTYPE_GPOS_ATTRIBUTES (0)
static isc_result_t
2020-02-13 14:44:37 -08:00
fromtext_gpos(ARGS_FROMTEXT) {
1999-02-01 00:15:55 +00:00
isc_token_t token;
2020-02-13 14:44:37 -08:00
int i;
1999-02-01 00:15:55 +00:00
REQUIRE(type == dns_rdatatype_gpos);
1999-02-01 00:15:55 +00:00
UNUSED(type);
2000-03-16 01:31:03 +00:00
UNUSED(rdclass);
UNUSED(origin);
UNUSED(options);
UNUSED(callbacks);
1999-02-01 00:15:55 +00:00
for (i = 0; i < 3; i++) {
RETERR(isc_lex_getmastertoken(lexer, &token,
isc_tokentype_qstring, false));
RETTOK(txt_fromtext(&token.value.as_textregion, target));
1999-02-01 00:15:55 +00:00
}
return (ISC_R_SUCCESS);
1999-02-01 00:15:55 +00:00
}
static isc_result_t
2020-02-13 14:44:37 -08:00
totext_gpos(ARGS_TOTEXT) {
1999-02-01 00:15:55 +00:00
isc_region_t region;
2020-02-13 14:44:37 -08:00
int i;
1999-02-01 00:15:55 +00:00
REQUIRE(rdata->type == dns_rdatatype_gpos);
REQUIRE(rdata->length != 0);
1999-02-01 00:15:55 +00:00
2000-03-16 01:31:03 +00:00
UNUSED(tctx);
1999-02-01 00:15:55 +00:00
dns_rdata_toregion(rdata, &region);
for (i = 0; i < 3; i++) {
RETERR(txt_totext(&region, true, target));
if (i != 2) {
1999-02-01 00:15:55 +00:00
RETERR(str_totext(" ", target));
}
1999-02-01 00:15:55 +00:00
}
return (ISC_R_SUCCESS);
1999-02-01 00:15:55 +00:00
}
static isc_result_t
2020-02-13 14:44:37 -08:00
fromwire_gpos(ARGS_FROMWIRE) {
1999-02-01 00:15:55 +00:00
int i;
REQUIRE(type == dns_rdatatype_gpos);
1999-02-01 00:15:55 +00:00
UNUSED(type);
2000-03-16 01:31:03 +00:00
UNUSED(dctx);
UNUSED(rdclass);
UNUSED(options);
1999-02-01 00:15:55 +00:00
for (i = 0; i < 3; i++) {
1999-02-01 00:15:55 +00:00
RETERR(txt_fromwire(source, target));
}
return (ISC_R_SUCCESS);
1999-02-01 00:15:55 +00:00
}
static isc_result_t
2020-02-13 14:44:37 -08:00
towire_gpos(ARGS_TOWIRE) {
REQUIRE(rdata->type == dns_rdatatype_gpos);
REQUIRE(rdata->length != 0);
1999-02-01 00:15:55 +00:00
2000-03-16 01:31:03 +00:00
UNUSED(cctx);
1999-02-01 00:15:55 +00:00
2000-03-16 02:00:37 +00:00
return (mem_tobuffer(target, rdata->data, rdata->length));
1999-02-01 00:15:55 +00:00
}
static int
2020-02-13 14:44:37 -08:00
compare_gpos(ARGS_COMPARE) {
1999-02-01 00:15:55 +00:00
isc_region_t r1;
isc_region_t r2;
1999-02-01 00:15:55 +00:00
REQUIRE(rdata1->type == rdata2->type);
REQUIRE(rdata1->rdclass == rdata2->rdclass);
REQUIRE(rdata1->type == dns_rdatatype_gpos);
REQUIRE(rdata1->length != 0);
REQUIRE(rdata2->length != 0);
1999-02-01 00:15:55 +00:00
dns_rdata_toregion(rdata1, &r1);
dns_rdata_toregion(rdata2, &r2);
return (isc_region_compare(&r1, &r2));
1999-02-01 00:15:55 +00:00
}
static isc_result_t
2020-02-13 14:44:37 -08:00
fromstruct_gpos(ARGS_FROMSTRUCT) {
dns_rdata_gpos_t *gpos = source;
1999-02-01 00:15:55 +00:00
REQUIRE(type == dns_rdatatype_gpos);
REQUIRE(gpos != NULL);
REQUIRE(gpos->common.rdtype == type);
REQUIRE(gpos->common.rdclass == rdclass);
UNUSED(type);
UNUSED(rdclass);
RETERR(uint8_tobuffer(gpos->long_len, target));
RETERR(mem_tobuffer(target, gpos->longitude, gpos->long_len));
RETERR(uint8_tobuffer(gpos->lat_len, target));
RETERR(mem_tobuffer(target, gpos->latitude, gpos->lat_len));
RETERR(uint8_tobuffer(gpos->alt_len, target));
return (mem_tobuffer(target, gpos->altitude, gpos->alt_len));
1999-02-01 00:15:55 +00:00
}
static isc_result_t
2020-02-13 14:44:37 -08:00
tostruct_gpos(ARGS_TOSTRUCT) {
dns_rdata_gpos_t *gpos = target;
2020-02-13 14:44:37 -08:00
isc_region_t region;
1999-02-01 00:15:55 +00:00
REQUIRE(rdata->type == dns_rdatatype_gpos);
REQUIRE(gpos != NULL);
REQUIRE(rdata->length != 0);
gpos->common.rdclass = rdata->rdclass;
gpos->common.rdtype = rdata->type;
ISC_LINK_INIT(&gpos->common, link);
dns_rdata_toregion(rdata, &region);
gpos->long_len = uint8_fromregion(&region);
isc_region_consume(&region, 1);
gpos->longitude = mem_maybedup(mctx, region.base, gpos->long_len);
isc_region_consume(&region, gpos->long_len);
gpos->lat_len = uint8_fromregion(&region);
isc_region_consume(&region, 1);
gpos->latitude = mem_maybedup(mctx, region.base, gpos->lat_len);
isc_region_consume(&region, gpos->lat_len);
gpos->alt_len = uint8_fromregion(&region);
isc_region_consume(&region, 1);
if (gpos->lat_len > 0) {
gpos->altitude = mem_maybedup(mctx, region.base, gpos->alt_len);
} else {
gpos->altitude = NULL;
}
gpos->mctx = mctx;
return (ISC_R_SUCCESS);
1999-02-01 00:15:55 +00:00
}
static void
2020-02-13 14:44:37 -08:00
freestruct_gpos(ARGS_FREESTRUCT) {
dns_rdata_gpos_t *gpos = source;
REQUIRE(gpos != NULL);
REQUIRE(gpos->common.rdtype == dns_rdatatype_gpos);
if (gpos->mctx == NULL) {
return;
}
if (gpos->longitude != NULL) {
isc_mem_free(gpos->mctx, gpos->longitude);
}
if (gpos->latitude != NULL) {
isc_mem_free(gpos->mctx, gpos->latitude);
}
if (gpos->altitude != NULL) {
isc_mem_free(gpos->mctx, gpos->altitude);
}
gpos->mctx = NULL;
}
static isc_result_t
2020-02-13 14:44:37 -08:00
additionaldata_gpos(ARGS_ADDLDATA) {
REQUIRE(rdata->type == dns_rdatatype_gpos);
UNUSED(rdata);
UNUSED(owner);
2000-03-21 23:48:20 +00:00
UNUSED(add);
UNUSED(arg);
return (ISC_R_SUCCESS);
}
static isc_result_t
2020-02-13 14:44:37 -08:00
digest_gpos(ARGS_DIGEST) {
1999-08-31 22:05:55 +00:00
isc_region_t r;
REQUIRE(rdata->type == dns_rdatatype_gpos);
1999-08-31 22:05:55 +00:00
dns_rdata_toregion(rdata, &r);
2000-03-16 02:00:37 +00:00
return ((digest)(arg, &r));
1999-08-31 22:05:55 +00:00
}
static bool
2020-02-13 14:44:37 -08:00
checkowner_gpos(ARGS_CHECKOWNER) {
REQUIRE(type == dns_rdatatype_gpos);
UNUSED(name);
UNUSED(type);
UNUSED(rdclass);
UNUSED(wildcard);
return (true);
}
static bool
2020-02-13 14:44:37 -08:00
checknames_gpos(ARGS_CHECKNAMES) {
REQUIRE(rdata->type == dns_rdatatype_gpos);
UNUSED(rdata);
UNUSED(owner);
UNUSED(bad);
return (true);
}
static int
2020-02-13 14:44:37 -08:00
casecompare_gpos(ARGS_COMPARE) {
return (compare_gpos(rdata1, rdata2));
}
#endif /* RDATA_GENERIC_GPOS_27_C */