Refactoring BIO: add wrappers around sockaddr et al
authorRichard Levitte <levitte@openssl.org>
Tue, 2 Feb 2016 14:54:57 +0000 (15:54 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 3 Feb 2016 18:37:07 +0000 (19:37 +0100)
commit28a0841bf58e3813b2e07ad22f19484308e2f70a
tree41bc78f3b4c995f1e97f85d930537103e41d4dbb
parentba2de73b185016e0a98e62f75b368ab6ae673919
Refactoring BIO: add wrappers around sockaddr et al

Because different platforms have different levels of support for IPv6,
different kinds of sockaddr variants, and some have getaddrinfo et al
while others don't, we could end up with a mess if ifdefs, duplicate
code and other maintainance nightmares.

Instead, we're introducing wrappers around the common form for socket
communication:
BIO_ADDR, closely related to struct sockaddr and some of its variants.
BIO_ADDRINFO, closely related to struct addrinfo.

With that comes support routines, both convenient creators and
accessors, plus a few utility functions:

BIO_parse_hostserv, takes a string of the form host:service and
splits it into host and service.  It checks for * in both parts, and
converts any [ipv6-address] syntax to ust the IPv6 address.

BIO_lookup, looks up information on a host.

All routines handle IPv4 (AF_INET) and IPv6 (AF_INET6) addresses, and
there is support for local sockets (AF_UNIX) as well.

Reviewed-by: Kurt Roeckx <kurt@openssl.org>
crypto/bio/Makefile.in
crypto/bio/b_addr.c [new file with mode: 0644]
crypto/bio/b_sock.c
crypto/bio/bio_lcl.h
doc/crypto/BIO_ADDR.pod [new file with mode: 0644]
doc/crypto/BIO_ADDRINFO.pod [new file with mode: 0644]
doc/crypto/BIO_parse_hostserv.pod [new file with mode: 0644]
e_os.h
include/openssl/bio.h