1219820Sjeff/*-
2219820Sjeff * Copyright (c) 2010 Isilon Systems, Inc.
3219820Sjeff * Copyright (c) 2010 iX Systems, Inc.
4219820Sjeff * Copyright (c) 2010 Panasas, Inc.
5301544Shselasky * Copyright (c) 2013-2016 Mellanox Technologies, Ltd.
6219820Sjeff * All rights reserved.
7219820Sjeff *
8219820Sjeff * Redistribution and use in source and binary forms, with or without
9219820Sjeff * modification, are permitted provided that the following conditions
10219820Sjeff * are met:
11219820Sjeff * 1. Redistributions of source code must retain the above copyright
12219820Sjeff *    notice unmodified, this list of conditions, and the following
13219820Sjeff *    disclaimer.
14219820Sjeff * 2. Redistributions in binary form must reproduce the above copyright
15219820Sjeff *    notice, this list of conditions and the following disclaimer in the
16219820Sjeff *    documentation and/or other materials provided with the distribution.
17219820Sjeff *
18219820Sjeff * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19219820Sjeff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20219820Sjeff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21219820Sjeff * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22219820Sjeff * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23219820Sjeff * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24219820Sjeff * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25219820Sjeff * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26219820Sjeff * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27219820Sjeff * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28289644Shselasky *
29289644Shselasky * $FreeBSD: stable/11/sys/compat/linuxkpi/common/include/linux/random.h 328653 2018-02-01 13:01:44Z hselasky $
30219820Sjeff */
31328653Shselasky
32328653Shselasky#ifndef _LINUX_RANDOM_H_
33219820Sjeff#define	_LINUX_RANDOM_H_
34219820Sjeff
35219820Sjeff#include <sys/random.h>
36301544Shselasky#include <sys/libkern.h>
37219820Sjeff
38219820Sjeffstatic inline void
39219820Sjeffget_random_bytes(void *buf, int nbytes)
40219820Sjeff{
41328653Shselasky
42301544Shselasky	if (read_random(buf, nbytes) == 0)
43301544Shselasky		arc4rand(buf, nbytes, 0);
44219820Sjeff}
45219820Sjeff
46328653Shselaskystatic inline u_int
47328653Shselaskyget_random_int(void)
48328653Shselasky{
49328653Shselasky	u_int val;
50328653Shselasky
51328653Shselasky	get_random_bytes(&val, sizeof(val));
52328653Shselasky	return (val);
53328653Shselasky}
54328653Shselasky
55328653Shselaskystatic inline u_long
56328653Shselaskyget_random_long(void)
57328653Shselasky{
58328653Shselasky	u_long val;
59328653Shselasky
60328653Shselasky	get_random_bytes(&val, sizeof(val));
61328653Shselasky	return (val);
62328653Shselasky}
63328653Shselasky
64328653Shselasky#endif /* _LINUX_RANDOM_H_ */
65