random.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/random.h
  3.  *
  4.  * Include file for the random number generator.
  5.  */
  6. #ifndef _LINUX_RANDOM_H
  7. #define _LINUX_RANDOM_H
  8. #include <linux/ioctl.h>
  9. /* ioctl()'s for the random number generator */
  10. /* Get the entropy count. */
  11. #define RNDGETENTCNT _IOR( 'R', 0x00, int )
  12. /* Add to (or subtract from) the entropy count.  (Superuser only.) */
  13. #define RNDADDTOENTCNT _IOW( 'R', 0x01, int )
  14. /* Get the contents of the entropy pool.  (Superuser only.) */
  15. #define RNDGETPOOL _IOR( 'R', 0x02, int [2] )
  16. /* 
  17.  * Write bytes into the entropy pool and add to the entropy count.
  18.  * (Superuser only.)
  19.  */
  20. #define RNDADDENTROPY _IOW( 'R', 0x03, int [2] )
  21. /* Clear entropy count to 0.  (Superuser only.) */
  22. #define RNDZAPENTCNT _IO( 'R', 0x04 )
  23. /* Clear the entropy pool and associated counters.  (Superuser only.) */
  24. #define RNDCLEARPOOL _IO( 'R', 0x06 )
  25. struct rand_pool_info {
  26. int entropy_count;
  27. int buf_size;
  28. __u32 buf[0];
  29. };
  30. /* Exported functions */
  31. #ifdef __KERNEL__
  32. extern void rand_initialize(void);
  33. extern void rand_initialize_irq(int irq);
  34. extern void rand_initialize_blkdev(int irq, int mode);
  35. extern void batch_entropy_store(u32 a, u32 b, int num);
  36. extern void add_keyboard_randomness(unsigned char scancode);
  37. extern void add_mouse_randomness(__u32 mouse_data);
  38. extern void add_interrupt_randomness(int irq);
  39. extern void add_blkdev_randomness(int major);
  40. extern void get_random_bytes(void *buf, int nbytes);
  41. void generate_random_uuid(unsigned char uuid_out[16]);
  42. extern __u32 secure_ip_id(__u32 daddr);
  43. extern __u32 secure_tcp_sequence_number(__u32 saddr, __u32 daddr,
  44. __u16 sport, __u16 dport);
  45. extern __u32 secure_tcp_syn_cookie(__u32 saddr, __u32 daddr,
  46.    __u16 sport, __u16 dport,
  47.    __u32 sseq, __u32 count,
  48.    __u32 data);
  49. extern __u32 check_tcp_syn_cookie(__u32 cookie, __u32 saddr,
  50.   __u32 daddr, __u16 sport,
  51.   __u16 dport, __u32 sseq,
  52.   __u32 count, __u32 maxdiff);
  53. extern __u32 secure_tcpv6_sequence_number(__u32 *saddr, __u32 *daddr,
  54.   __u16 sport, __u16 dport);
  55. extern __u32 secure_ipv6_id(__u32 *daddr);
  56. #ifndef MODULE
  57. extern struct file_operations random_fops, urandom_fops;
  58. #endif
  59. #endif /* __KERNEL___ */
  60. #endif /* _LINUX_RANDOM_H */