File: DnsEvents.cpp

package info (click to toggle)
sbnc 1.2-20
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,144 kB
  • ctags: 4,866
  • sloc: cpp: 17,557; ansic: 15,514; sh: 13,419; tcl: 5,567; php: 448; makefile: 281
file content (189 lines) | stat: -rw-r--r-- 5,248 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*******************************************************************************
 * shroudBNC - an object-oriented framework for IRC                            *
 * Copyright (C) 2005-2007 Gunnar Beutner                                      *
 *                                                                             *
 * This program is free software; you can redistribute it and/or               *
 * modify it under the terms of the GNU General Public License                 *
 * as published by the Free Software Foundation; either version 2              *
 * of the License, or (at your option) any later version.                      *
 *                                                                             *
 * This program is distributed in the hope that it will be useful,             *
 * but WITHOUT ANY WARRANTY; without even the implied warranty of              *
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               *
 * GNU General Public License for more details.                                *
 *                                                                             *
 * You should have received a copy of the GNU General Public License           *
 * along with this program; if not, write to the Free Software                 *
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. *
 *******************************************************************************/

#include "StdAfx.h"

/**
 * GenericDnsQueryCallback
 *
 * Used as a thunk between c-ares' C-style callbacks and shroudBNC's
 * object-oriented dns class.
 *
 * @param Cookie a pointer to a CDnsQuery object
 * @param Status the status of the dns query
 * @param Timeout reports how many times a query timed out during the
 *        execution of the given request, useable for logging purpose.
 * @param HostEntity the response for the dns query (can be NULL)
 */
void GenericDnsQueryCallback(void *Cookie, int Status, int Timeout, hostent *HostEntity) {
	CDnsQuery *Query = (CDnsQuery *)Cookie;

	Query->AsyncDnsEvent(Status, HostEntity);

	Query->m_PendingQueries--;
}

/**
 * CDnsQuery
 *
 * Constructs a new DNS query object.
 *
 * @param EventInterface an object to which DNS callbacks are routed
 * @param EventFunction a function which is called when DNS queries are completed
 * @param Timeout specifies the timeout value for dns queries
 *
 * \see IMPL_DNSEVENTPROXY
 * \see USE_DNSEVENTPROXY
 */

CDnsQuery::CDnsQuery(void *EventInterface, DnsEventFunction EventFunction, int Timeout) {
	m_Timeout = Timeout;
	m_EventObject = EventInterface;
	m_EventFunction = EventFunction;

	m_Channel = NULL;
	m_PendingQueries = 0;
	FD_ZERO(&m_Reader);
	FD_ZERO(&m_Writer);
}

/**
 * InitChannel
 *
 * Initializes a new ARES channel.
 */
void CDnsQuery::InitChannel(void) {
	if (m_Channel == NULL) {
		ares_options Options;

		Options.timeout = m_Timeout;
		ares_init_options(&m_Channel, &Options, ARES_OPT_TIMEOUT);

		g_Bouncer->RegisterDnsQuery(this);
	}
}

/**
 * DestroyChannel
 *
 * Destroys the ARES channel.
 */
void CDnsQuery::DestroyChannel(void) {
	DnsEventFunction Function;

	if (m_Channel != NULL) {
		FD_ZERO(&m_Reader);
		FD_ZERO(&m_Writer);
		Function = m_EventFunction;
		m_EventFunction = NULL;
		ares_destroy(m_Channel);
		m_EventFunction = Function;

		m_Channel = NULL;

		g_Bouncer->UnregisterDnsQuery(this);

		m_PendingQueries = 0;
	}
}

/**
 * ~CDnsQuery
 *
 * Destructs a DNS query object.
 */
CDnsQuery::~CDnsQuery(void) {
	DestroyChannel();
}

/**
 * GetHostByName
 *
 * Asynchronously performs the task of the "gethostbyname" function
 * and calls the callback function once the operation has completed.
 *
 * @param Host the hostname
 * @param Family the address family (AF_INET or AF_INET6)
 */
void CDnsQuery::GetHostByName(const char *Host, int Family) {
	InitChannel();
	m_PendingQueries++;
	ares_gethostbyname(m_Channel, Host, Family, GenericDnsQueryCallback, this);
}

/**
 * GetHostByAddr
 *
 * Asynchronously performs the task of the "gethostbyaddr" function
 * and calls the callback function once the operation has completed.
 *
 * @param Address the address for which the hostname should be looked up
 */
void CDnsQuery::GetHostByAddr(sockaddr *Address) {
	void *IpAddr;

#ifdef IPV6
	if (Address->sa_family == AF_INET) {
#endif
		IpAddr = &(((sockaddr_in *)Address)->sin_addr);
#ifdef IPV6
	} else {
		IpAddr = &(((sockaddr_in6 *)Address)->sin6_addr);
	}
#endif

	InitChannel();
	m_PendingQueries++;
	ares_gethostbyaddr(m_Channel, IpAddr, INADDR_LEN(Address->sa_family), Address->sa_family, GenericDnsQueryCallback, this);
}

/**
 * GetChannel
 *
 * Returns the underlying c-ares channel object.
 */
ares_channel CDnsQuery::GetChannel(void) {
	return m_Channel;
}

/**
 * AsyncDnsEvent
 *
 * Used by GenericDnsQueryCallback to notify the object of the status
 * of a dns query.
 *
 * @param Status the status
 * @param Response the response for the dns query
 */
void CDnsQuery::AsyncDnsEvent(int Status, hostent *Response) {
	if (m_EventFunction != NULL) {
		(*m_EventFunction)(m_EventObject, Response);
	}
}

/**
 * Cleanup
 *
 * Cleans up unused channels.
 */
void CDnsQuery::Cleanup(void) {
	if (m_PendingQueries == 0) {
		DestroyChannel();
	}
}