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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
|
// ---------------------------------------------------------------------------80
// ICQ plugin for Miranda Instant Messenger
// ________________________________________
//
// Copyright © 2000-2001 Richard Hughes, Roland Rabien, Tristan Van de Vreede
// Copyright © 2001-2002 Jon Keating, Richard Hughes
// Copyright © 2002-2004 Martin Öberg, Sam Kothari, Robert Rainwater
// Copyright © 2004-2010 Joe Kucera
//
// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// -----------------------------------------------------------------------------
// DESCRIPTION:
//
// Describe me here please...
//
// -----------------------------------------------------------------------------
#include "icqoscar.h"
static int unpackServerListItem(BYTE **pbuf, WORD *pwLen, char *pszRecordName, WORD *pwGroupId, WORD *pwItemId, WORD *pwItemType, WORD *pwTlvLength);
void CIcqProto::handleServCListFam(BYTE *pBuffer, WORD wBufferLength, snac_header* pSnacHeader, serverthread_info *info)
{
switch (pSnacHeader->wSubtype) {
case ICQ_LISTS_ACK: // UPDATE_ACK
if (wBufferLength >= 2)
{
WORD wError;
cookie_servlist_action* sc;
unpackWord(&pBuffer, &wError);
if (FindCookie(pSnacHeader->dwRef, NULL, (void**)&sc))
{ // look for action cookie
#ifdef _DEBUG
debugLogA("Received expected server list ack, action: %d, result: %d", sc->dwAction, wError);
#endif
FreeCookie(pSnacHeader->dwRef); // release cookie
if (sc->dwAction == SSA_ACTION_GROUP)
{ // group cookie, handle sub-items
int i;
#ifdef _DEBUG
debugLogA("Server-List: Grouped action contains %d actions.", sc->dwGroupCount);
#endif
pBuffer -= 2; // revoke unpack
if (wBufferLength != 2*sc->dwGroupCount)
debugLogA("Error: Server list ack does not contain expected amount of result codes (%u != %u)", wBufferLength/2, sc->dwGroupCount);
for (i = 0; i < sc->dwGroupCount; i++)
{
if (wBufferLength >= 2)
{ // get proper result code
unpackWord(&pBuffer, &wError);
wBufferLength -= 2;
}
else // missing result code, give some special
wError = -1;
#ifdef _DEBUG
debugLogA("Action: %d, ack result: %d", sc->pGroupItems[i]->dwAction, wError);
#endif
// call normal ack handler
handleServerCListAck(sc->pGroupItems[i], wError);
}
// Release cookie
SAFE_FREE((void**)&sc->pGroupItems);
SAFE_FREE((void**)&sc);
}
else // single ack
handleServerCListAck(sc, wError);
}
else
{
debugLogA("Received unexpected server list ack %u", wError);
}
}
break;
case ICQ_LISTS_SRV_REPLYLISTS:
{ /* received server-list rights */
handleServerCListRightsReply(pBuffer, wBufferLength);
#ifdef _DEBUG
debugLogA("Server sent SNAC(x13,x03) - SRV_REPLYLISTS");
#endif
}
break;
case ICQ_LISTS_LIST: // SRV_REPLYROSTER
{
cookie_servlist_action* sc;
BOOL blWork;
blWork = bIsSyncingCL;
bIsSyncingCL = TRUE; // this is not used if cookie takes place
if (FindCookie(pSnacHeader->dwRef, NULL, (void**)&sc))
{ // we do it by reliable cookie
if (!sc->lParam)
{ // is this first packet ?
ResetSettingsOnListReload();
sc->lParam = 1;
}
handleServerCListReply(pBuffer, wBufferLength, pSnacHeader->wFlags, info);
if (!(pSnacHeader->wFlags & 0x0001))
{ // was that last packet ?
ReleaseCookie(pSnacHeader->dwRef); // yes, release cookie
}
}
else
{ // use old fake
if (!blWork)
{ // this can fail on some crazy situations
ResetSettingsOnListReload();
}
handleServerCListReply(pBuffer, wBufferLength, pSnacHeader->wFlags, info);
}
break;
}
case ICQ_LISTS_UPTODATE: // SRV_REPLYROSTEROK
{
cookie_servlist_action* sc;
bIsSyncingCL = FALSE;
if (FindCookie(pSnacHeader->dwRef, NULL, (void**)&sc))
{ // we requested servlist check
#ifdef _DEBUG
debugLogA("Server stated roster is ok.");
#endif
ReleaseCookie(pSnacHeader->dwRef);
LoadServerIDs();
}
else
debugLogA("Server sent unexpected SNAC(x13,x0F) - SRV_REPLYROSTEROK");
// This will activate the server side list
sendRosterAck(); // this must be here, cause of failures during cookie alloc
handleServUINSettings(wListenPort, info);
break;
}
case ICQ_LISTS_CLI_MODIFYSTART:
debugLogA("Server sent SNAC(x13,x%02x) - %s", ICQ_LISTS_CLI_MODIFYSTART, "Server is modifying contact list");
break;
case ICQ_LISTS_CLI_MODIFYEND:
debugLogA("Server sent SNAC(x13,x%02x) - %s", ICQ_LISTS_CLI_MODIFYEND, "End of server modification");
break;
case ICQ_LISTS_ADDTOLIST:
case ICQ_LISTS_UPDATEGROUP:
case ICQ_LISTS_REMOVEFROMLIST:
{
int nItems = 0;
while (wBufferLength >= 10)
{
WORD wGroupId, wItemId, wItemType, wTlvLen;
uid_str szRecordName;
if (unpackServerListItem(&pBuffer, &wBufferLength, szRecordName, &wGroupId, &wItemId, &wItemType, &wTlvLen))
{
BYTE *buf = pBuffer;
oscar_tlv_chain *pChain = NULL;
nItems++;
// parse possible item's data
if (wBufferLength >= wTlvLen && wTlvLen > 0)
{
pChain = readIntoTLVChain(&buf, wTlvLen, 0);
pBuffer += wTlvLen;
wBufferLength -= wTlvLen;
}
else if (wTlvLen > 0)
wBufferLength = 0;
// process item change
if (pSnacHeader->wSubtype == ICQ_LISTS_ADDTOLIST)
handleServerCListItemAdd(szRecordName, wGroupId, wItemId, wItemType, pChain);
else if (pSnacHeader->wSubtype == ICQ_LISTS_UPDATEGROUP)
handleServerCListItemUpdate(szRecordName, wGroupId, wItemId, wItemType, pChain);
else if (pSnacHeader->wSubtype == ICQ_LISTS_REMOVEFROMLIST)
handleServerCListItemDelete(szRecordName, wGroupId, wItemId, wItemType, pChain);
// release memory
disposeChain(&pChain);
}
}
{ // log packet basics
char *szChange;
char szLogText[MAX_PATH];
if (pSnacHeader->wSubtype == ICQ_LISTS_ADDTOLIST)
szChange = "Server added %u item(s) to list";
else if (pSnacHeader->wSubtype == ICQ_LISTS_UPDATEGROUP)
szChange = "Server updated %u item(s) on list";
else if (pSnacHeader->wSubtype == ICQ_LISTS_REMOVEFROMLIST)
szChange = "Server removed %u item(s) from list";
mir_snprintf(szLogText, MAX_PATH, szChange, nItems);
debugLogA("Server sent SNAC(x13,x%02x) - %s", pSnacHeader->wSubtype, szLogText);
}
}
break;
case ICQ_LISTS_AUTHREQUEST:
handleRecvAuthRequest(pBuffer, wBufferLength);
break;
case ICQ_LISTS_SRV_AUTHRESPONSE:
handleRecvAuthResponse(pBuffer, wBufferLength);
break;
case ICQ_LISTS_AUTHGRANTED:
debugLogA("Server sent SNAC(x13,x%02x) - %s", ICQ_LISTS_AUTHGRANTED, "User granted us future authorization");
break;
case ICQ_LISTS_YOUWEREADDED:
handleRecvAdded(pBuffer, wBufferLength);
break;
case ICQ_LISTS_ERROR:
if (wBufferLength >= 2)
{
WORD wError;
cookie_servlist_action* sc;
unpackWord(&pBuffer, &wError);
if (FindCookie(pSnacHeader->dwRef, NULL, (void**)&sc))
{ // look for action cookie
#ifdef _DEBUG
debugLogA("Received server list error, action: %d, result: %d", sc->dwAction, wError);
#endif
FreeCookie(pSnacHeader->dwRef); // release cookie
if (sc->dwAction==SSA_CHECK_ROSTER)
{ // the serv-list is unavailable turn it off
icq_LogMessage(LOG_ERROR, LPGEN("Server contact list is unavailable, Miranda will use local contact list."));
m_bSsiEnabled = 0;
handleServUINSettings(wListenPort, info);
}
/// FIXME: properly release pending operations & cookie memory
SAFE_FREE((void**)&sc);
}
else
{
LogFamilyError(ICQ_LISTS_FAMILY, wError);
}
}
break;
default:
debugLogA("Warning: Ignoring SNAC(x%02x,x%02x) - Unknown SNAC (Flags: %u, Ref: %u)", ICQ_LISTS_FAMILY, pSnacHeader->wSubtype, pSnacHeader->wFlags, pSnacHeader->dwRef);
break;
}
}
static int unpackServerListItem(BYTE **pbuf, WORD *pwLen, char *pszRecordName, WORD *pwGroupId, WORD *pwItemId, WORD *pwItemType, WORD *pwTlvLength)
{
WORD wRecordNameLen;
// The name of the entry. If this is a group header, then this
// is the name of the group. If it is a plain contact list entry,
// then it's the UIN of the contact.
unpackWord(pbuf, &wRecordNameLen);
if (*pwLen < 10 + wRecordNameLen || wRecordNameLen >= MAX_PATH)
return 0; // Failure
unpackString(pbuf, pszRecordName, wRecordNameLen);
if (pszRecordName)
pszRecordName[wRecordNameLen] = '\0';
// The group identifier this entry belongs to. If 0, this is meta information or
// a contact without a group
unpackWord(pbuf, pwGroupId);
// The ID of this entry. Group headers have ID 0. Otherwise, this
// is a random number generated when the user is added to the
// contact list, or when the user is ignored. See CLI_ADDBUDDY.
unpackWord(pbuf, pwItemId);
// This field indicates what type of entry this is
unpackWord(pbuf, pwItemType);
// The length in bytes of the following TLV chain
unpackWord(pbuf, pwTlvLength);
*pwLen -= wRecordNameLen + 10;
return 1; // Success
}
void CIcqProto::handleServerCListRightsReply(BYTE *buf, WORD wLen)
{ /* received list rights, store the item limits for future use */
oscar_tlv_chain* chain;
memset(m_wServerListLimits, -1, sizeof(m_wServerListLimits));
m_wServerListGroupMaxContacts = 0;
m_wServerListRecordNameMaxLength = 0xFFFF;
if (chain = readIntoTLVChain(&buf, wLen, 0))
{
oscar_tlv* pTLV;
// determine max number of contacts in a group
m_wServerListGroupMaxContacts = chain->getWord(0x0C, 1);
// determine length limit for server-list item's name
m_wServerListRecordNameMaxLength = chain->getWord(0x06, 1);
if (pTLV = chain->getTLV(0x04, 1))
{ // limits for item types
int i;
WORD *pLimits = (WORD*)pTLV->pData;
for (i = 0; i < pTLV->wLen / 2; i++)
{
m_wServerListLimits[i] = (pLimits[i] & 0xFF) << 8 | (pLimits[i] >> 8);
if (i + 1 >= SIZEOF(m_wServerListLimits)) break;
}
debugLogA("SSI: Max %d contacts (%d per group), %d groups, %d permit, %d deny, %d ignore items.", m_wServerListLimits[SSI_ITEM_BUDDY], m_wServerListGroupMaxContacts, m_wServerListLimits[SSI_ITEM_GROUP], m_wServerListLimits[SSI_ITEM_PERMIT], m_wServerListLimits[SSI_ITEM_DENY], m_wServerListLimits[SSI_ITEM_IGNORE]);
}
disposeChain(&chain);
}
}
DWORD CIcqProto::updateServerGroupData(WORD wGroupId, void *groupData, int groupSize, DWORD dwOperationFlags)
{
DWORD dwCookie;
cookie_servlist_action* ack;
ack = (cookie_servlist_action*)SAFE_MALLOC(sizeof(cookie_servlist_action));
if (!ack)
{
debugLogA("Updating of group on server list failed (malloc error)");
return 0;
}
ack->dwAction = SSA_GROUP_UPDATE;
ack->szGroupName = getServListGroupName(wGroupId);
ack->wGroupId = wGroupId;
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_UPDATEGROUP, 0, ack);
return icq_sendServerGroup(dwCookie, ICQ_LISTS_UPDATEGROUP, ack->wGroupId, ack->szGroupName, groupData, groupSize, dwOperationFlags);
}
void CIcqProto::handleServerCListAck(cookie_servlist_action* sc, WORD wError)
{
switch (sc->dwAction)
{
case SSA_VISIBILITY:
{
if (wError)
debugLogA("Server visibility update failed, error %d", wError);
break;
}
case SSA_CONTACT_UPDATE:
{
servlistPendingRemoveContact(sc->hContact, sc->wContactId, sc->wGroupId, wError ? PENDING_RESULT_FAILED : PENDING_RESULT_SUCCESS);
if (wError)
{
debugLogA("Updating of server contact failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Updating of server contact failed."));
}
break;
}
case SSA_PRIVACY_ADD:
{
if (wError)
{
debugLogA("Adding of privacy item to server list failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Adding of privacy item to server list failed."));
}
break;
}
case SSA_PRIVACY_REMOVE:
{
if (wError)
{
debugLogA("Removing of privacy item from server list failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Removing of privacy item from server list failed."));
}
FreeServerID(sc->wContactId, SSIT_ITEM); // release server id
break;
}
case SSA_CONTACT_ADD:
{
if (wError)
{
if (wError == 0xE) // server refused to add contact w/o auth, add with
{
DWORD dwCookie;
debugLogA("Contact could not be added without authorization, add with await auth flag.");
setByte(sc->hContact, "Auth", 1); // we need auth
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_ADDTOLIST, sc->hContact, sc);
icq_sendServerContact(sc->hContact, dwCookie, ICQ_LISTS_ADDTOLIST, sc->wGroupId, sc->wContactId, SSOP_ITEM_ACTION | SSOF_CONTACT, 500, NULL);
sc = NULL; // we do not want it to be freed now
break;
}
FreeServerID(sc->wContactId, SSIT_ITEM);
debugLogA("Adding of contact to server list failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Adding of contact to server list failed."));
servlistPendingRemoveContact(sc->hContact, 0, sc->wGroupId, PENDING_RESULT_FAILED);
servlistPostPacket(NULL, 0, SSO_END_OPERATION, 100); // end server modifications here
}
else
{
void* groupData;
int groupSize;
setWord(sc->hContact, DBSETTING_SERVLIST_ID, sc->wContactId);
setWord(sc->hContact, DBSETTING_SERVLIST_GROUP, sc->wGroupId);
servlistPendingRemoveContact(sc->hContact, sc->wContactId, sc->wGroupId, PENDING_RESULT_SUCCESS);
if (groupData = collectBuddyGroup(sc->wGroupId, &groupSize))
{ // the group is not empty, just update it
updateServerGroupData(sc->wGroupId, groupData, groupSize, SSOF_END_OPERATION);
SAFE_FREE((void**)&groupData);
}
else
{ // this should never happen
debugLogA("Group update failed.");
servlistPostPacket(NULL, 0, SSO_END_OPERATION, 100); // end server modifications here
}
}
break;
}
case SSA_GROUP_ADD:
{
if (wError)
{
FreeServerID(sc->wGroupId, SSIT_GROUP);
debugLogA("Adding of group to server list failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Adding of group to server list failed."));
servlistPendingRemoveGroup(sc->szGroup, 0, PENDING_RESULT_FAILED);
}
else // group added, we need to update master group
{
void* groupData;
int groupSize;
cookie_servlist_action* ack;
DWORD dwCookie;
setServListGroupName(sc->wGroupId, sc->szGroupName); // add group to namelist
{ // add group to known
char *szCListGroup = getServListGroupCListPath(sc->wGroupId);
// create link to the original CList group
setServListGroupLinkID(sc->szGroup, sc->wGroupId);
servlistPendingRemoveGroup(sc->szGroup, sc->wGroupId, PENDING_RESULT_SUCCESS);
SAFE_FREE((void**)&szCListGroup);
}
groupData = collectGroups(&groupSize);
groupData = SAFE_REALLOC(groupData, groupSize+2);
*(((WORD*)groupData)+(groupSize>>1)) = sc->wGroupId; // add this new group id
groupSize += 2;
ack = (cookie_servlist_action*)SAFE_MALLOC(sizeof(cookie_servlist_action));
if (ack)
{
ack->dwAction = SSA_GROUP_UPDATE;
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_UPDATEGROUP, 0, ack);
icq_sendServerGroup(dwCookie, ICQ_LISTS_UPDATEGROUP, 0, ack->szGroupName, groupData, groupSize, SSOF_END_OPERATION);
}
else // end server modifications here
servlistPostPacket(NULL, 0, SSO_END_OPERATION, 100);
SAFE_FREE((void**)&groupData);
}
if (sc->szGroup != sc->szGroupName)
SAFE_FREE((void**)&sc->szGroup);
SAFE_FREE((void**)&sc->szGroupName);
break;
}
case SSA_CONTACT_REMOVE:
{
if (!wError)
{
void* groupData;
int groupSize;
setWord(sc->hContact, DBSETTING_SERVLIST_ID, 0); // clear the values
setWord(sc->hContact, DBSETTING_SERVLIST_GROUP, 0);
FreeServerID(sc->wContactId, SSIT_ITEM);
servlistPendingRemoveContact(sc->hContact, 0, sc->wGroupId, PENDING_RESULT_SUCCESS);
if (groupData = collectBuddyGroup(sc->wGroupId, &groupSize))
{ // the group is still not empty, just update it
updateServerGroupData(sc->wGroupId, groupData, groupSize, SSOF_END_OPERATION);
}
else // the group is empty, delete it
{
char *szGroup = getServListGroupCListPath(sc->wGroupId);
servlistRemoveGroup(szGroup, sc->wGroupId);
SAFE_FREE((void**)&szGroup);
}
SAFE_FREE((void**)&groupData); // free the memory
}
else
{
debugLogA("Removing of contact from server list failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Removing of contact from server list failed."));
servlistPendingRemoveContact(sc->hContact, sc->wContactId, sc->wGroupId, PENDING_RESULT_FAILED);
servlistPostPacket(NULL, 0, SSO_END_OPERATION, 100); // end server modifications here
}
break;
}
case SSA_GROUP_UPDATE:
{
if (wError)
{
debugLogA("Updating of group on server list failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Updating of group on server list failed."));
}
SAFE_FREE((void**)&sc->szGroupName);
break;
}
case SSA_GROUP_REMOVE:
{
SAFE_FREE((void**)&sc->szGroupName);
if (wError)
{
debugLogA("Removing of group from server list failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Removing of group from server list failed."));
servlistPendingRemoveGroup(sc->szGroup, 0, PENDING_RESULT_FAILED);
servlistPostPacket(NULL, 0, SSO_END_OPERATION, 100); // end server modifications here
SAFE_FREE((void**)&sc->szGroup);
}
else // group removed, we need to update master group
{
void* groupData;
int groupSize;
DWORD dwCookie;
setServListGroupName(sc->wGroupId, NULL); // clear group from namelist
FreeServerID(sc->wGroupId, SSIT_GROUP);
removeGroupPathLinks(sc->wGroupId);
servlistPendingRemoveGroup(sc->szGroup, 0, PENDING_RESULT_SUCCESS);
SAFE_FREE((void**)&sc->szGroup);
groupData = collectGroups(&groupSize);
sc->wGroupId = 0;
sc->dwAction = SSA_GROUP_UPDATE;
sc->szGroupName = NULL;
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_UPDATEGROUP, 0, sc);
icq_sendServerGroup(dwCookie, ICQ_LISTS_UPDATEGROUP, 0, sc->szGroupName, groupData, groupSize, SSOF_END_OPERATION);
// end server modifications here
sc = NULL; // we do not want to be freed here
SAFE_FREE((void**)&groupData);
}
break;
}
case SSA_CONTACT_SET_GROUP:
{ // we moved contact to another group
if (sc->lParam == -1)
{ // the first was an error
break;
}
if (wError)
{
if (wError == 0x0E && sc->lParam == 1)
{ // second ack - adding failed with error 0x0E, try to add with AVAIT_AUTH flag
DWORD dwCookie;
if (!getByte(sc->hContact, "Auth", 0))
{ // we tried without AWAIT_AUTH, try again with it
debugLogA("Contact could not be added without authorization, add with await auth flag.");
setByte(sc->hContact, "Auth", 1); // we need auth
}
else
{ // we tried with AWAIT_AUTH, try again without
debugLogA("Contact count not be added awaiting authorization, try authorized.");
setByte(sc->hContact, "Auth", 0);
}
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_ADDTOLIST, sc->hContact, sc);
icq_sendServerContact(sc->hContact, dwCookie, ICQ_LISTS_ADDTOLIST, sc->wNewGroupId, sc->wNewContactId, SSOP_ITEM_ACTION | SSOF_CONTACT, 400, NULL);
sc->lParam = 2; // do not cycle
sc = NULL; // we do not want to be freed here
break;
}
FreeServerID(sc->wNewContactId, SSIT_ITEM);
debugLogA("Moving of user to another group on server list failed, error %d", wError);
icq_LogMessage(LOG_ERROR, LPGEN("Moving of user to another group on server list failed."));
servlistPendingRemoveContact(sc->hContact, 0, (WORD)(sc->lParam ? sc->wGroupId : sc->wNewGroupId), PENDING_RESULT_FAILED);
servlistPostPacket(NULL, 0, SSO_END_OPERATION, 100); // end server modifications here
if (!sc->lParam) // is this first ack ?
{
sc->lParam = -1;
sc = NULL; // this can't be freed here
}
break;
}
if (sc->lParam) // is this the second ack ?
{
void* groupData;
int groupSize;
int bEnd = 1; // shall we end the sever modifications
setWord(sc->hContact, DBSETTING_SERVLIST_ID, sc->wNewContactId);
setWord(sc->hContact, DBSETTING_SERVLIST_GROUP, sc->wNewGroupId);
servlistPendingRemoveContact(sc->hContact, sc->wNewContactId, sc->wNewGroupId, PENDING_RESULT_SUCCESS);
if (groupData = collectBuddyGroup(sc->wGroupId, &groupSize)) // update the group we moved from
{ // the group is still not empty, just update it
updateServerGroupData(sc->wGroupId, groupData, groupSize, 0);
SAFE_FREE((void**)&groupData); // free the memory
}
else
{ // the group is empty, delete it
char* szGroup = getServListGroupCListPath(sc->wGroupId);
servlistRemoveGroup(szGroup, sc->wGroupId);
SAFE_FREE((void**)&szGroup);
bEnd = 0; // here the modifications go on
}
groupData = collectBuddyGroup(sc->wNewGroupId, &groupSize); // update the group we moved to
updateServerGroupData(sc->wNewGroupId, groupData, groupSize, bEnd ? SSOF_END_OPERATION : 0);
// end server modifications here
SAFE_FREE((void**)&groupData);
}
else // contact was deleted from server-list
{
delSetting(sc->hContact, DBSETTING_SERVLIST_ID);
delSetting(sc->hContact, DBSETTING_SERVLIST_GROUP);
FreeServerID(sc->wContactId, SSIT_ITEM); // release old contact id
sc->lParam = 1;
sc = NULL; // wait for second ack
}
break;
}
case SSA_CONTACT_FIX_AUTH:
{
if (wError)
{ // FIXME: something failed, we should handle it properly
}
break;
}
case SSA_GROUP_RENAME:
{
if (wError)
{
debugLogA("Renaming of server group failed, error %d", wError);
icq_LogMessage(LOG_WARNING, LPGEN("Renaming of server group failed."));
servlistPendingRemoveGroup(sc->szGroup, sc->wGroupId, PENDING_RESULT_FAILED);
}
else
{
setServListGroupName(sc->wGroupId, sc->szGroupName);
removeGroupPathLinks(sc->wGroupId);
{ // add group to known
char *szCListGroup = getServListGroupCListPath(sc->wGroupId);
/// FIXME: need to create link to the new group name before unique item name correction as well
setServListGroupLinkID(szCListGroup, sc->wGroupId);
SAFE_FREE((void**)&szCListGroup);
}
servlistPendingRemoveGroup(sc->szGroup, sc->wGroupId, PENDING_RESULT_SUCCESS);
}
SAFE_FREE((void**)&sc->szGroupName);
SAFE_FREE((void**)&sc->szGroup);
break;
}
case SSA_SETAVATAR:
{
if (wError)
{
debugLogA("Uploading of avatar hash failed.");
if (sc->wGroupId) // is avatar added or updated?
{
FreeServerID(sc->wContactId, SSIT_ITEM);
delSetting(DBSETTING_SERVLIST_AVATAR); // to fix old versions
}
}
else
{
setWord(DBSETTING_SERVLIST_AVATAR, sc->wContactId);
}
break;
}
case SSA_REMOVEAVATAR:
{
if (wError)
debugLogA("Removing of avatar hash failed.");
else
{
FreeServerID(sc->wContactId, SSIT_ITEM);
delSetting(DBSETTING_SERVLIST_AVATAR);
}
break;
}
case SSA_SERVLIST_ACK:
{
ProtoBroadcastAck(sc->hContact, ICQACKTYPE_SERVERCLIST, wError?ACKRESULT_FAILED:ACKRESULT_SUCCESS, (HANDLE)sc->lParam, wError);
break;
}
case SSA_IMPORT:
{
if (wError)
debugLogA("Re-starting import sequence failed, error %d", wError);
else
{
setWord("SrvImportID", 0);
delSetting("ImportTS");
}
break;
}
default:
debugLogA("Server ack cookie type (%d) not recognized.", sc->dwAction);
}
SAFE_FREE((void**)&sc); // free the memory
return;
}
HCONTACT CIcqProto::HContactFromRecordName(const char* szRecordName, int *bAdded)
{
HCONTACT hContact = (HCONTACT)INVALID_HANDLE_VALUE;
if (!IsStringUIN(szRecordName))
{ // probably AIM contact
hContact = HContactFromUID(0, szRecordName, bAdded);
}
else
{ // this should be ICQ number
DWORD dwUin = atoi(szRecordName);
hContact = HContactFromUIN(dwUin, bAdded);
}
return hContact;
}
int CIcqProto::getServerDataFromItemTLV(oscar_tlv_chain* pChain, unsigned char *buf) /// FIXME: need to keep original order
{ // get server-list item's TLV data
oscar_tlv_chain* list = pChain;
int datalen = 0;
icq_packet pBuf;
// Initialize our handy data buffer
pBuf.wPlace = 0;
pBuf.pData = buf;
while (list)
{ // collect non-standard TLVs and save them to DB
if (list->tlv.wType != SSI_TLV_AWAITING_AUTH &&
list->tlv.wType != SSI_TLV_NAME &&
list->tlv.wType != SSI_TLV_COMMENT &&
list->tlv.wType != SSI_TLV_METAINFO_TOKEN &&
list->tlv.wType != SSI_TLV_METAINFO_TIME)
{ // only TLVs which we do not handle on our own
packTLV(&pBuf, list->tlv.wType, list->tlv.wLen, list->tlv.pData);
datalen += list->tlv.wLen + 4;
}
list = list->next;
}
return datalen;
}
void CIcqProto::handleServerCListReply(BYTE *buf, WORD wLen, WORD wFlags, serverthread_info *info)
{
BYTE bySSIVersion;
WORD wRecordCount;
WORD wRecord;
WORD wGroupId;
WORD wItemId;
WORD wTlvType;
WORD wTlvLength;
BOOL bIsLastPacket;
uid_str szRecordName;
oscar_tlv_chain* pChain = NULL;
oscar_tlv* pTLV = NULL;
char *szActiveSrvGroup = NULL;
WORD wActiveSrvGroupId = -1;
// If flag bit 1 is set, this is not the last
// packet. If it is 0, this is the last packet
// and there will be a timestamp at the end.
if (wFlags & 0x0001)
bIsLastPacket = FALSE;
else
bIsLastPacket = TRUE;
if (wLen < 3)
return;
// Version number of SSI protocol?
unpackByte(&buf, &bySSIVersion);
wLen -= 1;
// Total count of following entries. This is the size of the server
// side contact list and should be saved and sent with CLI_CHECKROSTER.
// NOTE: When the entries are split up in several packets, each packet
// has it's own count and they must be added to get the total size of
// server list.
unpackWord(&buf, &wRecordCount);
wLen -= 2;
debugLogA("SSI: number of entries is %u, version is %u", wRecordCount, bySSIVersion);
// Loop over all items in the packet
for (wRecord = 0; wRecord < wRecordCount; wRecord++)
{
debugLogA("SSI: parsing record %u", wRecord + 1);
if (wLen < 10)
{ // minimum: name length (zero), group ID, item ID, empty TLV
debugLogA("Warning: SSI parsing error (%d)", 0);
break;
}
if (!unpackServerListItem(&buf, &wLen, szRecordName, &wGroupId, &wItemId, &wTlvType, &wTlvLength))
{ // unpack basic structure
debugLogA("Warning: SSI parsing error (%d)", 1);
break;
}
debugLogA("Name: '%s', GroupID: %u, EntryID: %u, EntryType: %u, TLVlength: %u",
szRecordName, wGroupId, wItemId, wTlvType, wTlvLength);
if (wLen < wTlvLength)
{
debugLogA("Warning: SSI parsing error (%d)", 2);
break;
}
// Initialize the tlv chain
if (wTlvLength > 0)
{
pChain = readIntoTLVChain(&buf, wTlvLength, 0);
wLen -= wTlvLength;
}
else
{
pChain = NULL;
}
switch (wTlvType)
{
case SSI_ITEM_BUDDY:
{
/* this is a contact */
HCONTACT hContact;
int bAdded;
hContact = HContactFromRecordName(szRecordName, &bAdded);
if (hContact != (HCONTACT)INVALID_HANDLE_VALUE)
{
int bRegroup = 0;
int bNicked = 0;
if (bAdded)
{ // Not already on list: added
debugLogA("SSI added new %s contact '%s'", "ICQ", szRecordName);
AddJustAddedContact(hContact);
}
else
{ // we should add new contacts and this contact was just added, show it
if (IsContactJustAdded(hContact))
{
setContactHidden(hContact, 0);
bAdded = 1; // we want details for new contacts
}
else
debugLogA("SSI ignoring existing contact '%s'", szRecordName);
// Contact on server is always on list
db_set_b(hContact, "CList", "NotOnList", 0);
}
// Save group and item ID
setWord(hContact, DBSETTING_SERVLIST_ID, wItemId);
setWord(hContact, DBSETTING_SERVLIST_GROUP, wGroupId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
if (!bAdded && getByte("LoadServerDetails", DEFAULT_SS_LOAD))
{ // check if the contact has been moved on the server
if (wActiveSrvGroupId != wGroupId || !szActiveSrvGroup)
{
SAFE_FREE(&szActiveSrvGroup);
szActiveSrvGroup = getServListGroupCListPath(wGroupId);
wActiveSrvGroupId = wGroupId;
}
char *szLocalGroup = getContactCListGroup(hContact);
if (!strlennull(szLocalGroup))
{ // no CListGroup
SAFE_FREE(&szLocalGroup);
szLocalGroup = null_strdup(DEFAULT_SS_GROUP);
}
if (strcmpnull(szActiveSrvGroup, szLocalGroup) &&
(strlennull(szActiveSrvGroup) >= strlennull(szLocalGroup) || (szActiveSrvGroup && _strnicmp(szActiveSrvGroup, szLocalGroup, strlennull(szLocalGroup)))))
{ // contact moved to new group or sub-group or not to master group
bRegroup = 1;
}
if (bRegroup && !stricmpnull(DEFAULT_SS_GROUP, szActiveSrvGroup)) /// TODO: invent something more clever for "root" group
{ // is it the default "General" group ?
bRegroup = 0; // if yes, do not move to it - cause it would hide the contact
}
SAFE_FREE(&szLocalGroup);
}
if (bRegroup || bAdded)
{ // if we should load server details or contact was just added, update its group
if (wActiveSrvGroupId != wGroupId || !szActiveSrvGroup)
{
SAFE_FREE(&szActiveSrvGroup);
szActiveSrvGroup = getServListGroupCListPath(wGroupId);
wActiveSrvGroupId = wGroupId;
}
if (szActiveSrvGroup)
{ // try to get Miranda Group path from groupid, if succeeded save to db
moveContactToCListGroup(hContact, szActiveSrvGroup);
}
}
if (pChain)
{ // Look for nickname TLV and copy it to the db if necessary
if (pTLV = pChain->getTLV(SSI_TLV_NAME, 1))
{
if (pTLV->pData && (pTLV->wLen > 0))
{
char *pszNick;
WORD wNickLength;
wNickLength = pTLV->wLen;
pszNick = (char*)SAFE_MALLOC(wNickLength + 1);
// Copy buffer to utf-8 buffer
memcpy(pszNick, pTLV->pData, wNickLength);
pszNick[wNickLength] = 0; // Terminate string
debugLogA("Nickname is '%s'", pszNick);
bNicked = 1;
// Write nickname to database
if (getByte("LoadServerDetails", DEFAULT_SS_LOAD) || bAdded)
{ // if just added contact, save details always - does no harm
char *szOldNick;
if (szOldNick = getSettingStringUtf(hContact, "CList", "MyHandle", NULL))
{
if ((strcmpnull(szOldNick, pszNick)) && (strlennull(pszNick) > 0))
{ // check if the truncated nick changed, i.e. do not overwrite locally stored longer nick
if (strlennull(szOldNick) <= strlennull(pszNick) || strncmp(szOldNick, pszNick, null_strcut(szOldNick, MAX_SSI_TLV_NAME_SIZE)))
{
// Yes, we really do need to delete it first. Otherwise the CLUI nick
// cache isn't updated (I'll look into it)
db_unset(hContact,"CList","MyHandle");
db_set_utf(hContact, "CList", "MyHandle", pszNick);
}
}
SAFE_FREE(&szOldNick);
}
else if (strlennull(pszNick) > 0)
{
db_unset(hContact,"CList","MyHandle");
db_set_utf(hContact, "CList", "MyHandle", pszNick);
}
}
SAFE_FREE(&pszNick);
}
else
{
debugLogA("Invalid nickname");
}
}
if (bAdded && !bNicked)
icq_QueueUser(hContact); // queue user without nick for fast auto info update
// Look for comment TLV and copy it to the db if necessary
if (pTLV = pChain->getTLV(SSI_TLV_COMMENT, 1))
{
if (pTLV->pData && (pTLV->wLen > 0))
{
char *pszComment;
WORD wCommentLength;
wCommentLength = pTLV->wLen;
pszComment = (char*)SAFE_MALLOC(wCommentLength + 1);
// Copy buffer to utf-8 buffer
memcpy(pszComment, pTLV->pData, wCommentLength);
pszComment[wCommentLength] = 0; // Terminate string
debugLogA("Comment is '%s'", pszComment);
// Write comment to database
if (getByte("LoadServerDetails", DEFAULT_SS_LOAD) || bAdded)
{ // if just added contact, save details always - does no harm
char *szOldComment;
if (szOldComment = getSettingStringUtf(hContact, "UserInfo", "MyNotes", NULL))
{
if ((strcmpnull(szOldComment, pszComment)) && (strlennull(pszComment) > 0))
{ // check if the truncated comment changed, i.e. do not overwrite locally stored longer comment
if (strlennull(szOldComment) <= strlennull(pszComment) || strncmp((char*)szOldComment, (char*)pszComment, null_strcut(szOldComment, MAX_SSI_TLV_COMMENT_SIZE)))
{
db_set_utf(hContact, "UserInfo", "MyNotes", pszComment);
}
}
SAFE_FREE((void**)&szOldComment);
}
else if (strlennull(pszComment) > 0)
{
db_set_utf(hContact, "UserInfo", "MyNotes", pszComment);
}
}
SAFE_FREE((void**)&pszComment);
}
else
{
debugLogA("Invalid comment");
}
}
// Look for need-authorization TLV
if (pChain->getTLV(SSI_TLV_AWAITING_AUTH, 1))
{
setByte(hContact, "Auth", 1);
debugLogA("SSI contact need authorization");
}
else
{
setByte(hContact, "Auth", 0);
}
if (pTLV = pChain->getTLV(SSI_TLV_METAINFO_TOKEN, 1))
{
setSettingBlob(hContact, DBSETTING_METAINFO_TOKEN, pTLV->pData, pTLV->wLen);
if (pChain->getTLV(SSI_TLV_METAINFO_TIME, 1))
setSettingDouble(hContact, DBSETTING_METAINFO_TIME, pChain->getDouble(SSI_TLV_METAINFO_TIME, 1));
debugLogA("SSI contact has meta info token");
}
else
{
delSetting(hContact, DBSETTING_METAINFO_TOKEN);
delSetting(hContact, DBSETTING_METAINFO_TIME);
}
{ // store server-list item's TLV data
BYTE* data = (BYTE*)SAFE_MALLOC(wTlvLength);
int datalen = getServerDataFromItemTLV(pChain, data);
if (datalen > 0)
setSettingBlob(hContact, DBSETTING_SERVLIST_DATA, data, datalen);
else
delSetting(hContact, DBSETTING_SERVLIST_DATA);
SAFE_FREE((void**)&data);
}
}
}
else
{ // failed to add or other error
debugLogA("SSI failed to handle %s Item '%s'", "Buddy", szRecordName);
}
}
break;
case SSI_ITEM_GROUP:
if ((wGroupId == 0) && (wItemId == 0))
{
/* list of groups. wTlvType=1, data is TLV(C8) containing list of WORDs which */
/* is the group ids
/* we don't need to use this. Our processing is on-the-fly */
/* this record is always sent first in the first packet only, */
}
else if (wGroupId != 0)
{
/* wGroupId != 0: a group record */
if (wItemId == 0)
{ /* no item ID: this is a group */
/* pszRecordName is the name of the group */
ReserveServerID(wGroupId, SSIT_GROUP, 0);
setServListGroupName(wGroupId, szRecordName);
debugLogA("Group %s added to known groups.", szRecordName);
/* demangle full grouppath, set it to known */
SAFE_FREE(&szActiveSrvGroup);
szActiveSrvGroup = getServListGroupCListPath(wGroupId);
wActiveSrvGroupId = wGroupId;
/* TLV contains a TLV(C8) with a list of WORDs of contained contact IDs */
/* our processing is good enough that we don't need this duplication */
}
else
{
debugLogA("Unhandled type 0x01, wItemID != 0");
}
}
else
{
debugLogA("Unhandled type 0x01");
}
break;
case SSI_ITEM_PERMIT:
{
/* item on visible list */
/* wItemId not related to contact ID */
/* pszRecordName is the UIN */
HCONTACT hContact;
int bAdded;
hContact = HContactFromRecordName(szRecordName, &bAdded);
if (hContact != (HCONTACT)INVALID_HANDLE_VALUE)
{
if (bAdded)
{
debugLogA("SSI added new %s contact '%s'", "Permit", szRecordName);
// It wasn't previously in the list, we hide it so it only appears in the visible list
setContactHidden(hContact, 1);
// Add it to the list, so it can be added properly if proper contact
AddJustAddedContact(hContact);
}
else
debugLogA("SSI %s contact already exists '%s'", "Permit", szRecordName);
// Save permit ID
setWord(hContact, DBSETTING_SERVLIST_PERMIT, wItemId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
// Set apparent mode
setWord(hContact, "ApparentMode", ID_STATUS_ONLINE);
debugLogA("Visible-contact (%s)", szRecordName);
}
else
{ // failed to add or other error
debugLogA("SSI failed to handle %s Item '%s'", "Permit", szRecordName);
ReserveServerID(wItemId, SSIT_ITEM, SSIF_UNHANDLED);
}
}
break;
case SSI_ITEM_DENY:
{
/* Item on invisible list */
/* wItemId not related to contact ID */
/* pszRecordName is the UIN */
HCONTACT hContact;
int bAdded;
hContact = HContactFromRecordName(szRecordName, &bAdded);
if (hContact != (HCONTACT)INVALID_HANDLE_VALUE)
{
if (bAdded)
{
/* not already on list: added */
debugLogA("SSI added new %s contact '%s'", "Deny", szRecordName);
// It wasn't previously in the list, we hide it so it only appears in the visible list
setContactHidden(hContact, 1);
// Add it to the list, so it can be added properly if proper contact
AddJustAddedContact(hContact);
}
else
debugLogA("SSI %s contact already exists '%s'", "Deny", szRecordName);
// Save Deny ID
setWord(hContact, DBSETTING_SERVLIST_DENY, wItemId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
// Set apparent mode
setWord(hContact, "ApparentMode", ID_STATUS_OFFLINE);
debugLogA("Invisible-contact (%s)", szRecordName);
}
else
{ // failed to add or other error
debugLogA("SSI failed to handle %s Item '%s'", "Deny", szRecordName);
ReserveServerID(wItemId, SSIT_ITEM, SSIF_UNHANDLED);
}
}
break;
case SSI_ITEM_VISIBILITY: /* My visibility settings */
{
BYTE bVisibility;
// Look for visibility TLV
if (bVisibility = pChain->getByte(SSI_TLV_VISIBILITY, 1))
{ // found it, store the id, we do not need current visibility - we do not rely on it
setWord(DBSETTING_SERVLIST_PRIVACY, wItemId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
debugLogA("Visibility is %u", bVisibility);
}
else
ReserveServerID(wItemId, SSIT_ITEM, SSIF_UNHANDLED);
}
break;
case SSI_ITEM_IGNORE:
{
/* item on ignore list */
/* wItemId not related to contact ID */
/* pszRecordName is the UIN */
HCONTACT hContact;
int bAdded;
hContact = HContactFromRecordName(szRecordName, &bAdded);
if (hContact != (HCONTACT)INVALID_HANDLE_VALUE)
{
if (bAdded)
{
/* not already on list: add */
debugLogA("SSI added new %s contact '%s'", "Ignore", szRecordName);
// It wasn't previously in the list, we hide it
setContactHidden(hContact, 1);
// Add it to the list, so it can be added properly if proper contact
AddJustAddedContact(hContact);
}
else
debugLogA("SSI %s contact already exists '%s'", "Ignore", szRecordName);
// Save Ignore ID
setWord(hContact, DBSETTING_SERVLIST_IGNORE, wItemId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
// Set apparent mode & ignore
setWord(hContact, "ApparentMode", ID_STATUS_OFFLINE);
// set ignore all events
CallService(MS_IGNORE_IGNORE, (WPARAM)hContact, IGNOREEVENT_ALL);
debugLogA("Ignore-contact (%s)", szRecordName);
}
else
{ // failed to add or other error
debugLogA("SSI failed to handle %s Item '%s'", "Ignore", szRecordName);
ReserveServerID(wItemId, SSIT_ITEM, SSIF_UNHANDLED);
}
}
break;
case SSI_ITEM_UNKNOWN2:
debugLogA("SSI unknown type 0x11");
ReserveServerID(wItemId, SSIT_ITEM, SSIF_UNHANDLED);
break;
case SSI_ITEM_IMPORTTIME:
if (wGroupId == 0)
{
/* time our list was first imported */
/* pszRecordName is "Import Time" */
/* data is TLV(13) {TLV(D4) {time_t importTime}} */
setDword("ImportTS", pChain->getDWord(SSI_TLV_TIMESTAMP, 1));
setWord("SrvImportID", wItemId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
debugLogA("SSI %s item recognized", "first import");
}
break;
case SSI_ITEM_BUDDYICON:
if (wGroupId == 0)
{
/* our avatar MD5-hash */
/* pszRecordName is "1" */
/* data is TLV(D5) hash */
/* we ignore this, just save the id */
/* cause we get the hash again after login */
if (!strcmpnull(szRecordName, "12"))
{ // need to handle Photo Item separately
setWord(DBSETTING_SERVLIST_PHOTO, wItemId);
debugLogA("SSI %s item recognized", "Photo");
}
else
{
setWord(DBSETTING_SERVLIST_AVATAR, wItemId);
debugLogA("SSI %s item recognized", "Avatar");
}
ReserveServerID(wItemId, SSIT_ITEM, 0);
}
break;
case SSI_ITEM_METAINFO:
if (wGroupId == 0)
{
/* our meta info token & last update time */
/* pszRecordName is "ICQ-MDIR" */
/* data is TLV(15C) and TLV(15D) */
oscar_tlv* pToken = pChain->getTLV(SSI_TLV_METAINFO_TOKEN, 1);
oscar_tlv* pTime = pChain->getTLV(SSI_TLV_METAINFO_TIME, 1);
if (pToken)
setSettingBlob(NULL, DBSETTING_METAINFO_TOKEN, pToken->pData, pToken->wLen);
if (pTime)
setSettingDouble(NULL, DBSETTING_METAINFO_TIME, pChain->getDouble(SSI_TLV_METAINFO_TIME, 1));
setWord(DBSETTING_SERVLIST_METAINFO, wItemId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
debugLogA("SSI %s item recognized", "Meta info");
}
break;
case SSI_ITEM_CLIENTDATA:
if (wGroupId == 0)
{
/* ICQ2k ShortcutBar Items */
/* data is TLV(CD) text */
if (wItemId)
ReserveServerID(wItemId, SSIT_ITEM, SSIF_UNHANDLED);
}
case SSI_ITEM_SAVED:
case SSI_ITEM_PREAUTH:
break;
default:
debugLogA("SSI unhandled item %2x", wTlvType);
if (wItemId)
ReserveServerID(wItemId, SSIT_ITEM, SSIF_UNHANDLED);
break;
}
disposeChain(&pChain);
} // end for
// Release Memory
SAFE_FREE(&szActiveSrvGroup);
debugLogA("Bytes left: %u", wLen);
setWord("SrvRecordCount", (WORD)(wRecord + getWord("SrvRecordCount", 0)));
if (bIsLastPacket)
{
// No contacts left to sync
bIsSyncingCL = FALSE;
StoreServerIDs();
icq_RescanInfoUpdate();
if (wLen >= 4)
{
DWORD dwLastUpdateTime;
/* finally we get a time_t of the last update time */
unpackDWord(&buf, &dwLastUpdateTime);
setDword("SrvLastUpdate", dwLastUpdateTime);
debugLogA("Last update of server list was (%u) %s", dwLastUpdateTime, time2text(dwLastUpdateTime));
sendRosterAck();
handleServUINSettings(wListenPort, info);
servlistProcessLogin();
}
else
{
debugLogA("Last packet missed update time...");
}
if (getWord("SrvRecordCount", 0) == 0)
{ // we got empty serv-list, create master group
cookie_servlist_action* ack = (cookie_servlist_action*)SAFE_MALLOC(sizeof(cookie_servlist_action));
if (ack)
{
DWORD dwCookie;
ack->dwAction = SSA_GROUP_UPDATE;
ack->szGroupName = null_strdup("");
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_ADDTOLIST, 0, ack);
icq_sendServerGroup(dwCookie, ICQ_LISTS_ADDTOLIST, 0, ack->szGroupName, NULL, 0, 0);
}
}
// serv-list sync finished, clear just added contacts
FlushJustAddedContacts();
}
else
{
debugLogA("Waiting for more packets");
}
}
void CIcqProto::handleServerCListItemAdd(const char *szRecordName, WORD wGroupId, WORD wItemId, WORD wItemType, oscar_tlv_chain *pItemData)
{
if (wItemType == SSI_ITEM_IMPORTTIME)
{
if (pItemData)
{
setDword("ImportTS", pItemData->getDWord(SSI_TLV_TIMESTAMP, 1));
setWord("SrvImportID", wItemId);
ReserveServerID(wItemId, SSIT_ITEM, 0);
debugLogA("Server added Import timestamp to list");
return;
}
}
// Reserve server-list ID
ReserveServerID(wItemId, wItemType == SSI_ITEM_GROUP ? SSIT_GROUP : SSIT_ITEM, SSIF_UNHANDLED);
}
void CIcqProto::handleServerCListItemUpdate(const char *szRecordName, WORD wGroupId, WORD wItemId, WORD wItemType, oscar_tlv_chain *pItemData)
{
HCONTACT hContact = (wItemType == SSI_ITEM_BUDDY || wItemType == SSI_ITEM_DENY || wItemType == SSI_ITEM_PERMIT || wItemType == SSI_ITEM_IGNORE) ? HContactFromRecordName(szRecordName, NULL) : NULL;
if (hContact != (HCONTACT)INVALID_HANDLE_VALUE && wItemType == SSI_ITEM_BUDDY)
{ // a contact was updated on server
if (pItemData)
{
oscar_tlv* pAuth = pItemData->getTLV(SSI_TLV_AWAITING_AUTH, 1);
BYTE bAuth = getByte(hContact, "Auth", 0);
if (bAuth && !pAuth)
{ // server authorized our contact
char str[MAX_PATH];
char msg[MAX_PATH];
char *nick = NickFromHandleUtf(hContact);
setByte(hContact, "Auth", 0);
mir_snprintf(str, MAX_PATH, ICQTranslateUtfStatic(LPGEN("Contact \"%s\" was authorized in the server list."), msg, MAX_PATH), nick);
icq_LogMessage(LOG_WARNING, str);
SAFE_FREE(&nick);
}
else if (!bAuth && pAuth)
{ // server took away authorization of our contact
char str[MAX_PATH];
char msg[MAX_PATH];
char *nick = NickFromHandleUtf(hContact);
setByte(hContact, "Auth", 1);
mir_snprintf(str, MAX_PATH, ICQTranslateUtfStatic(LPGEN("Contact \"%s\" lost its authorization in the server list."), msg, MAX_PATH), nick);
icq_LogMessage(LOG_WARNING, str);
SAFE_FREE(&nick);
}
{ // update metainfo data
DBVARIANT dbv = {0};
oscar_tlv *pToken = pItemData->getTLV(SSI_TLV_METAINFO_TOKEN, 1);
oscar_tlv *pTime = pItemData->getTLV(SSI_TLV_METAINFO_TIME, 1);
if (!getSetting(hContact, DBSETTING_METAINFO_TOKEN, &dbv))
{
if (!pToken || dbv.cpbVal != pToken->wLen || memcmp(dbv.pbVal, pToken->pData, dbv.cpbVal))
{
if (!pToken)
debugLogA("Contact %s, meta info token removed", szRecordName);
else
debugLogA("Contact %s, meta info token changed", szRecordName);
// user info was changed, refresh
if (IsMetaInfoChanged(hContact))
icq_QueueUser(hContact);
}
db_free(&dbv);
}
else if (pToken)
{
debugLogA("Contact %s, meta info token added", szRecordName);
// user info was changed, refresh
if (IsMetaInfoChanged(hContact))
icq_QueueUser(hContact);
}
if (pToken)
setSettingBlob(hContact, DBSETTING_METAINFO_TOKEN, pToken->pData, pToken->wLen);
if (pTime)
setSettingDouble(hContact, DBSETTING_METAINFO_TIME, pItemData->getDouble(SSI_TLV_METAINFO_TIME, 1));
}
{ // update server's data - otherwise consequent operations can fail with 0x0E
BYTE *data = (BYTE*)_alloca(pItemData->getChainLength());
int datalen = getServerDataFromItemTLV(pItemData, data);
if (datalen > 0)
setSettingBlob(hContact, DBSETTING_SERVLIST_DATA, data, datalen);
else
delSetting(hContact, DBSETTING_SERVLIST_DATA);
}
}
}
else if (wItemType == SSI_ITEM_METAINFO)
{ // owner MetaInfo data updated
if (pItemData)
{
DBVARIANT dbv = {0};
oscar_tlv *pToken = pItemData->getTLV(SSI_TLV_METAINFO_TOKEN, 1);
oscar_tlv *pTime = pItemData->getTLV(SSI_TLV_METAINFO_TIME, 1);
if (!getSetting(hContact, DBSETTING_METAINFO_TOKEN, &dbv))
{
if (!pToken || dbv.cpbVal != pToken->wLen || memcmp(dbv.pbVal, pToken->pData, dbv.cpbVal))
{
if (!pToken)
debugLogA("Owner meta info token removed");
else
debugLogA("Owner meta info token changed");
}
db_free(&dbv);
}
if (pToken)
setSettingBlob(hContact, DBSETTING_METAINFO_TOKEN, pToken->pData, pToken->wLen);
if (pTime)
setSettingDouble(hContact, DBSETTING_METAINFO_TIME, pItemData->getDouble(SSI_TLV_METAINFO_TIME, 1));
}
}
else if (wItemType == SSI_ITEM_GROUP)
{ // group updated
debugLogA("Server updated our group \"%s\" on list", szRecordName);
}
}
void CIcqProto::handleServerCListItemDelete(const char *szRecordName, WORD wGroupId, WORD wItemId, WORD wItemType, oscar_tlv_chain *pItemData)
{
HCONTACT hContact = (wItemType == SSI_ITEM_BUDDY || wItemType == SSI_ITEM_DENY || wItemType == SSI_ITEM_PERMIT || wItemType == SSI_ITEM_IGNORE) ? HContactFromRecordName(szRecordName, NULL) : NULL;
if (hContact != (HCONTACT)INVALID_HANDLE_VALUE && wItemType == SSI_ITEM_BUDDY)
{ // a contact was removed from our list
if (getWord(hContact, DBSETTING_SERVLIST_ID, 0) == wItemId)
{
delSetting(hContact, DBSETTING_SERVLIST_ID);
delSetting(hContact, DBSETTING_SERVLIST_GROUP);
delSetting(hContact, "Auth");
{
char str[MAX_PATH];
char msg[MAX_PATH];
char *nick = NickFromHandleUtf(hContact);
mir_snprintf(str, MAX_PATH, ICQTranslateUtfStatic(LPGEN("User \"%s\" was removed from server list."), msg, MAX_PATH), nick);
icq_LogMessage(LOG_WARNING, str);
SAFE_FREE(&nick);
}
}
}
// Release server-list ID
FreeServerID(wItemId, wItemType == SSI_ITEM_GROUP ? SSIT_GROUP : SSIT_ITEM);
}
void CIcqProto::handleRecvAuthRequest(unsigned char *buf, WORD wLen)
{
DWORD dwUin;
uid_str szUid;
int bAdded;
if (!unpackUID(&buf, &wLen, &dwUin, &szUid)) return;
if (dwUin && IsOnSpammerList(dwUin))
{
debugLogA("Ignored Message from known Spammer");
return;
}
WORD wReasonLen;
unpackWord(&buf, &wReasonLen);
wLen -= 2;
if (wReasonLen > wLen)
return;
HCONTACT hContact = HContactFromUID(dwUin, szUid, &bAdded);
PROTORECVEVENT pre = { 0 };
pre.timestamp = time(NULL);
pre.lParam = sizeof(DWORD) + sizeof(HANDLE) + 5;
// Prepare reason
char *szReason = (char*)SAFE_MALLOC(wReasonLen + 1);
int nReasonLen = 0;
if (szReason)
{
memcpy(szReason, buf, wReasonLen);
szReason[wReasonLen] = '\0';
nReasonLen = strlennull(szReason);
char *temp = (char*)_alloca(nReasonLen + 2);
if (!IsUSASCII(szReason, nReasonLen) && UTF8_IsValid(szReason) && utf8_decode_static(szReason, temp, nReasonLen + 1))
pre.flags |= PREF_UTF;
}
// Read nick name from DB
char *szNick = NULL;
if (dwUin)
{
DBVARIANT dbv = { 0 };
if (pre.flags & PREF_UTF)
szNick = getSettingStringUtf(hContact, "Nick", NULL);
else if (!getString(hContact, "Nick", &dbv))
{
szNick = null_strdup(dbv.pszVal);
db_free(&dbv);
}
}
else
szNick = null_strdup(szUid);
int nNickLen = strlennull(szNick);
pre.lParam += nNickLen + nReasonLen;
setByte(hContact, "Grant", 1);
/*blob is: uin(DWORD), hcontact(HANDLE), nick(ASCIIZ), first(ASCIIZ), last(ASCIIZ), email(ASCIIZ), reason(ASCIIZ)*/
char *szBlob = (char *)_alloca(pre.lParam);
char *pCurBlob = szBlob;
memcpy(pCurBlob, &dwUin, sizeof(DWORD)); pCurBlob += sizeof(DWORD);
memcpy(pCurBlob, &hContact, sizeof(HANDLE)); pCurBlob += sizeof(HANDLE);
if (nNickLen)
{ // if we have nick we add it, otherwise keep trailing zero
memcpy(pCurBlob, szNick, nNickLen);
pCurBlob += nNickLen;
}
*pCurBlob = 0; pCurBlob++; // Nick
*pCurBlob = 0; pCurBlob++; // FirstName
*pCurBlob = 0; pCurBlob++; // LastName
*pCurBlob = 0; pCurBlob++; // email
if (nReasonLen) {
memcpy(pCurBlob, szReason, nReasonLen);
pCurBlob += nReasonLen;
}
*pCurBlob = 0; // Reason
pre.szMessage = szBlob;
// TODO: Change for new auth system, include all known informations
ProtoChainRecv(hContact, PSR_AUTH, 0, (LPARAM)&pre);
SAFE_FREE(&szNick);
SAFE_FREE(&szReason);
return;
}
void CIcqProto::handleRecvAdded(unsigned char *buf, WORD wLen)
{
DWORD dwUin;
uid_str szUid;
DWORD cbBlob;
PBYTE pBlob,pCurBlob;
int bAdded;
char* szNick;
int nNickLen;
DBVARIANT dbv = {0};
if (!unpackUID(&buf, &wLen, &dwUin, &szUid)) return;
if (dwUin && IsOnSpammerList(dwUin))
{
debugLogA("Ignored Message from known Spammer");
return;
}
HCONTACT hContact = HContactFromUID(dwUin, szUid, &bAdded);
cbBlob=sizeof(DWORD)*2+4;
if (dwUin)
{
if (getString(hContact, "Nick", &dbv))
nNickLen = 0;
else
{
szNick = dbv.pszVal;
nNickLen = strlennull(szNick);
}
}
else
nNickLen = strlennull(szUid);
cbBlob += nNickLen;
pCurBlob=pBlob=(PBYTE)_alloca(cbBlob);
/*blob is: uin(DWORD), hContact(HANDLE), nick(ASCIIZ), first(ASCIIZ), last(ASCIIZ), email(ASCIIZ) */
*(DWORD*)pCurBlob = dwUin; pCurBlob += sizeof(DWORD);
*(DWORD*)pCurBlob = DWORD(hContact); pCurBlob += sizeof(DWORD);
if (nNickLen && dwUin)
{ // if we have nick we add it, otherwise keep trailing zero
memcpy(pCurBlob, szNick, nNickLen);
pCurBlob+=nNickLen;
}
else
{
memcpy(pCurBlob, szUid, nNickLen);
pCurBlob+=nNickLen;
}
*(char *)pCurBlob = 0; pCurBlob++;
*(char *)pCurBlob = 0; pCurBlob++;
*(char *)pCurBlob = 0; pCurBlob++;
*(char *)pCurBlob = 0;
// TODO: Change for new auth system
AddEvent(NULL, EVENTTYPE_ADDED, time(NULL), 0, cbBlob, pBlob);
}
void CIcqProto::handleRecvAuthResponse(unsigned char *buf, WORD wLen)
{
DWORD dwUin;
uid_str szUid;
char* szNick = NULL;
WORD nReasonLen;
char* szReason;
int bAdded;
BYTE bResponse = 0xFF;
if (!unpackUID(&buf, &wLen, &dwUin, &szUid)) return;
if (dwUin && IsOnSpammerList(dwUin))
{
debugLogA("Ignored Message from known Spammer");
return;
}
HCONTACT hContact = HContactFromUID(dwUin, szUid, &bAdded);
if (hContact != (HCONTACT)INVALID_HANDLE_VALUE)
szNick = NickFromHandle(hContact);
if (wLen > 0)
{
unpackByte(&buf, &bResponse);
wLen -= 1;
}
if (wLen >= 2)
{
unpackWord(&buf, &nReasonLen);
wLen -= 2;
if (wLen >= nReasonLen)
{
szReason = (char*)_alloca(nReasonLen+1);
unpackString(&buf, szReason, nReasonLen);
szReason[nReasonLen] = '\0';
}
}
switch (bResponse)
{
case 0:
debugLogA("Authorization request %s by %s", "denied", strUID(dwUin, szUid));
// TODO: Add to system history as soon as new auth system is ready
break;
case 1:
setByte(hContact, "Auth", 0);
debugLogA("Authorization request %s by %s", "granted", strUID(dwUin, szUid));
// TODO: Add to system history as soon as new auth system is ready
break;
default:
debugLogA("Unknown Authorization request response (%u) from %s", bResponse, strUID(dwUin, szUid));
break;
}
SAFE_FREE(&szNick);
}
// Updates the visibility code used while in SSI mode. If a server ID is
// not stored in the local DB, a new ID will be added to the server list.
//
// Possible values are:
// 01 - Allow all users to see you
// 02 - Block all users from seeing you
// 03 - Allow only users in the permit list to see you
// 04 - Block only users in the invisible list from seeing you
// 05 - Allow only users in the buddy list to see you
//
void CIcqProto::updateServVisibilityCode(BYTE bCode)
{
icq_packet packet;
WORD wVisibilityID;
WORD wCommand;
if ((bCode > 0) && (bCode < 6))
{
cookie_servlist_action* ack;
DWORD dwCookie;
BYTE bVisibility = getByte("SrvVisibility", 0);
if (bVisibility == bCode) // if no change was made, not necescary to update that
return;
setByte("SrvVisibility", bCode);
// Do we have a known server visibility ID? We should, unless we just subscribed to the serv-list for the first time
if ((wVisibilityID = getWord(DBSETTING_SERVLIST_PRIVACY, 0)) == 0)
{
// No, create a new random ID
wVisibilityID = GenerateServerID(SSIT_ITEM, 0);
setWord(DBSETTING_SERVLIST_PRIVACY, wVisibilityID);
wCommand = ICQ_LISTS_ADDTOLIST;
#ifdef _DEBUG
debugLogA("Made new srvVisibilityID, id is %u, code is %u", wVisibilityID, bCode);
#endif
}
else
{
#ifdef _DEBUG
debugLogA("Reused srvVisibilityID, id is %u, code is %u", wVisibilityID, bCode);
#endif
wCommand = ICQ_LISTS_UPDATEGROUP;
}
ack = (cookie_servlist_action*)SAFE_MALLOC(sizeof(cookie_servlist_action));
if (!ack)
{
debugLogA("Cookie alloc failure.");
return; // out of memory, go away
}
ack->dwAction = SSA_VISIBILITY; // update visibility
dwCookie = AllocateCookie(CKT_SERVERLIST, wCommand, 0, ack); // take cookie
// Build and send packet
serverPacketInit(&packet, 25);
packFNACHeader(&packet, ICQ_LISTS_FAMILY, wCommand, 0, dwCookie);
packWord(&packet, 0); // Name (null)
packWord(&packet, 0); // GroupID (0 if not relevant)
packWord(&packet, wVisibilityID); // EntryID
packWord(&packet, SSI_ITEM_VISIBILITY); // EntryType
packWord(&packet, 5); // Length in bytes of following TLV
packTLV(&packet, SSI_TLV_VISIBILITY, 1, &bCode); // TLV (Visibility)
sendServPacket(&packet);
// There is no need to send ICQ_LISTS_CLI_MODIFYSTART or
// ICQ_LISTS_CLI_MODIFYEND when modifying the visibility code
}
}
// Updates the avatar hash used while in SSI mode. If a server ID is
// not stored in the local DB, a new ID will be added to the server list.
void CIcqProto::updateServAvatarHash(BYTE *pHash, int size)
{
void** pDoubleObject = NULL;
void* doubleObject = NULL;
DWORD dwOperationFlags = 0;
WORD wAvatarID;
WORD wCommand;
DBVARIANT dbvHash;
int bResetHash = 0;
char szItemName[2] = {0, 0};
if (!getSetting(NULL, "AvatarHash", &dbvHash))
{
szItemName[0] = 0x30 + dbvHash.pbVal[1];
if (memcmp(pHash, dbvHash.pbVal, 2) != 0)
{
/** add code to remove old hash from server */
bResetHash = 1;
}
db_free(&dbvHash);
}
if (bResetHash) // start update session
{ // pair the packets (need to be send in the correct order
dwOperationFlags |= SSOF_BEGIN_OPERATION | SSOF_END_OPERATION;
pDoubleObject = &doubleObject;
}
if (bResetHash || !pHash)
{
cookie_servlist_action* ack;
DWORD dwCookie;
// Do we have a known server avatar ID?
if (wAvatarID = getWord(DBSETTING_SERVLIST_AVATAR, 0))
{
ack = (cookie_servlist_action*)SAFE_MALLOC(sizeof(cookie_servlist_action));
if (!ack)
{
debugLogA("Cookie alloc failure.");
return; // out of memory, go away
}
ack->dwAction = SSA_REMOVEAVATAR; // update avatar hash
ack->wContactId = wAvatarID;
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_REMOVEFROMLIST, 0, ack); // take cookie
icq_sendServerItem(dwCookie, ICQ_LISTS_REMOVEFROMLIST, 0, wAvatarID, szItemName, NULL, 0, SSI_ITEM_BUDDYICON, SSOP_ITEM_ACTION | dwOperationFlags, 400, pDoubleObject);
}
}
if (pHash)
{
cookie_servlist_action* ack;
DWORD dwCookie;
WORD wTLVlen;
icq_packet pBuffer;
WORD hashsize = size - 2;
// Do we have a known server avatar ID? We should, unless we just subscribed to the serv-list for the first time
if (bResetHash || (wAvatarID = getWord(DBSETTING_SERVLIST_AVATAR, 0)) == 0)
{
// No, create a new random ID
wAvatarID = GenerateServerID(SSIT_ITEM, 0);
wCommand = ICQ_LISTS_ADDTOLIST;
#ifdef _DEBUG
debugLogA("Made new srvAvatarID, id is %u", wAvatarID);
#endif
}
else
{
#ifdef _DEBUG
debugLogA("Reused srvAvatarID, id is %u", wAvatarID);
#endif
wCommand = ICQ_LISTS_UPDATEGROUP;
}
ack = (cookie_servlist_action*)SAFE_MALLOC(sizeof(cookie_servlist_action));
if (!ack)
{
debugLogA("Cookie alloc failure.");
return; // out of memory, go away
}
ack->dwAction = SSA_SETAVATAR; // update avatar hash
ack->wContactId = wAvatarID;
dwCookie = AllocateCookie(CKT_SERVERLIST, wCommand, 0, ack); // take cookie
szItemName[0] = 0x30 + pHash[1];
// Build the packet
wTLVlen = 8 + hashsize;
// Initialize our handy data buffer
pBuffer.wPlace = 0;
pBuffer.pData = (BYTE *)_alloca(wTLVlen);
pBuffer.wLen = wTLVlen;
packTLV(&pBuffer, SSI_TLV_NAME, 0, NULL); // TLV (Name)
packTLV(&pBuffer, SSI_TLV_AVATARHASH, hashsize, pHash + 2); // TLV (Hash)
icq_sendServerItem(dwCookie, wCommand, 0, wAvatarID, szItemName, pBuffer.pData, wTLVlen, SSI_ITEM_BUDDYICON, SSOP_ITEM_ACTION | dwOperationFlags, 400, pDoubleObject);
// There is no need to send ICQ_LISTS_CLI_MODIFYSTART or
// ICQ_LISTS_CLI_MODIFYEND when modifying the avatar hash
}
}
// Should be called before the server list is modified. When all
// modifications are done, call icq_sendServerEndOperation().
// Called automatically thru server-list update board!
void CIcqProto::icq_sendServerBeginOperation(int bImport)
{
icq_packet packet;
WORD wImportID = getWord("SrvImportID", 0);
if (bImport && wImportID)
{ // we should be importing, check if already have import item
if (getDword("ImportTS", 0) + 604800 < getDword("LogonTS", 0))
{ // is the timestamp week older, clear it and begin new import
DWORD dwCookie;
cookie_servlist_action* ack;
if (ack = (cookie_servlist_action*)SAFE_MALLOC(sizeof(cookie_servlist_action)))
{ // we have cookie good, go on
ack->dwAction = SSA_IMPORT;
dwCookie = AllocateCookie(CKT_SERVERLIST, ICQ_LISTS_REMOVEFROMLIST, 0, ack);
icq_sendSimpleItem(dwCookie, ICQ_LISTS_REMOVEFROMLIST, 0, "ImportTime", 0, wImportID, SSI_ITEM_IMPORTTIME, SSOP_ITEM_ACTION | SSOF_SEND_DIRECTLY, 100);
}
}
}
serverPacketInit(&packet, (WORD)(bImport?14:10));
packFNACHeader(&packet, ICQ_LISTS_FAMILY, ICQ_LISTS_CLI_MODIFYSTART);
if (bImport) packDWord(&packet, 1<<0x10);
sendServPacket(&packet);
}
// Should be called after the server list has been modified to inform
// the server that we are done.
// Called automatically thru server-list update board!
void CIcqProto::icq_sendServerEndOperation()
{
icq_packet packet;
serverPacketInit(&packet, 10);
packFNACHeader(&packet, ICQ_LISTS_FAMILY, ICQ_LISTS_CLI_MODIFYEND);
sendServPacket(&packet);
}
// Sent when the last roster packet has been received
void CIcqProto::sendRosterAck(void)
{
icq_packet packet;
serverPacketInit(&packet, 10);
packFNACHeader(&packet, ICQ_LISTS_FAMILY, ICQ_LISTS_GOTLIST);
sendServPacket(&packet);
#ifdef _DEBUG
debugLogA("Sent SNAC(x13,x07) - CLI_ROSTERACK");
#endif
}
|