summaryrefslogtreecommitdiff
path: root/tests/glx/glx-string-sanity.c
blob: 3a86f11b8f0a680b1d8dbf4a7f24402c4d9ab820 (plain)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
 * Copyright © 2011 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */


/** @file glx-string-sanity.c
 * Sanity check the various GLX extension strings that application can query.
 *
 * This test reproduces Mesa bug #56057.
 */

#include <stdbool.h>
#include "piglit-util-gl.h"
#include "piglit-glx-util.h"

static const char *
eat_whitespace(const char *s)
{
	/* Page 17 of the GLX 1.4 spec says:
	 *
	 *     "The string is zero-terminated and contains a space-seperated
	 *     list of extension names."
	 *
	 * It doesn't say whitespace.  It just says space.
	 */
	while (*s == ' ' && *s != '\0')
		s++;

	return s;
}

static const char *
eat_characters(const char *s)
{
	while (*s != ' ' && *s != '\0')
		s++;

	return s;
}

static const char *
find_extension(const char *haystack, const char *needle, size_t needle_length)
{
	while ((haystack = strstr(haystack, needle)) != NULL) {
		if (haystack[needle_length] == '\0'
		    || haystack[needle_length] == ' ')
			break;
	}

	return haystack;
}

static bool
validate_string(const char *string, const char *name)
{
	bool pass = true;

	while (*string != '\0') {
		string = eat_whitespace(string);
		if (*string == '\0')
			break;

		if (strncmp("GLX_", string, 4) != 0) {
			char junk[15];

			/* Since the extension string may be very long, just
			 * log a few characters.
			 */
			strncpy(junk, string, sizeof(junk));
			junk[sizeof(junk) - 1] = '\0';
			fprintf(stderr, "%s contains junk: %s\n", name, junk);
			pass = false;
		}

		string = eat_characters(string);
	}

	return pass;
}

int
main(int argc, char **argv)
{
	bool pass = true;
	const char *client_string;
	const char *server_string;
	const char *unified_string;
	char *buf;

	Display *dpy = XOpenDisplay(NULL);
	if (dpy == NULL) {
		fprintf(stderr, "couldn't open display\n");
		piglit_report_result(PIGLIT_FAIL);
	}

	/* First, make sure that all the strings have the correct format.
	 */
	server_string = glXQueryServerString(dpy, 0, GLX_EXTENSIONS);
	pass = validate_string(server_string, "server extensions string")
		&& pass;

	client_string = glXGetClientString(dpy, GLX_EXTENSIONS);
	pass = validate_string(client_string, "client extensions string")
		&& pass;

	unified_string = glXQueryExtensionsString(dpy, 0);
	pass = validate_string(unified_string, "unified extensions string")
		&& pass;

	/* Now make sure that any string listed in both the server string and
	 * the client string is listed in the unified string.
	 *
	 * Also make sure that any string *not* listed in the client string is
	 * *not* listed in the unified string.  Since there are several
	 * "client only" extensions (e.g., GLX_ARB_get_proc_address), it is
	 * valid for a string to not be in the server string when it is listed
	 * in the unified string.
	 */
	buf = malloc(strlen(server_string) + 1);
	while (*server_string != '\0') {
		const char *client;
		const char *end;
		size_t bytes;


		server_string = eat_whitespace(server_string);
		if (*server_string == '\0')
			break;

		end = eat_characters(server_string);

		bytes = (size_t)(end - server_string);
		memcpy(buf, server_string, bytes);
		buf[bytes] = '\0';

		/* Try to find the extension in the client extension list.
		 */
		client = find_extension(client_string, buf, bytes);
		if (client != NULL) {
			if (find_extension(unified_string, buf, bytes) == NULL) {
				fprintf(stderr,
					"%s found in both client and server "
					"extension strings, but missing from "
					"unified string.\n",
					buf);
				pass = false;
			}
		} else {
			if (find_extension(unified_string, buf, bytes) != NULL) {
				fprintf(stderr,
					"%s not found in client extension "
					"string, but found in unified "
					"string.\n",
					buf);
				pass = false;
			}
		}

		server_string = end;
	}

	free(buf);

	XCloseDisplay(dpy);

	piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
	return 0;
}