source: trunk/src/sh_err_log.c@ 275

Last change on this file since 275 was 248, checked in by katerina, 15 years ago

Code to track down originating site for ticket #163.

File size: 26.1 KB
Line 
1/* SAMHAIN file system integrity testing */
2/* Copyright (C) 2000 Rainer Wichmann */
3/* */
4/* This program is free software; you can redistribute it */
5/* and/or modify */
6/* it under the terms of the GNU General Public License as */
7/* published by */
8/* the Free Software Foundation; either version 2 of the License, or */
9/* (at your option) any later version. */
10/* */
11/* This program is distributed in the hope that it will be useful, */
12/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
13/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
14/* GNU General Public License for more details. */
15/* */
16/* You should have received a copy of the GNU General Public License */
17/* along with this program; if not, write to the Free Software */
18/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20#include "config_xor.h"
21
22#include <stdio.h>
23#include <string.h>
24#include <sys/types.h>
25#include <unistd.h>
26
27#include "samhain.h"
28#include "sh_error.h"
29#include "sh_utils.h"
30#include "sh_tiger.h"
31
32#if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
33#include <sys/mman.h>
34#endif
35
36
37#undef FIL__
38#define FIL__ _("sh_err_log.c")
39
40#undef FIX_XML
41#define FIX_XML 1
42
43#define MYSIGLEN (2*KEY_LEN + 32)
44
45typedef struct _sh_log_buf {
46 char signature[KEY_LEN+1];
47 char timestamp[KEY_LEN+1];
48#ifdef SH_USE_XML
49 char sig[MYSIGLEN];
50#endif
51 char * msg;
52} sh_sh_log_buf;
53
54extern struct _errFlags errFlags;
55
56#define CHK_KEY 0
57#define CHK_FIL 1
58#define CHK_NON 2
59
60static int get_key_from_file(char * path, char * keyid, char * key)
61{
62 SL_TICKET fd;
63 char * buf;
64 char * bufc;
65
66 if (path[strlen(path)-1] == '\n')
67 path[strlen(path)-1] = '\0';
68
69 /* open the file, then check it
70 */
71 if ( SL_ISERROR(fd = sl_open_read (FIL__, __LINE__, path, SL_NOPRIV)))
72 {
73 fprintf(stderr, _("Could not open file <%s>\n"), path);
74 _exit (EXIT_FAILURE);
75 }
76
77 buf = SH_ALLOC( (size_t)(SH_BUFSIZE+1));
78 bufc = SH_ALLOC( (size_t)(SH_MAXBUF+1));
79
80 while (1 == 1)
81 {
82 buf[0] = '\0';
83 bufc[0] = '\0';
84
85 /* find start of next key
86 */
87 while (0 != sl_strncmp(buf, _("-----BEGIN LOGKEY-----"),
88 sizeof("-----BEGIN LOGKEY-----")-1))
89 {
90 (void) sh_unix_getline (fd, buf, SH_BUFSIZE);
91 if (buf[0] == '\0')
92 {
93 /* End of file reached, return.
94 */
95 (void) fflush(stdout);
96 (void) sl_close(fd);
97 return -1;
98 }
99 }
100
101 /* read key
102 */
103 (void) sh_unix_getline (fd, buf, SH_BUFSIZE);
104
105 if (0 == sl_strncmp(keyid, &buf[KEY_LEN], strlen(keyid)))
106 {
107 (void) sl_strlcpy(key, buf, KEY_LEN+1);
108 (void) sl_close(fd);
109 return 0;
110 }
111 }
112
113 /*@notreached@*/
114}
115
116static int just_list = S_FALSE;
117
118int sh_error_logverify_mod (const char * s)
119{
120 just_list = S_TRUE;
121 if (s) /* compiler warning (unused var) fix */
122 return 0;
123 else
124 return 0;
125}
126
127int sh_error_logverify (const char * s)
128{
129 SL_TICKET fd;
130 int len;
131 int status;
132 int count = 0;
133 int start = -1;
134 char * buf;
135 char * bufc;
136#ifdef SH_USE_XML
137 char * ptr;
138 int fixed_xml = S_TRUE;
139 char c_start;
140#endif
141 char signature[64];
142 char key[KEY_LEN+2];
143 char path[KEY_LEN+1];
144 char timestamp[64];
145 char c_cont;
146 int chk_mode = CHK_KEY;
147 char hashbuf[KEYBUF_SIZE];
148
149 sh_error_logoff();
150
151 if (s == NULL || sl_strlen(s) >= PATH_MAX)
152 {
153 fprintf(stderr, _("FAIL: msg=\"Invalid input\", path=\"%s\"\n"), s);
154 _exit (EXIT_FAILURE);
155 }
156
157 /* Open the file, then check it.
158 */
159 if (0 != sl_is_suid())
160 {
161 fprintf(stderr, _("Cannot open file %s in suid mode\n"), s);
162 _exit (EXIT_FAILURE);
163 }
164
165 if ( SL_ISERROR(fd = sl_open_read (FIL__, __LINE__, s, SL_NOPRIV)) )
166 {
167 fprintf(stderr,
168 _("FAIL: msg=\"File not accessible\", error=\"%ld\", path=\"%s\"\n"), fd, s);
169 _exit (EXIT_FAILURE);
170 }
171
172 /* Find space value.
173 */
174 c_cont = ' ';
175#ifdef SH_STEALTH
176 c_cont ^= XOR_CODE;
177#endif
178
179#ifdef SH_USE_XML
180 c_start = '<';
181#ifdef SH_STEALTH
182 c_start ^= XOR_CODE;
183#endif
184#endif
185
186 buf = (char *) SH_ALLOC( 2*SH_MSG_BUF+1 );
187 bufc = (char *) SH_ALLOC( 2*SH_MSG_BUF+1 );
188
189 while (1 == 1)
190 {
191 /* get the log message
192 */
193 if (sh_unix_getline (fd, buf, (2*SH_MSG_BUF)) < 0)
194 break;
195
196 len = (int) sl_strlen(buf);
197
198#ifdef SH_USE_XML
199#ifdef SH_STEALTH
200 if (0 == sl_strncmp (buf, N_("<trail>"), 7))
201#else
202 if (0 == sl_strncmp (buf, _("<trail>"), 7))
203#endif
204#else
205#ifdef SH_STEALTH
206 if (0 == sl_strncmp (buf, N_("[SOF]"), 5))
207#else
208 if (0 == sl_strncmp (buf, _("[SOF]"), 5))
209#endif
210#endif
211 {
212 if (just_list == S_TRUE)
213 {
214#ifdef SH_STEALTH
215 sh_do_decode (buf, sl_strlen(buf));
216#endif
217 fprintf (stdout, _("%s\n"), buf);
218 }
219
220 /* Found start of audit trail, read first line.
221 */
222 start = 1;
223 do {
224 if ( sh_unix_getline (fd, buf, (2*SH_MSG_BUF)) < 0)
225 break;
226 } while (buf[0] == '\0' || buf[0] == '\n');
227 len = (int) sl_strlen(buf);
228
229 if (just_list == S_TRUE)
230 {
231#ifdef SH_STEALTH
232 if (buf[0] != '\n')
233 sh_do_decode (buf, sl_strlen(buf));
234#endif
235 fprintf (stdout, _("%s\n"), buf);
236 start = 0;
237 }
238
239 ++count;
240 }
241 else if (buf[0] == '\n'
242#ifdef SH_USE_XML
243 ||
244#ifdef SH_STEALTH
245 0 == sl_strncmp(buf, N_("</trail>"), 7)
246#else
247 0 == sl_strncmp(buf, _("</trail>"), 7)
248#endif
249#endif
250 )
251 {
252 if (just_list == S_TRUE)
253 {
254#ifdef SH_STEALTH
255 if (buf[0] != '\n')
256 sh_do_decode (buf, sl_strlen(buf));
257#endif
258 fprintf (stdout, _("%s\n"), buf);
259 }
260
261 /* A newline.
262 */
263 ++count;
264 continue;
265 }
266 else if (start == 0)
267 {
268 /* We are inside an audit trail.
269 */
270 ++count;
271 if (just_list == S_TRUE)
272 {
273#ifdef SH_STEALTH
274 sh_do_decode (buf, sl_strlen(buf));
275#endif
276 fprintf (stdout, _("%s\n"), buf);
277 continue;
278 }
279 }
280 else
281 {
282 /* No start-of-file found yet.
283 */
284 continue;
285 }
286
287 if (just_list == S_TRUE)
288 continue;
289
290 /* Check for a continuation line.
291 */
292 while (1 == 1)
293 {
294 do {
295 if ( sh_unix_getline (fd, bufc, (2*SH_MSG_BUF)) < 0)
296 break;
297 } while (bufc[0] == '\0' || bufc[0] == '\n');
298 ++count;
299 if (bufc[0] == c_cont)
300 {
301 /* A continuation line. Add the newline.
302 */
303 (void) sl_strlcat(buf, "\n", 2*SH_MSG_BUF+1);
304 ++len;
305 (void) sl_strlcat(buf, bufc, 2*SH_MSG_BUF+1);
306 len += (int) sl_strlen(bufc);
307 }
308 else
309 {
310 /* No continuation line. Use it as signature.
311 * A48014C05604EF7C9472330E85453E704024943E556163C2
312 */
313#ifdef SH_USE_XML
314#ifdef SH_STEALTH
315 if (bufc[0] == c_start) /* FIX XML */
316#else
317 if (bufc[0] == c_start)
318#endif
319 {
320 (void) sl_strlcpy(signature, &bufc[5], KEY_LEN+1);
321 fixed_xml = S_TRUE;
322 }
323 else
324 {
325 (void) sl_strlcpy(signature, &bufc[4], KEY_LEN+1);
326 fixed_xml = S_FALSE;
327 }
328 if (sl_strlen(bufc) > (KEY_LEN+18))
329 {
330#ifdef SH_STEALTH
331 if (bufc[0] == c_start) /* FIX XML */
332#else
333 if (bufc[0] == c_start)
334#endif
335 (void) sl_strlcpy(timestamp, &bufc[KEY_LEN+5], 64);
336 else
337 (void) sl_strlcpy(timestamp, &bufc[KEY_LEN+4], 64);
338#ifdef SH_STEALTH
339 ptr = strchr(timestamp, c_start);
340#else
341 ptr = strchr(timestamp, c_start);
342#endif
343 if (ptr) *ptr = '\0';
344 }
345 break;
346#else
347 sl_strlcpy(signature, bufc, KEY_LEN+1);
348 if (sl_strlen(bufc) > KEY_LEN)
349 sl_strlcpy(timestamp, &bufc[KEY_LEN], 64);
350 break;
351#endif
352 }
353 }
354
355 /* Get starting key from command line.
356 */
357 if (start == 1)
358 {
359
360 /* Get the timestamp.
361 */
362
363#ifdef SH_STEALTH
364 sh_do_decode (timestamp, sl_strlen(timestamp));
365#endif
366 key[0] = '\0';
367
368 findKey:
369
370 if (chk_mode != CHK_FIL)
371 {
372 /* Ask for the key.
373 */
374 chk_mode = CHK_KEY;
375 fprintf(stdout, _("\nNew audit trail (%s), enter key|keyfile: "),
376 /*@-usedef@*/timestamp/*@+usedef@*/);
377 key[0] = '\0';
378
379 while (sl_strlen(key) < KEY_LEN )
380 {
381 if (key[0] != '\n' && key[0] != '\0')
382 fprintf(stdout, "%s",_("New audit trail, enter key: "));
383 else if (key[0] == '\n')
384 {
385 (void) sl_strlcpy(key,
386 sh_tiger_hash(NULL, TIGER_DATA, 0,
387 hashbuf, sizeof(hashbuf)),
388 KEY_LEN+1);
389 chk_mode = CHK_NON;
390 break;
391 }
392 (void) fflush(stdout);
393 key[0] = '\0';
394 if (NULL != fgets(key, sizeof(key), stdin))
395 {
396 if (key[0] != '\n')
397 {
398 if (key[strlen(key) - 1] == '\n')
399 key[strlen(key) - 1] = '\0';
400 }
401 if (key[0] == '/')
402 {
403 chk_mode = CHK_FIL;
404 (void) sl_strlcpy(path, key, KEY_LEN+1);
405 break;
406 }
407 }
408 }
409 }
410 /* we now have either a key (chk_mode == CHK_NON|CHK_KEY)
411 * or a file (chk_mode == CHK_FIL)
412 */
413 if (chk_mode == CHK_FIL)
414 {
415 fprintf(stdout, _("\nAudit trail (%s), searching file %s\n"),
416 /*@-usedef@*/timestamp, path/*@+usedef@*/);
417 if (-1 == get_key_from_file(path, timestamp, key))
418 {
419 chk_mode = CHK_KEY;
420 fprintf(stdout, "%s",_("Key not found in file\n"));
421 goto findKey;
422 }
423 }
424
425
426 sh_util_encode(key, buf, 1, 'B');
427 start = 0;
428 }
429 else
430 {
431 /* Iterate the key.
432 */
433 (void) sl_strlcpy (key,
434 sh_tiger_hash (key, TIGER_DATA, KEY_LEN,
435 hashbuf, sizeof(hashbuf)),
436 KEY_LEN+1);
437 }
438
439 (void) sl_strlcat ( buf, key, 2*SH_MSG_BUF + 1);
440
441#ifdef SH_STEALTH
442 sh_do_decode (signature, sl_strlen(signature));
443#endif
444
445 status = sl_strncmp (signature,
446 sh_tiger_hash (buf, TIGER_DATA,
447 (unsigned long) sl_strlen(buf),
448 hashbuf, sizeof(hashbuf)),
449 KEY_LEN);
450
451 buf[len] = '\0'; /* do not print out the key */
452#ifdef SH_STEALTH
453 sh_do_decode (buf, sl_strlen(buf));
454#endif
455
456 if (status != 0)
457 {
458#ifdef SH_USE_XML
459 if (chk_mode == CHK_NON)
460 {
461 if (fixed_xml == S_FALSE)
462 fprintf (stdout, _("XFAIL: line=%05d %s/log>\n"),
463 count-1, buf);
464 else
465 fprintf (stdout, _("XFAIL: line=%05d %s</log>\n"),
466 count-1, buf);
467 }
468 else
469 {
470 if (fixed_xml == S_FALSE)
471 fprintf (stdout, _("FAIL: line=%05d %s/log>\n"),
472 count-1, buf);
473 else
474 fprintf (stdout, _("FAIL: line=%05d %s</log>\n"),
475 count-1, buf);
476 }
477#else
478 if (chk_mode == CHK_NON)
479 fprintf (stdout, _("XFAIL: line=%5d %s\n"), count-1, buf);
480 else
481 fprintf (stdout, _("FAIL: line=%5d %s\n"), count-1, buf);
482#endif
483 }
484 else
485 {
486#ifdef SH_USE_XML
487 if (fixed_xml == S_FALSE)
488 fprintf (stdout, _("PASS: line=%05d %s/log>\n"), count-1, buf);
489 else
490 fprintf (stdout, _("PASS: line=%05d %s</log>\n"), count-1, buf);
491#else
492 fprintf (stdout, _("PASS: line=%5d %s\n"), count-1, buf);
493#endif
494 }
495 }
496
497 /* Cleanup and exit.
498 */
499 (void) sl_close (fd);
500 SH_FREE (buf);
501 SH_FREE (bufc);
502 (void) fflush (stdout);
503 _exit (EXIT_SUCCESS);
504
505 /* Make compilers happy.
506 */
507 /*@notreached@*/
508 return 0;
509}
510
511/********************************************************************
512 *
513 * Runtime code
514 *
515 ********************************************************************/
516static
517int sh_log_open (char * inet_peer,
518 char * logfile, int * service_failure, SL_TICKET * fildesc)
519{
520 SL_TICKET fd = -1;
521 long int status;
522 char * tmp = NULL;
523 uid_t uid;
524 size_t len;
525 char * lockfile = NULL;
526
527 SL_ENTER(_("sh_log_open"));
528
529 /* open/create the file, then check it
530 */
531
532 if ( 0 != (status = tf_trust_check (logfile, SL_YESPRIV))
533 && (*service_failure) == 0)
534 {
535 tmp = sh_util_safe_name (logfile);
536 sh_error_handle ((-1), FIL__, __LINE__, status, MSG_E_TRUST,
537 (long) sh.effective.uid, tmp);
538 }
539
540 if (status == 0)
541 {
542 fd = sl_open_write (FIL__, __LINE__, logfile, SL_YESPRIV);
543 if (SL_ISERROR(fd))
544 {
545 tmp = sh_util_safe_name (logfile);
546 (void) sl_get_euid(&uid);
547 if ((*service_failure) == 0)
548 sh_error_handle ((-1), FIL__, __LINE__, fd, MSG_E_ACCESS,
549 (long) uid, tmp);
550 status = -1;
551 }
552 }
553
554
555 if (status == 0 && inet_peer == NULL )
556 {
557 status = sh_unix_write_lock_file(logfile);
558 if (status < 0)
559 {
560 tmp = sh_util_safe_name (logfile);
561 len = sl_strlen(tmp);
562 if (sl_ok_adds (6, len))
563 len += 6;
564 lockfile = SH_ALLOC(len);
565 (void) sl_strlcpy(lockfile, tmp, len);
566 (void) sl_strlcat(lockfile, _(".lock"), len);
567 (void) sl_get_euid(&uid);
568 if ((*service_failure) == 0)
569 sh_error_handle ((-1), FIL__, __LINE__, status, MSG_LOCKED,
570 (long) uid, tmp, lockfile);
571 status = -1;
572 SH_FREE(lockfile);
573 (void) sl_close(fd);
574 }
575 }
576
577 if (status == 0)
578 {
579 status = sl_forward(fd);
580 if (SL_ISERROR(status))
581 {
582 tmp = sh_util_safe_name (logfile);
583 (void) sl_get_euid(&uid);
584 if ((*service_failure) == 0)
585 sh_error_handle ((-1), FIL__, __LINE__, status, MSG_E_ACCESS,
586 (long) uid, tmp);
587 status = -1;
588 (void) sl_close(fd);
589 }
590 }
591
592 if (status < 0)
593 {
594 if ((*service_failure) == 0) {
595 sh_error_handle ((-1), FIL__, __LINE__, status, MSG_SRV_FAIL,
596 _("logfile"), tmp);
597 (*service_failure) = 1;
598 }
599 SH_FREE(tmp);
600 SL_RETURN(-1, _("sh_log_open"));
601 }
602
603 *fildesc = fd;
604 *service_failure = 0;
605 SL_RETURN(0, _("sh_log_open"));
606}
607
608typedef struct lfstc {
609 char * logfile;
610 int service_failure;
611 int log_start;
612 char sigkey_old[KEY_LEN+1];
613 char sigkey_new[KEY_LEN+1];
614 char crypto[KEY_LEN+1];
615 struct lfstc * next;
616} open_logfile;
617
618static open_logfile * logfile_list = NULL;
619
620static int flag_sep_log = S_FALSE;
621
622#ifdef SH_WITH_SERVER
623int set_flag_sep_log (const char * str)
624{
625 return sh_util_flagval(str, &flag_sep_log);
626}
627#endif
628
629/*
630 * --- Log error message to log file. ---
631 */
632int sh_log_file (/*@null@*/char *errmsg, /*@null@*/char * inet_peer)
633{
634 int store1;
635 int store2;
636 int store3;
637 int store4;
638 int store5;
639 int store6;
640 int store7;
641 int store8;
642
643 SL_TICKET fd = -1;
644 size_t status;
645 struct _sh_log_buf log_msg;
646
647 char logfile[SH_PATHBUF+SH_MINIBUF+2];
648 open_logfile * current = logfile_list;
649 open_logfile * next = NULL;
650 char * sigkey_new;
651 char * sigkey_old;
652 char * crypto;
653 char hashbuf[KEYBUF_SIZE];
654
655 SL_ENTER(_("sh_log_file"));
656
657 if (errFlags.HaveLog == BAD) /* paranoia */
658 SL_RETURN((-1), _("sh_log_file"));
659
660#ifdef SH_USE_XML
661 if (NULL == errmsg)
662 {
663 while (current != NULL)
664 {
665 /* don't write second EOF mark
666 */
667 if (current->log_start != S_TRUE && sh.flag.islocked == GOOD)
668 {
669 /* Don't use inet_peer == NULL, userwise a lock file will
670 * be created.
671 */
672 (void) sh_log_open ("\0",
673 current->logfile,
674 &(current->service_failure), &fd);
675
676#ifdef SH_STEALTH
677 (void) sl_write_line (fd, N_("</trail>"), 7);
678 (void) sl_write (fd, "\n", 1);
679 (void) sl_sync(fd);
680#else
681 (void) sl_write_line (fd, _("</trail>\n"), 8);
682 (void) sl_sync(fd);
683#endif
684 (void) sl_close(fd);
685 /* sh_unix_rm_lock_file (current->logfile); */
686 }
687 next = current->next;
688 SH_FREE(current->logfile);
689 SH_FREE(current);
690 current = next;
691 }
692 logfile_list = NULL;
693 SL_RETURN( 0, _("sh_log_file"));
694 }
695#else
696 if (NULL == errmsg)
697 {
698 while (current != NULL)
699 {
700 /* sh_unix_rm_lock_file (current->logfile); */
701 next = current->next;
702 SH_FREE(current->logfile);
703 SH_FREE(current);
704 current = next;
705 }
706 logfile_list = NULL;
707 SL_RETURN( 0, _("sh_log_file"));
708 }
709#endif
710
711 (void) sl_strlcpy (logfile, sh.srvlog.name, sizeof(logfile));
712 if (inet_peer != NULL && flag_sep_log == S_TRUE)
713 {
714 (void) sl_strlcat (logfile, ".", sizeof(logfile));
715 (void) sl_strlcat (logfile, inet_peer, sizeof(logfile));
716 }
717
718 if (sh.flag.log_start == S_TRUE)
719 {
720 while (current != NULL)
721 {
722 current->log_start = S_TRUE;
723 current = current->next;
724 }
725 sh.flag.log_start = S_FALSE;
726 current = logfile_list;
727 }
728
729 while (current != NULL)
730 {
731 if (strcmp(logfile, current->logfile) == 0)
732 break;
733 current = current->next;
734 }
735
736 if (current == NULL)
737 {
738 current = SH_ALLOC(sizeof(open_logfile));
739 current->logfile = SH_ALLOC(strlen(logfile) + 1);
740 (void) sl_strlcpy(current->logfile, logfile, strlen(logfile) + 1);
741 current->service_failure = 0;
742 current->log_start = S_TRUE;
743 memset(current->sigkey_old, (int)'\0', KEY_LEN+1);
744 memset(current->sigkey_new, (int)'\0', KEY_LEN+1);
745 memset(current->crypto, (int)'\0', KEY_LEN+1);
746 current->next = logfile_list;
747 logfile_list = current;
748 }
749
750 if (0 != sh_log_open (inet_peer, current->logfile,
751 &(current->service_failure), &fd))
752 {
753 SL_RETURN ((-1), _("sh_log_file"));
754 }
755
756
757 /* --- Allocate storage and mlock it. ---
758 */
759
760 status = sl_strlen (errmsg);
761 if (!sl_ok_adds(status, (2*KEY_LEN)) || !sl_ok_adds((2*KEY_LEN + status),32))
762 {
763 sl_close(fd);
764 SL_RETURN ((-1), _("sh_log_file"));
765 }
766
767 log_msg.msg = (char *) SH_ALLOC ((size_t) (2*KEY_LEN + status + 32));
768
769#if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
770 if (skey->mlock_failed == SL_FALSE)
771 {
772 if ( (-1) == sh_unix_mlock( FIL__, __LINE__, log_msg.msg,
773 (size_t)(2*KEY_LEN + status + 32) ) )
774 {
775 skey->mlock_failed = SL_TRUE;
776#if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE)
777 sh_error_handle ((-1), FIL__, __LINE__, EPERM, MSG_MLOCK);
778#endif
779 }
780 }
781#else
782 if (skey->mlock_failed == SL_FALSE)
783 {
784 skey->mlock_failed = SL_TRUE;
785#if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE)
786 sh_error_handle ((-1), FIL__, __LINE__, EPERM, MSG_MLOCK);
787#endif
788 }
789#endif
790
791 /* --- Write the start marker. ---
792 */
793
794 if (current->log_start == S_TRUE)
795 {
796#ifdef SH_USE_XML
797#ifdef SH_STEALTH
798 (void) sl_write (fd, "\n", 1);
799 (void) sl_write_line (fd, N_("<trail>"), 7);
800 (void) sl_sync(fd);
801#else
802 (void) sl_write_line (fd, _("\n<trail>"), 8);
803 (void) sl_sync(fd);
804#endif
805#else
806#ifdef SH_STEALTH
807 (void) sl_write (fd, "\n", 1);
808 (void) sl_write_line (fd, N_("[SOF]"), 5);
809 (void) sl_sync(fd);
810#else
811 (void) sl_write_line (fd, _("\n[SOF]"), 6);
812 (void) sl_sync(fd);
813#endif
814#endif
815 }
816
817 /* reserve KEY_LEN chars at end for key
818 */
819 (void) sl_strlcpy (log_msg.msg, errmsg, (size_t) status+1 );
820
821
822#ifdef SH_USE_XML
823 /* cut the trailing "/>"
824 */
825 if (log_msg.msg[status-2] == '/')
826 {
827#ifdef FIX_XML
828 log_msg.msg[status-2] = ' '; /* ' ' FIX XML */
829 log_msg.msg[status-1] = '>'; /* '>' FIX XML */
830#else
831 log_msg.msg[status-2] = '>'; /* ' ' FIX XML */
832 log_msg.msg[status-1] = '<'; /* '>' FIX XML */
833#endif
834 log_msg.msg[status] = '\0';
835 }
836 else if (status >= 6 && log_msg.msg[status-5] == '/' &&
837 log_msg.msg[status-6] == '<')
838 {
839#ifdef FIX_XML
840 log_msg.msg[status-6] = '\0';
841 status -= 6;
842#else
843 log_msg.msg[status-5] = '\0';
844 status -= 5;
845#endif
846 }
847#endif
848
849
850#ifdef SH_STEALTH
851 sh_do_encode (log_msg.msg, status);
852#endif
853
854 if (flag_sep_log == S_TRUE && inet_peer != NULL)
855 {
856 sigkey_old = current->sigkey_old;
857 sigkey_new = current->sigkey_new;
858 crypto = current->crypto;
859 }
860 else
861 {
862 sigkey_old = skey->sigkey_old;
863 sigkey_new = skey->sigkey_new;
864 crypto = skey->crypt; /* flawfinder: ignore */
865 }
866
867 /* write the signature
868 */
869 if (current->log_start == S_TRUE)
870 {
871 if (sh.real.user[0] == '\0')
872 (void) sh_unix_getUser();
873
874 /* Initialize the key.
875 */
876 (void) sh_util_keyinit(sigkey_old, KEY_LEN+1);
877
878 /* Hash the key to make sure it has the correct format.
879 */
880 (void) sl_strlcpy(sigkey_new,
881 sh_tiger_hash (sigkey_old, TIGER_DATA, KEY_LEN,
882 hashbuf, sizeof(hashbuf)),
883 KEY_LEN+1);
884
885 /* Copy it to 'crypt' for encryption.
886 */
887 (void) sl_strlcpy(crypto, sigkey_new, KEY_LEN+1);
888
889 /* Use message and compiled-in key to encrypt.
890 */
891 BREAKEXIT(sh_util_encode);
892 sh_util_encode(crypto, log_msg.msg, 0, 'B');
893
894 /* Send out the key.
895 */
896 (void) sh_unix_time(0, log_msg.timestamp, KEY_LEN+1);
897
898 store1 = errFlags.loglevel;
899 store2 = errFlags.sysloglevel;
900 store3 = errFlags.printlevel;
901 store4 = errFlags.exportlevel;
902 store5 = errFlags.maillevel;
903 store6 = errFlags.externallevel;
904 store7 = errFlags.databaselevel;
905 store8 = errFlags.preludelevel;
906
907 /* mail the key
908 */
909 errFlags.loglevel = SH_ERR_NOT;
910 errFlags.sysloglevel = SH_ERR_NOT;
911 errFlags.printlevel = SH_ERR_NOT;
912 errFlags.exportlevel = SH_ERR_NOT;
913 errFlags.externallevel = SH_ERR_NOT;
914 errFlags.databaselevel = SH_ERR_NOT;
915 errFlags.preludelevel = SH_ERR_NOT;
916
917 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_START_KEY_MAIL,
918 sh.prg_name, crypto,
919 crypto, log_msg.timestamp);
920
921 /* send to other allowed channels
922 */
923 errFlags.maillevel = SH_ERR_NOT;
924 /* errFlags.printlevel = store3; */
925 errFlags.exportlevel = store4;
926 errFlags.externallevel = store6;
927 errFlags.databaselevel = store7;
928 errFlags.preludelevel = store8;
929
930 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_START_KEY,
931 sh.prg_name, crypto);
932
933 /* Cleanup.
934 */
935 errFlags.loglevel = store1;
936 errFlags.sysloglevel = store2;
937 errFlags.printlevel = store3;
938 errFlags.exportlevel = store4;
939 errFlags.maillevel = store5;
940 errFlags.externallevel = store6;
941 errFlags.databaselevel = store7;
942
943
944 memset (crypto, (int) '\0', KEY_LEN);
945 sh.flag.log_start = S_FALSE;
946 current->log_start = S_FALSE;
947 }
948 else
949 {
950 log_msg.timestamp[0] = '\0';
951 (void) sl_strlcpy (sigkey_new,
952 sh_tiger_hash (sigkey_old, TIGER_DATA, KEY_LEN,
953 hashbuf, sizeof(hashbuf)),
954 KEY_LEN+1);
955 }
956
957 /* --- Sign the message with the signature key. ---
958 */
959 sh_tiger_hash (log_msg.msg, TIGER_DATA,
960 (unsigned long)(status + KEY_LEN),
961 (char *) hashbuf, (size_t) sizeof(hashbuf));
962
963 (void) sl_strlcat (log_msg.msg, sigkey_new, (size_t)(status + KEY_LEN + 2));
964 (void) sl_strlcpy (log_msg.signature,
965 sh_tiger_hash (log_msg.msg, (TigerType) TIGER_DATA,
966 (unsigned long)(status + KEY_LEN),
967 hashbuf, sizeof(hashbuf)),
968 KEY_LEN+1);
969 (void) sl_strlcpy (sigkey_old, sigkey_new, KEY_LEN+1);
970
971 /*@-usedef@*/
972#ifdef SH_USE_XML
973 if (log_msg.timestamp[0] != '\0')
974 sl_snprintf(log_msg.sig, sizeof(log_msg.sig),
975#ifdef FIX_XML
976 _("\n<sig>%s%s</sig></log>\n"), /* <sig> FIX XML */
977#else
978 _("\nsig>%s%s</sig></log>\n"), /* <sig> FIX XML */
979#endif
980 log_msg.signature, log_msg.timestamp);
981 else
982 sl_snprintf(log_msg.sig, sizeof(log_msg.sig),
983#ifdef FIX_XML
984 _("\n<sig>%s</sig></log>\n"), /* <sig> FIX XML */
985#else
986 _("\nsig>%s</sig></log>\n"), /* <sig> FIX XML */
987#endif
988 log_msg.signature);
989 /*@+usedef@*/
990
991#ifdef SH_STEALTH
992 /* don't encode the line breaks (0 + last char)
993 */
994 sh_do_encode (&log_msg.sig[1], (sl_strlen(log_msg.sig)-2) );
995#endif
996#else
997#ifdef SH_STEALTH
998 sh_do_encode (log_msg.signature, KEY_LEN);
999 sh_do_encode (log_msg.timestamp, sl_strlen(log_msg.timestamp));
1000#endif
1001#endif
1002
1003#ifdef SH_USE_XML
1004 log_msg.msg[status] = '\0';
1005 (void) sl_strlcat (log_msg.msg, log_msg.sig,
1006 (size_t)(status + 2*KEY_LEN + 32));
1007#ifdef SH_STEALTH
1008 if (NULL != sl_strstr(log_msg.msg, N_("EXIT")) &&
1009 NULL == sl_strstr(log_msg.msg, N_("remote_host")))
1010 {
1011 (void) sl_strlcat (log_msg.msg, N_("</trail>"),
1012 (size_t)(status + 2*KEY_LEN + 32));
1013#else
1014 if (NULL != sl_strstr(log_msg.msg, _("msg=\"EXIT\"")) &&
1015 NULL == sl_strstr(log_msg.msg, _("remote_host")))
1016 {
1017 (void) sl_strlcat (log_msg.msg, _("</trail>"),
1018 (size_t)(status + 2*KEY_LEN + 32));
1019#endif
1020
1021 (void) sl_strlcat (log_msg.msg, _("\n"),
1022 (size_t)(status + 2*KEY_LEN + 32));
1023 current->log_start = S_TRUE;
1024 }
1025#else
1026 log_msg.msg[status] = '\0';
1027 (void) sl_strlcat (log_msg.msg, "\n",
1028 (size_t)(status + KEY_LEN + 2));
1029 (void) sl_strlcat (log_msg.msg, log_msg.signature,
1030 (size_t)(status + KEY_LEN + 2));
1031 if (log_msg.timestamp[0] != '\0')
1032 (void) sl_strlcat (log_msg.msg, log_msg.timestamp,
1033 (size_t)(status + 2*KEY_LEN + 2));
1034 (void) sl_strlcat (log_msg.msg, "\n",
1035 (size_t)(status + 2*KEY_LEN + 3));
1036#endif
1037
1038 /* --- Write out the record. ---
1039 */
1040 (void) sl_write (fd, log_msg.msg, (long) strlen(log_msg.msg));
1041 (void) sl_sync (fd);
1042 (void) sl_close (fd);
1043
1044 /* --- Clean up and free record. ---
1045 */
1046 memset (log_msg.msg, (int)'\0', (size_t)(status + 2*KEY_LEN + 32));
1047 memset (log_msg.signature, (int)'\0', KEY_LEN);
1048 (void) sh_unix_munlock (log_msg.msg,
1049 (size_t)(status + 2*KEY_LEN + 32));
1050 SH_FREE(log_msg.msg);
1051
1052 SL_RETURN (0, _("sh_log_file"));
1053}
1054
Note: See TracBrowser for help on using the repository browser.