proc->thread stage 3: synchronize ps, top, and libkvm, and add some convenience
[dragonfly.git] / sys / sys / random.h
1 /*
2  * random.h -- A strong random number generator
3  *
4  * $FreeBSD: src/sys/sys/random.h,v 1.19.2.2 2002/09/17 17:11:54 sam Exp $
5  * $DragonFly: src/sys/sys/random.h,v 1.3 2003/06/23 17:55:50 dillon Exp $
6  *
7  * Version 0.95, last modified 18-Oct-95
8  * 
9  * Copyright Theodore Ts'o, 1994, 1995.  All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, and the entire permission notice in its entirety,
16  *    including the disclaimer of warranties.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. The name of the author may not be used to endorse or promote
21  *    products derived from this software without specific prior
22  *    written permission.
23  * 
24  * ALTERNATIVELY, this product may be distributed under the terms of
25  * the GNU Public License, in which case the provisions of the GPL are
26  * required INSTEAD OF the above restrictions.  (This clause is
27  * necessary due to a potential bad interaction between the GPL and
28  * the restrictions contained in a BSD-style copyright.)
29  * 
30  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
31  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
33  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
34  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
36  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
38  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
39  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
40  * OF THE POSSIBILITY OF SUCH DAMAGE.
41  *
42  */
43
44 /*
45  * Many kernel routines will have a use for good random numbers,
46  * for example, for truely random TCP sequence numbers, which prevent
47  * certain forms of TCP spoofing attacks.
48  * 
49  */
50
51 #ifndef _SYS_RANDOM_H_
52 #define _SYS_RANDOM_H_
53
54 #include <sys/ioccom.h>
55
56 #define MEM_SETIRQ      _IOW('r', 1, u_int16_t) /* set interrupt */
57 #define MEM_CLEARIRQ    _IOW('r', 2, u_int16_t) /* clear interrupt */
58 #define MEM_RETURNIRQ   _IOR('r', 3, u_int16_t) /* return interrupt */
59
60 #ifdef _KERNEL
61
62 /* Type of the cookie passed to add_interrupt_randomness. */
63
64 struct random_softc {
65         inthand2_t      *sc_handler;
66         void            *sc_arg;
67         int             sc_intr;
68 };
69
70 /* Exported functions */
71
72 void rand_initialize(void);
73 void add_keyboard_randomness(u_char scancode);
74 inthand2_t add_interrupt_randomness;
75 #ifdef notused
76 void add_blkdev_randomness(int major);
77 #endif
78 void add_true_randomness(int);
79
80 #ifdef notused
81 void get_random_bytes(void *buf, u_int nbytes);
82 #endif
83 u_int read_random(void *buf, u_int size);
84 u_int read_random_unlimited(void *buf, u_int size);
85 #ifdef notused
86 u_int write_random(const char *buf, u_int nbytes);
87 #endif
88 struct thread;
89 int random_poll(dev_t dev, int events, struct thread *td);
90
91 #endif /* _KERNEL */
92
93 #endif /* !_SYS_RANDOM_H_ */