3 * Mark Murray. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY MARK MURRAY AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.sbin/rndcontrol/rndcontrol.c,v 1.11.2.1 2000/05/10 02:04:44 obrien Exp $
27 * $DragonFly: src/usr.sbin/rndcontrol/rndcontrol.c,v 1.4 2005/12/05 02:40:28 swildner Exp $
30 #include <sys/random.h>
37 #include <sys/ioctl.h>
42 fprintf(stderr
, "usage: rndcontrol [-q] [-s irq_no] [-c irq_no]\n");
47 main(int argc
, char *argv
[])
49 int verbose
, ch
, fd
, result
, i
;
54 fd
= open("/dev/random", O_RDONLY
, 0);
60 while ((ch
= getopt(argc
, argv
, "qs:c:")) != -1)
66 irq
= (u_int16_t
)atoi(optarg
);
68 printf("%s: setting irq %d\n", argv
[0], irq
);
69 result
= ioctl(fd
, MEM_SETIRQ
, (char *)&irq
);
76 irq
= (u_int16_t
)atoi(optarg
);
78 printf("%s: clearing irq %d\n", argv
[0], irq
);
79 result
= ioctl(fd
, MEM_CLEARIRQ
, (char *)&irq
);
91 printf("%s: interrupts in use:", argv
[0]);
94 result
= ioctl(fd
, MEM_FINDIRQ
, (char *)&irq
);
100 if (result
< 0 && errno
== ENOTSUP
) {
109 fprintf(stderr
, "%s: unknown argument(s): ", argv
[-optind
]);
110 for (i
= 0; i
< argc
; i
++)
111 fprintf(stderr
, " %s", argv
[i
]);
112 fprintf(stderr
, "\n");