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
|
/* Copyright (c) 2002,2003,2004,2009 James M. Kretchmar
*
* This file is part of Owl.
*
* Owl 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 3 of the License, or
* (at your option) any later version.
*
* Owl 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 Owl. If not, see <http://www.gnu.org/licenses/>.
*
* ---------------------------------------------------------------
*
* As of Owl version 2.1.12 there are patches contributed by
* developers of the branched BarnOwl project, Copyright (c)
* 2006-2009 The BarnOwl Developers. All rights reserved.
*/
#include "owl.h"
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <sys/param.h>
static const char fileIdent[] = "$Id: logging.c,v 1.27 2009/03/29 12:38:21 kretch Exp $";
/* 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(owl_message *m) {
owl_function_debugmsg("owl_log_message: entering");
/* 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 */
if (owl_message_is_type_aim(m)) {
owl_log_outgoing_aim(m);
} else if (owl_message_is_type_zephyr(m)) {
owl_log_outgoing_zephyr(m);
} else if (owl_message_is_type_loopback(m)) {
owl_log_outgoing_loopback(m);
} else {
owl_function_error("Unknown message type for logging");
}
owl_function_debugmsg("owl_log_message: leaving");
}
/* Return 1 if we should log the given message, otherwise return 0 */
int owl_log_shouldlog_message(owl_message *m) {
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 for nolog */
if (!strcasecmp(owl_message_get_opcode(m), "nolog") || !strcasecmp(owl_message_get_instance(m), "nolog")) 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);
}
void owl_log_outgoing_zephyr(owl_message *m)
{
FILE *file;
char filename[MAXPATHLEN], *logpath;
char *to, *text;
/* strip local realm */
to=short_zuser(owl_message_get_recipient(m));
/* expand ~ in path names */
logpath=owl_text_substitute(owl_global_get_logpath(&g), "~", owl_global_get_homedir(&g));
text=owl_message_get_body(m);
snprintf(filename, MAXPATHLEN, "%s/%s", logpath, to);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(logpath);
owl_free(to);
return;
}
fprintf(file, "OUTGOING (owl): %s\n%s\n", to, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
snprintf(filename, MAXPATHLEN, "%s/all", logpath);
owl_free(logpath);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(to);
return;
}
fprintf(file, "OUTGOING (owl): %s\n%s\n", to, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
owl_free(to);
}
void owl_log_outgoing_zephyr_error(char *to, char *text)
{
FILE *file;
char filename[MAXPATHLEN], *logpath;
char *tobuff, *zwriteline;
owl_message *m;
/* create a present message so we can pass it to
* owl_log_shouldlog_message()
*/
zwriteline=owl_sprintf("zwrite %s", to);
m=owl_function_make_outgoing_zephyr(text, zwriteline, "");
owl_free(zwriteline);
if (!owl_log_shouldlog_message(m)) {
owl_message_free(m);
return;
}
owl_message_free(m);
/* chop off a local realm */
tobuff=short_zuser(to);
/* expand ~ in path names */
logpath = owl_text_substitute(owl_global_get_logpath(&g), "~", owl_global_get_homedir(&g));
snprintf(filename, MAXPATHLEN, "%s/%s", logpath, tobuff);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(logpath);
owl_free(tobuff);
return;
}
fprintf(file, "ERROR (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
snprintf(filename, MAXPATHLEN, "%s/all", logpath);
owl_free(logpath);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(tobuff);
return;
}
fprintf(file, "ERROR (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
owl_free(tobuff);
}
void owl_log_outgoing_aim(owl_message *m)
{
FILE *file;
char filename[MAXPATHLEN], *logpath;
char *tobuff, *normalto, *text;
owl_function_debugmsg("owl_log_outgoing_aim: entering");
/* normalize and downcase the screenname */
normalto=owl_aim_normalize_screenname(owl_message_get_recipient(m));
downstr(normalto);
tobuff=owl_sprintf("aim:%s", normalto);
owl_free(normalto);
/* expand ~ in path names */
logpath = owl_text_substitute(owl_global_get_logpath(&g), "~", owl_global_get_homedir(&g));
text=owl_message_get_body(m);
snprintf(filename, MAXPATHLEN, "%s/%s", logpath, tobuff);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(logpath);
owl_free(tobuff);
return;
}
fprintf(file, "OUTGOING (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
snprintf(filename, MAXPATHLEN, "%s/all", logpath);
owl_free(logpath);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(tobuff);
return;
}
fprintf(file, "OUTGOING (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
owl_free(tobuff);
}
void owl_log_outgoing_loopback(owl_message *m)
{
FILE *file;
char filename[MAXPATHLEN], *logpath;
char *tobuff, *text;
tobuff=owl_sprintf("loopback");
/* expand ~ in path names */
logpath = owl_text_substitute(owl_global_get_logpath(&g), "~", owl_global_get_homedir(&g));
text=owl_message_get_body(m);
snprintf(filename, MAXPATHLEN, "%s/%s", logpath, tobuff);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(logpath);
owl_free(tobuff);
return;
}
fprintf(file, "OUTGOING (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
snprintf(filename, MAXPATHLEN, "%s/all", logpath);
owl_free(logpath);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for outgoing logging");
owl_free(tobuff);
return;
}
fprintf(file, "OUTGOING (owl): %s\n%s\n", tobuff, text);
if (text[strlen(text)-1]!='\n') {
fprintf(file, "\n");
}
fclose(file);
owl_free(tobuff);
}
void owl_log_incoming(owl_message *m)
{
FILE *file, *allfile;
char filename[MAXPATHLEN], allfilename[MAXPATHLEN], *logpath;
char *frombuff=NULL, *from=NULL, *zsig=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_private(m) || owl_message_is_loginout(m)) {
personal=1;
} else {
personal=0;
}
}
if (owl_message_is_type_zephyr(m)) {
if (personal) {
if (owl_message_is_type_zephyr(m)) {
from=frombuff=short_zuser(owl_message_get_sender(m));
}
} else {
from=frombuff=owl_strdup(owl_message_get_class(m));
}
} else if (owl_message_is_type_aim(m)) {
/* we do not yet handle chat rooms */
char *normalto;
normalto=owl_aim_normalize_screenname(owl_message_get_sender(m));
downstr(normalto);
from=frombuff=owl_sprintf("aim:%s", normalto);
owl_free(normalto);
} else if (owl_message_is_type_loopback(m)) {
from=frombuff=owl_strdup("loopback");
} else {
from=frombuff=owl_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 (!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")) downstr(from);
}
/* create the filename (expanding ~ in path names) */
if (personal) {
logpath = owl_text_substitute(owl_global_get_logpath(&g), "~", owl_global_get_homedir(&g));
snprintf(filename, MAXPATHLEN, "%s/%s", logpath, from);
snprintf(allfilename, MAXPATHLEN, "%s/all", logpath);
} else {
logpath = owl_text_substitute(owl_global_get_classlogpath(&g), "~", owl_global_get_homedir(&g));
snprintf(filename, MAXPATHLEN, "%s/%s", logpath, from);
}
owl_free(logpath);
file=fopen(filename, "a");
if (!file) {
owl_function_error("Unable to open file for incoming logging");
owl_free(frombuff);
return;
}
allfile=NULL;
if (personal) {
allfile=fopen(allfilename, "a");
if (!allfile) {
owl_function_error("Unable to open file for incoming logging");
owl_free(frombuff);
fclose(file);
return;
}
}
/* write to the main file */
if (owl_message_is_type_zephyr(m)) {
char *tmp;
tmp=short_zuser(owl_message_get_sender(m));
fprintf(file, "Class: %s Instance: %s", owl_message_get_class(m), owl_message_get_instance(m));
if (strcmp(owl_message_get_opcode(m), "")) fprintf(file, " Opcode: %s", owl_message_get_opcode(m));
fprintf(file, "\n");
fprintf(file, "Time: %s Host: %s\n", owl_message_get_timestr(m), owl_message_get_hostname(m));
zsig=owl_message_get_zsig(m);
fprintf(file, "From: %s <%s>\n\n", zsig, tmp);
fprintf(file, "%s\n\n", owl_message_get_body(m));
owl_free(tmp);
} else if (owl_message_is_type_aim(m) && !owl_message_is_loginout(m)) {
fprintf(file, "From: <%s> To: <%s>\n", owl_message_get_sender(m), owl_message_get_recipient(m));
fprintf(file, "Time: %s\n\n", owl_message_get_timestr(m));
fprintf(file, "%s\n\n", owl_message_get_body(m));
} else if (owl_message_is_type_aim(m) && owl_message_is_loginout(m)) {
fprintf(file, "From: <%s> To: <%s>\n", owl_message_get_sender(m), owl_message_get_recipient(m));
fprintf(file, "Time: %s\n\n", owl_message_get_timestr(m));
if (owl_message_is_login(m)) fprintf(file, "LOGIN\n\n");
if (owl_message_is_logout(m)) fprintf(file, "LOGOUT\n\n");
} else {
fprintf(file, "From: <%s> To: <%s>\n", owl_message_get_sender(m), owl_message_get_recipient(m));
fprintf(file, "Time: %s\n\n", owl_message_get_timestr(m));
fprintf(file, "%s\n\n", owl_message_get_body(m));
}
fclose(file);
/* if it's a personal message, also write to the 'all' file */
if (personal) {
if (owl_message_is_type_zephyr(m)) {
char *tmp;
tmp=short_zuser(owl_message_get_sender(m));
fprintf(allfile, "Class: %s Instance: %s", owl_message_get_class(m), owl_message_get_instance(m));
if (strcmp(owl_message_get_opcode(m), "")) fprintf(allfile, " Opcode: %s", owl_message_get_opcode(m));
fprintf(allfile, "\n");
fprintf(allfile, "Time: %s Host: %s\n", owl_message_get_timestr(m), owl_message_get_hostname(m));
fprintf(allfile, "From: %s <%s>\n\n", zsig, tmp);
fprintf(allfile, "%s\n\n", owl_message_get_body(m));
owl_free(tmp);
} else if (owl_message_is_type_aim(m) && !owl_message_is_loginout(m)) {
fprintf(allfile, "From: <%s> To: <%s>\n", owl_message_get_sender(m), owl_message_get_recipient(m));
fprintf(allfile, "Time: %s\n\n", owl_message_get_timestr(m));
fprintf(allfile, "%s\n\n", owl_message_get_body(m));
} else if (owl_message_is_type_aim(m) && owl_message_is_loginout(m)) {
fprintf(allfile, "From: <%s> To: <%s>\n", owl_message_get_sender(m), owl_message_get_recipient(m));
fprintf(allfile, "Time: %s\n\n", owl_message_get_timestr(m));
if (owl_message_is_login(m)) fprintf(allfile, "LOGIN\n\n");
if (owl_message_is_logout(m)) fprintf(allfile, "LOGOUT\n\n");
} else {
fprintf(allfile, "From: <%s> To: <%s>\n", owl_message_get_sender(m), owl_message_get_recipient(m));
fprintf(allfile, "Time: %s\n\n", owl_message_get_timestr(m));
fprintf(allfile, "%s\n\n", owl_message_get_body(m));
}
fclose(allfile);
}
owl_free(frombuff);
}
|