summaryrefslogtreecommitdiff
path: root/tests/debugfs_test.c
blob: fb1735bf525a7f55a96c99d4312700e76723890b (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
/*
 * Copyright © 2017 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.
 */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "igt.h"
#include "igt_sysfs.h"
#include <fcntl.h>
#include <sys/types.h>
#include <dirent.h>

static void read_and_discard_sysfs_entries(int path_fd, bool is_crc)
{
	struct dirent *dirent;
	DIR *dir;

	dir = fdopendir(path_fd);
	if (!dir)
		return;

	while ((dirent = readdir(dir))) {
		if (!strcmp(dirent->d_name, ".") ||
		    !strcmp(dirent->d_name, ".."))
			continue;
		if (dirent->d_type == DT_DIR) {
			int sub_fd = -1;
			if (strstr(dirent->d_name, "crtc-"))
				continue;
			igt_assert((sub_fd =
				    openat(path_fd, dirent->d_name, O_RDONLY |
					   O_DIRECTORY)) > 0);
			read_and_discard_sysfs_entries(sub_fd, !strcmp(dirent->d_name, "crc"));
			close(sub_fd);
		} else {
			char *buf = igt_sysfs_get(path_fd, dirent->d_name);

			/*
			 * /crtc-XX/crc/data may fail with -EIO if the CRTC
			 * is not active.
			 */
			if (!buf && is_crc && errno == EIO &&
			    !strcmp(dirent->d_name, "data"))
				continue;

			igt_assert(buf);
			free(buf);
		}
	}
	closedir(dir);
}

igt_main
{
	int fd = -1, debugfs;
	igt_skip_on_simulation();

	igt_fixture {
		fd = drm_open_driver_master(DRIVER_INTEL);
		igt_require_gem(fd);
		debugfs = igt_debugfs_dir(fd);
	}

	igt_subtest("read_all_entries") {
		read_and_discard_sysfs_entries(debugfs, false);
	}

	igt_subtest("emon_crash") {
		int i;
		/*
		 * This check if we can crash the kernel with
		 * segmentation-fault by reading
		 * /sys/kernel/debug/dri/0/i915_emon_status too quickly
		 */
		for (i = 0; i < 1000; i++) {
			char *buf = igt_sysfs_get(debugfs,
						  "i915_emon_status");
			igt_assert(buf);
			free(buf);
		}

		/* If we got here, we haven't crashed */
		igt_success();
	}

	igt_fixture {
		close(debugfs);
		close(fd);
	}
}