forked from yaosj2k/dnsforwarder
-
Notifications
You must be signed in to change notification settings - Fork 9
/
dynamichosts.c
executable file
·302 lines (241 loc) · 6.97 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
#include <string.h>
#include "dynamichosts.h"
#include "common.h"
#include "downloader.h"
#include "readline.h"
#include "goodiplist.h"
#include "timedtask.h"
#include "rwlock.h"
#include "logs.h"
#include "filter.h"
#include "ipmisc.h"
#include "mmgr.h"
#define SIZE_OF_PATH_BUFFER 384
static const char *File = NULL;
static RWLock HostsLock = NULL_RWLOCK;
static volatile HostsContainer *MainDynamicContainer = NULL;
/* Arguments for updating */
static int HostsRetryInterval;
static char Script[SIZE_OF_PATH_BUFFER] = "";
static const char **HostsURLs = NULL; /* malloced */
static void DynamicHosts_ContainerCleanup(HostsContainer *DynamicContainer)
{
if( DynamicContainer != NULL )
{
DynamicContainer->Free(DynamicContainer);
SafeFree(DynamicContainer);
}
}
static void DynamicHosts_Cleanup(void)
{
DynamicHosts_ContainerCleanup((HostsContainer *)MainDynamicContainer);
FreeCharPtrArray((char **)HostsURLs);
RWLock_Destroy(HostsLock);
}
static int DynamicHosts_Load(void)
{
FILE *fp;
char Buffer[320];
ReadLineStatus Status;
HostsContainer *TempContainer;
fp = fopen(File, "r");
if( fp == NULL )
{
goto EXIT_1;
}
TempContainer = (HostsContainer *)SafeMalloc(sizeof(HostsContainer));
if( TempContainer == NULL )
{
goto EXIT_2;
}
if( HostsContainer_Init(TempContainer) != 0 )
{
SafeFree(TempContainer);
goto EXIT_2;
}
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);
}
fclose(fp);
RWLock_WrLock(HostsLock);
DynamicHosts_ContainerCleanup((HostsContainer *)MainDynamicContainer);
MainDynamicContainer = TempContainer;
RWLock_UnWLock(HostsLock);
INFO("Loading hosts completed.\n");
return 0;
EXIT_2:
fclose(fp);
EXIT_1:
INFO("Loading hosts failed.\n");
return -1;
}
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)
{
#if !defined(TEST_RELOADING)
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 != 0 )
{
INFO("Running hosts script \"%s\"...\n", Script);
if( Execute(Script) < 0 )
{
ERRORMSG("Hosts script running failed.\n");
}
}
#endif
DynamicHosts_Load();
Filter_Update();
IpMiscMapping_Update();
Modules_Update();
INFO("Reloading Modules completed.\n");
#if !defined(TEST_RELOADING)
} else {
ERRORMSG("Getting hosts file(s) failed.\n");
}
#endif
}
int DynamicHosts_Init(ConfigFileInfo *ConfigInfo)
{
StringList *Hosts;
int UpdateInterval;
const char *RawScript;
Hosts = ConfigGetStringList(ConfigInfo, "Hosts");
if( Hosts == NULL )
{
return -151;
}
Hosts->TrimAll(Hosts, "\"\t ");
HostsURLs = Hosts->ToCharPtrArray(Hosts);
UpdateInterval = ConfigGetInt32(ConfigInfo, "ModulesUpdateInterval");
HostsRetryInterval = ConfigGetInt32(ConfigInfo, "HostsRetryInterval");
atexit(DynamicHosts_Cleanup);
RawScript = ConfigGetRawString(ConfigInfo, "HostsScript");
if( RawScript != NULL )
{
if( ExpandPathTo(Script, SIZE_OF_PATH_BUFFER, RawScript) != 0 )
{
ERRORMSG("Failed to expand path: %s.\n", RawScript);
return -170;
}
} else {
*Script = 0;
}
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(MsgContext *MsgCtx, int BufferLength)
{
HostsUtilsTryResult ret;
if( MainDynamicContainer == NULL )
{
return HOSTSUTILS_TRY_NONE;
}
RWLock_RdLock(HostsLock);
ret = HostsUtils_Try(MsgCtx,
BufferLength,
(HostsContainer *)MainDynamicContainer
);
RWLock_UnRLock(HostsLock);
return ret;
}