forked from yaosj2k/dnsforwarder
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdynamichosts.c
executable file
·253 lines (201 loc) · 5.51 KB
/
dynamichosts.c
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#include "dynamichosts.h"
#include "common.h"
#include "downloader.h"
#include "readline.h"
#include "goodiplist.h"
#include "timedtask.h"
#include "rwlock.h"
#include "logs.h"
static const char *File = NULL;
static RWLock HostsLock;
static volatile HostsContainer *MainDynamicContainer = NULL;
static int DynamicHosts_Load(void)
{
FILE *fp;
char Buffer[320];
ReadLineStatus Status;
HostsContainer *TempContainer;
fp = fopen(File, "r");
if( fp == NULL )
{
return -1;
}
TempContainer = (HostsContainer *)SafeMalloc(sizeof(HostsContainer));
if( TempContainer == NULL )
{
fclose(fp);
return -1;
}
if( HostsContainer_Init(TempContainer) != 0 )
{
fclose(fp);
SafeFree(TempContainer);
return -1;
}
while( TRUE )
{
Status = ReadLine(fp, Buffer, sizeof(Buffer));
if( Status == READ_FAILED_OR_END )
{
break;
}
if( Status == READ_TRUNCATED )
{
ERRORMSG("Hosts is too long : %s\n", Buffer);
ReadLine_GoToNextLine(fp);
continue;
}
TempContainer->Load(TempContainer, Buffer);
}
RWLock_WrLock(HostsLock);
if( MainDynamicContainer != NULL )
{
MainDynamicContainer->Free((HostsContainer *)MainDynamicContainer);
SafeFree((void *)MainDynamicContainer);
}
MainDynamicContainer = TempContainer;
RWLock_UnWLock(HostsLock);
INFO("Loading hosts completed.\n");
fclose(fp);
return 0;
}
/* Arguments for updating */
static int HostsRetryInterval;
static const char *Script;
static const char **HostsURLs;
static void GetHostsFromInternet_Failed(int ErrorCode, const char *URL, const char *File1)
{
ERRORMSG("Getting Hosts %s failed. Waiting %d second(s) to try again.\n",
URL,
HostsRetryInterval
);
}
static void GetHostsFromInternet_Succeed(const char *URL, const char *File1)
{
INFO("Hosts %s saved.\n", URL);
}
static void GetHostsFromInternet_Thread(void *Unused1, void *Unused2)
{
int DownloadState;
if( HostsURLs[1] == NULL )
{
INFO("Getting hosts from %s ...\n", HostsURLs[0]);
} else {
INFO("Getting hosts from various places ...\n");
}
DownloadState = GetFromInternet_MultiFiles(HostsURLs,
File,
HostsRetryInterval,
-1,
GetHostsFromInternet_Failed,
GetHostsFromInternet_Succeed
);
if( DownloadState == 0 )
{
INFO("Hosts saved at %s.\n", File);
if( Script != NULL )
{
INFO("Running hosts script ...\n");
system(Script);
}
DynamicHosts_Load();
} else {
ERRORMSG("Getting hosts file(s) failed.\n");
}
}
int DynamicHosts_Init(ConfigFileInfo *ConfigInfo)
{
StringList *Hosts;
int UpdateInterval;
Hosts = ConfigGetStringList(ConfigInfo, "Hosts");
if( Hosts == NULL )
{
File = NULL;
return -151;
}
Hosts->TrimAll(Hosts, "\"\t ");
HostsURLs = Hosts->ToCharPtrArray(Hosts);
UpdateInterval = ConfigGetInt32(ConfigInfo, "HostsUpdateInterval");
HostsRetryInterval = ConfigGetInt32(ConfigInfo, "HostsRetryInterval");
Script = ConfigGetRawString(ConfigInfo, "HostsScript");
RWLock_Init(HostsLock);
File = ConfigGetRawString(ConfigInfo, "HostsDownloadPath");
if( HostsRetryInterval < 0 )
{
ERRORMSG("`HostsRetryInterval' is too small (< 0).\n");
File = NULL;
return -167;
}
INFO("Local hosts file : \"%s\"\n", File);
if( FileIsReadable(File) )
{
INFO("Loading the existing hosts file ...\n");
DynamicHosts_Load();
} else {
INFO("Hosts file is unreadable, this may cause some failures.\n");
}
if( UpdateInterval <= 0 )
{
TimedTask_Add(FALSE,
TRUE,
0,
(TaskFunc)GetHostsFromInternet_Thread,
NULL,
NULL,
TRUE);
} else {
TimedTask_Add(TRUE,
TRUE,
UpdateInterval * 1000,
(TaskFunc)GetHostsFromInternet_Thread,
NULL,
NULL,
TRUE);
}
return 0;
}
int DynamicHosts_GetCName(const char *Domain, char *Buffer)
{
int ret;
if( MainDynamicContainer == NULL )
{
return -198;
}
RWLock_RdLock(HostsLock);
ret = HostsUtils_GetCName(Domain,
Buffer,
(HostsContainer *)MainDynamicContainer
);
RWLock_UnRLock(HostsLock);
return ret;
}
BOOL DynamicHosts_TypeExisting(const char *Domain, HostsRecordType Type)
{
BOOL ret;
if( MainDynamicContainer == NULL )
{
return FALSE;
}
RWLock_RdLock(HostsLock);
ret = HostsUtils_TypeExisting((HostsContainer *)MainDynamicContainer,
Domain,
Type
);
RWLock_UnRLock(HostsLock);
return ret;
}
HostsUtilsTryResult DynamicHosts_Try(IHeader *Header, int BufferLength)
{
HostsUtilsTryResult ret;
if( MainDynamicContainer == NULL )
{
return HOSTSUTILS_TRY_NONE;
}
RWLock_RdLock(HostsLock);
ret = HostsUtils_Try(Header,
BufferLength,
(HostsContainer *)MainDynamicContainer
);
RWLock_UnRLock(HostsLock);
return ret;
}