forked from Fantastic-Dave/xdccget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdccget.c
633 lines (486 loc) · 18.2 KB
/
xdccget.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
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
/*
xdccget -- download files from xdcc via cmd line
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <pthread.h>
#include <inttypes.h>
#include "helper.h"
#include "file.h"
#include "hashing_algo.h"
#include "config.h"
#define NICKLEN 20
static struct xdccGetConfig cfg;
static uint32_t numActiveDownloads = 0;
static uint32_t finishedDownloads = 0;
static struct dccDownloadContext **downloadContext = NULL;
static struct dccDownloadProgress *lastDownload = NULL;
static struct dccDownloadProgress *curDownload = NULL;
struct xdccGetConfig *getCfg() {
return &cfg;
}
void doCleanUp() {
uint32_t i;
if (cfg.session)
irc_destroy_session(cfg.session);
for (i = 0; i < cfg.numChannels; i++) {
sdsfree(cfg.channelsToJoin[i]);
}
for (i = 0; cfg.dccDownloadArray[i]; i++) {
freeDccDownload(cfg.dccDownloadArray[i]);
}
for (i = 0; i < cfg.numDownloads && downloadContext[i]; i++) {
struct dccDownloadContext *current_context = downloadContext[i];
struct dccDownloadProgress *current_progress = current_context->progress;
if (current_progress != NULL) {
bool finishedDownloading = current_progress->sizeRcvd == current_progress->completeFileSize;
if (!finishedDownloading) {
Close(current_context->fd);
current_context->fd = NULL;
}
freeDccProgress(current_context->progress);
}
FREE(downloadContext[i]);
}
sdsfree(cfg.targetDir);
sdsfree(cfg.nick);
sdsfree(cfg.login_command);
FREE(cfg.dccDownloadArray);
FREE(cfg.channelsToJoin);
FREE(downloadContext);
}
void exitPgm(int retCode) {
doCleanUp();
exit(retCode);
}
void interrupt_handler(int signum) {
if (cfg.session && irc_is_connected(cfg.session)) {
irc_cmd_quit(cfg.session, "Goodbye!");
}
else {
exitPgm(0);
}
}
void output_all_progesses() {
unsigned int i;
if (numActiveDownloads < 1) {
printf("Please wait until the download is started!\r");
}
else {
for (i = 0; i < numActiveDownloads; i++) {
outputProgress(downloadContext[i]->progress);
if (numActiveDownloads != 1) {
printf("\n");
}
}
}
fflush(stdout);
if (numActiveDownloads == 1) {
/* send \r so that we override this line the next time...*/
printf("\r");
}
}
void output_handler (int signum) {
alarm(1);
cfg_set_bit(getCfg(), OUTPUT_FLAG);
}
void* checksum_verification_thread(void *args) {
struct checksumThreadData *data = args;
sds md5ChecksumString = data->expectedHash;
logprintf(LOG_INFO, "Verifying md5-checksum '%s'!", md5ChecksumString);
HashAlgorithm *md5algo = createHashAlgorithm("MD5");
uchar hashFromFile[md5algo->hashSize];
getHashFromFile(md5algo, data->completePath , hashFromFile);
uchar *expectedHash = convertHashStringToBinary(md5algo, md5ChecksumString);
if (md5algo->equals(expectedHash, hashFromFile)) {
logprintf(LOG_INFO, "Checksum-Verification succeeded!");
}
else {
logprintf(LOG_WARN, "Checksum-Verification failed!");
}
FREE(expectedHash);
freeHashAlgo(md5algo);
sdsfree(data->expectedHash);
sdsfree(data->completePath);
FREE(data);
return NULL;
}
void startChecksumThread(sds md5ChecksumSDS, sds completePath) {
struct checksumThreadData *threadData = Malloc(sizeof(struct checksumThreadData));
threadData->completePath = completePath;
threadData->expectedHash = md5ChecksumSDS;
pthread_t threadID;
pthread_create(&threadID, NULL, checksum_verification_thread, threadData);
}
static sds extractMD5 (const char *string) {
const unsigned int MD5_STR_SIZE = 32;
char md5ChecksumString[MD5_STR_SIZE+1];
md5ChecksumString[MD5_STR_SIZE] = (char) 0;
char *md5sum = strstr(string, "md5sum");
if (md5sum != NULL) {
strncpy(md5ChecksumString, md5sum+8, MD5_STR_SIZE);
return sdsnew(md5ChecksumString);
}
md5sum = strstr(string, "MD5");
if (md5sum != NULL) {
strncpy(md5ChecksumString, md5sum+4, MD5_STR_SIZE);
return sdsnew(md5ChecksumString);
}
return NULL;
}
static void checkMD5ChecksumNotice(const char * event, irc_parser_result_t *result) {
if (!str_equals(event, "NOTICE")) {
return;
}
if (result->num_params != 2) {
return;
}
if (lastDownload == NULL) {
return;
}
sds md5ChecksumSDS = extractMD5(result->params[1]);
if (md5ChecksumSDS == NULL) {
return;
}
startChecksumThread(md5ChecksumSDS, sdsdup(lastDownload->completePath));
}
void dump_event (irc_session_t * session, const char * event, irc_parser_result_t *result)
{
sds param_string = sdsempty();
unsigned int cnt;
for (cnt = 0; cnt < result->num_params; cnt++) {
if (cnt)
param_string = sdscat(param_string, "|");
char *message_without_color_codes = irc_color_strip_from_mirc(result->params[cnt]);
param_string = sdscat(param_string, message_without_color_codes);
free(message_without_color_codes);
}
logprintf(LOG_INFO, "Event \"%s\", origin: \"%s\", params: %d [%s]", event, result->nick ? result->nick : "NULL", cnt, param_string);
sdsfree(param_string);
}
static void join_channels(irc_session_t *session) {
for (uint32_t i = 0; i < cfg.numChannels; i++) {
logprintf(LOG_INFO, "joining %s\n", cfg.channelsToJoin[i]);
irc_cmd_join (session, cfg.channelsToJoin[i], 0);
}
}
static void send_xdcc_requests(irc_session_t *session) {
int i;
if (!cfg_get_bit(&cfg, SENDED_FLAG)) {
for (i = 0; cfg.dccDownloadArray[i] != NULL; i++) {
char *botNick = cfg.dccDownloadArray[i]->botNick;
char *xdccCommand = cfg.dccDownloadArray[i]->xdccCmd;
logprintf(LOG_INFO, "/msg %s %s\n", botNick, xdccCommand);
bool cmdSendingFailed = irc_cmd_msg(session, botNick, xdccCommand) == 1;
if (cmdSendingFailed) {
logprintf(LOG_ERR, "Cannot send xdcc command to bot!");
}
}
cfg_set_bit(&cfg, SENDED_FLAG);
}
}
static inline bool isPasswordAccepted(const char *message) {
const char *password_sequences[] = {
"Password accepted",
"You are now identified",
"I recognize you"
};
size_t num_sequences = sizeof(password_sequences) / sizeof(const char*);
for (size_t i = 0; i < num_sequences; i++) {
char *t = strstr(message, password_sequences[i]);
if (t != NULL) {
return true;
}
}
return false;
}
void event_notice(irc_session_t * session, const char * event, irc_parser_result_t *result) {
dump_event(session, event, result);
checkMD5ChecksumNotice(event, result);
}
void event_mode(irc_session_t * session, const char * event, irc_parser_result_t *result) {
if (cfg.login_command != NULL && result->num_params > 1) {
if (str_equals(result->params[1], "+v")) {
send_xdcc_requests(session);
}
}
}
void event_umode(irc_session_t * session, const char * event, irc_parser_result_t *result) {
if (cfg.login_command != NULL) {
if (str_equals(result->params[0], "+r")) {
join_channels(session);
}
}
}
void event_join (irc_session_t * session, const char * event, irc_parser_result_t *result)
{
irc_cmd_user_mode (session, "+i");
if (cfg.login_command == NULL) {
send_xdcc_requests(session);
}
}
static void send_login_command(irc_session_t *session) {
cfg.login_command = sdstrim(cfg.login_command, " \t");
if (sdslen(cfg.login_command) >= 9) {
sds user = sdsdup(cfg.login_command);
sds auth_command = sdsdup(cfg.login_command);
sdsrange(user, 0, 8);
sdsrange(auth_command, 9, sdslen(auth_command));
logprintf(LOG_INFO, "sending login-command: %s", cfg.login_command);
bool cmdSendingFailed = irc_cmd_msg(session, user, auth_command) == 1;
if (cmdSendingFailed) {
logprintf(LOG_ERR, "Cannot send command to authenticate!");
}
sdsfree(user);
sdsfree(auth_command);
} else {
logprintf(LOG_ERR, "the login-command is too short. cant send this login-command.");
}
}
void event_connect (irc_session_t *session, const char * event, irc_parser_result_t *result)
{
dump_event (session, event, result);
#ifdef ENABLE_SSL
logprintf(LOG_INFO, "using cipher suite: %s", irc_get_ssl_ciphers_used(session));
#endif
if (cfg.login_command != NULL) {
send_login_command(session);
}
else {
join_channels(session);
}
}
void event_privmsg (irc_session_t * session, const char * event, irc_parser_result_t *result)
{
dump_event (session, event, result);
printf ("'%s' said me (%s): %s\n",
result->nick ? result->nick : "someone",
result->params[0], result->params[1] );
}
void event_numeric (irc_session_t * session, unsigned int event, irc_parser_result_t *result)
{
char buf[24];
snprintf (buf, sizeof(buf), "%d", event);
dump_event (session, buf, result);
}
// This callback is used when we receive a file from the remote party
void callback_dcc_recv_file(irc_session_t * session, irc_dcc_t id, int status, void * ctx, const char * data, irc_dcc_size_t length) {
if (data == NULL) {
DBG_WARN("callback_dcc_recv_file called with data = NULL!");
return;
}
if (ctx == NULL) {
DBG_WARN("callback_dcc_recv_file called with ctx = NULL!");
return;
}
if (length == 0) {
DBG_WARN("callback_dcc_recv_file called with length = 0!");
return;
}
if (status) {
DBG_ERR("File sent error: %d\nerror desc: %s", status, irc_strerror(status));
return;
}
struct dccDownloadContext *context = (struct dccDownloadContext*) ctx;
struct dccDownloadProgress *progress = context->progress;
progress->sizeRcvd += length;
Write(context->fd, data, length);
if (unlikely(progress->sizeRcvd == progress->completeFileSize)) {
alarm(0);
outputProgress(progress);
lastDownload = curDownload;
printf("\nDownload completed!\n");
fflush(NULL);
Close(context->fd);
context->fd = NULL;
finishedDownloads++;
if (!(cfg_get_bit(&cfg, VERIFY_CHECKSUM_FLAG))) {
if (finishedDownloads == numActiveDownloads) {
irc_cmd_quit(cfg.session, "Goodbye!");
}
}
}
}
void callback_dcc_resume_file (irc_session_t * session, irc_dcc_t dccid, int status, void * ctx, const char * data, irc_dcc_size_t length) {
struct dccDownloadContext *context = (struct dccDownloadContext*) ctx;
DBG_OK("got to callback_dcc_resume_file\n");
Seek(context->fd, length, SEEK_SET);
DBG_OK("before irc_dcc_accept!\n");
struct dccDownloadProgress *tdp = context->progress;
tdp->sizeRcvd = length;
int ret = irc_dcc_accept (session, dccid, ctx, callback_dcc_recv_file);
if (ret != 0) {
logprintf(LOG_ERR, "Could not connect to bot\nError was: %s\n", irc_strerror(irc_errno(cfg.session)));
exitPgm(EXIT_FAILURE);
}
DBG_OK("after irc_dcc_accept!\n");
}
void recvFileRequest (irc_session_t *session, const char *nick, const char *addr, const char *filename, irc_dcc_size_t size, irc_dcc_t dccid)
{
DBG_OK("DCC send [%d] requested from '%s' (%s): %s (%" IRC_DCC_SIZE_T_FORMAT " bytes)\n", dccid, nick, addr, filename, size);
sds fileName = sdsnew(filename);
/* chars / and \ are not permitted to appear in a valid filename. if someone wants to send us such a file
then something is definately wrong. so just exit pgm then and print error msg to user.*/
char *illegalFilenameChars = "/\\";
if (sdscontains(fileName, illegalFilenameChars, strlen(illegalFilenameChars))) {
/* filename contained bad chars. print msg and exit...*/
logprintf(LOG_ERR, "Someone wants to send us a file that contains / or \\. This is not permitted.\nFilename was: %s", fileName);
exitPgm(EXIT_FAILURE);
}
sds lastCharOfTargetDir = sdsdup(cfg.targetDir);
sdsrange(lastCharOfTargetDir, -1, -1);
sds absolutePath = sdsempty();
if (!str_equals(lastCharOfTargetDir, getPathSeperator())) {
DBG_OK("last char of dir was: %s", lastCharOfTargetDir);
absolutePath = sdscatprintf(absolutePath, "%s%s", cfg.targetDir, getPathSeperator());
}
else {
absolutePath = sdscatprintf(absolutePath, "%s", cfg.targetDir);
}
if (!dir_exists(absolutePath)) {
logprintf(LOG_INFO, "Creating following folder to store downloads: %s", absolutePath);
if (mkdir(absolutePath, 0755) == -1) {
DBG_WARN("cant create dir %s", absolutePath);
perror("mkdir");
}
}
sds completePath = sdsempty();
completePath = sdscatprintf(completePath, "%s%s", absolutePath, fileName);
sdsfree(lastCharOfTargetDir);
sdsfree(absolutePath);
struct dccDownloadProgress *progress = newDccProgress(completePath, size);
curDownload = progress;
struct dccDownloadContext *context = Malloc(sizeof(struct dccDownloadContext));
downloadContext[numActiveDownloads] = context;
numActiveDownloads++;
context->progress = progress;
DBG_OK("nick at recvFileReq is %s\n", nick);
if( file_exists (completePath) ) {
context->fd = Open(completePath, "a");
off_t fileSize = get_file_size(completePath);
if (size == (irc_dcc_size_t) fileSize) {
logprintf(LOG_ERR, "file %s is already downloaded, exit pgm now.", completePath);
exitPgm(EXIT_FAILURE);
}
/* file already exists but is empty. so accept it, rather than resume... */
if (fileSize == 0) {
goto accept_flag;
}
logprintf(LOG_INFO, "file %s already exists, need to resume.\n", completePath);
irc_dcc_resume(session, dccid, context, callback_dcc_resume_file, nick, fileSize);
}
else {
int ret;
context->fd = Open(completePath, "w");
logprintf(LOG_INFO, "file %s does not exist. creating file and downloading it now.", completePath);
accept_flag:
ret = irc_dcc_accept(session, dccid, context, callback_dcc_recv_file);
if (ret != 0) {
logprintf(LOG_ERR, "Could not connect to bot\nError was: %s\n", irc_strerror(irc_errno(cfg.session)));
exitPgm(EXIT_FAILURE);
}
}
sdsfree(fileName);
}
void print_output_callback (irc_session_t *session) {
if (unlikely(cfg_get_bit(getCfg(), OUTPUT_FLAG))) {
output_all_progesses();
cfg_clear_bit(getCfg(), OUTPUT_FLAG);
}
}
void initCallbacks(irc_callbacks_t *callbacks) {
memset (callbacks, 0, sizeof(*callbacks));
callbacks->event_connect = event_connect;
callbacks->event_join = event_join;
callbacks->event_dcc_send_req = recvFileRequest;
callbacks->event_ctcp_rep = dump_event;
callbacks->event_ctcp_action = dump_event;
callbacks->event_unknown = dump_event;
callbacks->event_privmsg = dump_event;
callbacks->event_notice = event_notice;
callbacks->event_umode = event_umode;
callbacks->event_mode = event_mode;
callbacks->keep_alive_callback = print_output_callback;
}
void init_signal(int signum, void (*handler) (int)) {
struct sigaction act;
int ret;
memset(&act, 0, sizeof(act));
sigemptyset (&act.sa_mask);
act.sa_handler = handler;
act.sa_flags = SA_RESTART;
ret = sigaction(signum, &act, NULL);
if (ret == -1) {
logprintf(LOG_ERR, "could not set up signal %d", signum);
exitPgm(EXIT_FAILURE);
}
}
int main (int argc, char **argv)
{
int ret = -1;
initRand();
memset(&cfg, 0, sizeof(struct xdccGetConfig));
cfg.logLevel = LOG_WARN;
cfg.port = 6667;
const char *homeDir = getHomeDir();
sds targetDir = sdscatprintf(sdsempty(), "%s%s%s", homeDir, getPathSeperator(), "Downloads");
#ifdef WINDOWS_BUILD
free((void*)homeDir);
#endif
cfg.targetDir = targetDir;
parseConfigFile(&cfg);
parseArguments(argc, argv, &cfg);
cfg.ircServer = cfg.args[0];
cfg.channelsToJoin = parseChannels(cfg.args[1], &cfg.numChannels);
cfg.dccDownloadArray = parseDccDownloads(cfg.args[2], &cfg.numDownloads);
downloadContext = Calloc(cfg.numDownloads, sizeof(struct downloadContext*));
init_signal(SIGINT, interrupt_handler);
init_signal(SIGALRM, output_handler);
irc_callbacks_t callbacks;
initCallbacks(&callbacks);
cfg.session = irc_create_session (&callbacks);
if (!cfg.session) {
logprintf(LOG_ERR, "Could not create session\n");
exitPgm(EXIT_FAILURE);
}
logprintf(LOG_INFO, "test message for info");
logprintf(LOG_QUIET, "test message for quiet");
logprintf(LOG_WARN, "test message for warn");
logprintf(LOG_ERR, "test message for error");
if (cfg.nick == NULL) {
cfg.nick = sdsnewlen(NULL, NICKLEN);
createRandomNick(NICKLEN, cfg.nick);
}
logprintf(LOG_INFO, "nick is %s\n", cfg.nick);
#ifdef ENABLE_SSL
irc_set_cert_verify_callback(cfg.session, openssl_check_certificate_callback);
#endif
if (cfg_get_bit(&cfg, USE_IPV4_FLAG)) {
ret = irc_connect4(cfg.session, cfg.ircServer, cfg.port, 0, cfg.nick, 0, 0);
}
#ifdef ENABLE_IPV6
else if (cfg_get_bit(&cfg, USE_IPV6_FLAG)) {
ret = irc_connect6(cfg.session, cfg.ircServer, cfg.port, 0, cfg.nick, 0, 0);
}
#endif
else {
ret = irc_connect(cfg.session, cfg.ircServer, cfg.port, 0, cfg.nick, 0, 0);
}
if (ret != 0) {
logprintf(LOG_ERR, "Could not connect to server %s and port %u.\nError was: %s\n", cfg.ircServer, cfg.port, irc_strerror(irc_errno(cfg.session)));
exitPgm(EXIT_FAILURE);
}
alarm(1);
ret = irc_run (cfg.session);
if (ret != 0) {
if (irc_errno(cfg.session) != LIBIRC_ERR_TERMINATED && irc_errno(cfg.session) != LIBIRC_ERR_CLOSED) {
logprintf(LOG_ERR, "Could not connect or I/O error at server %s and port %u\nError was:%s\n", cfg.ircServer, cfg.port, irc_strerror(irc_errno(cfg.session)));
exitPgm(EXIT_FAILURE);
}
}
doCleanUp();
return EXIT_SUCCESS;
}