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
|
/*
** Copyright 1998 - 2011 Double Precision, Inc.
** See COPYING for distribution information.
*/
#include "config.h"
#include "rfc1035.h"
#include <stdio.h>
#include <string.h>
#include "soxwrap/soxwrap.h"
#include <sys/types.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdlib.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#if TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#else
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#endif
#endif
int rfc1035_open_udp(int *af)
{
return (rfc1035_mksocket(SOCK_DGRAM, 0, af));
}
int rfc1035_send_udp(int fd, const struct sockaddr *sin, int sin_len,
const char *query, unsigned query_len)
{
if (sox_sendto(fd, (const char *)query, query_len, 0,
sin, sin_len) == query_len)
return (0);
return (-1);
}
static int dorecv(int fd, char *bufptr, int buflen, int flags,
struct sockaddr *addr, socklen_t *addrlen)
{
socklen_t len;
do
{
len=sox_recvfrom(fd, bufptr, buflen, flags, addr, addrlen);
} while (len < 0 && errno == EINTR);
return (len);
}
char *rfc1035_recv_udp(int fd,
const struct sockaddr *addrshouldfrom, int addrshouldfrom_len,
int *buflen, const char *query)
{
int len;
#if RFC1035_IPV6
struct sockaddr_storage addrfrom;
#else
struct sockaddr_in addrfrom;
#endif
socklen_t addrfromlen;
char rfc1035_buf[512];
char *bufptr=rfc1035_buf;
char *mallocedbuf=0;
*buflen=sizeof(rfc1035_buf);
while ((len=dorecv(fd, bufptr, *buflen, MSG_PEEK, 0, 0)) >= *buflen )
{
if (len == *buflen) len += 511;
++len;
if (mallocedbuf) free(mallocedbuf);
mallocedbuf=(char *)malloc(len);
if (!mallocedbuf) return (0);
bufptr= mallocedbuf;
*buflen=len;
}
addrfromlen=sizeof(addrfrom);
if (len < 0 || (len=dorecv(fd, bufptr, *buflen, 0,
(struct sockaddr *)&addrfrom, &addrfromlen)) < 0)
{
if (mallocedbuf)
free(mallocedbuf);
errno=EIO;
return (0);
}
*buflen=len;
if ( !rfc1035_same_ip( &addrfrom, addrfromlen,
addrshouldfrom, addrshouldfrom_len))
{
if (mallocedbuf)
free(mallocedbuf);
errno=EAGAIN;
return (0);
}
if ( *buflen < 2)
{
if (mallocedbuf)
free(mallocedbuf);
errno=EIO;
return (0);
}
if ( query && (bufptr[0] != query[0] || bufptr[1] != query[1]
|| (unsigned char)(bufptr[2] & 0x80) == 0 ))
{
if (mallocedbuf)
free(mallocedbuf);
errno=EAGAIN;
return (0);
}
if (!mallocedbuf)
{
if ((mallocedbuf=malloc( *buflen )) == 0)
return (0);
memcpy(mallocedbuf, bufptr, *buflen);
bufptr=mallocedbuf;
}
return (bufptr);
}
char *rfc1035_query_udp(struct rfc1035_res *res,
int fd, const struct sockaddr *sin, int sin_len,
const char *query, unsigned query_len, int *buflen, unsigned w)
{
time_t current_time, final_time;
char *rc;
time(¤t_time);
if (rfc1035_send_udp(fd, sin, sin_len, query, query_len))
return (0);
final_time=current_time+w;
while (current_time < final_time)
{
if (rfc1035_wait_reply(fd, final_time-current_time))
break;
rc=rfc1035_recv_udp(fd, sin, sin_len, buflen, query);
if (rc) return (rc);
if (errno != EAGAIN) break;
time(¤t_time);
}
errno=EAGAIN;
return (0);
}
|