hc
2024-08-16 a24a44ff9ca902811b99aa9663d697cf452e08ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// SPDX-License-Identifier: GPL-2.0-or-later
/******************************************************************************
 *
 * Copyright FUJITSU LIMITED 2010
 * Copyright KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
 *
 * DESCRIPTION
 *      Wait on uninitialized heap. It shold be zero and FUTEX_WAIT should
 *      return immediately. This test is intent to test zero page handling in
 *      futex.
 *
 * AUTHOR
 *      KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
 *
 * HISTORY
 *      2010-Jan-6: Initial version by KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
 *
 *****************************************************************************/
 
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <syscall.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <linux/futex.h>
#include <libgen.h>
 
#include "logging.h"
#include "futextest.h"
 
#define TEST_NAME "futex-wait-uninitialized-heap"
#define WAIT_US 5000000
 
static int child_blocked = 1;
static int child_ret;
void *buf;
 
void usage(char *prog)
{
   printf("Usage: %s\n", prog);
   printf("  -c    Use color\n");
   printf("  -h    Display this help message\n");
   printf("  -v L    Verbosity level: %d=QUIET %d=CRITICAL %d=INFO\n",
          VQUIET, VCRITICAL, VINFO);
}
 
void *wait_thread(void *arg)
{
   int res;
 
   child_ret = RET_PASS;
   res = futex_wait(buf, 1, NULL, 0);
   child_blocked = 0;
 
   if (res != 0 && errno != EWOULDBLOCK) {
       error("futex failure\n", errno);
       child_ret = RET_ERROR;
   }
   pthread_exit(NULL);
}
 
int main(int argc, char **argv)
{
   int c, ret = RET_PASS;
   long page_size;
   pthread_t thr;
 
   while ((c = getopt(argc, argv, "chv:")) != -1) {
       switch (c) {
       case 'c':
           log_color(1);
           break;
       case 'h':
           usage(basename(argv[0]));
           exit(0);
       case 'v':
           log_verbosity(atoi(optarg));
           break;
       default:
           usage(basename(argv[0]));
           exit(1);
       }
   }
 
   page_size = sysconf(_SC_PAGESIZE);
 
   buf = mmap(NULL, page_size, PROT_READ|PROT_WRITE,
          MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
   if (buf == (void *)-1) {
       error("mmap\n", errno);
       exit(1);
   }
 
   ksft_print_header();
   ksft_set_plan(1);
   ksft_print_msg("%s: Test the uninitialized futex value in FUTEX_WAIT\n",
          basename(argv[0]));
 
 
   ret = pthread_create(&thr, NULL, wait_thread, NULL);
   if (ret) {
       error("pthread_create\n", errno);
       ret = RET_ERROR;
       goto out;
   }
 
   info("waiting %dus for child to return\n", WAIT_US);
   usleep(WAIT_US);
 
   ret = child_ret;
   if (child_blocked) {
       fail("child blocked in kernel\n");
       ret = RET_FAIL;
   }
 
 out:
   print_result(TEST_NAME, ret);
   return ret;
}