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
|
#include "stdafx.h"
#include "utils.h"
CRITICAL_SECTION lib_cs;
void InitUtils() {
InitializeCriticalSection(&lib_cs);
}
void DeinitUtils() {
DeleteCriticalSection(&lib_cs);
}
void lib_cs_lock() {
EnterCriticalSection(&lib_cs);
}
void lib_cs_unlock() {
LeaveCriticalSection(&lib_cs);
}
HANDLE find_contact(const char* userid, const char* protocol) {
HANDLE hContact = ( HANDLE )CallService( MS_DB_CONTACT_FINDFIRST, 0, 0 );
while ( hContact != NULL )
{
const char *proto = contact_get_proto(hContact);
if(proto && strcmp(proto, protocol) == 0) {
char *name = contact_get_id(hContact);
if(name && strcmp(name, userid) == 0) {
mir_free(name);
return hContact;
}
mir_free(name);
}
hContact = ( HANDLE )CallService( MS_DB_CONTACT_FINDNEXT,( WPARAM )hContact, 0 );
}
return 0;
}
/* Look up a connection context by hContact from the given
* OtrlUserState. If add_if_missing is true, allocate and return a new
* context if one does not currently exist. In that event, call
* add_app_data(data, context) so that app_data and app_data_free can be
* filled in by the application, and set *addedp to 1. */
ConnContext * otrl_context_find_miranda(OtrlUserState us, HANDLE hContact)
{
ConnContext ** curp;
if (!hContact) return NULL;
for (curp = &(us->context_root); *curp; curp = &((*curp)->next)) {
if ((*curp)->app_data == hContact ) return *curp;
}
return NULL;
}
/* What level of trust do we have in the privacy of this ConnContext? */
TrustLevel otr_context_get_trust(ConnContext *context)
{
TrustLevel level = TRUST_NOT_PRIVATE;
if (context && context->msgstate == OTRL_MSGSTATE_ENCRYPTED) {
if (context->active_fingerprint->trust &&
context->active_fingerprint->trust[0] != '\0') {
level = TRUST_PRIVATE;
} else {
level = TRUST_UNVERIFIED;
}
} else if (context && context->msgstate == OTRL_MSGSTATE_FINISHED) {
level = TRUST_FINISHED;
}
return level;
}
/* Set verification of fingerprint */
void VerifyFingerprint(ConnContext *context, bool verify) {
lib_cs_lock();
otrl_context_set_trust(context->active_fingerprint, (verify)?"verified":NULL);
otrl_privkey_write_fingerprints(otr_user_state, g_fingerprint_store_filename);
lib_cs_unlock();
VerifyFingerprintMessage(context, verify);
}
void VerifyFingerprintMessage(ConnContext *context, bool verify) {
TCHAR msg[1024];
mir_sntprintf(msg, 1024, (verify)?TranslateT(LANG_FINGERPRINT_VERIFIED):TranslateT(LANG_FINGERPRINT_NOT_VERIFIED), contact_get_nameT((HANDLE)context->app_data));
msg[1023] = '\0';
ShowMessage((HANDLE)context->app_data, msg);
SetEncryptionStatus(context->app_data, otr_context_get_trust(context));
}
/* Convert a 20-byte hash value to a 45-byte human-readable value */
void otrl_privkey_hash_to_humanT(TCHAR human[45], const unsigned char hash[20])
{
int word, byte;
TCHAR *p = human;
for(word=0; word<5; ++word) {
for(byte=0; byte<4; ++byte) {
_stprintf(p, _T("%02X"), hash[word*4+byte]);
p += 2;
}
*(p++) = ' ';
}
/* Change that last ' ' to a '\0' */
--p;
*p = '\0';
}
char* contact_get_id(HANDLE hContact, bool bNameOnError) {
char* pszUniqueID = NULL;
CONTACTINFO ci;
ZeroMemory(&ci, sizeof(ci));
ci.cbSize = sizeof(ci);
ci.hContact = hContact;
ci.dwFlag = CNF_UNIQUEID;
if (CallService(MS_CONTACT_GETCONTACTINFO, 0, (LPARAM)&ci) == 0)
{
if (ci.type == CNFT_ASCIIZ) {
pszUniqueID = (char*)ci.pszVal; // MS_CONTACT_GETCONTACTINFO uses mir_alloc
} else if (ci.type == CNFT_DWORD) {
pszUniqueID = (char*)mir_alloc(15);
if (pszUniqueID)
mir_snprintf(pszUniqueID, 15, ("%u"), ci.dVal);
} else if (ci.type == CNFT_WORD) {
pszUniqueID = (char*)mir_alloc(15);
if (pszUniqueID)
mir_snprintf(pszUniqueID, 15, ("%u"), ci.wVal);
} else if (ci.type == CNFT_BYTE) {
pszUniqueID = (char*)mir_alloc(15);
if (pszUniqueID)
mir_snprintf(pszUniqueID, 15, ("%u"), ci.bVal);
}
}
if (!pszUniqueID && bNameOnError) {
char *name = (char *)CallService( MS_CLIST_GETCONTACTDISPLAYNAME, ( WPARAM )hContact, 0 );
if (name) pszUniqueID = mir_strdup(name);
}
return pszUniqueID;
}
__inline const TCHAR* contact_get_nameT(HANDLE hContact) {
return (TCHAR*)CallService( MS_CLIST_GETCONTACTDISPLAYNAME, ( WPARAM )hContact, GCDNF_TCHAR );
}
__inline const char* contact_get_proto(HANDLE hContact) {
char *uproto = (char *)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0);
return uproto;
}
__inline const char* contact_get_account(HANDLE hContact) {
char *uacc = (char *)CallService(MS_PROTO_GETCONTACTBASEACCOUNT, (WPARAM)hContact, 0);
return uacc;
}
void ShowPopup(const TCHAR* line1, const TCHAR* line2, int timeout, const HANDLE hContact) {
if(CallService(MS_SYSTEM_TERMINATED, 0, 0)) return;
if ( !options.bHavePopups) {
TCHAR title[256];
_stprintf(title, _T("%s Message"), _T(MODULENAME));
if(line1 && line2) {
TCHAR *message = new TCHAR[_tcslen(line1) + _tcslen(line2) + 3]; // newline and null terminator
_stprintf(message, _T("%s\r\n%s"), line1, line2);
MessageBox( NULL, message, title, MB_OK | MB_ICONINFORMATION );
delete message;
} else if(line1) {
MessageBox( NULL, line1, title, MB_OK | MB_ICONINFORMATION );
} else if(line2) {
MessageBox( NULL, line2, title, MB_OK | MB_ICONINFORMATION );
}
return;
}
POPUPDATAT ppd = {0};
//memset((void *)&ppd, 0, sizeof(POPUPDATAT));
ppd.lchContact = hContact;
ppd.lchIcon = NULL;
if(line1 && line2) {
_tcsncpy( ppd.lptzContactName, line1, MAX_CONTACTNAME-1 );
_tcsncpy( ppd.lptzText, line2, MAX_SECONDLINE-1 );
} else if(line1) {
if (PUIsSecondLineShown()) _tcsncpy( ppd.lptzText, line1, MAX_SECONDLINE-1 );
else _tcsncpy( ppd.lptzContactName, line1, MAX_CONTACTNAME-1 );
}
else if(line2) {
if (PUIsSecondLineShown()) _tcsncpy( ppd.lptzText, line2, MAX_SECONDLINE-1 );
else _tcsncpy( ppd.lptzContactName, line2, MAX_CONTACTNAME-1 );
}
ppd.iSeconds = timeout;
ppd.PluginWindowProc = NULL;
ppd.PluginData = NULL;
PUAddPopUpT(&ppd);
}
void ShowWarning(TCHAR *msg) {
TCHAR buffer[512];
ErrorDisplay disp = options.err_method;
// funny logic :) ... try to avoid message boxes
// if want baloons but no balloons, try popups
// if want popups but no popups, try baloons
// if, after that, you want balloons but no balloons, revert to message boxes
if(disp == ED_BAL && !ServiceExists(MS_CLIST_SYSTRAY_NOTIFY)) disp = ED_POP;
if(disp == ED_POP && !options.bHavePopups) disp = ED_BAL;
if(disp == ED_BAL && !ServiceExists(MS_CLIST_SYSTRAY_NOTIFY)) disp = ED_MB;
_stprintf(buffer, _T("%s Warning"), _T(MODULENAME));
TCHAR *message;
switch(disp) {
case ED_POP:
message = new TCHAR[_tcslen(msg) + 515]; // newline and null terminator
_stprintf(message, _T("%s\r\n%s"), buffer, msg);
PUShowMessageT(message, SM_WARNING);
delete message;
break;
case ED_MB:
MessageBox(0, msg, buffer, MB_OK | MB_ICONWARNING);
break;
case ED_BAL:
{
MIRANDASYSTRAYNOTIFY sn = {0};
sn.cbSize = sizeof(sn);
sn.szProto= MODULENAME;
sn.tszInfoTitle = buffer;
sn.tszInfo = msg;
#ifdef _UNICODE
sn.dwInfoFlags = NIIF_WARNING | NIIF_INTERN_UNICODE;
#else
sn.dwInfoFlags = NIIF_WARNING;
#endif
sn.uTimeout = 10;
CallService(MS_CLIST_SYSTRAY_NOTIFY, 0, (LPARAM)&sn);
}
break;
}
}
void ShowError(TCHAR *msg) {
TCHAR buffer[512];
ErrorDisplay disp = options.err_method;
// funny logic :) ... try to avoid message boxes
// if want baloons but no balloons, try popups
// if want popups but no popups, try baloons
// if, after that, you want balloons but no balloons, revert to message boxes
if(disp == ED_BAL && !ServiceExists(MS_CLIST_SYSTRAY_NOTIFY)) disp = ED_POP;
if(disp == ED_POP && !options.bHavePopups) disp = ED_BAL;
if(disp == ED_BAL && !ServiceExists(MS_CLIST_SYSTRAY_NOTIFY)) disp = ED_MB;
_stprintf(buffer, _T("%s Error"), _T(MODULENAME));
TCHAR *message;
switch(disp) {
case ED_POP:
message = new TCHAR[_tcslen(msg) + 515]; // newline and null terminator
_stprintf(message, _T("%s\r\n%s"), buffer, msg);
PUShowMessageT(message, SM_WARNING);
delete message;
break;
case ED_MB:
MessageBox(0, msg, buffer, MB_OK | MB_ICONERROR);
break;
case ED_BAL:
{
MIRANDASYSTRAYNOTIFY sn = {0};
sn.cbSize = sizeof(sn);
sn.szProto = MODULENAME;
sn.tszInfoTitle = buffer;
sn.tszInfo = msg;
#ifdef _UNICODE
sn.dwInfoFlags = NIIF_ERROR | NIIF_INTERN_UNICODE;
#else
sn.dwInfoFlags = NIIF_ERROR;
#endif
sn.uTimeout = 10;
CallService(MS_CLIST_SYSTRAY_NOTIFY, 0, (LPARAM)&sn);
}
break;
}
}
void ShowPopupUtf(const char* line1, const char* line2, int timeout, const HANDLE hContact) {
TCHAR* l1 = (line1) ? mir_utf8decodeT(line1) : NULL;
TCHAR* l2 = (line2) ? mir_utf8decodeT(line2) : NULL;
ShowPopup(l1, l2, timeout, hContact);
if (l1) mir_free(l1);
if (l2) mir_free(l2);
}
void ShowWarningUtf(char* msg) {
TCHAR* m = (msg) ? mir_utf8decodeT(msg) : NULL;
ShowWarning(m);
if (m) mir_free(m);
}
void ShowErrorUtf(char* msg) {
TCHAR* m = (msg) ? mir_utf8decodeT(msg) : NULL;
ShowError(m);
if (m) mir_free(m);
}
void ShowMessageInline(const HANDLE hContact, const TCHAR *msg) {
TCHAR buff[1024];
mir_sntprintf(buff, 1024, _T("%s%s"), TranslateT(LANG_INLINE_PREFIX), msg);
PROTORECVEVENT pre = {0};
pre.timestamp = time(0);
char *utf = mir_utf8encodeT(buff);
pre.szMessage = utf;
pre.flags = PREF_UTF|PREF_BYPASS_OTR;
//CallContactService(hContact, PSR_MESSAGE, 0, (LPARAM)&pre);
CCSDATA ccs = {0};
ccs.hContact = hContact;
ccs.szProtoService = PSR_MESSAGE;
ccs.lParam = (LPARAM)⪯
CallService(MS_PROTO_CHAINRECV, 0, (LPARAM)&ccs);
mir_free(utf);
}
void ShowMessageInlineUtf(const HANDLE hContact, const char *msg) {
char buff[1024];
mir_snprintf(buff, 1024, "%s%s", Translate(LANG_INLINE_PREFIX), msg);
PROTORECVEVENT pre = {0};
pre.timestamp = time(0);
pre.szMessage = buff;
pre.flags = PREF_UTF|PREF_BYPASS_OTR;
//CallContactService(hContact, PSR_MESSAGE, 0, (LPARAM)&pre);
CCSDATA ccs = {0};
ccs.hContact = hContact;
ccs.szProtoService = PSR_MESSAGE;
ccs.lParam = (LPARAM)⪯
CallService(MS_PROTO_CHAINRECV, 0, (LPARAM)&ccs);
}
void ShowMessageUtf(const HANDLE hContact, const char *msg) {
if(options.msg_inline)
ShowMessageInlineUtf(hContact, msg);
if(options.msg_popup)
ShowPopupUtf(Translate(LANG_OTR_INFO), msg, 0, hContact);
}
void ShowMessage(const HANDLE hContact, const TCHAR *msg) {
if(options.msg_inline)
ShowMessageInline(hContact, msg);
if(options.msg_popup)
ShowPopup(TranslateT(LANG_OTR_INFO), msg, 0, hContact);
}
/*
bool GetEncryptionStatus(HANDLE hContact) {
char *proto = (char *)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0);
bool chat_room = (proto && DBGetContactSettingByte(hContact, proto, "ChatRoom", 0));
if(!chat_room) {
if (options.bHaveMetaContacts) {
HANDLE hMeta = (HANDLE)CallService(MS_MC_GETMETACONTACT, (WPARAM)hContact, 0);
if(hMeta && hContact == (HANDLE)CallService(MS_MC_GETMOSTONLINECONTACT, (WPARAM)hMeta, 0)) {
//strcat(dbg_msg, "\nrecursing for meta");
return GetEncryptionStatus(hMeta);
}
return 0!=DBGetContactSettingByte(hContact, MODULENAME, "Encrypted", 0 );
}
}
return 0;
}
*/
const TCHAR *policy_to_string(OtrlPolicy policy) {
switch (policy) {
case OTRL_POLICY_NEVER:
return TranslateT(LANG_POLICY_NEVER);
break;
case OTRL_POLICY_OPPORTUNISTIC:
return TranslateT(LANG_POLICY_OPP);
break;
case OTRL_POLICY_MANUAL:
case OTRL_POLICY_MANUAL_MOD:
return TranslateT(LANG_POLICY_MANUAL);
break;
case OTRL_POLICY_ALWAYS:
return TranslateT(LANG_POLICY_ALWAYS);
break;
}
return TranslateT(LANG_POLICY_DEFAULT);
}
OtrlPolicy policy_from_string(const TCHAR *polstring) {
if (_tcscmp(polstring, TranslateT(LANG_POLICY_NEVER)) == 0)
return OTRL_POLICY_NEVER;
else if (_tcscmp(polstring, TranslateT(LANG_POLICY_OPP)) == 0)
return OTRL_POLICY_OPPORTUNISTIC;
else if (_tcscmp(polstring, TranslateT(LANG_POLICY_MANUAL)) == 0)
return OTRL_POLICY_MANUAL_MOD;
else if (_tcscmp(polstring, TranslateT(LANG_POLICY_ALWAYS)) == 0)
return OTRL_POLICY_ALWAYS;
else
return CONTACT_DEFAULT_POLICY;
}
|