minix/lib/libform/type_ipv6.c
Thomas Cort a0e6850f82 Importing lib/libform
No Minix-specific changes needed.

Change-Id: Ia8ddbdb57ac04dfb42d79c374b9e25b189f9dc3b
2013-11-12 07:56:07 -05:00

124 lines
3.7 KiB
C

/* $NetBSD: type_ipv6.c,v 1.10 2004/11/24 11:57:09 blymn Exp $ */
/*-
* Copyright (c) 1998-1999 Brett Lymn
* (blymn@baea.com.au, brett_lymn@yahoo.com.au)
* All rights reserved.
*
* This code has been donated to The NetBSD Foundation by the Author.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Many thanks to Jun-ichiro itojun Hagino <itojun@NetBSD.org> for providing
* the sample code for the check field function, this function is 99.999%
* his code.
*
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: type_ipv6.c,v 1.10 2004/11/24 11:57:09 blymn Exp $");
#include <sys/types.h>
#include <sys/socket.h>
#include <ctype.h>
#include <netdb.h>
#include <string.h>
#include "form.h"
#include "internals.h"
/*
* The IP v6 address type handling.
*/
/*
* Check the contents of the field buffer are a valid Ipv6 address only.
*/
static int
ipv6_check_field(FIELD *field, char *args)
{
char cleaned[NI_MAXHOST];
struct addrinfo hints, *res;
const int niflags = NI_NUMERICHOST;
if (args == NULL)
return FALSE;
memset(&hints, 0, sizeof(hints));
hints.ai_family = AF_INET6;
hints.ai_socktype = SOCK_DGRAM; /* dummy */
hints.ai_flags = AI_NUMERICHOST;
if (getaddrinfo(args, "0", &hints, &res) != 0) {
/* no it is not an IPv6 address */
return FALSE;
}
if (res->ai_next) {
/* somehow the address resolved to multiple
* addresses - strange
*/
freeaddrinfo(res);
return FALSE;
}
if (getnameinfo(res->ai_addr, res->ai_addrlen, cleaned,
(socklen_t) sizeof(cleaned), NULL, 0, niflags) != 0) {
freeaddrinfo(res);
return FALSE;
}
freeaddrinfo(res);
/*
* now we are sure host is an IPv6 address literal, and "cleaned"
* has the uniformly-formatted IPv6 address literal. Re-set the
* field buffer to be the reformatted IPv6 address
*/
set_field_buffer(field, 0, cleaned);
return TRUE;
}
/*
* Check the given character is numeric, return TRUE if it is.
*/
static int
ipv6_check_char(/* ARGSUSED1 */ int c, char *args)
{
return (isxdigit(c) || (c == '.') || (c == ':')) ? TRUE : FALSE;
}
static FIELDTYPE builtin_ipv6 = {
_TYPE_IS_BUILTIN, /* flags */
0, /* refcount */
NULL, /* link */
NULL, /* make_args */
NULL, /* copy_args */
NULL, /* free_args */
ipv6_check_field, /* field_check */
ipv6_check_char, /* char_check */
NULL, /* next_choice */
NULL /* prev_choice */
};
FIELDTYPE *TYPE_IPV6 = &builtin_ipv6;