forked from aglasgall/barnowl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logging.c
469 lines (412 loc) · 13.3 KB
/
logging.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
#include "owl.h"
#include <stdio.h>
typedef struct _owl_log_entry { /* noproto */
char *filename;
char *message;
} owl_log_entry;
static GMainContext *log_context;
static GMainLoop *log_loop;
static GThread *logging_thread;
/* This is now the one function that should be called to log a
* message. It will do all the work necessary by calling the other
* functions in this file as necessary.
*/
void owl_log_message(const owl_message *m) {
owl_function_debugmsg("owl_log_message: entering");
if (m == NULL) {
owl_function_debugmsg("owl_log_message: passed null message");
return;
}
/* should we be logging this message? */
if (!owl_log_shouldlog_message(m)) {
owl_function_debugmsg("owl_log_message: not logging message");
return;
}
/* handle incmoing messages */
if (owl_message_is_direction_in(m)) {
owl_log_incoming(m);
owl_function_debugmsg("owl_log_message: leaving");
return;
}
/* handle outgoing messages */
owl_log_outgoing(m);
owl_function_debugmsg("owl_log_message: leaving");
}
/* Return 1 if we should log the given message, otherwise return 0 */
int owl_log_shouldlog_message(const owl_message *m) {
const owl_filter *f;
/* If there's a logfilter and this message matches it, log */
f=owl_global_get_filter(&g, owl_global_get_logfilter(&g));
if (f && owl_filter_message_match(f, m)) return(1);
/* otherwise we do things based on the logging variables */
/* skip login/logout messages if appropriate */
if (!owl_global_is_loglogins(&g) && owl_message_is_loginout(m)) return(0);
/* check direction */
if ((owl_global_get_loggingdirection(&g)==OWL_LOGGING_DIRECTION_IN) && owl_message_is_direction_out(m)) {
return(0);
}
if ((owl_global_get_loggingdirection(&g)==OWL_LOGGING_DIRECTION_OUT) && owl_message_is_direction_in(m)) {
return(0);
}
if (owl_message_is_type_zephyr(m)) {
if (owl_message_is_personal(m) && !owl_global_is_logging(&g)) return(0);
if (!owl_message_is_personal(m) && !owl_global_is_classlogging(&g)) return(0);
} else {
if (owl_message_is_private(m) || owl_message_is_loginout(m)) {
if (!owl_global_is_logging(&g)) return(0);
} else {
if (!owl_global_is_classlogging(&g)) return(0);
}
}
return(1);
}
CALLER_OWN char *owl_log_zephyr(const owl_message *m)
{
char *tmp = NULL;
GString *buffer = NULL;
buffer = g_string_new("");
tmp = short_zuser(owl_message_get_sender(m));
g_string_append_printf(buffer, "Class: %s Instance: %s",
owl_message_get_class(m),
owl_message_get_instance(m));
if (strcmp(owl_message_get_opcode(m), "")) {
g_string_append_printf(buffer, " Opcode: %s",
owl_message_get_opcode(m));
}
g_string_append_printf(buffer, "\n");
g_string_append_printf(buffer, "Time: %s Host: %s\n",
owl_message_get_timestr(m),
owl_message_get_hostname(m));
g_string_append_printf(buffer, "From: %s <%s>\n\n",
owl_message_get_zsig(m), tmp);
g_string_append_printf(buffer, "%s\n\n", owl_message_get_body(m));
g_free(tmp);
return g_string_free(buffer, FALSE);
}
CALLER_OWN char *owl_log_aim(const owl_message *m)
{
GString *buffer = NULL;
buffer = g_string_new("");
g_string_append_printf(buffer, "From: <%s> To: <%s>\n",
owl_message_get_sender(m), owl_message_get_recipient(m));
g_string_append_printf(buffer, "Time: %s\n\n",
owl_message_get_timestr(m));
if (owl_message_is_login(m)) {
g_string_append_printf(buffer, "LOGIN\n\n");
} else if (owl_message_is_logout(m)) {
g_string_append_printf(buffer, "LOGOUT\n\n");
} else {
g_string_append_printf(buffer, "%s\n\n", owl_message_get_body(m));
}
return g_string_free(buffer, FALSE);
}
CALLER_OWN char *owl_log_jabber(const owl_message *m)
{
GString *buffer = NULL;
buffer = g_string_new("");
g_string_append_printf(buffer, "From: <%s> To: <%s>\n",
owl_message_get_sender(m),
owl_message_get_recipient(m));
g_string_append_printf(buffer, "Time: %s\n\n",
owl_message_get_timestr(m));
g_string_append_printf(buffer, "%s\n\n", owl_message_get_body(m));
return g_string_free(buffer, FALSE);
}
CALLER_OWN char *owl_log_generic(const owl_message *m)
{
GString *buffer;
buffer = g_string_new("");
g_string_append_printf(buffer, "From: <%s> To: <%s>\n",
owl_message_get_sender(m),
owl_message_get_recipient(m));
g_string_append_printf(buffer, "Time: %s\n\n",
owl_message_get_timestr(m));
g_string_append_printf(buffer, "%s\n\n",
owl_message_get_body(m));
return g_string_free(buffer, FALSE);
}
static void owl_log_error_main_thread(gpointer data)
{
owl_function_error("%s", (const char*)data);
}
static void owl_log_error(const char *message)
{
char *data = g_strdup(message);
owl_select_post_task(owl_log_error_main_thread,
data, g_free, g_main_context_default());
}
static void owl_log_write_entry(gpointer data)
{
owl_log_entry *msg = (owl_log_entry*)data;
FILE *file = NULL;
file = fopen(msg->filename, "a");
if (!file) {
owl_log_error("Unable to open file for logging");
return;
}
fprintf(file, "%s", msg->message);
fclose(file);
}
static void owl_log_entry_free(void *data)
{
owl_log_entry *msg = (owl_log_entry*)data;
if (msg) {
g_free(msg->message);
g_free(msg->filename);
g_slice_free(owl_log_entry, msg);
}
}
void owl_log_enqueue_message(const char *buffer, const char *filename)
{
owl_log_entry *log_msg = NULL;
log_msg = g_slice_new(owl_log_entry);
log_msg->message = g_strdup(buffer);
log_msg->filename = g_strdup(filename);
owl_select_post_task(owl_log_write_entry, log_msg,
owl_log_entry_free, log_context);
}
void owl_log_append(const owl_message *m, const char *filename) {
char *buffer = NULL;
if (owl_message_is_type_zephyr(m)) {
buffer = owl_log_zephyr(m);
} else if (owl_message_is_type_jabber(m)) {
buffer = owl_log_jabber(m);
} else if (owl_message_is_type_aim(m)) {
buffer = owl_log_aim(m);
} else {
buffer = owl_log_generic(m);
}
owl_log_enqueue_message(buffer, filename);
g_free(buffer);
}
void owl_log_outgoing(const owl_message *m)
{
char *filename, *logpath;
char *to, *temp;
GList *cc;
/* expand ~ in path names */
logpath = owl_util_makepath(owl_global_get_logpath(&g));
/* Figure out what path to log to */
if (owl_message_is_type_zephyr(m)) {
/* If this has CC's, do all but the "recipient" which we'll do below */
cc = owl_message_get_cc_without_recipient(m);
while (cc != NULL) {
temp = short_zuser(cc->data);
filename = g_build_filename(logpath, temp, NULL);
owl_log_append(m, filename);
g_free(filename);
g_free(temp);
g_free(cc->data);
cc = g_list_delete_link(cc, cc);
}
to = short_zuser(owl_message_get_recipient(m));
} else if (owl_message_is_type_jabber(m)) {
to = g_strdup_printf("jabber:%s", owl_message_get_recipient(m));
g_strdelimit(to, "/", '_');
} else if (owl_message_is_type_aim(m)) {
char *temp2;
temp = owl_aim_normalize_screenname(owl_message_get_recipient(m));
temp2 = g_utf8_strdown(temp,-1);
to = g_strdup_printf("aim:%s", temp2);
g_free(temp2);
g_free(temp);
} else {
to = g_strdup("loopback");
}
filename = g_build_filename(logpath, to, NULL);
owl_log_append(m, filename);
g_free(to);
g_free(filename);
filename = g_build_filename(logpath, "all", NULL);
owl_log_append(m, filename);
g_free(logpath);
g_free(filename);
}
void owl_log_outgoing_zephyr_error(const owl_zwrite *zw, const char *text)
{
char *filename, *logpath;
char *tobuff, *recip;
owl_message *m;
GString *msgbuf;
/* create a present message so we can pass it to
* owl_log_shouldlog_message(void)
*/
m = g_slice_new(owl_message);
/* recip_index = 0 because there can only be one recipient anyway */
owl_message_create_from_zwrite(m, zw, text, 0);
if (!owl_log_shouldlog_message(m)) {
owl_message_delete(m);
return;
}
owl_message_delete(m);
/* chop off a local realm */
recip = owl_zwrite_get_recip_n_with_realm(zw, 0);
tobuff = short_zuser(recip);
g_free(recip);
/* expand ~ in path names */
logpath = owl_util_makepath(owl_global_get_logpath(&g));
filename = g_build_filename(logpath, tobuff, NULL);
msgbuf = g_string_new("");
g_string_printf(msgbuf, "ERROR (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1] != '\n') {
g_string_append_printf(msgbuf, "\n");
}
owl_log_enqueue_message(msgbuf->str, filename);
g_string_free(msgbuf, TRUE);
filename = g_build_filename(logpath, "all", NULL);
g_free(logpath);
msgbuf = g_string_new("");
g_string_printf(msgbuf, "ERROR (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1] != '\n') {
g_string_append_printf(msgbuf, "\n");
}
owl_log_enqueue_message(msgbuf->str, filename);
g_string_free(msgbuf, TRUE);
g_free(tobuff);
}
void owl_log_incoming(const owl_message *m)
{
char *filename, *allfilename, *logpath;
const char *from=NULL;
char *frombuff=NULL;
int len, ch, i, personal;
/* figure out if it's a "personal" message or not */
if (owl_message_is_type_zephyr(m)) {
if (owl_message_is_personal(m)) {
personal = 1;
} else {
personal = 0;
}
} else if (owl_message_is_type_jabber(m)) {
/* This needs to be fixed to handle groupchat */
const char* msgtype = owl_message_get_attribute_value(m,"jtype");
if (msgtype && !strcmp(msgtype,"groupchat")) {
personal = 0;
} else {
personal = 1;
}
} else {
if (owl_message_is_private(m) || owl_message_is_loginout(m)) {
personal = 1;
} else {
personal = 0;
}
}
if (owl_message_is_type_zephyr(m)) {
if (personal) {
from=frombuff=short_zuser(owl_message_get_sender(m));
} else {
from=frombuff=g_strdup(owl_message_get_class(m));
}
} else if (owl_message_is_type_aim(m)) {
/* we do not yet handle chat rooms */
char *normalto, *temp;
temp = owl_aim_normalize_screenname(owl_message_get_sender(m));
normalto = g_utf8_strdown(temp, -1);
from=frombuff=g_strdup_printf("aim:%s", normalto);
g_free(normalto);
g_free(temp);
} else if (owl_message_is_type_loopback(m)) {
from=frombuff=g_strdup("loopback");
} else if (owl_message_is_type_jabber(m)) {
if (personal) {
from=frombuff=g_strdup_printf("jabber:%s",
owl_message_get_sender(m));
} else {
from=frombuff=g_strdup_printf("jabber:%s",
owl_message_get_recipient(m));
}
} else {
from=frombuff=g_strdup("unknown");
}
/* check for malicious sender formats */
len=strlen(frombuff);
if (len<1 || len>35) from="weird";
if (strchr(frombuff, '/')) from="weird";
ch=frombuff[0];
if (!g_ascii_isalnum(ch)) from="weird";
for (i=0; i<len; i++) {
if (frombuff[i]<'!' || frombuff[i]>='~') from="weird";
}
if (!strcmp(frombuff, ".") || !strcasecmp(frombuff, "..")) from="weird";
if (!personal) {
if (strcmp(from, "weird")) {
char* temp = g_utf8_strdown(frombuff, -1);
if (temp) {
g_free(frombuff);
from = frombuff = temp;
}
}
}
/* create the filename (expanding ~ in path names) */
if (personal) {
logpath = owl_util_makepath(owl_global_get_logpath(&g));
filename = g_build_filename(logpath, from, NULL);
allfilename = g_build_filename(logpath, "all", NULL);
owl_log_append(m, allfilename);
g_free(allfilename);
} else {
logpath = owl_util_makepath(owl_global_get_classlogpath(&g));
filename = g_build_filename(logpath, from, NULL);
}
owl_log_append(m, filename);
g_free(filename);
if (personal && owl_message_is_type_zephyr(m)) {
/* We want to log to all of the CC'd people who were not us, or
* the sender, as well.
*/
char *temp;
GList *cc;
cc = owl_message_get_cc_without_recipient(m);
while (cc != NULL) {
temp = short_zuser(cc->data);
if (strcasecmp(temp, frombuff) != 0) {
filename = g_build_filename(logpath, temp, NULL);
owl_log_append(m, filename);
g_free(filename);
}
g_free(temp);
g_free(cc->data);
cc = g_list_delete_link(cc, cc);
}
}
g_free(frombuff);
g_free(logpath);
}
static gpointer owl_log_thread_func(gpointer data)
{
log_loop = g_main_loop_new(log_context, FALSE);
g_main_loop_run(log_loop);
return NULL;
}
void owl_log_init(void)
{
log_context = g_main_context_new();
#if GLIB_CHECK_VERSION(2, 31, 0)
logging_thread = g_thread_new("logging",
owl_log_thread_func,
NULL);
#else
GError *error = NULL;
logging_thread = g_thread_create(owl_log_thread_func,
NULL,
TRUE,
&error);
if (error) {
endwin();
fprintf(stderr, "Error spawning logging thread: %s\n", error->message);
fflush(stderr);
exit(1);
}
#endif
}
static void owl_log_quit_func(gpointer data)
{
g_main_loop_quit(log_loop);
}
void owl_log_shutdown(void)
{
owl_select_post_task(owl_log_quit_func, NULL,
NULL, log_context);
g_thread_join(logging_thread);
}