]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/libc_r/test/guard_b.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / lib / libc_r / test / guard_b.c
1 /*
2  * Copyright (C) 2001 Jason Evans <jasone@freebsd.org>.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice(s), this list of conditions and the following disclaimer
10  *    unmodified other than the allowable addition of one or more
11  *    copyright notices.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice(s), this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the
15  *    distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
18  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
27  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  *
31  * Test thread stack guard functionality.
32  */
33
34 #include <assert.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <limits.h>
40 #include <pthread.h>
41
42 #define FRAME_SIZE      1024
43 #define FRAME_OVERHEAD    40
44
45 struct args
46 {
47         void    *top;   /* Top of thread's initial stack frame. */
48         int     cur;    /* Recursion depth. */
49         int     max;    /* Maximum recursion depth. */
50 };
51
52 void *
53 recurse(void *args)
54 {
55         int             top;
56         struct args     *parms = (struct args *)args;
57         char            filler[FRAME_SIZE - FRAME_OVERHEAD];
58
59         /* Touch the memory in this stack frame. */
60         top = 0xa5;
61         memset(filler, 0xa5, sizeof(filler));
62
63         if (parms->top == NULL) {
64                 /* Initial stack frame. */
65                 parms->top = (void*)&top;
66         }
67
68         /*
69          * Make sure frame size is what we expect.  Getting this right involves
70          * hand tweaking, so just print a warning rather than aborting.
71          */
72         if (parms->top - (void *)&top != FRAME_SIZE * parms->cur) {
73                 fprintf(stderr, "Stack size (%d) != expected (%d), frame %d\n",
74                     (int)(parms->top - (void *)&top), FRAME_SIZE * parms->cur,
75                     parms->cur);
76         }
77
78         parms->cur++;
79         if (parms->cur < parms->max)
80                 recurse(args);
81
82         return NULL;
83 }
84
85
86 int
87 main(int argc, char **argv)
88 {
89         size_t          def_stacksize, def_guardsize;
90         size_t          stacksize, guardsize;
91         pthread_t       thread;
92         pthread_attr_t  attr;
93         struct args     args;
94
95         if (argc != 3) {
96                 fprintf(stderr, "usage: guard_b <stacksize> <guardsize>\n");
97                 exit(1);
98         }
99         fprintf(stderr, "Test begin\n");
100
101         stacksize = strtoul(argv[1], NULL, 10);
102         guardsize = strtoul(argv[2], NULL, 10);
103
104         assert(pthread_attr_init(&attr) == 0);
105         /*
106          * Exercise the attribute APIs more thoroughly than is strictly
107          * necessary for the meat of this test program.
108          */
109         assert(pthread_attr_getstacksize(&attr, &def_stacksize) == 0);
110         assert(pthread_attr_getguardsize(&attr, &def_guardsize) == 0);
111         if (def_stacksize != stacksize) {
112                 assert(pthread_attr_setstacksize(&attr, stacksize) == 0);
113                 assert(pthread_attr_getstacksize(&attr, &def_stacksize) == 0);
114                 assert(def_stacksize == stacksize);
115         }
116         if (def_guardsize != guardsize) {
117                 assert(pthread_attr_setguardsize(&attr, guardsize) == 0);
118                 assert(pthread_attr_getguardsize(&attr, &def_guardsize) == 0);
119                 assert(def_guardsize >= guardsize);
120         }
121
122         /*
123          * Create a thread that will come just short of overflowing the thread
124          * stack.  We need to leave a bit of breathing room in case the thread
125          * is context switched, and we also have to take care not to call any
126          * functions in the deepest stack frame.
127          */
128         args.top = NULL;
129         args.cur = 0;
130         args.max = (stacksize / FRAME_SIZE) - 1;
131         fprintf(stderr, "No overflow:\n");
132         assert(pthread_create(&thread, &attr, recurse, &args) == 0);
133         assert(pthread_join(thread, NULL) == 0);
134         
135         /*
136          * Create a thread that will barely of overflow the thread stack.  This
137          * should cause a segfault.
138          */
139         args.top = NULL;
140         args.cur = 0;
141         args.max = (stacksize / FRAME_SIZE) + 1;
142         fprintf(stderr, "Overflow:\n");
143         assert(pthread_create(&thread, &attr, recurse, &args) == 0);
144         assert(pthread_join(thread, NULL) == 0);
145
146         /* Not reached. */
147         fprintf(stderr, "Unexpected success\n");
148         abort();
149
150         return 0;
151 }