source: trunk/src/sh_entropy.c@ 173

Last change on this file since 173 was 171, checked in by katerina, 16 years ago

Include dnmalloc (ticket #108) and fix bugs #106 (EINPROGRESS) and #107 (compressBound).

File size: 22.3 KB
Line 
1/* SAMHAIN file system integrity testing */
2/* Copyright (C) 1999, 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
21#include "config_xor.h"
22
23#include <stdio.h>
24#include <string.h>
25
26#include <sys/types.h>
27
28#ifdef HAVE_MEMORY_H
29#include <memory.h>
30#endif
31
32#if TIME_WITH_SYS_TIME
33#include <sys/time.h>
34#include <time.h>
35#else
36#if HAVE_SYS_TIME_H
37#include <sys/time.h>
38#else
39#include <time.h>
40#endif
41#endif
42
43
44#include <stdlib.h>
45#include <pwd.h>
46#include <unistd.h>
47#include <fcntl.h>
48#include <signal.h>
49#include <sys/stat.h>
50#include <errno.h>
51#include <sys/wait.h>
52
53
54#ifdef HAVE_SYS_SELECT_H
55#include <sys/select.h>
56#endif
57#include <sys/types.h>
58
59
60
61#include "samhain.h"
62#include "sh_utils.h"
63#include "sh_unix.h"
64#include "sh_tiger.h"
65#include "sh_calls.h"
66
67#undef FIL__
68#define FIL__ _("sh_entropy.c")
69
70#if defined (HAVE_EGD_RANDOM)
71/* rndegd.c - interface to the EGD
72 * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
73 */
74#include <stddef.h>
75#include <sys/socket.h>
76#include <sys/un.h>
77
78static int
79do_write( int fd, void *buf, size_t nbytes )
80{
81 size_t nleft = nbytes;
82 int nwritten;
83
84 while( nleft > 0 ) {
85 nwritten = write( fd, buf, nleft);
86 if( nwritten < 0 ) {
87 if( errno == EINTR )
88 continue;
89 return -1;
90 }
91 nleft -= nwritten;
92 buf = (char*)buf + nwritten;
93 }
94 return 0;
95}
96
97static int
98do_read( int fd, void *buf, int nbytes )
99{
100 int n, nread = 0;
101
102 if (nbytes < 0)
103 return 0;
104
105 do {
106 do {
107 n = read(fd, (char*)buf + nread, nbytes );
108 } while( n == -1 && errno == EINTR );
109 if( n == -1 )
110 return -1;
111 nread += n;
112 } while( nread < nbytes );
113 return nbytes;
114}
115
116
117int sh_entropy(int getbytes, char * nbuf)
118{
119 int fd = -1;
120 int n;
121 byte buffer[256+2];
122 int nbytes;
123 int do_restart = 0;
124 int myerror = 0;
125 int length;
126 char * p = nbuf;
127 int i;
128
129 SL_ENTER(_("sh_entropy"));
130
131 if( getbytes <= 0)
132 SL_RETURN( -1, _("sh_entropy"));
133 if (getbytes > KEY_BYT)
134 getbytes = KEY_BYT;
135 length = getbytes;
136
137 restart:
138 if( do_restart ) {
139 if( fd != -1 ) {
140 close( fd );
141 fd = -1;
142 }
143 }
144 if( fd == -1 ) {
145 const char *bname = NULL;
146 char *name;
147 struct sockaddr_un addr;
148 int addr_len;
149 int retval;
150
151#ifdef EGD_SOCKET_NAME
152 bname = EGD_SOCKET_NAME;
153#endif
154 if ( !bname || !*bname )
155 bname = _("=entropy");
156
157 if ( *bname == '=' && bname[1] )
158 name = sh_util_strconcat ( DEFAULT_DATAROOT, "/", bname+1 , NULL );
159 else
160 name = sh_util_strconcat ( bname , NULL );
161
162 if ( strlen(name)+1 >= sizeof(addr.sun_path) )
163 {
164 sh_error_handle ((-1), FIL__, __LINE__, ENAMETOOLONG, MSG_E_SUBGEN,
165 _("EGD socketname is too long"),
166 _("sh_entropy") );
167 SH_FREE(name);
168 SL_RETURN( -1, _("sh_entropy") );
169 }
170
171 memset( &addr, 0, sizeof(addr) );
172 addr.sun_family = AF_UNIX;
173 sl_strlcpy( addr.sun_path, name, sizeof(addr.sun_path) );
174 addr_len = offsetof( struct sockaddr_un, sun_path )
175 + strlen( addr.sun_path );
176
177 fd = socket(AF_UNIX, SOCK_STREAM, 0);
178 if( fd == -1 )
179 {
180 myerror = errno;
181 sh_error_handle ((-1), FIL__, __LINE__, myerror, MSG_E_SUBGEN,
182 _("cannot create unix domain socket"),
183 _("sh_entropy") );
184 SH_FREE(name);
185 SL_RETURN( -1, _("sh_entropy") );
186 }
187 do {
188 retval = connect(fd, (struct sockaddr *) &sinr, sizeof(sinr));
189 } while (retval < 0 && (errno == EINTR || errno == EINPROGRESS));
190 if( retval == -1 )
191 {
192 myerror = errno;
193 sh_error_handle ((-1), FIL__, __LINE__, myerror, MSG_E_SUBGEN,
194 _("cannot connect to unix domain socket"),
195 _("sh_entropy") );
196 SH_FREE(name);
197 close(fd);
198 SL_RETURN( -1, _("sh_entropy") );
199 }
200 SH_FREE(name);
201 }
202 do_restart = 0;
203
204 nbytes = length < 255? length : 255;
205 /* first time we do it with a non blocking request */
206 buffer[0] = 1; /* non blocking */
207 buffer[1] = nbytes;
208 if( do_write( fd, buffer, 2 ) == -1 )
209 {
210 myerror = errno;
211 sh_error_handle ((-1), FIL__, __LINE__, myerror, MSG_E_SUBGEN,
212 _("cannot write to EGD"),
213 _("sh_entropy") );
214 close(fd);
215 SL_RETURN( -1, _("sh_entropy") );
216 }
217 n = do_read( fd, buffer, 1 );
218 if( n == -1 ) {
219 myerror = errno;
220 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, myerror, MSG_E_SUBGEN,
221 _("read error on EGD"),
222 _("sh_entropy") );
223 do_restart = 1;
224 goto restart;
225 }
226 n = buffer[0];
227 if( n ) {
228 n = do_read( fd, buffer, n );
229 if( n == -1 ) {
230 myerror = errno;
231 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, myerror,MSG_E_SUBGEN,
232 _("read error on EGD"),
233 _("sh_entropy") );
234 do_restart = 1;
235 goto restart;
236 }
237 for (i = 0; i < n; ++i)
238 {
239 if (getbytes >= 0)
240 { *p = buffer[i]; ++p; --getbytes; }
241 }
242 length -= n;
243 }
244
245 while( length ) {
246 nbytes = length < 255? length : 255;
247
248 buffer[0] = 2; /* blocking */
249 buffer[1] = nbytes;
250 if( do_write( fd, buffer, 2 ) == -1 )
251 {
252 myerror = errno;
253 sh_error_handle ((-1), FIL__, __LINE__, myerror, MSG_E_SUBGEN,
254 _("cannot write to EGD"),
255 _("sh_entropy") );
256 close(fd);
257 SL_RETURN( -1, _("sh_entropy") );
258 }
259 n = do_read( fd, buffer, nbytes );
260 if( n == -1 ) {
261 myerror = errno;
262 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, myerror,MSG_E_SUBGEN,
263 _("read error on EGD"),
264 _("sh_entropy") );
265 do_restart = 1;
266 goto restart;
267 }
268 for (i = 0; i < n; ++i)
269 {
270 if (getbytes >= 0)
271 { *p = buffer[i]; ++p; --getbytes; }
272 }
273 length -= n;
274 }
275 memset(buffer, 0, sizeof(buffer) );
276 close(fd);
277 SL_RETURN( 0, _("sh_entropy") ); /* success */
278}
279
280/* HAVE_EGD_RANDOM */
281#endif
282
283#if defined (HAVE_URANDOM)
284
285#include "sh_pthread.h"
286
287int read_mbytes(int timeout_val, const char * path, char * nbuf, int nbytes)
288{
289 int m_count;
290 int fd2;
291
292 SL_ENTER(_("read_mbytes"));
293
294 if ((fd2 = aud_open (FIL__, __LINE__, SL_NOPRIV, path, O_RDONLY, 0)) >= 0)
295 {
296 /* Test whether file is a character device, and is
297 * readable.
298 */
299 if (0 == sh_unix_device_readable(fd2))
300 {
301 m_count = sl_read_timeout_fd(fd2, nbuf, nbytes,
302 timeout_val, SL_FALSE);
303 if (m_count < 0)
304 m_count = 0;
305 }
306 else
307 m_count = 0;
308 }
309 else
310 m_count = 0;
311
312 close(fd2);
313
314 TPT((0, FIL__, __LINE__, _("msg=<read_mbytes: OK>\n")));
315 SL_RETURN(m_count, _("read_mbytes"));
316}
317
318/* Read nbytes bytes from /dev/random, mix them with
319 * previous reads using a hash function, and give out
320 * nbytes bytes from the result.
321 */
322int sh_entropy(int nbytes, char * nbuf)
323{
324 int i, m_count = 0;
325 char * keybuf;
326 UINT32 kbuf[KEY_BYT/sizeof(UINT32)];
327 char addbuf[2 * KEY_BYT];
328
329 SL_ENTER(_("sh_entropy"));
330
331 ASSERT((nbytes <= KEY_BYT), _("nbytes <= KEY_BYT"))
332
333 if (nbytes > KEY_BYT)
334 nbytes = KEY_BYT;
335
336 memset(nbuf, '\0', nbytes);
337
338#ifdef NAME_OF_DEV_URANDOM
339 m_count = read_mbytes ( 1, NAME_OF_DEV_RANDOM, nbuf, nbytes);
340#else
341 m_count = read_mbytes (300, NAME_OF_DEV_RANDOM, nbuf, nbytes);
342#endif
343
344 if (m_count == 0)
345 {
346#ifdef NAME_OF_DEV_URANDOM
347 sh_error_handle (SH_ERR_NOTICE, FIL__, __LINE__, EIO, MSG_NODEV,
348 (long) sh.real.uid, NAME_OF_DEV_RANDOM);
349#else
350 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_NODEV,
351 (long) sh.real.uid, NAME_OF_DEV_RANDOM);
352#endif
353 }
354
355#ifdef NAME_OF_DEV_URANDOM
356 if (m_count < nbytes)
357 {
358 i = read_mbytes(30, NAME_OF_DEV_URANDOM, &nbuf[m_count], nbytes-m_count);
359 if (i == 0)
360 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_NODEV,
361 (long) sh.real.uid, NAME_OF_DEV_URANDOM);
362 else
363 m_count += i;
364 }
365#endif
366
367
368 if (m_count > 0)
369 {
370 /* -- Add previous entropy into the new pool. --
371 */
372 memset(addbuf, '\0', sizeof(addbuf));
373 for (i = 0; i < m_count; ++i)
374 addbuf[i] = nbuf[i];
375 for (i = 0; i < KEY_BYT; ++i)
376 addbuf[i+KEY_BYT] = skey->poolv[i];
377 keybuf = (char *) sh_tiger_hash_uint32 (addbuf,
378 TIGER_DATA, 2 * KEY_BYT,
379 kbuf, KEY_BYT/sizeof(UINT32));
380 memset(addbuf, '\0', sizeof(addbuf));
381
382 /* -- Give out nbytes bytes from the new pool. --
383 */
384 SH_MUTEX_LOCK_UNSAFE(mutex_skey);
385 for (i = 0; i < KEY_BYT; ++i)
386 {
387 skey->poolv[i] = keybuf[i];
388 if (i < nbytes)
389 nbuf[i] = keybuf[i];
390 }
391 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
392 memset (keybuf, '\0', KEY_BYT);
393 memset (kbuf, '\0', sizeof(kbuf));
394
395 SL_RETURN(0, _("sh_entropy"));
396 }
397 else
398 {
399 SL_RETURN((-1), _("sh_entropy"));
400 }
401}
402
403/* HAVE_URANDOM */
404#endif
405
406#ifdef HAVE_UNIX_RANDOM
407
408#ifndef FD_SET
409#define NFDBITS 32
410#define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
411#define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
412#define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
413#endif /* !FD_SET */
414#ifndef FD_SETSIZE
415#define FD_SETSIZE 32
416#endif
417#ifndef FD_ZERO
418#define FD_ZERO(p) memset((char *)(p), '\0', sizeof(*(p)))
419#endif
420
421#include "sh_static.h"
422#include "sh_pthread.h"
423
424static
425char * com_path[] = {
426 N_("/usr/bin/xpg4/"),
427 N_("/usr/ucb/"),
428 N_("/bin/"),
429 N_("/sbin/"),
430 N_("/usr/bin/"),
431 N_("/usr/sbin/"),
432 N_("/usr/local/bin/"),
433 NULL
434};
435
436
437typedef struct {
438 char * command;
439 char * arg;
440 int pipeFD;
441 pid_t pid;
442 int isset;
443 FILE * pipe;
444} sourcetable_t;
445
446static
447sourcetable_t source_template[] = {
448 { N_("w"),
449 N_("w"),
450 0,
451 0,
452 0,
453 NULL },
454 { N_("netstat"),
455 N_("netstat -n"),
456 0,
457 0,
458 0,
459 NULL },
460 { N_("ps"),
461 N_("ps -ef"),
462 0,
463 0,
464 0,
465 NULL },
466 { N_("arp"),
467 N_("arp -a"),
468 0,
469 0,
470 0,
471 NULL },
472 { N_("free"),
473 N_("free"),
474 0,
475 0,
476 0,
477 NULL },
478 { N_("uptime"),
479 N_("uptime"),
480 0,
481 0,
482 0,
483 NULL },
484 { N_("procinfo"),
485 N_("procinfo -a"),
486 0,
487 0,
488 0,
489 NULL },
490 { N_("vmstat"),
491 N_("vmstat"),
492 0,
493 0,
494 0,
495 NULL },
496 { N_("w"), /* Play it again, Sam. */
497 N_("w"),
498 0,
499 0,
500 0,
501 NULL },
502 { NULL,
503 NULL,
504 0,
505 0,
506 0,
507 NULL }
508};
509
510
511static FILE * sh_popen (sourcetable_t *source, char * command)
512{
513 int i;
514 int pipedes[2];
515 FILE *outf = NULL;
516 char * arg[4];
517 char * envp[2];
518 size_t len;
519 char arg0[80];
520 char arg1[80];
521
522 SL_ENTER(_("sh_popen"));
523
524 strncpy (arg0, _("/bin/sh"), sizeof(arg0));
525 arg[0] = arg0;
526 strncpy (arg1, _("-c"), sizeof(arg1));
527 arg[1] = arg1;
528 arg[2] = command;
529 arg[3] = NULL;
530
531 if (sh.timezone != NULL)
532 {
533 len = sl_strlen(sh.timezone) + 4;
534 envp[0] = malloc (len); /* free() ok */
535 if (envp[0] != NULL)
536 sl_snprintf (envp[0], len, "TZ=%s", sh.timezone);
537 else
538 envp[0] = NULL;
539 envp[1] = NULL;
540 }
541 else
542 {
543 envp[0] = NULL;
544 }
545
546
547 /* Create the pipe
548 */
549 if (aud_pipe(FIL__, __LINE__, pipedes) < 0) {
550 if (envp[0] != NULL) free(envp[0]);
551 SL_RETURN(NULL, _("sh_popen"));
552 }
553
554 fflush (NULL);
555
556 source->pid = aud_fork(FIL__, __LINE__);
557
558 /* Failure
559 */
560 if (source->pid == (pid_t) - 1) {
561 close(pipedes[0]);
562 close(pipedes[1]);
563 if (envp[0] != NULL) free(envp[0]);
564 SL_RETURN(NULL, _("sh_popen"));
565 }
566
567 if (source->pid == (pid_t) 0)
568 {
569
570 /* child - make read side of the pipe stdout
571 */
572 if (retry_aud_dup2(FIL__, __LINE__,
573 pipedes[STDOUT_FILENO], STDOUT_FILENO) < 0)
574 aud__exit(FIL__, __LINE__, EXIT_FAILURE);
575
576 /* close the pipe descriptors
577 */
578 close (pipedes[STDIN_FILENO]);
579 close (pipedes[STDOUT_FILENO]);
580
581 /* don't leak file descriptors
582 */
583 sh_unix_closeall (3, -1); /* in child process */
584
585 /* zero priv info
586 */
587 memset(skey, 0, sizeof(sh_key_t));
588
589 /* drop root privileges
590 */
591 i = 0;
592 if (0 == geteuid())
593 {
594#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
595 struct passwd pwd;
596 char buffer[SH_PWBUF_SIZE];
597 struct passwd * tempres;
598 sh_getpwnam_r(DEFAULT_IDENT, &pwd, buffer, sizeof(buffer), &tempres);
599#else
600 struct passwd * tempres = sh_getpwnam(DEFAULT_IDENT);
601#endif
602
603 if (NULL != tempres) {
604 i = aud_setgid(FIL__, __LINE__, tempres->pw_gid);
605 if (i == 0)
606 i = sh_unix_initgroups(DEFAULT_IDENT ,tempres->pw_gid);
607 if (i == 0)
608 i = aud_setuid(FIL__, __LINE__, tempres->pw_uid);
609 /* make sure we cannot get root again
610 */
611 if ((tempres->pw_uid != 0) && (aud_setuid(FIL__, __LINE__, 0) >= 0))
612 i = -1;
613 } else {
614 i = -1;
615 }
616 }
617
618 /* some problem ...
619 */
620 if (i == -1) {
621 aud__exit(FIL__, __LINE__, EXIT_FAILURE);
622 }
623
624 if (NULL != freopen (_("/dev/null"), "r+", stderr))
625 {
626
627 /* exec the program */
628 retry_aud_execve (FIL__, __LINE__, _("/bin/sh"), arg, envp);
629 }
630
631 /* failed
632 */
633 aud__exit(FIL__, __LINE__, EXIT_FAILURE);
634 }
635
636 /* parent
637 */
638 if (envp[0] != NULL)
639 free(envp[0]);
640
641 close (pipedes[STDOUT_FILENO]);
642 retry_fcntl (FIL__, __LINE__, pipedes[STDIN_FILENO], F_SETFD, FD_CLOEXEC);
643
644 outf = fdopen (pipedes[STDIN_FILENO], "r");
645
646 if (outf == NULL)
647 {
648 aud_kill (FIL__, __LINE__, source->pid, SIGKILL);
649 close (pipedes[STDOUT_FILENO]);
650 waitpid (source->pid, NULL, 0);
651 source->pid = 0;
652 SL_RETURN(NULL, _("sh_popen"));
653 }
654
655 SL_RETURN(outf, _("sh_popen"));
656}
657
658
659static int sh_pclose (sourcetable_t *source)
660{
661 int status = 0;
662 int retval;
663 char msg[128];
664 char errbuf[SH_ERRBUF_SIZE];
665
666 SL_ENTER(_("sh_pclose"));
667
668 retval = fclose(source->pipe);
669 if (retval)
670 {
671 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, retval,
672 MSG_E_SUBGEN,
673 sh_error_message(retval, errbuf, sizeof(errbuf)),
674 _("sh_pclose"));
675 SL_RETURN((-1), _("sh_pclose"));
676 }
677
678 retval = waitpid(source->pid, &status, 0);
679 if (retval != source->pid)
680 {
681 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, retval,
682 MSG_E_SUBGEN,
683 sh_error_message(retval, errbuf, sizeof(errbuf)),
684 _("sh_pclose"));
685
686 status = -1;
687 }
688#if !defined(USE_UNO)
689 else if (WIFSIGNALED(status))
690 {
691 sl_snprintf(msg, sizeof(msg), _("Subprocess terminated by signal %d"),
692 WTERMSIG(status));
693 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, retval,
694 MSG_E_SUBGEN,
695 msg,
696 _("sh_pclose"));
697 status = -1;
698 }
699#endif
700
701 source->pipe = NULL;
702 source->pid = 0;
703 SL_RETURN(status, _("sh_pclose"));
704}
705
706#define BUF_ENT 32766
707
708/* Poll the system for randomness, mix results with
709 * previous reads using a hash function, and give out
710 * nbytes bytes from the result.
711 */
712int sh_entropy(int nbytes, char * nbuf)
713{
714 int caperr;
715 char combuf[80];
716 char * buffer;
717 int i, j, icount;
718 int bufcount = 0;
719 int count;
720
721 char * keybuf;
722 UINT32 kbuf[KEY_BYT/sizeof(UINT32)];
723 char addbuf[2 * KEY_BYT];
724
725 struct timeval tv;
726 fd_set fds;
727 unsigned long select_now = 0;
728 int maxFD = 0;
729 int imax, selcount;
730 char errbuf[SH_ERRBUF_SIZE];
731
732 sourcetable_t *source = NULL;
733
734 SL_ENTER(_("sh_entropy"));
735
736 ASSERT((nbytes <= KEY_BYT), _("nbytes <= KEY_BYT"))
737
738 if (nbytes > KEY_BYT)
739 nbytes = KEY_BYT;
740
741
742 /* --- If there is entropy in the pool, return it. ---
743 */
744 SH_MUTEX_LOCK_UNSAFE(mutex_skey);
745 if (skey->poolc >= nbytes)
746 {
747 j = KEY_BYT - skey->poolc;
748 for (i = 0; i < nbytes; ++i)
749 {
750 nbuf[i] = skey->poolv[i+j];
751 --skey->poolc;
752 }
753 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey); /* alternative path */
754 SL_RETURN(0, _("sh_entropy"));
755 }
756 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
757
758
759 FD_ZERO(&fds);
760
761 i = 0; icount = 0;
762 buffer = SH_ALLOC(BUF_ENT+2);
763
764 if (0 != (caperr = sl_get_cap_sub()))
765 {
766 sh_error_handle((-1), FIL__, __LINE__, caperr, MSG_E_SUBGEN,
767 sh_error_message (caperr, errbuf, sizeof(errbuf)),
768 _("sl_get_cap_sub"));
769 }
770
771 while (source_template[i].command != NULL) {
772 ++i;
773 }
774 source = SH_ALLOC(i * sizeof(sourcetable_t));
775 for (j = 0; j < i;++j)
776 memcpy(&source[j], &source_template[j], sizeof(sourcetable_t));
777 i = 0;
778
779 while (source_template[i].command != NULL) {
780
781 j = 0;
782 while (com_path[j] != NULL)
783 {
784 sl_strlcpy(combuf, _(com_path[j]), 80);
785 sl_strlcat(combuf, _(source[i].command), 80);
786
787 /* flawfinder: ignore */
788 if ( access (combuf, X_OK) == 0)
789 {
790 sl_strlcpy(combuf, _(com_path[j]), 80);
791 sl_strlcat(combuf, _(source[i].arg), 80);
792 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENSTART,
793 combuf);
794 break;
795 }
796 ++j;
797 }
798
799 /* Not found, try next command.
800 */
801 if (com_path[j] == NULL)
802 {
803 ++i;
804 continue;
805 }
806
807 /* Source exists
808 */
809 source[i].pipe = sh_popen ( &source[i], combuf );
810 if (NULL != source[i].pipe)
811 {
812 source[i].pipeFD = fileno ( source[i].pipe );
813 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENEXEC,
814 combuf, (long) source[i].pipeFD);
815
816 maxFD = (source[i].pipeFD > maxFD) ? source[i].pipeFD : maxFD;
817 retry_fcntl( FIL__, __LINE__, source[i].pipeFD, F_SETFL, O_NONBLOCK);
818 FD_SET( source[i].pipeFD, &fds );
819 source[i].isset = 1;
820 ++icount;
821 }
822 else
823 {
824 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_ENFAIL,
825 combuf);
826 }
827
828 ++i;
829 }
830
831 imax = i;
832 tv.tv_sec = 1;
833 tv.tv_usec = 0;
834 bufcount = 0;
835
836 while ( (icount > 0) && (bufcount < BUF_ENT) ) {
837
838 if ( (selcount = select (maxFD+1, &fds, NULL, NULL, &tv)) == -1)
839 break;
840
841 /* reset timeout for select()
842 */
843 tv.tv_sec = 1;
844 tv.tv_usec = 0;
845
846 /* timeout - let's not hang on forever
847 */
848 if (selcount == 0)
849 {
850 ++select_now;
851 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENTOUT,
852 (unsigned long) select_now);
853 if ( select_now > 9 )
854 break;
855 }
856
857 for (i = 0; i < imax; ++i) {
858
859 if ( FD_ISSET (source[i].pipeFD, &fds) ) {
860 count = fread (&buffer[bufcount],
861 1,
862 BUF_ENT-bufcount,
863 source[i].pipe );
864 if (count == 0)
865 {
866 if (0 != feof(source[i].pipe))
867 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_ENCLOS,
868 (long) source[i].pipeFD);
869 else
870 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_ENCLOS1,
871 (long) source[i].pipeFD);
872 source[i].isset = 0;
873 sh_pclose ( &source[i] );
874 --icount;
875 }
876 else
877 {
878 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENREAD,
879 (long) source[i].pipeFD, (long) count);
880 }
881 bufcount += count;
882
883 }
884 }
885
886 maxFD = 0;
887 FD_ZERO(&fds);
888
889 for (i = 0; i < imax; ++i)
890 {
891 if (source[i].isset == 1)
892 {
893 FD_SET( source[i].pipeFD, &fds );
894 maxFD = (source[i].pipeFD > maxFD) ? source[i].pipeFD : maxFD;
895 }
896 }
897 }
898
899 for (i = 0; i < imax; ++i)
900 {
901 if (source[i].isset == 1)
902 {
903 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENCLOS1,
904 (long) source[i].pipeFD);
905 sh_pclose ( &source[i] );
906 }
907 }
908 buffer[bufcount] = '\0';
909
910 SH_FREE(source);
911
912 if (0 != (caperr = sl_drop_cap_sub()))
913 {
914 sh_error_handle((-1), FIL__, __LINE__, caperr, MSG_E_SUBGEN,
915 sh_error_message (caperr, errbuf, sizeof(errbuf)),
916 _("sl_drop_cap_sub"));
917 }
918
919 if (bufcount > 0)
920 {
921 keybuf = (char *) sh_tiger_hash_uint32 (buffer,
922 TIGER_DATA, sl_strlen(buffer),
923 kbuf, KEY_BYT/sizeof(UINT32));
924
925 /* add previous entropy into the new pool
926 */
927 memset(addbuf, '\0', sizeof(addbuf));
928 for (i = 0; i < KEY_BYT; ++i)
929 {
930 addbuf[i] = keybuf[i];
931 addbuf[i+KEY_BYT] = skey->poolv[i];
932 }
933 keybuf = (char *) sh_tiger_hash_uint32 (addbuf,
934 TIGER_DATA, sizeof(addbuf),
935 kbuf, KEY_BYT/sizeof(UINT32));
936 memset(addbuf, '\0', sizeof(addbuf));
937
938 /* store in system pool
939 */
940 SH_MUTEX_LOCK_UNSAFE(mutex_skey);
941 for (i = 0; i < KEY_BYT; ++i)
942 skey->poolv[i] = keybuf[i];
943 skey->poolc = KEY_BYT;
944 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
945 memset (buffer, '\0', BUF_ENT+2);
946 memset (keybuf, '\0', KEY_BYT);
947 SH_FREE(buffer);
948 }
949 else
950 {
951 SH_FREE(buffer);
952 SL_RETURN((-1), _("sh_entropy"));
953 }
954
955 /* give out nbytes Bytes from the entropy pool
956 */
957 SH_MUTEX_LOCK_UNSAFE(mutex_skey);
958 for (i = 0; i < nbytes; ++i)
959 {
960 nbuf[i] = skey->poolv[i];
961 --skey->poolc;
962 }
963 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
964
965 SL_RETURN(0, _("sh_entropy"));
966}
967
968/* HAVE_UNIX_RANDOM */
969#endif
970
971#ifdef SH_CUTEST
972#include "CuTest.h"
973
974void Test_entropy (CuTest *tc)
975{
976 char bufx[9 * sizeof(UINT32) + 1];
977 char bufy[9 * sizeof(UINT32) + 1];
978 int status;
979
980 memset(skey->poolv, '\0', KEY_BYT);
981
982 status = sh_entropy (24, bufx);
983 CuAssertTrue(tc, 0 == status);
984
985 memset(skey->poolv, '\0', KEY_BYT);
986
987 status = sh_entropy (24, bufy);
988 CuAssertTrue(tc, 0 == status);
989
990 CuAssertTrue(tc, 0 != memcmp(bufx, bufy, 24));
991}
992#endif
993
994
995
996
997
998
999
1000
Note: See TracBrowser for help on using the repository browser.