1999-02-01 00:15:55 +00:00
|
|
|
/*
|
2002-02-20 03:35:59 +00:00
|
|
|
* Copyright (C) 1999-2002 Internet Software Consortium.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
1999-02-01 00:15:55 +00:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2000-07-27 09:55:03 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
|
|
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
1999-02-01 00:15:55 +00:00
|
|
|
*/
|
|
|
|
|
2002-02-20 03:35:59 +00:00
|
|
|
/* $Id: gpos_27.c,v 1.35 2002/02/20 03:34:47 marka Exp $ */
|
1999-02-01 00:15:55 +00:00
|
|
|
|
2000-03-16 02:00:37 +00:00
|
|
|
/* reviewed: Wed Mar 15 16:48:45 PST 2000 by brister */
|
|
|
|
|
|
|
|
/* RFC 1712 */
|
1999-02-01 00:15:55 +00:00
|
|
|
|
1999-05-05 00:19:04 +00:00
|
|
|
#ifndef RDATA_GENERIC_GPOS_27_C
|
|
|
|
#define RDATA_GENERIC_GPOS_27_C
|
1999-02-01 00:15:55 +00:00
|
|
|
|
2000-04-07 03:54:52 +00:00
|
|
|
#define RRTYPE_GPOS_ATTRIBUTES (0)
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
fromtext_gpos(ARGS_FROMTEXT) {
|
1999-02-01 00:15:55 +00:00
|
|
|
isc_token_t token;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
REQUIRE(type == 27);
|
|
|
|
|
2001-03-16 22:53:20 +00:00
|
|
|
UNUSED(type);
|
2000-03-16 01:31:03 +00:00
|
|
|
UNUSED(rdclass);
|
|
|
|
UNUSED(origin);
|
|
|
|
UNUSED(downcase);
|
2001-07-16 03:06:53 +00:00
|
|
|
UNUSED(callbacks);
|
1999-02-01 00:15:55 +00:00
|
|
|
|
2001-11-27 00:56:32 +00:00
|
|
|
for (i = 0; i < 3; i++) {
|
2000-11-08 01:56:15 +00:00
|
|
|
RETERR(isc_lex_getmastertoken(lexer, &token,
|
|
|
|
isc_tokentype_qstring,
|
|
|
|
ISC_FALSE));
|
2001-03-06 22:11:18 +00:00
|
|
|
RETTOK(txt_fromtext(&token.value.as_textregion, target));
|
1999-02-01 00:15:55 +00:00
|
|
|
}
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-02-01 00:15:55 +00:00
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
totext_gpos(ARGS_TOTEXT) {
|
1999-02-01 00:15:55 +00:00
|
|
|
isc_region_t region;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
REQUIRE(rdata->type == 27);
|
2000-10-25 05:44:10 +00:00
|
|
|
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, ®ion);
|
|
|
|
|
2001-11-27 00:56:32 +00:00
|
|
|
for (i = 0; i < 3; i++) {
|
1999-02-01 00:15:55 +00:00
|
|
|
RETERR(txt_totext(®ion, target));
|
|
|
|
if (i != 2)
|
|
|
|
RETERR(str_totext(" ", target));
|
|
|
|
}
|
|
|
|
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-02-01 00:15:55 +00:00
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
fromwire_gpos(ARGS_FROMWIRE) {
|
1999-02-01 00:15:55 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
REQUIRE(type == 27);
|
|
|
|
|
2001-03-16 22:53:20 +00:00
|
|
|
UNUSED(type);
|
2000-03-16 01:31:03 +00:00
|
|
|
UNUSED(dctx);
|
|
|
|
UNUSED(rdclass);
|
|
|
|
UNUSED(downcase);
|
1999-02-01 00:15:55 +00:00
|
|
|
|
2001-11-27 00:56:32 +00:00
|
|
|
for (i = 0; i < 3; i++)
|
1999-02-01 00:15:55 +00:00
|
|
|
RETERR(txt_fromwire(source, target));
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-02-01 00:15:55 +00:00
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
towire_gpos(ARGS_TOWIRE) {
|
1999-02-01 00:15:55 +00:00
|
|
|
|
|
|
|
REQUIRE(rdata->type == 27);
|
2000-10-25 05:44:10 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
1999-08-12 01:32:42 +00:00
|
|
|
static inline int
|
2000-06-01 18:26:56 +00:00
|
|
|
compare_gpos(ARGS_COMPARE) {
|
1999-02-01 00:15:55 +00:00
|
|
|
isc_region_t r1;
|
|
|
|
isc_region_t r2;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
1999-02-01 00:15:55 +00:00
|
|
|
REQUIRE(rdata1->type == rdata2->type);
|
1999-08-02 22:18:31 +00:00
|
|
|
REQUIRE(rdata1->rdclass == rdata2->rdclass);
|
1999-02-01 00:15:55 +00:00
|
|
|
REQUIRE(rdata1->type == 27);
|
2000-10-25 05:44:10 +00:00
|
|
|
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);
|
2002-01-05 07:05:28 +00:00
|
|
|
return (isc_region_compare(&r1, &r2));
|
1999-02-01 00:15:55 +00:00
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
fromstruct_gpos(ARGS_FROMSTRUCT) {
|
2000-05-22 12:38:12 +00:00
|
|
|
dns_rdata_gpos_t *gpos = source;
|
1999-02-01 00:15:55 +00:00
|
|
|
|
|
|
|
REQUIRE(type == 27);
|
2000-05-22 12:38:12 +00:00
|
|
|
REQUIRE(source != NULL);
|
|
|
|
REQUIRE(gpos->common.rdtype == type);
|
|
|
|
REQUIRE(gpos->common.rdclass == rdclass);
|
|
|
|
|
2001-03-16 22:53:20 +00:00
|
|
|
UNUSED(type);
|
2000-12-01 01:40:59 +00:00
|
|
|
UNUSED(rdclass);
|
|
|
|
|
2000-05-22 12:38:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
tostruct_gpos(ARGS_TOSTRUCT) {
|
2000-05-05 05:50:14 +00:00
|
|
|
dns_rdata_gpos_t *gpos = target;
|
|
|
|
isc_region_t region;
|
1999-02-01 00:15:55 +00:00
|
|
|
|
|
|
|
REQUIRE(rdata->type == 27);
|
2000-05-05 05:50:14 +00:00
|
|
|
REQUIRE(target != NULL);
|
2000-10-25 05:44:10 +00:00
|
|
|
REQUIRE(rdata->length != 0);
|
2000-05-05 05:50:14 +00:00
|
|
|
|
|
|
|
gpos->common.rdclass = rdata->rdclass;
|
|
|
|
gpos->common.rdtype = rdata->type;
|
|
|
|
ISC_LINK_INIT(&gpos->common, link);
|
|
|
|
|
2000-05-19 13:05:51 +00:00
|
|
|
dns_rdata_toregion(rdata, ®ion);
|
2000-05-05 05:50:14 +00:00
|
|
|
gpos->long_len = uint8_fromregion(®ion);
|
|
|
|
isc_region_consume(®ion, 1);
|
2001-06-21 04:00:47 +00:00
|
|
|
gpos->longitude = mem_maybedup(mctx, region.base, gpos->long_len);
|
|
|
|
if (gpos->longitude == NULL)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
isc_region_consume(®ion, gpos->long_len);
|
2000-05-05 05:50:14 +00:00
|
|
|
|
|
|
|
gpos->lat_len = uint8_fromregion(®ion);
|
|
|
|
isc_region_consume(®ion, 1);
|
2001-06-21 04:00:47 +00:00
|
|
|
gpos->latitude = mem_maybedup(mctx, region.base, gpos->lat_len);
|
|
|
|
if (gpos->latitude == NULL)
|
|
|
|
goto cleanup_longitude;
|
|
|
|
isc_region_consume(®ion, gpos->lat_len);
|
2000-05-05 05:50:14 +00:00
|
|
|
|
|
|
|
gpos->alt_len = uint8_fromregion(®ion);
|
|
|
|
isc_region_consume(®ion, 1);
|
|
|
|
if (gpos->lat_len > 0) {
|
2000-05-24 05:10:00 +00:00
|
|
|
gpos->altitude =
|
|
|
|
mem_maybedup(mctx, region.base, gpos->alt_len);
|
2000-05-05 05:50:14 +00:00
|
|
|
if (gpos->altitude == NULL)
|
|
|
|
goto cleanup_latitude;
|
2000-08-01 01:33:37 +00:00
|
|
|
} else
|
2000-05-05 05:50:14 +00:00
|
|
|
gpos->altitude = NULL;
|
|
|
|
|
|
|
|
gpos->mctx = mctx;
|
|
|
|
return (ISC_R_SUCCESS);
|
1999-02-01 00:15:55 +00:00
|
|
|
|
2000-05-05 05:50:14 +00:00
|
|
|
cleanup_latitude:
|
|
|
|
if (mctx != NULL && gpos->longitude != NULL)
|
|
|
|
isc_mem_free(mctx, gpos->longitude);
|
1999-02-01 00:15:55 +00:00
|
|
|
|
2000-05-05 05:50:14 +00:00
|
|
|
cleanup_longitude:
|
|
|
|
if (mctx != NULL && gpos->latitude != NULL)
|
|
|
|
isc_mem_free(mctx, gpos->latitude);
|
|
|
|
return (ISC_R_NOMEMORY);
|
1999-02-01 00:15:55 +00:00
|
|
|
}
|
1999-05-07 03:24:15 +00:00
|
|
|
|
1999-08-12 01:32:42 +00:00
|
|
|
static inline void
|
2000-06-01 18:26:56 +00:00
|
|
|
freestruct_gpos(ARGS_FREESTRUCT) {
|
2000-05-05 05:50:14 +00:00
|
|
|
dns_rdata_gpos_t *gpos = source;
|
2000-04-28 01:24:18 +00:00
|
|
|
|
2000-05-05 05:50:14 +00:00
|
|
|
REQUIRE(source != NULL);
|
|
|
|
REQUIRE(gpos->common.rdtype == 27);
|
|
|
|
|
|
|
|
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;
|
1999-05-07 03:24:15 +00:00
|
|
|
}
|
1999-08-02 22:18:31 +00:00
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
additionaldata_gpos(ARGS_ADDLDATA) {
|
1999-08-02 22:18:31 +00:00
|
|
|
REQUIRE(rdata->type == 27);
|
|
|
|
|
2000-04-28 01:24:18 +00:00
|
|
|
UNUSED(rdata);
|
2000-03-21 23:48:20 +00:00
|
|
|
UNUSED(add);
|
|
|
|
UNUSED(arg);
|
1999-08-02 22:18:31 +00:00
|
|
|
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-08-02 22:18:31 +00:00
|
|
|
}
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
static inline isc_result_t
|
2000-06-01 18:26:56 +00:00
|
|
|
digest_gpos(ARGS_DIGEST) {
|
1999-08-31 22:05:55 +00:00
|
|
|
isc_region_t r;
|
|
|
|
|
|
|
|
REQUIRE(rdata->type == 27);
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
1999-05-05 00:19:04 +00:00
|
|
|
#endif /* RDATA_GENERIC_GPOS_27_C */
|