Files
asterisk/srv.c
T

141 lines
3.1 KiB
C
Raw Normal View History

2003-06-12 22:14:03 +00:00
/*
* Asterisk -- An open source telephony toolkit.
2003-06-12 22:14:03 +00:00
*
* Copyright (C) 1999 - 2005, Digium, Inc.
2003-06-12 22:14:03 +00:00
*
* Mark Spencer <markster@digium.com>
2003-06-12 22:14:03 +00:00
*
* Funding provided by nic.at
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*! \file
*
* \brief DNS SRV Record Lookup Support for Asterisk
2005-12-30 21:18:06 +00:00
*
* \author Mark Spencer <markster@digium.com>
*
* \arg See also \ref AstENUM
2003-06-12 22:14:03 +00:00
*
2005-12-30 21:18:06 +00:00
* \note Funding provided by nic.at
2003-06-12 22:14:03 +00:00
*/
#include <sys/types.h>
#include <netinet/in.h>
#include <arpa/nameser.h>
2003-10-27 20:00:41 +00:00
#if __APPLE_CC__ >= 1495
#include <arpa/nameser_compat.h>
#endif
2003-06-12 22:14:03 +00:00
#include <resolv.h>
2003-09-27 00:22:46 +00:00
#include <stdio.h>
#include <string.h>
#include <unistd.h>
2003-06-12 22:14:03 +00:00
2005-06-06 20:27:51 +00:00
#include "asterisk.h"
2005-06-06 22:12:19 +00:00
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
2005-06-06 20:27:51 +00:00
#include "asterisk/channel.h"
#include "asterisk/logger.h"
#include "asterisk/srv.h"
#include "asterisk/dns.h"
#include "asterisk/options.h"
#include "asterisk/utils.h"
2003-06-12 22:14:03 +00:00
2003-10-26 18:50:49 +00:00
#ifdef __APPLE__
#undef T_SRV
#define T_SRV 33
#endif
2003-06-12 22:14:03 +00:00
struct srv {
unsigned short priority;
unsigned short weight;
unsigned short portnum;
} __attribute__ ((__packed__));
2005-08-07 06:47:20 +00:00
static int parse_srv(char *host, int hostlen, int *portno, char *answer, int len, char *msg)
2003-06-12 22:14:03 +00:00
{
int res = 0;
struct srv *srv = (struct srv *)answer;
char repl[256] = "";
2003-08-13 23:56:16 +00:00
2003-06-12 22:14:03 +00:00
if (len < sizeof(struct srv)) {
printf("Length too short\n");
return -1;
}
answer += sizeof(struct srv);
len -= sizeof(struct srv);
2005-08-07 06:47:20 +00:00
if ((res = dn_expand((unsigned char *)msg, (unsigned char *)answer + len, (unsigned char *)answer, repl, sizeof(repl) - 1)) < 0) {
2003-06-12 22:14:03 +00:00
ast_log(LOG_WARNING, "Failed to expand hostname\n");
return -1;
}
if (res && strcmp(repl, ".")) {
2004-07-17 22:06:26 +00:00
if (option_verbose > 3)
ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum));
2003-06-12 22:14:03 +00:00
if (host) {
2005-07-10 22:56:21 +00:00
ast_copy_string(host, repl, hostlen);
2003-08-13 23:56:16 +00:00
host[hostlen-1] = '\0';
2003-06-12 22:14:03 +00:00
}
if (portno)
*portno = ntohs(srv->portnum);
2005-08-07 06:47:20 +00:00
return 0;
2003-06-12 22:14:03 +00:00
}
2005-08-07 06:47:20 +00:00
return -1;
2003-06-12 22:14:03 +00:00
}
2003-09-27 00:22:46 +00:00
struct srv_context {
char *host;
int hostlen;
int *port;
};
2005-08-07 06:47:20 +00:00
static int srv_callback(void *context, char *answer, int len, char *fullanswer)
2003-06-12 22:14:03 +00:00
{
2003-09-27 00:22:46 +00:00
struct srv_context *c = (struct srv_context *)context;
2003-08-13 23:56:16 +00:00
if (parse_srv(c->host, c->hostlen, c->port, answer, len, fullanswer)) {
2003-09-27 00:22:46 +00:00
ast_log(LOG_WARNING, "Failed to parse srv\n");
return -1;
}
2003-08-13 23:56:16 +00:00
2004-05-04 14:54:42 +00:00
if (!ast_strlen_zero(c->host))
2003-09-27 00:22:46 +00:00
return 1;
2003-08-13 23:56:16 +00:00
2004-06-22 20:11:15 +00:00
return 0;
2003-06-12 22:14:03 +00:00
}
int ast_get_srv(struct ast_channel *chan, char *host, int hostlen, int *port, const char *service)
{
2003-09-27 00:22:46 +00:00
struct srv_context context;
int ret;
context.host = host;
context.hostlen = hostlen;
context.port = port;
2003-06-12 22:14:03 +00:00
if (chan && ast_autoservice_start(chan) < 0)
return -1;
2003-09-27 00:22:46 +00:00
ret = ast_search_dns(&context, service, C_IN, T_SRV, srv_callback);
2003-06-12 22:14:03 +00:00
if (chan)
ret |= ast_autoservice_stop(chan);
2003-09-27 00:22:46 +00:00
2003-10-04 21:58:16 +00:00
if (ret <= 0) {
host[0] = '\0';
2004-06-22 20:11:15 +00:00
*port = -1;
2003-09-27 00:22:46 +00:00
return ret;
2003-10-04 21:58:16 +00:00
}
2003-06-12 22:14:03 +00:00
return ret;
}