source: trunk/src/sh_entropy.c@ 323

Last change on this file since 323 was 319, checked in by katerina, 14 years ago

Fix for ticket #239: Mutex in child after fork()

File size: 22.8 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 sl_close_fd(FIL__, __LINE__, 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 sl_close_fd(FIL__, __LINE__, 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 sl_close_fd(FIL__, __LINE__, 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 sl_close_fd(FIL__, __LINE__, 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 sl_close_fd(FIL__, __LINE__, 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 sl_close_fd(FIL__, __LINE__, 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#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
523 struct passwd pwd;
524 char * buffer;
525 struct passwd * tempres;
526#else
527 struct passwd * tempres;
528#endif
529
530 SL_ENTER(_("sh_popen"));
531
532#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
533 buffer = SH_ALLOC(SH_PWBUF_SIZE);
534 sh_getpwnam_r(DEFAULT_IDENT, &pwd, buffer, SH_PWBUF_SIZE, &tempres);
535#else
536 tempres = sh_getpwnam(DEFAULT_IDENT);
537#endif
538
539 strncpy (arg0, _("/bin/sh"), sizeof(arg0));
540 arg[0] = arg0;
541 strncpy (arg1, _("-c"), sizeof(arg1));
542 arg[1] = arg1;
543 arg[2] = command;
544 arg[3] = NULL;
545
546 if (sh.timezone != NULL)
547 {
548 len = sl_strlen(sh.timezone) + 4;
549 envp[0] = malloc (len); /* free() ok */
550 if (envp[0] != NULL)
551 sl_snprintf (envp[0], len, "TZ=%s", sh.timezone);
552 else
553 envp[0] = NULL;
554 envp[1] = NULL;
555 }
556 else
557 {
558 envp[0] = NULL;
559 }
560
561
562 /* Create the pipe
563 */
564 if (aud_pipe(FIL__, __LINE__, pipedes) < 0) {
565 if (envp[0] != NULL) free(envp[0]);
566 SL_RETURN(NULL, _("sh_popen"));
567 }
568
569 fflush (NULL);
570
571 source->pid = aud_fork(FIL__, __LINE__);
572
573 /* Failure
574 */
575 if (source->pid == (pid_t) - 1) {
576 sl_close_fd(FIL__, __LINE__, pipedes[0]);
577 sl_close_fd(FIL__, __LINE__, pipedes[1]);
578 if (envp[0] != NULL) free(envp[0]);
579 SL_RETURN(NULL, _("sh_popen"));
580 }
581
582 if (source->pid == (pid_t) 0)
583 {
584 int val_return;
585
586 /* child - make read side of the pipe stdout
587 */
588 do {
589 val_return = dup2 (pipedes[STDOUT_FILENO], STDOUT_FILENO);
590 } while (val_return < 0 && errno == EINTR);
591
592 if (val_return < 0)
593 _exit(EXIT_FAILURE);
594
595 /* close the pipe descriptors
596 */
597 sl_close_fd (FIL__, __LINE__, pipedes[STDIN_FILENO]);
598 sl_close_fd (FIL__, __LINE__, pipedes[STDOUT_FILENO]);
599
600 /* don't leak file descriptors
601 */
602 sh_unix_closeall (3, -1, SL_TRUE); /* in child process */
603
604 /* zero priv info
605 */
606 memset(skey, 0, sizeof(sh_key_t));
607
608 /* drop root privileges
609 */
610 i = 0;
611 if (0 == geteuid())
612 {
613
614 if (NULL != tempres) {
615 i = setgid(tempres->pw_gid);
616 if (i == 0)
617 i = sh_unix_initgroups(DEFAULT_IDENT ,tempres->pw_gid);
618 if (i == 0)
619 i = setuid(tempres->pw_uid);
620 /* make sure we cannot get root again
621 */
622 if ((tempres->pw_uid != 0) &&
623 (setuid(0) >= 0))
624 i = -1;
625 } else {
626 i = -1;
627 }
628 }
629
630 /* some problem ...
631 */
632 if (i == -1) {
633 _exit(EXIT_FAILURE);
634 }
635
636 if (NULL != freopen (_("/dev/null"), "r+", stderr))
637 {
638
639 /* exec the program */
640 do {
641 val_return = execve (_("/bin/sh"), arg, envp);
642 } while (val_return < 0 && errno == EINTR);
643 }
644
645 /* failed
646 */
647 _exit(EXIT_FAILURE);
648 }
649
650 /* parent
651 */
652#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
653 SH_FREE(buffer);
654#endif
655
656 if (envp[0] != NULL)
657 free(envp[0]);
658
659 sl_close_fd (FIL__, __LINE__, pipedes[STDOUT_FILENO]);
660 retry_fcntl (FIL__, __LINE__, pipedes[STDIN_FILENO], F_SETFD, FD_CLOEXEC);
661
662 outf = fdopen (pipedes[STDIN_FILENO], "r");
663
664 if (outf == NULL)
665 {
666 aud_kill (FIL__, __LINE__, source->pid, SIGKILL);
667 sl_close_fd (FIL__, __LINE__, pipedes[STDOUT_FILENO]);
668 waitpid (source->pid, NULL, 0);
669 source->pid = 0;
670 SL_RETURN(NULL, _("sh_popen"));
671 }
672
673 SL_RETURN(outf, _("sh_popen"));
674}
675
676
677static int sh_pclose (sourcetable_t *source)
678{
679 int status = 0;
680 int retval;
681 char msg[128];
682 char errbuf[SH_ERRBUF_SIZE];
683
684 SL_ENTER(_("sh_pclose"));
685
686 retval = sl_fclose(FIL__, __LINE__, source->pipe);
687 if (retval)
688 {
689 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, retval,
690 MSG_E_SUBGEN,
691 sh_error_message(retval, errbuf, sizeof(errbuf)),
692 _("sh_pclose"));
693 SL_RETURN((-1), _("sh_pclose"));
694 }
695
696 retval = waitpid(source->pid, &status, 0);
697 if (retval != source->pid)
698 {
699 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, retval,
700 MSG_E_SUBGEN,
701 sh_error_message(retval, errbuf, sizeof(errbuf)),
702 _("sh_pclose"));
703
704 status = -1;
705 }
706#if !defined(USE_UNO)
707 else if (WIFSIGNALED(status))
708 {
709 sl_snprintf(msg, sizeof(msg), _("Subprocess terminated by signal %d"),
710 WTERMSIG(status));
711 sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, retval,
712 MSG_E_SUBGEN,
713 msg,
714 _("sh_pclose"));
715 status = -1;
716 }
717#endif
718
719 source->pipe = NULL;
720 source->pid = 0;
721 SL_RETURN(status, _("sh_pclose"));
722}
723
724#define BUF_ENT 32766
725
726/* Poll the system for randomness, mix results with
727 * previous reads using a hash function, and give out
728 * nbytes bytes from the result.
729 */
730int sh_entropy(int nbytes, char * nbuf)
731{
732 int caperr;
733 char combuf[80];
734 char * buffer;
735 int i, j, icount;
736 int bufcount = 0;
737 int count;
738
739 char * keybuf;
740 UINT32 kbuf[KEY_BYT/sizeof(UINT32)];
741 char addbuf[2 * KEY_BYT];
742
743 struct timeval tv;
744 fd_set fds;
745 unsigned long select_now = 0;
746 int maxFD = 0;
747 int imax, selcount;
748 char errbuf[SH_ERRBUF_SIZE];
749
750 sourcetable_t *source = NULL;
751
752 SL_ENTER(_("sh_entropy"));
753
754 ASSERT((nbytes <= KEY_BYT), _("nbytes <= KEY_BYT"))
755
756 if (nbytes > KEY_BYT)
757 nbytes = KEY_BYT;
758
759
760 /* --- If there is entropy in the pool, return it. ---
761 */
762 SH_MUTEX_LOCK_UNSAFE(mutex_skey);
763 if (skey->poolc >= nbytes)
764 {
765 j = KEY_BYT - skey->poolc;
766 for (i = 0; i < nbytes; ++i)
767 {
768 nbuf[i] = skey->poolv[i+j];
769 --skey->poolc;
770 }
771 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey); /* alternative path */
772 SL_RETURN(0, _("sh_entropy"));
773 }
774 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
775
776
777 FD_ZERO(&fds);
778
779 i = 0; icount = 0;
780 buffer = SH_ALLOC(BUF_ENT+2);
781
782 if (0 != (caperr = sl_get_cap_sub()))
783 {
784 sh_error_handle((-1), FIL__, __LINE__, caperr, MSG_E_SUBGEN,
785 sh_error_message (caperr, errbuf, sizeof(errbuf)),
786 _("sl_get_cap_sub"));
787 }
788
789 while (source_template[i].command != NULL) {
790 ++i;
791 }
792 source = SH_ALLOC(i * sizeof(sourcetable_t));
793 for (j = 0; j < i;++j)
794 memcpy(&source[j], &source_template[j], sizeof(sourcetable_t));
795 i = 0;
796
797 while (source_template[i].command != NULL) {
798
799 j = 0;
800 while (com_path[j] != NULL)
801 {
802 sl_strlcpy(combuf, _(com_path[j]), 80);
803 sl_strlcat(combuf, _(source[i].command), 80);
804
805 /* flawfinder: ignore */
806 if ( access (combuf, X_OK) == 0)
807 {
808 sl_strlcpy(combuf, _(com_path[j]), 80);
809 sl_strlcat(combuf, _(source[i].arg), 80);
810 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENSTART,
811 combuf);
812 break;
813 }
814 ++j;
815 }
816
817 /* Not found, try next command.
818 */
819 if (com_path[j] == NULL)
820 {
821 ++i;
822 continue;
823 }
824
825 /* Source exists
826 */
827 source[i].pipe = sh_popen ( &source[i], combuf );
828 if (NULL != source[i].pipe)
829 {
830 source[i].pipeFD = fileno ( source[i].pipe );
831 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENEXEC,
832 combuf, (long) source[i].pipeFD);
833
834 maxFD = (source[i].pipeFD > maxFD) ? source[i].pipeFD : maxFD;
835 retry_fcntl( FIL__, __LINE__, source[i].pipeFD, F_SETFL, O_NONBLOCK);
836 FD_SET( source[i].pipeFD, &fds );
837 source[i].isset = 1;
838 ++icount;
839 }
840 else
841 {
842 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_ENFAIL,
843 combuf);
844 }
845
846 ++i;
847 }
848
849 imax = i;
850 tv.tv_sec = 1;
851 tv.tv_usec = 0;
852 bufcount = 0;
853
854 while ( (icount > 0) && (bufcount < BUF_ENT) ) {
855
856 if ( (selcount = select (maxFD+1, &fds, NULL, NULL, &tv)) == -1)
857 break;
858
859 /* reset timeout for select()
860 */
861 tv.tv_sec = 1;
862 tv.tv_usec = 0;
863
864 /* timeout - let's not hang on forever
865 */
866 if (selcount == 0)
867 {
868 ++select_now;
869 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENTOUT,
870 (unsigned long) select_now);
871 if ( select_now > 9 )
872 break;
873 }
874
875 for (i = 0; i < imax; ++i) {
876
877 if ( FD_ISSET (source[i].pipeFD, &fds) ) {
878 count = fread (&buffer[bufcount],
879 1,
880 BUF_ENT-bufcount,
881 source[i].pipe );
882 if (count == 0)
883 {
884 if (0 != feof(source[i].pipe))
885 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_ENCLOS,
886 (long) source[i].pipeFD);
887 else
888 sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_ENCLOS1,
889 (long) source[i].pipeFD);
890 source[i].isset = 0;
891 sh_pclose ( &source[i] );
892 --icount;
893 }
894 else
895 {
896 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENREAD,
897 (long) source[i].pipeFD, (long) count);
898 }
899 bufcount += count;
900
901 }
902 }
903
904 maxFD = 0;
905 FD_ZERO(&fds);
906
907 for (i = 0; i < imax; ++i)
908 {
909 if (source[i].isset == 1)
910 {
911 FD_SET( source[i].pipeFD, &fds );
912 maxFD = (source[i].pipeFD > maxFD) ? source[i].pipeFD : maxFD;
913 }
914 }
915 }
916
917 for (i = 0; i < imax; ++i)
918 {
919 if (source[i].isset == 1)
920 {
921 sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_ENCLOS1,
922 (long) source[i].pipeFD);
923 sh_pclose ( &source[i] );
924 }
925 }
926 buffer[bufcount] = '\0';
927
928 SH_FREE(source);
929
930 if (0 != (caperr = sl_drop_cap_sub()))
931 {
932 sh_error_handle((-1), FIL__, __LINE__, caperr, MSG_E_SUBGEN,
933 sh_error_message (caperr, errbuf, sizeof(errbuf)),
934 _("sl_drop_cap_sub"));
935 }
936
937 if (bufcount > 0)
938 {
939 keybuf = (char *) sh_tiger_hash_uint32 (buffer,
940 TIGER_DATA, sl_strlen(buffer),
941 kbuf, KEY_BYT/sizeof(UINT32));
942
943 /* add previous entropy into the new pool
944 */
945 memset(addbuf, '\0', sizeof(addbuf));
946 for (i = 0; i < KEY_BYT; ++i)
947 {
948 addbuf[i] = keybuf[i];
949 addbuf[i+KEY_BYT] = skey->poolv[i];
950 }
951 keybuf = (char *) sh_tiger_hash_uint32 (addbuf,
952 TIGER_DATA, sizeof(addbuf),
953 kbuf, KEY_BYT/sizeof(UINT32));
954 memset(addbuf, '\0', sizeof(addbuf));
955
956 /* store in system pool
957 */
958 SH_MUTEX_LOCK_UNSAFE(mutex_skey);
959 for (i = 0; i < KEY_BYT; ++i)
960 skey->poolv[i] = keybuf[i];
961 skey->poolc = KEY_BYT;
962 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
963 memset (buffer, '\0', BUF_ENT+2);
964 memset (keybuf, '\0', KEY_BYT);
965 SH_FREE(buffer);
966 }
967 else
968 {
969 SH_FREE(buffer);
970 SL_RETURN((-1), _("sh_entropy"));
971 }
972
973 /* give out nbytes Bytes from the entropy pool
974 */
975 SH_MUTEX_LOCK_UNSAFE(mutex_skey);
976 for (i = 0; i < nbytes; ++i)
977 {
978 nbuf[i] = skey->poolv[i];
979 --skey->poolc;
980 }
981 SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
982
983 SL_RETURN(0, _("sh_entropy"));
984}
985
986/* HAVE_UNIX_RANDOM */
987#endif
988
989#ifdef SH_CUTEST
990#include "CuTest.h"
991
992void Test_entropy (CuTest *tc)
993{
994 char bufx[9 * sizeof(UINT32) + 1];
995 char bufy[9 * sizeof(UINT32) + 1];
996 int status;
997
998 memset(skey->poolv, '\0', KEY_BYT);
999
1000 status = sh_entropy (24, bufx);
1001 CuAssertTrue(tc, 0 == status);
1002
1003 memset(skey->poolv, '\0', KEY_BYT);
1004
1005 status = sh_entropy (24, bufy);
1006 CuAssertTrue(tc, 0 == status);
1007
1008 CuAssertTrue(tc, 0 != memcmp(bufx, bufy, 24));
1009}
1010#endif
1011
1012
1013
1014
1015
1016
1017
1018
Note: See TracBrowser for help on using the repository browser.