luasocket/src/inet.c

446 lines
15 KiB
C
Raw Normal View History

2002-03-21 05:52:38 -08:00
/*=========================================================================*\
2003-05-24 18:54:13 -07:00
* Internet domain functions
* LuaSocket toolkit
2002-03-21 05:52:38 -08:00
\*=========================================================================*/
#include <stdio.h>
2002-03-21 05:52:38 -08:00
#include <string.h>
2005-09-28 23:11:42 -07:00
#include "lua.h"
#include "lauxlib.h"
2002-03-21 05:52:38 -08:00
2003-05-24 18:54:13 -07:00
#include "inet.h"
2002-03-21 05:52:38 -08:00
/*=========================================================================*\
* Internal function prototypes.
\*=========================================================================*/
2003-05-24 18:54:13 -07:00
static int inet_global_toip(lua_State *L);
static int inet_global_getaddrinfo(lua_State *L);
2003-05-24 18:54:13 -07:00
static int inet_global_tohostname(lua_State *L);
static int inet_global_getnameinfo(lua_State *L);
2002-03-21 05:52:38 -08:00
static void inet_pushresolved(lua_State *L, struct hostent *hp);
static int inet_global_gethostname(lua_State *L);
2002-03-21 05:52:38 -08:00
/* DNS functions */
static luaL_Reg func[] = {
2012-04-11 13:21:25 -07:00
{ "toip", inet_global_toip},
{ "getaddrinfo", inet_global_getaddrinfo},
2012-04-11 13:21:25 -07:00
{ "tohostname", inet_global_tohostname},
{ "getnameinfo", inet_global_getnameinfo},
{ "gethostname", inet_global_gethostname},
2003-05-24 18:54:13 -07:00
{ NULL, NULL}
};
2002-03-21 05:52:38 -08:00
/*=========================================================================*\
* Exported functions
\*=========================================================================*/
/*-------------------------------------------------------------------------*\
* Initializes module
\*-------------------------------------------------------------------------*/
int inet_open(lua_State *L)
2002-03-21 05:52:38 -08:00
{
lua_pushstring(L, "dns");
lua_newtable(L);
luaL_openlib(L, NULL, func, 0);
lua_settable(L, -3);
2004-03-25 16:18:41 -08:00
return 0;
2002-03-21 05:52:38 -08:00
}
/*=========================================================================*\
* Global Lua functions
\*=========================================================================*/
/*-------------------------------------------------------------------------*\
2002-07-03 12:06:55 -07:00
* Returns all information provided by the resolver given a host name
* or ip address
2002-03-21 05:52:38 -08:00
\*-------------------------------------------------------------------------*/
2004-07-14 23:11:53 -07:00
static int inet_gethost(const char *address, struct hostent **hp) {
2002-03-21 05:52:38 -08:00
struct in_addr addr;
if (inet_aton(address, &addr))
2005-10-06 21:40:59 -07:00
return socket_gethostbyaddr((char *) &addr, sizeof(addr), hp);
else
2005-10-06 21:40:59 -07:00
return socket_gethostbyname(address, hp);
2004-07-14 23:11:53 -07:00
}
/*-------------------------------------------------------------------------*\
* Returns all information provided by the resolver given a host name
* or ip address
\*-------------------------------------------------------------------------*/
static int inet_global_tohostname(lua_State *L) {
const char *address = luaL_checkstring(L, 1);
struct hostent *hp = NULL;
2004-07-14 23:11:53 -07:00
int err = inet_gethost(address, &hp);
if (err != IO_DONE) {
2002-03-21 05:52:38 -08:00
lua_pushnil(L);
2005-10-06 21:40:59 -07:00
lua_pushstring(L, socket_hoststrerror(err));
2002-03-21 05:52:38 -08:00
return 2;
}
2004-07-14 23:11:53 -07:00
lua_pushstring(L, hp->h_name);
2002-03-21 05:52:38 -08:00
inet_pushresolved(L, hp);
return 2;
}
static int inet_global_getnameinfo(lua_State *L) {
int i, ret;
char host[1024];
char serv[32];
struct addrinfo hints;
struct addrinfo *resolved, *iter;
const char *node = luaL_optstring(L, 1, NULL);
const char *service = luaL_optstring(L, 2, NULL);
if (!(node || service))
luaL_error(L, "You have to specify a hostname, a service, or both");
memset(&hints, 0, sizeof(hints));
hints.ai_socktype = SOCK_STREAM;
hints.ai_family = PF_UNSPEC;
/* getaddrinfo must get a node and a service argument */
ret = getaddrinfo(node ? node : "127.0.0.1", service ? service : "7",
&hints, &resolved);
if (ret != 0) {
lua_pushnil(L);
lua_pushstring(L, socket_gaistrerror(ret));
return 2;
}
lua_newtable(L);
for (i = 1, iter = resolved; iter; i++, iter = iter->ai_next) {
getnameinfo(iter->ai_addr, iter->ai_addrlen, host,
node ? sizeof(host) : 0, serv, service ? sizeof(serv) : 0, 0);
if (node) {
lua_pushnumber(L, i);
lua_pushstring(L, host);
lua_settable(L, -3);
}
}
freeaddrinfo(resolved);
if (service) {
lua_pushstring(L, serv);
return 2;
} else {
return 1;
}
}
2002-03-21 05:52:38 -08:00
/*-------------------------------------------------------------------------*\
2002-07-03 12:06:55 -07:00
* Returns all information provided by the resolver given a host name
* or ip address
2002-03-21 05:52:38 -08:00
\*-------------------------------------------------------------------------*/
2004-07-14 23:11:53 -07:00
static int inet_global_toip(lua_State *L)
2002-03-21 05:52:38 -08:00
{
2003-05-24 18:54:13 -07:00
const char *address = luaL_checkstring(L, 1);
struct hostent *hp = NULL;
2004-07-14 23:11:53 -07:00
int err = inet_gethost(address, &hp);
if (err != IO_DONE) {
2002-03-21 05:52:38 -08:00
lua_pushnil(L);
2005-10-06 21:40:59 -07:00
lua_pushstring(L, socket_hoststrerror(err));
2002-03-21 05:52:38 -08:00
return 2;
}
2004-07-14 23:11:53 -07:00
lua_pushstring(L, inet_ntoa(*((struct in_addr *) hp->h_addr)));
2002-03-21 05:52:38 -08:00
inet_pushresolved(L, hp);
return 2;
}
static int inet_global_getaddrinfo(lua_State *L)
2012-04-11 13:21:25 -07:00
{
const char *hostname = luaL_checkstring(L, 1);
struct addrinfo *iterator = NULL, *resolved = NULL;
struct addrinfo hints;
int i = 1, ret = 0;
memset(&hints, 0, sizeof(hints));
hints.ai_socktype = SOCK_STREAM;
hints.ai_family = PF_UNSPEC;
ret = getaddrinfo(hostname, NULL, &hints, &resolved);
if (ret != 0) {
lua_pushnil(L);
lua_pushstring(L, socket_gaistrerror(ret));
2012-04-11 13:21:25 -07:00
return 2;
}
lua_newtable(L);
for (iterator = resolved; iterator; iterator = iterator->ai_next) {
char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV];
getnameinfo(iterator->ai_addr, iterator->ai_addrlen, hbuf, sizeof(hbuf),
sbuf, 0, NI_NUMERICHOST);
lua_pushnumber(L, i);
lua_newtable(L);
switch (iterator->ai_family) {
case AF_INET:
lua_pushliteral(L, "family");
lua_pushliteral(L, "inet");
lua_settable(L, -3);
break;
case AF_INET6:
lua_pushliteral(L, "family");
lua_pushliteral(L, "inet6");
lua_settable(L, -3);
break;;
}
lua_pushliteral(L, "addr");
lua_pushstring(L, hbuf);
lua_settable(L, -3);
lua_settable(L, -3);
i++;
}
2012-04-11 13:21:25 -07:00
freeaddrinfo(resolved);
return 1;
}
2004-07-14 23:11:53 -07:00
/*-------------------------------------------------------------------------*\
* Gets the host name
\*-------------------------------------------------------------------------*/
static int inet_global_gethostname(lua_State *L)
{
char name[257];
name[256] = '\0';
if (gethostname(name, 256) < 0) {
lua_pushnil(L);
lua_pushstring(L, "gethostname failed");
return 2;
} else {
lua_pushstring(L, name);
return 1;
}
}
2002-03-21 05:52:38 -08:00
/*=========================================================================*\
2002-07-03 12:06:55 -07:00
* Lua methods
2002-03-21 05:52:38 -08:00
\*=========================================================================*/
/*-------------------------------------------------------------------------*\
* Retrieves socket peer name
\*-------------------------------------------------------------------------*/
int inet_meth_getpeername(lua_State *L, p_socket ps, int family)
2002-03-21 05:52:38 -08:00
{
switch (family) {
case PF_INET: {
struct sockaddr_in peer;
socklen_t peer_len = sizeof(peer);
char name[INET_ADDRSTRLEN];
if (getpeername(*ps, (SA *) &peer, &peer_len) < 0) {
lua_pushnil(L);
lua_pushstring(L, "getpeername failed");
return 2;
} else {
inet_ntop(family, &peer.sin_addr, name, sizeof(name));
lua_pushstring(L, name);
lua_pushnumber(L, ntohs(peer.sin_port));
lua_pushliteral(L, "inet");
return 3;
}
}
case PF_INET6: {
struct sockaddr_in6 peer;
socklen_t peer_len = sizeof(peer);
char name[INET6_ADDRSTRLEN];
if (getpeername(*ps, (SA *) &peer, &peer_len) < 0) {
lua_pushnil(L);
lua_pushstring(L, "getpeername failed");
return 2;
} else {
inet_ntop(family, &peer.sin6_addr, name, sizeof(name));
lua_pushstring(L, name);
lua_pushnumber(L, ntohs(peer.sin6_port));
lua_pushliteral(L, "inet6");
return 3;
}
return 2;
}
default:
lua_pushnil(L);
lua_pushstring(L, "unknown family");
return 2;
2002-03-21 05:52:38 -08:00
}
}
/*-------------------------------------------------------------------------*\
* Retrieves socket local name
\*-------------------------------------------------------------------------*/
int inet_meth_getsockname(lua_State *L, p_socket ps, int family)
2002-03-21 05:52:38 -08:00
{
switch (family) {
case PF_INET: {
struct sockaddr_in local;
socklen_t local_len = sizeof(local);
char name[INET_ADDRSTRLEN];
if (getsockname(*ps, (SA *) &local, &local_len) < 0) {
lua_pushnil(L);
lua_pushstring(L, "getsockname failed");
return 2;
} else {
inet_ntop(family, &local.sin_addr, name, sizeof(name));
lua_pushstring(L, name);
lua_pushnumber(L, ntohs(local.sin_port));
lua_pushliteral(L, "inet");
return 3;
}
}
case PF_INET6: {
struct sockaddr_in6 local;
socklen_t local_len = sizeof(local);
char name[INET6_ADDRSTRLEN];
if (getsockname(*ps, (SA *) &local, &local_len) < 0) {
lua_pushnil(L);
lua_pushstring(L, "getsockname failed");
return 2;
} else {
inet_ntop(family, &local.sin6_addr, name, sizeof(name));
lua_pushstring(L, name);
lua_pushnumber(L, ntohs(local.sin6_port));
lua_pushliteral(L, "inet6");
return 3;
}
}
default:
lua_pushnil(L);
lua_pushstring(L, "unknown family");
return 2;
2002-03-21 05:52:38 -08:00
}
}
/*=========================================================================*\
* Internal functions
\*=========================================================================*/
/*-------------------------------------------------------------------------*\
* Passes all resolver information to Lua as a table
\*-------------------------------------------------------------------------*/
static void inet_pushresolved(lua_State *L, struct hostent *hp)
{
char **alias;
struct in_addr **addr;
int i, resolved;
lua_newtable(L); resolved = lua_gettop(L);
lua_pushstring(L, "name");
lua_pushstring(L, hp->h_name);
lua_settable(L, resolved);
lua_pushstring(L, "ip");
lua_pushstring(L, "alias");
i = 1;
alias = hp->h_aliases;
lua_newtable(L);
2005-06-13 21:29:23 -07:00
if (alias) {
while (*alias) {
lua_pushnumber(L, i);
lua_pushstring(L, *alias);
lua_settable(L, -3);
i++; alias++;
}
2002-03-21 05:52:38 -08:00
}
lua_settable(L, resolved);
i = 1;
lua_newtable(L);
addr = (struct in_addr **) hp->h_addr_list;
2005-06-13 21:29:23 -07:00
if (addr) {
while (*addr) {
lua_pushnumber(L, i);
lua_pushstring(L, inet_ntoa(**addr));
lua_settable(L, -3);
i++; addr++;
}
2002-03-21 05:52:38 -08:00
}
lua_settable(L, resolved);
}
/*-------------------------------------------------------------------------*\
* Tries to create a new inet socket
\*-------------------------------------------------------------------------*/
const char *inet_trycreate(p_socket ps, int family, int type) {
return socket_strerror(socket_create(ps, family, type, 0));
}
2002-03-21 05:52:38 -08:00
/*-------------------------------------------------------------------------*\
2003-05-24 18:54:13 -07:00
* Tries to connect to remote address (address, port)
2002-03-21 05:52:38 -08:00
\*-------------------------------------------------------------------------*/
const char *inet_tryconnect(p_socket ps, const char *address,
const char *serv, p_timeout tm, struct addrinfo *connecthints)
2002-03-21 05:52:38 -08:00
{
struct addrinfo *iterator = NULL, *resolved = NULL;
const char *err = NULL;
/* try resolving */
err = socket_gaistrerror(getaddrinfo(address, serv,
connecthints, &resolved));
if (err != NULL) {
if (resolved) freeaddrinfo(resolved);
return err;
}
/* iterate over all returned addresses trying to connect */
for (iterator = resolved; iterator; iterator = iterator->ai_next) {
timeout_markstart(tm);
/* try connecting to remote address */
err = socket_strerror(socket_connect(ps,
(SA *) iterator->ai_addr,
iterator->ai_addrlen, tm));
/* if success, break out of loop */
if (err == NULL) break;
}
freeaddrinfo(resolved);
/* here, if err is set, we failed */
return err;
2002-03-21 05:52:38 -08:00
}
/*-------------------------------------------------------------------------*\
2003-05-24 18:54:13 -07:00
* Tries to bind socket to (address, port)
2002-03-21 05:52:38 -08:00
\*-------------------------------------------------------------------------*/
const char *inet_trybind(p_socket ps, const char *address, const char *serv,
struct addrinfo *bindhints)
2002-03-21 05:52:38 -08:00
{
struct addrinfo *iterator = NULL, *resolved = NULL;
const char *err = NULL;
/* translate luasocket special values to C */
if (strcmp(address, "*") == 0) address = NULL;
if (!serv) serv = "0";
/* try resolving */
err = socket_gaistrerror(getaddrinfo(address, serv,
bindhints, &resolved));
if (err) {
if (resolved) freeaddrinfo(resolved);
return err;
2002-07-03 12:06:55 -07:00
}
/* iterate over resolved addresses until one is good */
for (iterator = resolved; iterator; iterator = iterator->ai_next) {
/* try binding to local address */
err = socket_strerror(socket_bind(ps,
(SA *) iterator->ai_addr,
iterator->ai_addrlen));
/* if faiiled, we try the next one */
if (err != NULL) socket_destroy(ps);
/* if success, we abort loop */
else break;
}
/* cleanup and return error */
freeaddrinfo(resolved);
return err;
2002-03-21 05:52:38 -08:00
}
/*-------------------------------------------------------------------------*\
* Some systems do not provide this so that we provide our own. It's not
* marvelously fast, but it works just fine.
\*-------------------------------------------------------------------------*/
#ifdef INET_ATON
int inet_aton(const char *cp, struct in_addr *inp)
2002-03-21 05:52:38 -08:00
{
unsigned int a = 0, b = 0, c = 0, d = 0;
int n = 0, r;
unsigned long int addr = 0;
r = sscanf(cp, "%u.%u.%u.%u%n", &a, &b, &c, &d, &n);
if (r == 0 || n == 0) return 0;
cp += n;
if (*cp) return 0;
if (a > 255 || b > 255 || c > 255 || d > 255) return 0;
if (inp) {
addr += a; addr <<= 8;
addr += b; addr <<= 8;
addr += c; addr <<= 8;
addr += d;
inp->s_addr = htonl(addr);
}
return 1;
}
#endif