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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
/*
* Copyright © 2021 Google, Inc.
*
* 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.
*/
#include <ctype.h>
#include <fcntl.h>
#include <glob.h>
#include <string.h>
#include <sys/stat.h>
#include "igt.h"
#include "igt_fs.h"
#include "igt_msm.h"
/*
* Tests to ensure various kernel controlled buffers are mapped with the
* appropriate permissions (either read-only or not-accessible to userspace
* controlled cmdstream)
*/
/*
* Helper to get and clear devcore dumps
*/
static char *
get_and_clear_devcore(int timeout_ms)
{
glob_t glob_buf = {0};
char *buf = NULL;
int fd;
/* The devcore shows up asynchronously, so it might not be
* immediately available:
*/
if (!igt_wait(glob("/sys/class/devcoredump/devcd*/data",
GLOB_NOSORT, NULL, &glob_buf) != GLOB_NOMATCH,
timeout_ms, 100))
return NULL;
fd = open(glob_buf.gl_pathv[0], O_RDWR);
if (fd >= 0) {
/* We don't need to read the entire devcore, the first bit is
* sufficient for our purposes:
*/
buf = calloc(1, 0x1000);
igt_readn(fd, buf, 0x1000);
/* Clear the devcore: */
igt_writen(fd, "1", 1);
}
globfree(&glob_buf);
return buf;
}
static void
wait_for_stall_on_fault(int drm_fd)
{
char buf[64] = "\0";
do {
int us;
igt_debugfs_read(drm_fd, "stall_reenable_time_us", buf);
if (!strlen(buf)) {
/* Not supported on older kernels: */
return;
}
us = atoi(buf);
if (!us) {
/* Done waiting: */
return;
}
usleep(us);
} while (true);
}
/*
* Helper to find named buffer address
*/
static const char *
get_line(char **buf)
{
char *ret, *eol;
ret = *buf;
eol = strstr(*buf, "\n");
if (!eol) {
/* could be last line in file: */
*buf = NULL;
return ret;
}
*eol = '\0';
*buf += 1 + strlen(ret);
return ret;
}
static bool
endswith(const char *str, const char *end)
{
char *p = strstr(str, end);
/* Trim trailing whitespace: */
if (p) {
char *c = p + strlen(p) - 1;
while (c > p) {
if (isspace(*c)) {
*c = '\0';
} else {
break;
}
c--;
}
}
return p && (strlen(p) == strlen(end));
}
static uint64_t
get_bo_addr(int drm_fd, const char *name)
{
char buf[0x80000];
char *p = buf;
igt_debugfs_read(drm_fd, "gem", buf);
/* NOTE: the contents of the debugfs file look like:
*
* flags id ref offset kaddr size madv name
* 00040000: I 0 ( 1) 00000000 ffffffc0104b9000 00004096 memptrs
* vmas: [gpu: aspace=ffffff808bf03e00, 1000000000000,mapped,inuse=1]
* 00020002: I 0 ( 1) 00000000 ffffffc012001000 00032768 ring0
* vmas: [gpu: aspace=ffffff808bf03e00, 1000000001000,mapped,inuse=1]
*
* There can be potentially multiple vma's per bo, listed on the lines
* following the line for the buffer (which ends in the buffer name),
* but this should not be the case for any kernel controlled buffers.
*/
while (*p) {
const char *line = get_line(&p);
if (endswith(line, name)) {
uint64_t addr, dummy;
int ret;
line = get_line(&p);
igt_fail_on(!line);
ret = sscanf(line, " vmas: [gpu: aspace=%"PRIx64", %"PRIx64",mapped,inuse=1]",
&dummy, &addr);
if (ret != 2) {
ret = sscanf(line, " vmas: [gpu: vm=%"PRIx64", %"PRIx64", mapped]",
&dummy, &addr);
}
igt_fail_on(ret != 2);
return addr;
}
}
return 0;
}
/*
* Helper for testing access to the named buffer
*/
static void
do_mapping_test(struct msm_pipe *pipe, const char *buffername, bool write)
{
struct msm_bo *scratch_bo = NULL;
struct msm_cmd *cmd;
char *devcore, *s;
uint64_t addr, fault_addr;
int fence_fd, ret;
/* Clear any existing devcore's: */
while ((devcore = get_and_clear_devcore(0))) {
free(devcore);
}
addr = get_bo_addr(pipe->dev->fd, buffername);
igt_skip_on(addr == 0);
cmd = igt_msm_cmd_new(pipe, 0x1000);
if (write) {
msm_cmd_pkt7(cmd, CP_MEM_WRITE, 3);
msm_cmd_emit(cmd, lower_32_bits(addr)); /* ADDR_LO */
msm_cmd_emit(cmd, upper_32_bits(addr)); /* ADDR_HI */
msm_cmd_emit(cmd, 0x123); /* VAL */
} else {
scratch_bo = igt_msm_bo_new(pipe->dev, 0x1000, MSM_BO_WC);
msm_cmd_pkt7(cmd, CP_MEM_TO_MEM, 5);
msm_cmd_emit(cmd, 0);
msm_cmd_bo (cmd, scratch_bo, 0); /* DEST_ADDR_LO/HI */
msm_cmd_emit(cmd, lower_32_bits(addr)); /* SRC_A_ADDR_LO */
msm_cmd_emit(cmd, upper_32_bits(addr)); /* SRC_A_ADDR_HI */
}
fence_fd = igt_msm_cmd_submit(cmd);
/* Wait for submit to complete: */
igt_wait_and_close(fence_fd);
igt_msm_bo_free(scratch_bo);
/* And now we should have gotten a devcore from the iova fault
* triggered by the read or write:
*/
devcore = get_and_clear_devcore(1000);
igt_fail_on(!devcore);
/* Make sure the devcore is from iova fault: */
igt_fail_on(!strstr(devcore, "fault-info"));
s = strstr(devcore, " - iova=");
igt_fail_on(!s);
ret = sscanf(s, " - iova=%"PRIx64, &fault_addr);
igt_fail_on(ret != 1);
igt_fail_on(addr != fault_addr);
free(devcore);
/* Wait for stall-on-fault to re-enable, otherwise the next sub-test
* would not generate a devcore:
*/
wait_for_stall_on_fault(pipe->dev->fd);
}
/*
* Tests for drm/msm hangcheck, recovery, and fault handling
*/
igt_main
{
struct msm_device *dev = NULL;
struct msm_pipe *pipe = NULL;
igt_fixture {
dev = igt_msm_dev_open();
pipe = igt_msm_pipe_open(dev, 0);
}
igt_describe("Test ringbuffer mapping, should be read-only");
igt_subtest("ring") {
do_mapping_test(pipe, "ring0", true);
}
igt_describe("Test sqefw mapping, should be read-only");
igt_subtest("sqefw") {
igt_require(dev->gen >= 6);
do_mapping_test(pipe, "sqefw", true);
}
igt_describe("Test shadow mapping, should be inaccessible");
igt_subtest("shadow") {
do_mapping_test(pipe, "shadow", true);
do_mapping_test(pipe, "shadow", false);
}
igt_describe("Test pwrup_reglist mapping, should be inaccessible");
igt_subtest("pwrup_reglist") {
do_mapping_test(pipe, "pwrup_reglist", true);
do_mapping_test(pipe, "pwrup_reglist", false);
}
igt_describe("Test memptrs mapping, should be inaccessible");
igt_subtest("memptrs") {
/*
* This test will fail on older GPUs without HW_APRIV, but
* there isn't a good way to test that from userspace, short
* of maintaining a giant table. Probably just easier to
* list it in xfails or skips for those GPUs.
*/
do_mapping_test(pipe, "memptrs", true);
do_mapping_test(pipe, "memptrs", false);
}
igt_describe("Test 'preempt_record ring0' mapping, should be inaccessible");
igt_subtest("preempt_record_ring0") {
do_mapping_test(pipe, "preempt_record ring0", true);
do_mapping_test(pipe, "preempt_record ring0", false);
}
igt_describe("Test 'preempt_smmu_info ring0' mapping, should be inaccessible");
igt_subtest("preempt_smmu_info_ring0") {
do_mapping_test(pipe, "preempt_smmu_info ring0", true);
do_mapping_test(pipe, "preempt_smmu_info ring0", false);
}
igt_fixture {
igt_msm_pipe_close(pipe);
igt_msm_dev_close(dev);
}
}
|