-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprofman.cpp
638 lines (582 loc) · 25.7 KB
/
profman.cpp
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
/***************************************************************************
profman.cpp - profile and database management tool
-------------------
begin : Wed May 14 2001
copyright : (C) 2001 by Alexander Bilichenko
email : [email protected]
***************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include "announces.h"
#include "basetypes.h"
#include "profiles.h"
#include "dbaseutils.h"
#include "error.h"
#include "logins.h"
int HPrinted = 0;
void printusage(const char *iam)
{
printf("Usage %s <arg>\n"
"Possible arguments:\n"
" -n - create/renew database (create new messages and profiles database)\n"
" -nu - create/renew ONLY profiles database (delete all profiles)\n"
" -nm - create/renew ONLY messages database (delete all forum messages)\n"
" -v user - view user information for user 'username'\n"
" -vp username - view all private messages for user 'username'\n"
" -aa user passwd - create admin (spec. username and password)\n"
" -au user passwd - create user (spec. username and password)\n"
" -d user - delete user\n"
" -np - renew(delete) private messages database (in profiles)\n"
" -r - zero refresh count for all users\n"
" -vs - set default view settings for all users\n"
" -fixcr - replace '\\r' by '\\n' in all message bodies\n",
iam);
printf("Format info:\n"
" sizeof(SGlobalAnnounce) = %zu (0x%zX)\n"
" sizeof(SSavedAuthSeq) = %zu (0x%zX)\n"
" sizeof(SAuthUserSeq) = %zu (0x%zX)\n"
" sizeof(SPersonalMessage) = %zu (0x%zX)\n"
" sizeof(SViewSettings) = %zu (0x%zX)\n"
" sizeof(SProfile_FullUserInfo) = %zu (0x%zX)\n"
" sizeof(SProfile_UserInfo) = %zu (0x%zX)\n",
sizeof(SGlobalAnnounce), sizeof(SGlobalAnnounce),
sizeof(SSavedAuthSeq), sizeof(SSavedAuthSeq),
sizeof(SAuthUserSeq), sizeof(SAuthUserSeq),
sizeof(SPersonalMessage), sizeof(SPersonalMessage),
sizeof(SViewSettings), sizeof(SViewSettings),
sizeof(SProfile_FullUserInfo), sizeof(SProfile_FullUserInfo),
sizeof(SProfile_UserInfo), sizeof(SProfile_UserInfo)
);
}
void printuserrigth(DWORD r)
{
printf("User right: ");
int smthprinted = 0;
if(r & USERRIGHT_SUPERUSER) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("SuperUser");
}
if(r & USERRIGHT_VIEW_MESSAGE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("View message");
}
if(r & USERRIGHT_MODIFY_MESSAGE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Modify own message");
}
if(r & USERRIGHT_CLOSE_MESSAGE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Close own message thread");
}
if(r & USERRIGHT_OPEN_MESSAGE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Open own message thread");
}
if(r & USERRIGHT_CREATE_MESSAGE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Reply on message");
}
if(r & USERRIGHT_CREATE_MESSAGE_THREAD) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Create new message thread");
}
if(r & USERRIGHT_ALLOW_HTML) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Allow HTML");
}
if(r & USERRIGHT_PROFILE_MODIFY) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Own Profile modification");
}
if(r & USERRIGHT_PROFILE_CREATE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("New profile creation");
}
if(r & USERRIGHT_ROLL_MESSAGE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Roll own messages");
}
if(r & USERRIGHT_UNROLL_MESSAGE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Unroll own messages");
}
if(r & USERRIGHT_POST_GLOBAL_ANNOUNCE) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Post global announce");
}
if(r & USERRIGHT_ALT_DISPLAY_NAME) {
if(smthprinted) printf(", ");
else smthprinted = 1;
printf("Alternative name");
}
printf("\n");
}
void printerror(int er)
{
printf("Result: ");
switch(er) {
case PROFILE_RETURN_ALLOK:
printf("All ok\n");
break;
case PROFILE_RETURN_ALREADY_EXIST:
printf("User already exits\n");
break;
case PROFILE_RETURN_DB_ERROR:
printf("Database error\n");
break;
case PROFILE_RETURN_INVALID_FORMAT:
printf("Invalid file format\n");
break;
case PROFILE_RETURN_INVALID_LOGIN:
printf("Invalid login name\n");
break;
case PROFILE_RETURN_INVALID_PASSWORD:
printf("Invalid password\n");
break;
case PROFILE_RETURN_PASSWORD_SHORT:
printf("Password too short\n");
break;
case PROFILE_RETURN_UNKNOWN_ERROR:
printf("Unknown database error\n");
break;
}
}
int CreateProfilesDatabase()
{
FILE *f;
if((f = fopen(F_PROF_NINDEX, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating Database file : %s\n" \
"Please make sure you have necessary directory structure\n",
F_PROF_NINDEX);
return 0;
}
else {
DWORD x = 0;
fwrite(&x, 1, sizeof(x), f); // max UID
fwrite(&x, 1, sizeof(x), f); // ucount (number of users in the database)
fclose(f);
}
if((f = fopen(F_PROF_FREENIDX, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_PROF_FREENIDX);
return 0;
}
else fclose(f);
if((f = fopen(F_PROF_BODY, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_PROF_BODY);
return 0;
}
else fclose(f);
if((f = fopen(F_PROF_FREEBODY, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_PROF_FREEBODY);
return 0;
}
else fclose(f);
if((f = fopen(F_PROF_PERSMSG, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_PROF_PERSMSG);
return 0;
}
else fclose(f);
if((f = fopen(F_PROF_ALTNICK, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_PROF_ALTNICK);
return 0;
}
else fclose(f);
remove(F_PROF_INDEX);
if(AddStringToHashedIndex("aaa", 1) != HASHINDEX_ER_OK) {
printf("Error creating profiles database file : %s\n", F_PROF_INDEX);
return 0;
}
if(DeleteStringFromHashedIndex("aaa") != HASHINDEX_ER_OK) {
printf("Error creating profiles database file : %s\n", F_PROF_INDEX);
return 0;
}
return 1;
}
int CreateMessagesDatabase()
{
FILE *f;
if((f = fopen(F_MSGINDEX, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_MSGINDEX);
return 0;
}
else fclose(f);
if((f = fopen(F_MSGBODY, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_MSGBODY);
return 0;
}
else fclose(f);
if((f = fopen(F_INDEX, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_INDEX);
return 0;
}
else fclose(f);
if((f = fopen(F_VINDEX, FILE_ACCESS_MODES_CW)) == NULL) {
printf("Error creating profiles database file : %s\n", F_VINDEX);
return 0;
}
else fclose(f);
return 1;
}
int CheckAndCreateFolder(const char *dir_path)
{
// 0700 - read/write/search for owner, no permissions for everyone else
if (mkdir(dir_path, 0700) < 0) {
if (errno == EEXIST) {
printf("%s already exists\n", dir_path);
return 1;
}
printf("Cannot create %s (error %d: %s)\n", dir_path, errno, strerror(errno));
return 0;
}
printf("%s created\n", dir_path);
return 1;
}
int CreateFullDatabase()
{
if(!CheckAndCreateFolder(DIR_MAINDATA))
return 0;
if(!CheckAndCreateFolder(DIR_MESSAGES))
return 0;
if(!CheckAndCreateFolder(DIR_PROFILES))
return 0;
if(!CheckAndCreateFolder(DIR_PROF_PIC))
return 0;
if(!CheckAndCreateFolder(DIR_SETTINGS))
return 0;
if(!CheckAndCreateFolder(DIR_INTERNALS))
return 0;
if(!CreateProfilesDatabase())
return 0;
if(!CreateMessagesDatabase())
return 0;
return 1;
}
int main(int argc, char *argv[])
{
CProfiles ul;
int errcode;
SProfile_UserInfo ui;
SProfile_FullUserInfo fui;
WCFILE *fw;
printf("WWWConf console management tool\n");
#if USE_LOCALE
if(setlocale(LC_ALL, LANGUAGE_LOCALE) == NULL) {
printf("Setting locale [%s] failed !\n", LANGUAGE_LOCALE);
printf("Bailing out to default locale \"C\"");
setlocale(LC_ALL, "C");
}
#endif
if(argc <= 1) {
goto go_end;
}
if((strcmp(argv[1], "-au") == 0 || strcmp(argv[1], "-aa") == 0) && argc == 4) {
// create user
strcpy(fui.Email, "");
strcpy(fui.FullName, argv[2]);
strcpy(fui.Signature, "");
strcpy(fui.HomePage, "");
strcpy(fui.SelectedUsers, "");
strcpy(ui.username, argv[2]);
strcpy(ui.password, argv[3]);
strcpy(ui.icqnumber, "");
strcpy(ui.altdisplayname, "");
fui.AboutUser = NULL;
ui.lastIP = 0;
ui.Flags = 0; // don't have picture or signature
if(strcmp(argv[1], "-aa") != 0)
ui.right = DEFAULT_USER_RIGHT;
else
ui.right = DEFAULT_ADMIN_RIGHT;
if((errcode = ul.AddNewUser(&ui, &fui, NULL)) == PROFILE_RETURN_ALLOK)
printf("User successfully created\n");
else printerror(errcode);
goto go_stop;
}
if(strcmp(argv[1], "-d") == 0 && argc == 3) {
if((errcode = ul.DeleteUser(argv[2])) == PROFILE_RETURN_ALLOK) {
printf("User successfully deleted\n");
}
else printerror(errcode);
goto go_stop;
}
if(strcmp(argv[1], "-v") == 0 && argc == 3) {
DWORD ind;
if((errcode = ul.GetUserByName(argv[2], &ui, &fui, &ind)) == PROFILE_RETURN_ALLOK) {
printf("User Information\n");
printf("Login name: %s\n", ui.username);
printf("Password: %s\n", ui.password);
printf("AltName: %s\n", ui.altdisplayname);
printf("Full name: %s\n", fui.FullName);
printf("E-mail: %s\n", fui.Email);
fui.SelectedUsers[PROFILES_FULL_USERINFO_MAX_SELECTEDUSR - 1] = 0;
printf("Selected users: %s\n", fui.SelectedUsers);
printf("About: %s\n", fui.AboutUser);
printf("Signature: %s\n", fui.Signature);
printf("Flags: 0x%08lX\n", ui.Flags);
printf("Refresh count: %lu\n", ui.RefreshCount);
printuserrigth(ui.right);
// ctime result always includes '\n', we shouldn't print extra ones:
printf("Creation date: %s", ctime(&fui.CreateDate));
printf("Last access date: %s", ui.LoginDate ? ctime(&ui.LoginDate) : "Never logged in\n");
}
else printerror(errcode);
goto go_stop;
}
if(argc == 2 && strcmp(argv[1], "-np") == 0) {
printf("Renewing private messages database...\n");
if((fw = wcfopen(F_PROF_NINDEX, FILE_ACCESS_MODES_RW)) != NULL) {
int i = 0;
lock_file(fw);
wcfseek(fw, 8, SEEK_SET);
while(!wcfeof(fw)) {
DWORD pos = wcftell(fw);
if(wcfread(&ui, 1, sizeof(SProfile_UserInfo), fw) < sizeof(SProfile_UserInfo))
break;
ui.persmescnt = 0;
ui.persmsg = 0xffffffff;
ui.readpersmescnt = 0;
ui.postedpersmsg = 0xffffffff;
ui.postedmescnt = 0;
wcfseek(fw, pos, SEEK_SET);
wcfwrite(&ui, 1, sizeof(SProfile_UserInfo), fw);
i++;
}
printf("%d users processed\n", i);
unlock_file(fw);
wcfclose(fw);
if ((fw = wcfopen(F_PROF_PERSMSG, FILE_ACCESS_MODES_CW)) != NULL) {
wcfclose(fw);
printf("Done!\n");
}
else {
printf("Failed to truncate %s!!!\n", F_PROF_PERSMSG);
}
}
else printf("Fatal: profiles database could not be accessed !!!\n");
goto go_stop;
}
if (strcmp(argv[1], "-cp") == 0 && argc == 3) {
DWORD ind;
if((errcode = ul.GetUserByName(argv[2], &ui, &fui, &ind)) == PROFILE_RETURN_ALLOK) {
printf("Clean Privates\n");
printf("Login name : %s persmescnt : %d\n", ui.username, ui.persmescnt);
ui.persmescnt = 0;
ui.persmsg = 0xffffffff;
ui.readpersmescnt = 0;
ui.postedpersmsg = 0xffffffff;
ui.postedmescnt = 0;
ul.SetUInfo(ind, &ui);
}
else printerror(errcode);
goto go_stop;
}
if(argc == 2 && strcmp(argv[1], "-r") == 0) {
printf("Clearing refresh count...\n");
if((fw = wcfopen(F_PROF_NINDEX, FILE_ACCESS_MODES_RW)) != NULL) {
int i = 0;
lock_file(fw);
wcfseek(fw, 8, SEEK_SET);
while(!wcfeof(fw)) {
DWORD pos = wcftell(fw);
if(wcfread(&ui, 1, sizeof(SProfile_UserInfo), fw) < sizeof(SProfile_UserInfo))
break;
ui.RefreshCount = 0;
wcfseek(fw, pos, SEEK_SET);
wcfwrite(&ui, 1, sizeof(SProfile_UserInfo), fw);
i++;
}
printf("%d users processed\n", i);
unlock_file(fw);
wcfclose(fw);
printf("Done!\n");
}
else printf("Fatal: profiles database couldn't be accessed !!!\n");
goto go_stop;
}
if(argc == 2 && strcmp(argv[1], "-vs") == 0) {
printf("Clearing view settings...\n");
if((fw = wcfopen(F_PROF_NINDEX, FILE_ACCESS_MODES_RW)) != NULL) {
int i = 0;
lock_file(fw);
wcfseek(fw, 8, SEEK_SET);
while(!wcfeof(fw)) {
DWORD pos = wcftell(fw);
if(wcfread(&ui, 1, sizeof(SProfile_UserInfo), fw) < sizeof(SProfile_UserInfo))
break;
/* ui.vs.dsm = CONFIGURE_SETTING_DEFAULT_dsm;
ui.vs.topics = CONFIGURE_SETTING_DEFAULT_topics;
ui.vs.tv = CONFIGURE_SETTING_DEFAULT_tv;
ui.vs.tc = CONFIGURE_SETTING_DEFAULT_tc;
ui.vs.ss = CONFIGURE_SETTING_DEFAULT_ss;
ui.vs.lsel = CONFIGURE_SETTING_DEFAULT_lsel;
ui.vs.tt = CONFIGURE_SETTING_DEFAULT_tt;
ui.icqnumber[0] = 0;
ui.Flags |= PROFILES_FLAG_VIEW_SETTINGS;
ui.vs.tz = DATETIME_DEFAULT_TIMEZONE;
*/
ui.vs.topics |= (1<<17);
wcfseek(fw, pos, SEEK_SET);
wcfwrite(&ui, 1, sizeof(SProfile_UserInfo), fw);
i++;
}
printf("%d users processed\n", i);
unlock_file(fw);
wcfclose(fw);
printf("Done!\n");
}
else printf("Fatal: profiles database couldn't be accessed !!!\n");
goto go_stop;
}
if(argc == 3 && strcmp(argv[1], "-vp") == 0) {
SPersonalMessage *topm, *frompm;
int code;
if((code = ul.GetUserByName(argv[2], &ui, NULL, NULL)) != PROFILE_RETURN_ALLOK) {
printf("User not found!\n");
exit(0);
}
if((code = ul.ReadPersonalMessages(argv[2], 0, &topm, NULL, &frompm, NULL)) == PROFILE_RETURN_ALLOK) {
const SPersonalMessage *pmsg;
int i = 0;
int j = 0;
int received = 0; // posted or received
int cnt = 0, postedcnt = 0;
if(topm) {
while(topm[cnt].Prev != 0xffffffff) cnt++;
cnt++;
}
if(frompm) {
while(frompm[postedcnt].Prev != 0xffffffff) postedcnt++;
postedcnt++;
}
printf("Messages for user %s\n---\n", argv[2]);
for(;;) {
// check exit expression
if(i == cnt && j == postedcnt) break;
if(i == cnt) {
pmsg = &(frompm[j]);
j++;
received = 0;
} else {
if(j == postedcnt) {
pmsg = &(topm[i]);
i++;
received = 1;
}
else {
if(frompm[j].Date > topm[i].Date) {
pmsg = &(frompm[j]);
j++;
received = 0;
}
else {
pmsg = &(topm[i]);
i++;
received = 1;
}
}
}
const char *ss = ctime(&pmsg->Date);
if(!received) {
// posted message
printf("To user: %s, Date: %s", pmsg->NameTo, ss);
}
else {
const char *newm = "";
if (i <= ui.persmescnt - ui.readpersmescnt) {
newm = "(UNREAD) ";
}
// received message
printf("%sFrom user: %s, Date: %s", newm, pmsg->NameFrom, ss);
}
printf("%s\n---\n", pmsg->Msg);
}
}
else printf("ReadPersonalMessages() returned error code: %x (%s)\n", code, (code == PROFILE_RETURN_INVALID_LOGIN) ? "unknown user" : "database error");
goto go_stop;
}
if(argc == 2 && strcmp(argv[1], "-nu") == 0) {
printf("Creating/Renewing profiles database...\n");
if(!CreateProfilesDatabase())
goto go_stop;
printf("Operation completed successfully\n");
goto go_stop;
}
if(argc == 2 && strcmp(argv[1], "-n") == 0) {
printf("Creating/Renewing profiles and messages databases...\n");
if(!CreateFullDatabase())
goto go_stop;
printf("Operation completed successfully\n");
goto go_stop;
}
if(argc == 2 && strcmp(argv[1], "-nm") == 0) {
printf("Creating/Renewing messages database...\n");
if(!CreateMessagesDatabase())
goto go_stop;
printf("Operation completed successfully\n");
goto go_stop;
}
if (argc == 2 && strcmp(argv[1], "-fixcr") == 0) {
// TODO:
// - Fix CR/LF in private messages too.
// - Simplify this code: directly patch 'messages.msg' using mmap or fread/fwrite.
DWORD i, max;
char *body;
error_type = ERROR_TYPE_PLAIN;
if ( (body = (char *) malloc(MAX_PARAMETERS_STRING)) == NULL) {
printf("Error while allocating memory.\n");
goto fixexit;
}
max = VIndexCountInDB();
for (i = 1; i <= max; ++i) {
DWORD index;
SMessage mes;
size_t j;
index = TranslateMsgIndexDel(i);
if (index == 0) {
printf("%lu is deleted.\n", i);
continue;
} else if (index == NO_MESSAGE_CODE) {
printf("%lu doesn't exist. Fatal error.\n", i);
goto fixexit;
}
if (!ReadDBMessage(index, &mes)) {
printf("Error while reading message %lu.\n", i);
goto fixexit;
}
if (!mes.msize)
continue;
if (!ReadDBMessageBody(body, mes.MIndex, mes.msize)) {
printf("Error while reading a body of message %lu.\n", i);
goto fixexit;
}
for (j = 0; j < mes.msize; ++j)
if (body[j] == '\r')
body[j] = '\n';
if (!WriteDBMessageBody(body, mes.MIndex, mes.msize)) {
printf("Error while writing a body of message %lu.\n", i);
goto fixexit;
}
}
fixexit:
free(body);
goto go_stop;
}
go_end:
printf("Fatal: Invalid option was specified: %s\n\n", argv[1] ? argv[1] : "");
printusage(argv[0]);
go_stop:
return 0;
}