xref: /freebsd/lib/libc/tests/gen/getentropy_test.c (revision 61e21613)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2018 Conrad Meyer <cem@FreeBSD.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/param.h>
30 #include <errno.h>
31 #include <signal.h>
32 #include <unistd.h>
33 
34 #include <atf-c.h>
35 
36 ATF_TC_WITHOUT_HEAD(getentropy_count);
37 ATF_TC_BODY(getentropy_count, tc)
38 {
39 	char buf[2];
40 	int ret;
41 
42 	/* getentropy(2) does not modify buf past the requested length */
43 	buf[1] = 0x7C;
44 	ret = getentropy(buf, 1);
45 	ATF_REQUIRE_EQ(ret, 0);
46 	ATF_REQUIRE_EQ(buf[1], 0x7C);
47 }
48 
49 ATF_TC_WITHOUT_HEAD(getentropy_fault);
50 ATF_TC_BODY(getentropy_fault, tc)
51 {
52 	int ret;
53 
54 	ret = getentropy(NULL, 1);
55 	ATF_REQUIRE_EQ(ret, -1);
56 	ATF_REQUIRE_EQ(errno, EFAULT);
57 }
58 
59 ATF_TC_WITHOUT_HEAD(getentropy_sizes);
60 ATF_TC_BODY(getentropy_sizes, tc)
61 {
62 	char buf[512];
63 
64 	ATF_REQUIRE_EQ(getentropy(buf, sizeof(buf)), -1);
65 	ATF_REQUIRE_EQ(errno, EIO);
66 	ATF_REQUIRE_EQ(getentropy(buf, 257), -1);
67 	ATF_REQUIRE_EQ(errno, EIO);
68 
69 	/* Smaller sizes always succeed: */
70 	ATF_REQUIRE_EQ(getentropy(buf, 256), 0);
71 	ATF_REQUIRE_EQ(getentropy(buf, 128), 0);
72 	ATF_REQUIRE_EQ(getentropy(buf, 0), 0);
73 }
74 
75 ATF_TP_ADD_TCS(tp)
76 {
77 
78 	signal(SIGSYS, SIG_IGN);
79 
80 	ATF_TP_ADD_TC(tp, getentropy_count);
81 	ATF_TP_ADD_TC(tp, getentropy_fault);
82 	ATF_TP_ADD_TC(tp, getentropy_sizes);
83 	return (atf_no_error());
84 }
85