Merge from vendor branch OPENSSH:
[dragonfly.git] / games / random / random.c
1 /*
2  * Copyright (c) 1994
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Guy Harris at Network Appliance Corp.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  * @(#) Copyright (c) 1994 The Regents of the University of California.  All rights reserved.
37  * @(#)random.c 8.5 (Berkeley) 4/5/94
38  * $FreeBSD: src/games/random/random.c,v 1.11.2.1 2003/02/15 10:34:35 seanc Exp $
39  * $DragonFly: src/games/random/random.c,v 1.2 2003/06/17 04:25:24 dillon Exp $
40  */
41
42 #include <sys/types.h>
43
44 #include <err.h>
45 #include <errno.h>
46 #include <fcntl.h>
47 #include <limits.h>
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <string.h>
51 #include <time.h>
52 #include <unistd.h>
53
54 #include "randomize_fd.h"
55
56 static void usage(void);
57
58 int
59 main(int argc, char *argv[])
60 {
61         double denom;
62         int ch, fd, random_exit, randomize_lines, random_type, ret,
63                 selected, unique_output, unbuffer_output;
64         char *ep, *filename;
65
66         denom = 0;
67         filename = NULL;
68         random_type = RANDOM_TYPE_UNSET;
69         random_exit = randomize_lines = random_type = unbuffer_output = 0;
70         unique_output = 1;
71         while ((ch = getopt(argc, argv, "ef:hlruUw")) != -1)
72                 switch (ch) {
73                 case 'e':
74                         random_exit = 1;
75                         break;
76                 case 'f':
77                         randomize_lines = 1;
78                         if (!strcmp(optarg, "-"))
79                                 filename = strdup("/dev/fd/0");
80                         else
81                                 filename = optarg;
82                         break;
83                 case 'l':
84                         randomize_lines = 1;
85                         random_type = RANDOM_TYPE_LINES;
86                         break;
87                 case 'r':
88                         unbuffer_output = 1;
89                         break;
90                 case 'u':
91                         randomize_lines = 1;
92                         unique_output = 1;
93                         break;
94                 case 'U':
95                         randomize_lines = 1;
96                         unique_output = 0;
97                         break;
98                 case 'w':
99                         randomize_lines = 1;
100                         random_type = RANDOM_TYPE_WORDS;
101                         break;
102                 default:
103                 case '?':
104                         usage();
105                         /* NOTREACHED */
106                 }
107
108         argc -= optind;
109         argv += optind;
110
111         switch (argc) {
112         case 0:
113                 denom = (randomize_lines ? 1 : 2);
114                 break;
115         case 1:
116                 errno = 0;
117                 denom = strtod(*argv, &ep);
118                 if (errno == ERANGE)
119                         err(1, "%s", *argv);
120                 if (denom <= 0 || *ep != '\0')
121                         errx(1, "denominator is not valid.");
122                 if (random_exit && denom > 255)
123                         errx(1, "denominator must be <= 255 for random exit.");
124                 break;
125         default:
126                 usage();
127                 /* NOTREACHED */
128         }
129
130         srandomdev();
131
132         /*
133          * Act as a filter, randomly choosing lines of the standard input
134          * to write to the standard output.
135          */
136         if (unbuffer_output)
137                 setbuf(stdout, NULL);
138
139         /*
140          * Act as a filter, randomizing lines read in from a given file
141          * descriptor and write the output to standard output.
142          */
143         if (randomize_lines) {
144                 if ((fd = open(filename, O_RDONLY, 0)) < 0)
145                         err(1, "%s", filename);
146                 ret = randomize_fd(fd, random_type, unique_output, denom);
147                 if (!random_exit)
148                         return(ret);
149         }
150
151         /* Compute a random exit status between 0 and denom - 1. */
152         if (random_exit)
153                 return (int)((denom * random()) / LONG_MAX);
154
155         /*
156          * Select whether to print the first line.  (Prime the pump.)
157          * We find a random number between 0 and denom - 1 and, if it's
158          * 0 (which has a 1 / denom chance of being true), we select the
159          * line.
160          */
161         selected = (int)(denom * random() / LONG_MAX) == 0;
162         while ((ch = getchar()) != EOF) {
163                 if (selected)
164                         (void)putchar(ch);
165                 if (ch == '\n') {
166                         /* End of that line.  See if we got an error. */
167                         if (ferror(stdout))
168                                 err(2, "stdout");
169
170                         /* Now see if the next line is to be printed. */
171                         selected = (int)(denom * random() / LONG_MAX) == 0;
172                 }
173         }
174         if (ferror(stdin))
175                 err(2, "stdin");
176         exit (0);
177 }
178
179 static void
180 usage(void)
181 {
182
183         fprintf(stderr, "usage: random [-elruUw] [-f filename] [denominator]\n");
184         exit(1);
185 }