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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
|
/*
proxySwitch
The plugin watches IP address changes, reports them via popups and adjusts
the proxy settings of Miranda and Internet Explorer accordingly.
*/
#include "stdafx.h"
/* ################################################################################ */
void IP_WatchDog(void*)
{
OVERLAPPED overlap;
DWORD ret;
wchar_t msg[300];
HANDLE event_list[2];
HANDLE hand = WSACreateEvent();
overlap.hEvent = WSACreateEvent();
for (;;) {
ret = NotifyAddrChange(&hand, &overlap);
if (ret != NO_ERROR && WSAGetLastError() != WSA_IO_PENDING) {
wchar_t err[100];
mir_snwprintf(err, L"NotifyAddrChange Error: %d/nRestart Miranda NG to restore IP monitor.", WSAGetLastError());
ERRORMSG(err);
break;
}
event_list[0] = overlap.hEvent;
event_list[1] = hEventRebound;
ret = MsgWaitForMultipleObjectsEx(2, event_list, INFINITE, 0, MWMO_ALERTABLE);
if (ret == WAIT_IO_COMPLETION && Miranda_IsTerminated())
break;
if (ret == WAIT_OBJECT_0 || ret == WAIT_TIMEOUT || ret == (WAIT_OBJECT_0 + 1)) {
NETWORK_INTERFACE_LIST list(10);
if (Create_NIF_List_Ex(&list) >= 0) {
int change = INCUPD_INTACT;
mir_cslock lck(csNIF_List);
change = IncUpdate_NIF_List(&g_arNIF, list);
if (change != INCUPD_INTACT && change != INCUPD_CONN_BIND) {
char proxy = -1;
int change_Miranda = 0;
int reset_Miranda = 0;
int change_IE = 0;
int change_Firefox = 0;
IP_RANGE_LIST range;
if (proxy == -1) {
Create_Range_List(&range, opt_useProxy, TRUE);
if (Match_Range_List(range, g_arNIF))
proxy = 1;
Free_Range_List(&range);
}
if (proxy == -1) {
Create_Range_List(&range, opt_noProxy, FALSE);
if (Match_Range_List(range, g_arNIF))
proxy = 0;
Free_Range_List(&range);
}
if (proxy == -1) {
Create_Range_List(&range, opt_useProxy, FALSE);
if (Match_Range_List(range, g_arNIF))
proxy = 1;
Free_Range_List(&range);
}
if (proxy != -1 && proxy != Get_Miranda_Proxy_Status())
change_Miranda = reset_Miranda = opt_miranda;
if (proxy != -1 && proxy != Get_IE_Proxy_Status())
change_IE = opt_ie;
if (proxy != -1 && proxy != Get_Firefox_Proxy_Status())
change_Firefox = opt_firefox;
if (opt_alwayReconnect)
reset_Miranda = 1;
mir_wstrcpy(msg, L"");
if (opt_showProxyState && change_Miranda) {
mir_wstrcat(msg, TranslateT("\nMiranda "));
mir_wstrcat(msg, proxy ? TranslateT("Proxy") : TranslateT("Direct"));
}
if (opt_showProxyState && change_IE) {
mir_wstrcat(msg, TranslateT("\nExplorer "));
mir_wstrcat(msg, proxy ? TranslateT("Proxy") : TranslateT("Direct"));
}
if (opt_showProxyState && change_Firefox) {
mir_wstrcat(msg, TranslateT("\nFirefox "));
mir_wstrcat(msg, proxy ? TranslateT("Proxy") : TranslateT("Direct"));
}
UpdateInterfacesMenu();
PopupMyIPAddrs(mir_wstrlen(msg) ? msg : NULL);
if (change_IE)
Set_IE_Proxy_Status(proxy);
if (change_Firefox)
Set_Firefox_Proxy_Status(proxy);
if (reset_Miranda) {
PROTO_SETTINGS protocols;
Disconnect_All_Protocols(&protocols, change_Miranda);
Sleep(1000);
if (change_Miranda)
Set_Miranda_Proxy_Status(proxy);
Connect_All_Protocols(&protocols);
}
}
}
}
ResetEvent(hEventRebound);
WSAResetEvent(hand);
WSAResetEvent(overlap.hEvent);
}
WSACloseEvent(hand);
WSACloseEvent(overlap.hEvent);
}
/* ################################################################################ */
int Create_NIF_List_Ex(NETWORK_INTERFACE_LIST *list)
{
UINT delay = 1;
int out;
while ((out = Create_NIF_List(list)) == -2 && delay < 10) {
Sleep(delay * 50);
delay++;
}
if (out == -2)
ERRORMSG(TranslateT("Cannot retrieve IP or Adapter data."));
return out < 0 ? -1 : out;
}
NETWORK_INTERFACE* Find_NIF_IP(NETWORK_INTERFACE_LIST &list, const LONG IP)
{
for (auto &it : list)
for (int i = 0; i < it->IPcount; i++)
if (it->IP[i] == IP)
return it;
return nullptr;
}
int Create_NIF_List(NETWORK_INTERFACE_LIST *list)
{
PIP_ADAPTER_INFO pAdapterInfo, pAdapt;
PIP_ADDR_STRING pAddrStr;
PIP_ADAPTER_ADDRESSES pAddresses, pAddr;
ULONG outBufLen;
wchar_t *tmp_opt, *intf, *rest, *name;
DWORD out;
// prepare and load IP_ADAPTER_ADDRESSES
outBufLen = 0;
if (GetAdaptersAddresses(AF_INET, 0, NULL, NULL, &outBufLen) == ERROR_BUFFER_OVERFLOW) {
pAddresses = (PIP_ADAPTER_ADDRESSES)mir_alloc(outBufLen);
if (pAddresses == NULL) {
ERRORMSG(TranslateT("Cannot allocate memory for pAddresses"));
return -1;
}
if ((out = GetAdaptersAddresses(AF_INET, 0, NULL, pAddresses, &outBufLen)) != ERROR_SUCCESS) {
mir_free(pAddresses);
return -2;
}
}
else {
ERRORMSG(TranslateT("GetAdaptersAddresses sizing failed"));
return -1;
}
// prepare and load IP_ADAPTER_INFO
outBufLen = 0;
if (GetAdaptersInfo(NULL, &outBufLen) == ERROR_BUFFER_OVERFLOW) {
pAdapterInfo = (PIP_ADAPTER_INFO)mir_alloc(outBufLen);
if (pAdapterInfo == NULL) {
ERRORMSG(TranslateT("Cannot allocate memory for pAdapterInfo"));
mir_free(pAddresses);
return -1;
}
if (GetAdaptersInfo(pAdapterInfo, &outBufLen) != NO_ERROR) {
mir_free(pAdapterInfo);
mir_free(pAddresses);
return -2;
}
}
else {
ERRORMSG(TranslateT("GetAdaptersInfo sizing failed"));
mir_free(pAddresses);
return -1;
}
list->destroy();
pAdapt = pAdapterInfo;
while (pAdapt) {
// add a new interface into the list
NETWORK_INTERFACE* nif = new NETWORK_INTERFACE();
// copy AdapterName
nif->AdapterName = mir_strdup(pAdapt->AdapterName);
// find its FriendlyName and copy it
pAddr = pAddresses;
while (pAddr && mir_strcmp(pAddr->AdapterName, pAdapt->AdapterName))
pAddr = pAddr->Next;
if (pAddr)
nif->FriendlyName = mir_wstrdup(pAddr->FriendlyName);
bool skip = false;
tmp_opt = intf = rest = mir_wstrdup(opt_hideIntf);
while (rest && rest[0] && !skip) {
rest = wcschr(rest, ';');
if (rest != NULL) {
rest[0] = 0;
rest++;
}
if (intf[0]) {
if (intf[mir_wstrlen(intf) - 1] == '*' && mir_wstrlen(intf) - 1 <= mir_wstrlen(nif->FriendlyName)) {
intf[mir_wstrlen(intf) - 1] = 0;
name = nif->FriendlyName;
skip = true;
while (intf[0]) {
if (intf[0] != name[0]) {
skip = false;
break;
}
intf++;
name++;
}
}
if (mir_wstrcmp(nif->FriendlyName, intf) == 0) {
skip = true;
}
}
intf = rest;
}
mir_free(tmp_opt);
if (skip) {
delete nif;
pAdapt = pAdapt->Next;
continue;
}
list->insert(nif);
// get required size for IPstr and IP
outBufLen = 0;
pAddrStr = &(pAdapt->IpAddressList);
while (pAddrStr) {
if (mir_strcmp("0.0.0.0", pAddrStr->IpAddress.String)) {
nif->IPcount++; // count IP addresses
outBufLen += (ULONG)strlen(pAddrStr->IpAddress.String); // count length of IPstr
}
pAddrStr = pAddrStr->Next;
if (pAddrStr) outBufLen += 2; // count length of IPstr (add ", ")
}
// create IPstr and IP
if (nif->IPcount) {
nif->IPstr = (char*)mir_alloc(outBufLen + 4);
mir_strcpy(nif->IPstr, "");
nif->IP = (LONG*)mir_alloc((nif->IPcount + 1) * sizeof(LONG));
outBufLen = 0;
pAddrStr = &(pAdapt->IpAddressList);
while (pAddrStr) {
if (mir_strcmp("0.0.0.0", pAddrStr->IpAddress.String)) {
mir_strcat(nif->IPstr, pAddrStr->IpAddress.String);
nif->IP[outBufLen] = inet_addr(pAddrStr->IpAddress.String);
outBufLen++;
}
pAddrStr = pAddrStr->Next;
if (pAddrStr)
mir_strcat(nif->IPstr, ", ");
}
nif->IP[outBufLen] = 0L;
}
pAdapt = pAdapt->Next;
}
mir_free(pAdapterInfo);
mir_free(pAddresses);
mir_cslock lck(csConnection_List);
for (auto &it : g_arConnections) {
NETWORK_INTERFACE* nif = Find_NIF_IP(*list, it->IP);
if (nif)
nif->Bound = 1;
}
return 0;
}
/* ################################################################################ */
NETWORK_INTERFACE* Find_NIF_AdapterName(NETWORK_INTERFACE_LIST &list, const char *AdapterName)
{
for (auto &it : list)
if (mir_strcmp(it->AdapterName, AdapterName) == 0)
return it;
return nullptr;
}
NETWORK_INTERFACE* Find_NIF_MenuItem(NETWORK_INTERFACE_LIST &list, const HGENMENU MenuItem)
{
for (auto &it : list)
if (it->MenuItem == MenuItem)
return it;
return nullptr;
}
/* ################################################################################ */
int IncUpdate_NIF_List(NETWORK_INTERFACE_LIST *trg, NETWORK_INTERFACE_LIST &src)
{
int change = INCUPD_INTACT;
for (auto &it : src) {
NETWORK_INTERFACE *nif = Find_NIF_AdapterName(*trg, it->AdapterName);
if (nif) {
if (nif->Disabled)
nif->Disabled = 0;
if (mir_strcmp(NVL(nif->IPstr), NVL(it->IPstr))) {
if (nif->IPstr)
mir_free(nif->IPstr);
nif->IPstr = it->IPstr ? mir_strdup(it->IPstr) : NULL;
INCUPD(change, INCUPD_UPDATED);
}
if (mir_wstrcmp(NVLW(nif->FriendlyName), NVLW(it->FriendlyName))) {
if (nif->FriendlyName)
mir_free(nif->FriendlyName);
nif->FriendlyName = it->FriendlyName ? mir_wstrdup(it->FriendlyName) : NULL;
INCUPD(change, INCUPD_UPDATED);
}
if (nif->IPcount != it->IPcount) {
if (nif->IPcount > it->IPcount && nif->Bound) {
INCUPD(change, INCUPD_CONN_LOST);
UnboundConnections(nif->IP, it->IP);
}
nif->IPcount = it->IPcount;
if (nif->IP)
mir_free(nif->IP);
if (it->IP) {
nif->IP = (LONG*)mir_alloc((nif->IPcount + 1) * sizeof(LONG));
memcpy(nif->IP, it->IP, (nif->IPcount + 1) * sizeof(LONG));
}
else {
nif->IP = NULL;
}
INCUPD(change, INCUPD_UPDATED);
}
else {
if (nif->IPcount > 0 && memcmp(nif->IP, it->IP, nif->IPcount * sizeof(LONG))) {
mir_free(nif->IP);
nif->IP = (LONG*)mir_alloc((nif->IPcount + 1) * sizeof(LONG));
memcpy(nif->IP, it->IP, (nif->IPcount + 1) * sizeof(LONG));
INCUPD(change, INCUPD_UPDATED);
}
}
if (nif->Bound != it->Bound) {
nif->Bound = it->Bound;
INCUPD(change, INCUPD_CONN_BIND);
}
}
else {
nif = new NETWORK_INTERFACE();
nif->AdapterName = it->AdapterName ? mir_strdup(it->AdapterName) : NULL;
nif->FriendlyName = it->FriendlyName ? mir_wstrdup(it->FriendlyName) : NULL;
nif->IPstr = it->IPstr ? strdup(it->IPstr) : NULL;
nif->IPcount = it->IPcount;
nif->Bound = it->Bound;
if (nif->IPcount > 0) {
nif->IP = (LONG*)mir_alloc((nif->IPcount + 1) * sizeof(LONG));
memcpy(nif->IP, it->IP, (nif->IPcount + 1) * sizeof(LONG));
}
trg->insert(nif);
INCUPD(change, INCUPD_UPDATED);
}
}
for (auto *it : *trg) {
if (it->Disabled)
continue;
NETWORK_INTERFACE *nif = Find_NIF_AdapterName(src, it->AdapterName);
if (!nif) {
if (it->Bound) {
INCUPD(change, INCUPD_CONN_LOST);
UnboundConnections(it->IP, NULL);
}
else {
INCUPD(change, INCUPD_UPDATED);
}
if (it->IPstr)
mir_free(it->IPstr);
if (it->IP)
mir_free(it->IP);
it->IPstr = NULL;
it->IPcount = 0;
it->IP = NULL;
it->Bound = FALSE;
it->Disabled = 1;
}
}
return change;
}
/* ################################################################################ */
static CMStringW wszTemp;
wchar_t* Print_NIF(NETWORK_INTERFACE* nif)
{
wszTemp.Format(L"%s:\t%s", nif->FriendlyName, nif->IPstr ? _A2T(nif->IPstr) : TranslateT("disconnected"));
return wszTemp.GetBuffer();
}
wchar_t* Print_NIF_List(NETWORK_INTERFACE_LIST &list, wchar_t *msg)
{
wszTemp = L"";
for (auto &it : list) {
wszTemp.AppendFormat(L"%s:\t%s%s%s\n",
it->FriendlyName,
it->Bound ? L"[u]" : L"",
it->IPstr ? _A2T(it->IPstr) : TranslateT("disconnected"),
it->Bound ? L"[/u]" : L""
);
}
if (msg)
wszTemp.Append(msg);
return wszTemp.GetBuffer();
}
/* ################################################################################ */
void Parse_Range(PIP_RANGE range, wchar_t *str, BOOL prioritized)
{
wchar_t *ext;
unsigned long num;
range->cmpType = CMP_SKIP;
if ((str[0] == '!' && !prioritized) || (str[0] != '!' && prioritized)) {
range->mask = range->net = 0L;
return;
}
if (str[0] == '!')
str++;
// ip/mask
if ((ext = wcschr(str, '/')) != NULL) {
ext[0] = 0; ext++;
// ip/bits (10.0.0.1/16)
if (wcsspn(ext, DIGITS) == mir_wstrlen(ext)) {
num = _wtol(ext);
if (num >= 0 && num <= 32 && (range->net = inet_addr(_T2A(str))) != INADDR_NONE) {
range->cmpType = CMP_MASK;
range->mask = NETORDER(num ? ~(0xFFFFFFFF >> (num)) : ~0);
range->net = range->net & range->mask;
}
}
else {
// ip/subnet (10.0.0.1/255.255.0.0)
if ((range->net = inet_addr(_T2A(str))) != INADDR_NONE && (range->mask = inet_addr(_T2A(ext))) != INADDR_NONE) {
for (num = 0; num < 32; num++) {
if (range->mask == NETORDER(num ? ~(0xFFFFFFFF >> (32 - num)) : ~0)) {
range->cmpType = CMP_MASK;
range->net = range->net & range->mask;
break;
}
}
}
}
}
else {
// ipbegin-end
if ((ext = wcschr(str, '-')) != NULL) {
ext[0] = 0; ext++;
// ipA.B.C.D1-D2 (10.0.0.1-12)
if (wcsspn(ext, DIGITS) == mir_wstrlen(ext)) {
num = _wtol(ext);
if (num > 0 && num <= 255 && (range->loIP = inet_addr(_T2A(str))) != INADDR_NONE && (range->loIP >> 24) <= num) {
range->cmpType = CMP_SPAN;
range->hiIP = ((range->loIP & 0x00FFFFFF) | (num << 24));
range->loIP = (range->loIP);
}
}
else {
// ipstart-ipend (10.0.0.1-10.0.10.255)
if ((range->loIP = inet_addr(_T2A(str))) != INADDR_NONE && (range->hiIP = inet_addr(_T2A(ext))) != INADDR_NONE) {
range->loIP = (range->loIP);
range->hiIP = (range->hiIP);
if (range->loIP <= range->hiIP) {
range->cmpType = CMP_SPAN;
}
}
}
}
else {
// ip
if (mir_wstrlen(str) > 0 && (range->net = inet_addr(_T2A(str))) != INADDR_NONE) {
range->cmpType = CMP_MASK;
range->mask = 0xFFFFFFFF;
}
}
}
if (range->cmpType == CMP_SKIP) {
range->mask = range->net = 0L;
}
}
int Create_Range_List(IP_RANGE_LIST *list, wchar_t *str, BOOL prioritized)
{
wchar_t *range, *rest, *tmp;
int size, idx;
ZeroMemory(list, sizeof(IP_RANGE_LIST));
// get expected number of ranges
range = str;
size = mir_wstrlen(range) > 0 ? 1 : 0;
while (range[0]) {
if (range[0] == ';')
size++;
range++;
};
if (size == 0)
return 0;
// alloc required space
list->item = (PIP_RANGE)mir_alloc(size * sizeof(IP_RANGE));
ZeroMemory(list->item, size * sizeof(IP_RANGE));
tmp = range = rest = mir_wstrdup(str);
idx = 0;
while (rest && rest[0]) {
rest = wcschr(rest, ';');
if (rest != NULL) {
rest[0] = 0;
rest++;
}
Parse_Range(&(list->item[idx]), range, prioritized);
if (list->item[idx].cmpType != CMP_SKIP)
idx++;
range = rest;
}
list->count = idx;
list->item = (PIP_RANGE)mir_realloc(list->item, (idx + 1) * sizeof(IP_RANGE));
ZeroMemory(&(list->item[idx]), sizeof(IP_RANGE));
list->item[idx].cmpType = CMP_END;
mir_free(tmp);
return 0;
}
int Match_Range_List(IP_RANGE_LIST range, OBJLIST<NETWORK_INTERFACE> &nif)
{
if (range.count == 0 || nif.getCount() == 0)
return 0;
PIP_RANGE rng = range.item;
while (rng->cmpType != CMP_END) {
switch (rng->cmpType) {
case CMP_SKIP:
break;
case CMP_MASK:
for (auto &it : nif) {
ULONG *ip = (ULONG *)it->IP;
while (ip && *ip) {
if ((ULONG)(*ip & rng->mask) == rng->net)
return 1;
ip++;
}
}
break;
case CMP_SPAN:
for (auto &it : nif) {
ULONG *ip = (ULONG *)it->IP;
while (ip && *ip) {
if ((NETORDER(rng->loIP) <= NETORDER(*ip)) && (NETORDER(*ip) <= NETORDER(rng->hiIP)))
return 1;
ip++;
}
}
break;
}
rng++;
}
return 0;
}
void Free_Range_List(IP_RANGE_LIST *list)
{
if (list->item)
mir_free(list->item);
ZeroMemory(list, sizeof(IP_RANGE_LIST));
}
int ManageConnections(WPARAM wParam, LPARAM)
{
NETLIBCONNECTIONEVENTINFO *info = (NETLIBCONNECTIONEVENTINFO *)wParam;
ACTIVE_CONNECTION *pFound = nullptr;
mir_cslock lck(csConnection_List);
for (auto &it : g_arConnections)
if (it->IP == info->local.sin_addr.s_addr && it->Port == info->local.sin_port) {
pFound = it;
break;
}
if ((pFound && info->connected) || (!pFound && !info->connected))
return 0;
if (!pFound)
g_arConnections.insert(new ACTIVE_CONNECTION(info->local.sin_addr.s_addr, info->local.sin_port));
else
g_arConnections.remove(g_arConnections.indexOf(&pFound));
SetEvent(hEventRebound);
return 0;
}
void UnboundConnections(LONG *OldIP, LONG *NewIP)
{
LONG *IP;
while (OldIP != NULL && *OldIP != 0) {
IP = NewIP;
while (IP != NULL && *IP != 0 && *IP != *OldIP)
IP++;
if (IP == NULL || *IP != *OldIP) {
mir_cslock lck(csConnection_List);
for (auto &it : g_arConnections.rev_iter())
if (it->IP == (ULONG)*OldIP)
g_arConnections.remove(g_arConnections.indexOf(&it));
}
OldIP++;
}
}
|