blob: 7249b512571d4e6acaaa3d82348897d5c9cd749c [file] [log] [blame]
Brad Volkin351e3db2014-02-18 10:15:46 -08001/*
2 * Copyright © 2013 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Brad Volkin <bradley.d.volkin@intel.com>
25 *
26 */
27
28#include "i915_drv.h"
29
30/**
31 * DOC: i915 batch buffer command parser
32 *
33 * Motivation:
34 * Certain OpenGL features (e.g. transform feedback, performance monitoring)
35 * require userspace code to submit batches containing commands such as
36 * MI_LOAD_REGISTER_IMM to access various registers. Unfortunately, some
37 * generations of the hardware will noop these commands in "unsecure" batches
38 * (which includes all userspace batches submitted via i915) even though the
39 * commands may be safe and represent the intended programming model of the
40 * device.
41 *
42 * The software command parser is similar in operation to the command parsing
43 * done in hardware for unsecure batches. However, the software parser allows
44 * some operations that would be noop'd by hardware, if the parser determines
45 * the operation is safe, and submits the batch as "secure" to prevent hardware
46 * parsing.
47 *
48 * Threats:
49 * At a high level, the hardware (and software) checks attempt to prevent
50 * granting userspace undue privileges. There are three categories of privilege.
51 *
52 * First, commands which are explicitly defined as privileged or which should
53 * only be used by the kernel driver. The parser generally rejects such
54 * commands, though it may allow some from the drm master process.
55 *
56 * Second, commands which access registers. To support correct/enhanced
57 * userspace functionality, particularly certain OpenGL extensions, the parser
58 * provides a whitelist of registers which userspace may safely access (for both
59 * normal and drm master processes).
60 *
61 * Third, commands which access privileged memory (i.e. GGTT, HWS page, etc).
62 * The parser always rejects such commands.
63 *
64 * The majority of the problematic commands fall in the MI_* range, with only a
65 * few specific commands on each ring (e.g. PIPE_CONTROL and MI_FLUSH_DW).
66 *
67 * Implementation:
68 * Each ring maintains tables of commands and registers which the parser uses in
69 * scanning batch buffers submitted to that ring.
70 *
71 * Since the set of commands that the parser must check for is significantly
72 * smaller than the number of commands supported, the parser tables contain only
73 * those commands required by the parser. This generally works because command
74 * opcode ranges have standard command length encodings. So for commands that
75 * the parser does not need to check, it can easily skip them. This is
76 * implementated via a per-ring length decoding vfunc.
77 *
78 * Unfortunately, there are a number of commands that do not follow the standard
79 * length encoding for their opcode range, primarily amongst the MI_* commands.
80 * To handle this, the parser provides a way to define explicit "skip" entries
81 * in the per-ring command tables.
82 *
83 * Other command table entries map fairly directly to high level categories
84 * mentioned above: rejected, master-only, register whitelist. The parser
85 * implements a number of checks, including the privileged memory checks, via a
86 * general bitmasking mechanism.
87 */
88
Brad Volkin3a6fa982014-02-18 10:15:47 -080089#define STD_MI_OPCODE_MASK 0xFF800000
90#define STD_3D_OPCODE_MASK 0xFFFF0000
91#define STD_2D_OPCODE_MASK 0xFFC00000
92#define STD_MFX_OPCODE_MASK 0xFFFF0000
93
94#define CMD(op, opm, f, lm, fl, ...) \
95 { \
96 .flags = (fl) | ((f) ? CMD_DESC_FIXED : 0), \
97 .cmd = { (op), (opm) }, \
98 .length = { (lm) }, \
99 __VA_ARGS__ \
100 }
101
102/* Convenience macros to compress the tables */
103#define SMI STD_MI_OPCODE_MASK
104#define S3D STD_3D_OPCODE_MASK
105#define S2D STD_2D_OPCODE_MASK
106#define SMFX STD_MFX_OPCODE_MASK
107#define F true
108#define S CMD_DESC_SKIP
109#define R CMD_DESC_REJECT
110#define W CMD_DESC_REGISTER
111#define B CMD_DESC_BITMASK
112#define M CMD_DESC_MASTER
113
114/* Command Mask Fixed Len Action
115 ---------------------------------------------------------- */
116static const struct drm_i915_cmd_descriptor common_cmds[] = {
117 CMD( MI_NOOP, SMI, F, 1, S ),
118 CMD( MI_USER_INTERRUPT, SMI, F, 1, S ),
Brad Volkin17c1eb12014-02-18 10:15:49 -0800119 CMD( MI_WAIT_FOR_EVENT, SMI, F, 1, M ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800120 CMD( MI_ARB_CHECK, SMI, F, 1, S ),
121 CMD( MI_REPORT_HEAD, SMI, F, 1, S ),
122 CMD( MI_SUSPEND_FLUSH, SMI, F, 1, S ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800123 CMD( MI_SEMAPHORE_MBOX, SMI, !F, 0xFF, R ),
124 CMD( MI_STORE_DWORD_INDEX, SMI, !F, 0xFF, R ),
125 CMD( MI_LOAD_REGISTER_IMM(1), SMI, !F, 0xFF, R ),
126 CMD( MI_STORE_REGISTER_MEM(1), SMI, !F, 0xFF, R ),
127 CMD( MI_LOAD_REGISTER_MEM, SMI, !F, 0xFF, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800128 CMD( MI_BATCH_BUFFER_START, SMI, !F, 0xFF, S ),
129};
130
131static const struct drm_i915_cmd_descriptor render_cmds[] = {
132 CMD( MI_FLUSH, SMI, F, 1, S ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800133 CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800134 CMD( MI_PREDICATE, SMI, F, 1, S ),
135 CMD( MI_TOPOLOGY_FILTER, SMI, F, 1, S ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800136 CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
137 CMD( MI_SET_CONTEXT, SMI, !F, 0xFF, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800138 CMD( MI_URB_CLEAR, SMI, !F, 0xFF, S ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800139 CMD( MI_UPDATE_GTT, SMI, !F, 0xFF, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800140 CMD( MI_CLFLUSH, SMI, !F, 0x3FF, S ),
141 CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, S ),
142 CMD( GFX_OP_3DSTATE_VF_STATISTICS, S3D, F, 1, S ),
143 CMD( PIPELINE_SELECT, S3D, F, 1, S ),
144 CMD( GPGPU_OBJECT, S3D, !F, 0xFF, S ),
145 CMD( GPGPU_WALKER, S3D, !F, 0xFF, S ),
146 CMD( GFX_OP_3DSTATE_SO_DECL_LIST, S3D, !F, 0x1FF, S ),
147};
148
149static const struct drm_i915_cmd_descriptor hsw_render_cmds[] = {
150 CMD( MI_SET_PREDICATE, SMI, F, 1, S ),
151 CMD( MI_RS_CONTROL, SMI, F, 1, S ),
152 CMD( MI_URB_ATOMIC_ALLOC, SMI, F, 1, S ),
153 CMD( MI_RS_CONTEXT, SMI, F, 1, S ),
Brad Volkin17c1eb12014-02-18 10:15:49 -0800154 CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800155 CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
156 CMD( MI_LOAD_REGISTER_REG, SMI, !F, 0xFF, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800157 CMD( MI_RS_STORE_DATA_IMM, SMI, !F, 0xFF, S ),
158 CMD( MI_LOAD_URB_MEM, SMI, !F, 0xFF, S ),
159 CMD( MI_STORE_URB_MEM, SMI, !F, 0xFF, S ),
160 CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_VS, S3D, !F, 0x7FF, S ),
161 CMD( GFX_OP_3DSTATE_DX9_CONSTANTF_PS, S3D, !F, 0x7FF, S ),
162
163 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_VS, S3D, !F, 0x1FF, S ),
164 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_GS, S3D, !F, 0x1FF, S ),
165 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_HS, S3D, !F, 0x1FF, S ),
166 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_DS, S3D, !F, 0x1FF, S ),
167 CMD( GFX_OP_3DSTATE_BINDING_TABLE_EDIT_PS, S3D, !F, 0x1FF, S ),
168};
169
170static const struct drm_i915_cmd_descriptor video_cmds[] = {
Brad Volkin9c640d12014-02-18 10:15:48 -0800171 CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800172 CMD( MI_STORE_DWORD_IMM, SMI, !F, 0xFF, S ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800173 CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800174 CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, S ),
175 /*
176 * MFX_WAIT doesn't fit the way we handle length for most commands.
177 * It has a length field but it uses a non-standard length bias.
178 * It is always 1 dword though, so just treat it as fixed length.
179 */
180 CMD( MFX_WAIT, SMFX, F, 1, S ),
181};
182
183static const struct drm_i915_cmd_descriptor vecs_cmds[] = {
Brad Volkin9c640d12014-02-18 10:15:48 -0800184 CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800185 CMD( MI_STORE_DWORD_IMM, SMI, !F, 0xFF, S ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800186 CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800187 CMD( MI_CONDITIONAL_BATCH_BUFFER_END, SMI, !F, 0xFF, S ),
188};
189
190static const struct drm_i915_cmd_descriptor blt_cmds[] = {
Brad Volkin9c640d12014-02-18 10:15:48 -0800191 CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800192 CMD( MI_STORE_DWORD_IMM, SMI, !F, 0x3FF, S ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800193 CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
Brad Volkin3a6fa982014-02-18 10:15:47 -0800194 CMD( COLOR_BLT, S2D, !F, 0x3F, S ),
195 CMD( SRC_COPY_BLT, S2D, !F, 0x3F, S ),
196};
197
Brad Volkin9c640d12014-02-18 10:15:48 -0800198static const struct drm_i915_cmd_descriptor hsw_blt_cmds[] = {
Brad Volkin17c1eb12014-02-18 10:15:49 -0800199 CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
Brad Volkin9c640d12014-02-18 10:15:48 -0800200 CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
201};
202
Brad Volkin3a6fa982014-02-18 10:15:47 -0800203#undef CMD
204#undef SMI
205#undef S3D
206#undef S2D
207#undef SMFX
208#undef F
209#undef S
210#undef R
211#undef W
212#undef B
213#undef M
214
215static const struct drm_i915_cmd_table gen7_render_cmds[] = {
216 { common_cmds, ARRAY_SIZE(common_cmds) },
217 { render_cmds, ARRAY_SIZE(render_cmds) },
218};
219
220static const struct drm_i915_cmd_table hsw_render_ring_cmds[] = {
221 { common_cmds, ARRAY_SIZE(common_cmds) },
222 { render_cmds, ARRAY_SIZE(render_cmds) },
223 { hsw_render_cmds, ARRAY_SIZE(hsw_render_cmds) },
224};
225
226static const struct drm_i915_cmd_table gen7_video_cmds[] = {
227 { common_cmds, ARRAY_SIZE(common_cmds) },
228 { video_cmds, ARRAY_SIZE(video_cmds) },
229};
230
231static const struct drm_i915_cmd_table hsw_vebox_cmds[] = {
232 { common_cmds, ARRAY_SIZE(common_cmds) },
233 { vecs_cmds, ARRAY_SIZE(vecs_cmds) },
234};
235
236static const struct drm_i915_cmd_table gen7_blt_cmds[] = {
237 { common_cmds, ARRAY_SIZE(common_cmds) },
238 { blt_cmds, ARRAY_SIZE(blt_cmds) },
239};
240
Brad Volkin9c640d12014-02-18 10:15:48 -0800241static const struct drm_i915_cmd_table hsw_blt_ring_cmds[] = {
242 { common_cmds, ARRAY_SIZE(common_cmds) },
243 { blt_cmds, ARRAY_SIZE(blt_cmds) },
244 { hsw_blt_cmds, ARRAY_SIZE(hsw_blt_cmds) },
245};
246
Brad Volkin5947de92014-02-18 10:15:50 -0800247/*
248 * Register whitelists, sorted by increasing register offset.
249 *
250 * Some registers that userspace accesses are 64 bits. The register
251 * access commands only allow 32-bit accesses. Hence, we have to include
252 * entries for both halves of the 64-bit registers.
253 */
254
255/* Convenience macro for adding 64-bit registers */
256#define REG64(addr) (addr), (addr + sizeof(u32))
257
258static const u32 gen7_render_regs[] = {
259 REG64(HS_INVOCATION_COUNT),
260 REG64(DS_INVOCATION_COUNT),
261 REG64(IA_VERTICES_COUNT),
262 REG64(IA_PRIMITIVES_COUNT),
263 REG64(VS_INVOCATION_COUNT),
264 REG64(GS_INVOCATION_COUNT),
265 REG64(GS_PRIMITIVES_COUNT),
266 REG64(CL_INVOCATION_COUNT),
267 REG64(CL_PRIMITIVES_COUNT),
268 REG64(PS_INVOCATION_COUNT),
269 REG64(PS_DEPTH_COUNT),
270 REG64(GEN7_SO_NUM_PRIMS_WRITTEN(0)),
271 REG64(GEN7_SO_NUM_PRIMS_WRITTEN(1)),
272 REG64(GEN7_SO_NUM_PRIMS_WRITTEN(2)),
273 REG64(GEN7_SO_NUM_PRIMS_WRITTEN(3)),
274 GEN7_SO_WRITE_OFFSET(0),
275 GEN7_SO_WRITE_OFFSET(1),
276 GEN7_SO_WRITE_OFFSET(2),
277 GEN7_SO_WRITE_OFFSET(3),
278};
279
280static const u32 gen7_blt_regs[] = {
281 BCS_SWCTRL,
282};
283
284#undef REG64
285
Brad Volkin351e3db2014-02-18 10:15:46 -0800286static u32 gen7_render_get_cmd_length_mask(u32 cmd_header)
287{
288 u32 client = (cmd_header & INSTR_CLIENT_MASK) >> INSTR_CLIENT_SHIFT;
289 u32 subclient =
290 (cmd_header & INSTR_SUBCLIENT_MASK) >> INSTR_SUBCLIENT_SHIFT;
291
292 if (client == INSTR_MI_CLIENT)
293 return 0x3F;
294 else if (client == INSTR_RC_CLIENT) {
295 if (subclient == INSTR_MEDIA_SUBCLIENT)
296 return 0xFFFF;
297 else
298 return 0xFF;
299 }
300
301 DRM_DEBUG_DRIVER("CMD: Abnormal rcs cmd length! 0x%08X\n", cmd_header);
302 return 0;
303}
304
305static u32 gen7_bsd_get_cmd_length_mask(u32 cmd_header)
306{
307 u32 client = (cmd_header & INSTR_CLIENT_MASK) >> INSTR_CLIENT_SHIFT;
308 u32 subclient =
309 (cmd_header & INSTR_SUBCLIENT_MASK) >> INSTR_SUBCLIENT_SHIFT;
310
311 if (client == INSTR_MI_CLIENT)
312 return 0x3F;
313 else if (client == INSTR_RC_CLIENT) {
314 if (subclient == INSTR_MEDIA_SUBCLIENT)
315 return 0xFFF;
316 else
317 return 0xFF;
318 }
319
320 DRM_DEBUG_DRIVER("CMD: Abnormal bsd cmd length! 0x%08X\n", cmd_header);
321 return 0;
322}
323
324static u32 gen7_blt_get_cmd_length_mask(u32 cmd_header)
325{
326 u32 client = (cmd_header & INSTR_CLIENT_MASK) >> INSTR_CLIENT_SHIFT;
327
328 if (client == INSTR_MI_CLIENT)
329 return 0x3F;
330 else if (client == INSTR_BC_CLIENT)
331 return 0xFF;
332
333 DRM_DEBUG_DRIVER("CMD: Abnormal blt cmd length! 0x%08X\n", cmd_header);
334 return 0;
335}
336
337static void validate_cmds_sorted(struct intel_ring_buffer *ring)
338{
339 int i;
340
341 if (!ring->cmd_tables || ring->cmd_table_count == 0)
342 return;
343
344 for (i = 0; i < ring->cmd_table_count; i++) {
345 const struct drm_i915_cmd_table *table = &ring->cmd_tables[i];
346 u32 previous = 0;
347 int j;
348
349 for (j = 0; j < table->count; j++) {
350 const struct drm_i915_cmd_descriptor *desc =
351 &table->table[i];
352 u32 curr = desc->cmd.value & desc->cmd.mask;
353
354 if (curr < previous)
355 DRM_ERROR("CMD: table not sorted ring=%d table=%d entry=%d cmd=0x%08X prev=0x%08X\n",
356 ring->id, i, j, curr, previous);
357
358 previous = curr;
359 }
360 }
361}
362
363static void check_sorted(int ring_id, const u32 *reg_table, int reg_count)
364{
365 int i;
366 u32 previous = 0;
367
368 for (i = 0; i < reg_count; i++) {
369 u32 curr = reg_table[i];
370
371 if (curr < previous)
372 DRM_ERROR("CMD: table not sorted ring=%d entry=%d reg=0x%08X prev=0x%08X\n",
373 ring_id, i, curr, previous);
374
375 previous = curr;
376 }
377}
378
379static void validate_regs_sorted(struct intel_ring_buffer *ring)
380{
381 check_sorted(ring->id, ring->reg_table, ring->reg_count);
382 check_sorted(ring->id, ring->master_reg_table, ring->master_reg_count);
383}
384
385/**
386 * i915_cmd_parser_init_ring() - set cmd parser related fields for a ringbuffer
387 * @ring: the ringbuffer to initialize
388 *
389 * Optionally initializes fields related to batch buffer command parsing in the
390 * struct intel_ring_buffer based on whether the platform requires software
391 * command parsing.
392 */
393void i915_cmd_parser_init_ring(struct intel_ring_buffer *ring)
394{
395 if (!IS_GEN7(ring->dev))
396 return;
397
398 switch (ring->id) {
399 case RCS:
Brad Volkin3a6fa982014-02-18 10:15:47 -0800400 if (IS_HASWELL(ring->dev)) {
401 ring->cmd_tables = hsw_render_ring_cmds;
402 ring->cmd_table_count =
403 ARRAY_SIZE(hsw_render_ring_cmds);
404 } else {
405 ring->cmd_tables = gen7_render_cmds;
406 ring->cmd_table_count = ARRAY_SIZE(gen7_render_cmds);
407 }
408
Brad Volkin5947de92014-02-18 10:15:50 -0800409 ring->reg_table = gen7_render_regs;
410 ring->reg_count = ARRAY_SIZE(gen7_render_regs);
411
Brad Volkin351e3db2014-02-18 10:15:46 -0800412 ring->get_cmd_length_mask = gen7_render_get_cmd_length_mask;
413 break;
414 case VCS:
Brad Volkin3a6fa982014-02-18 10:15:47 -0800415 ring->cmd_tables = gen7_video_cmds;
416 ring->cmd_table_count = ARRAY_SIZE(gen7_video_cmds);
Brad Volkin351e3db2014-02-18 10:15:46 -0800417 ring->get_cmd_length_mask = gen7_bsd_get_cmd_length_mask;
418 break;
419 case BCS:
Brad Volkin9c640d12014-02-18 10:15:48 -0800420 if (IS_HASWELL(ring->dev)) {
421 ring->cmd_tables = hsw_blt_ring_cmds;
422 ring->cmd_table_count = ARRAY_SIZE(hsw_blt_ring_cmds);
423 } else {
424 ring->cmd_tables = gen7_blt_cmds;
425 ring->cmd_table_count = ARRAY_SIZE(gen7_blt_cmds);
426 }
427
Brad Volkin5947de92014-02-18 10:15:50 -0800428 ring->reg_table = gen7_blt_regs;
429 ring->reg_count = ARRAY_SIZE(gen7_blt_regs);
430
Brad Volkin351e3db2014-02-18 10:15:46 -0800431 ring->get_cmd_length_mask = gen7_blt_get_cmd_length_mask;
432 break;
433 case VECS:
Brad Volkin3a6fa982014-02-18 10:15:47 -0800434 ring->cmd_tables = hsw_vebox_cmds;
435 ring->cmd_table_count = ARRAY_SIZE(hsw_vebox_cmds);
Brad Volkin351e3db2014-02-18 10:15:46 -0800436 /* VECS can use the same length_mask function as VCS */
437 ring->get_cmd_length_mask = gen7_bsd_get_cmd_length_mask;
438 break;
439 default:
440 DRM_ERROR("CMD: cmd_parser_init with unknown ring: %d\n",
441 ring->id);
442 BUG();
443 }
444
445 validate_cmds_sorted(ring);
446 validate_regs_sorted(ring);
447}
448
449static const struct drm_i915_cmd_descriptor*
450find_cmd_in_table(const struct drm_i915_cmd_table *table,
451 u32 cmd_header)
452{
453 int i;
454
455 for (i = 0; i < table->count; i++) {
456 const struct drm_i915_cmd_descriptor *desc = &table->table[i];
457 u32 masked_cmd = desc->cmd.mask & cmd_header;
458 u32 masked_value = desc->cmd.value & desc->cmd.mask;
459
460 if (masked_cmd == masked_value)
461 return desc;
462 }
463
464 return NULL;
465}
466
467/*
468 * Returns a pointer to a descriptor for the command specified by cmd_header.
469 *
470 * The caller must supply space for a default descriptor via the default_desc
471 * parameter. If no descriptor for the specified command exists in the ring's
472 * command parser tables, this function fills in default_desc based on the
473 * ring's default length encoding and returns default_desc.
474 */
475static const struct drm_i915_cmd_descriptor*
476find_cmd(struct intel_ring_buffer *ring,
477 u32 cmd_header,
478 struct drm_i915_cmd_descriptor *default_desc)
479{
480 u32 mask;
481 int i;
482
483 for (i = 0; i < ring->cmd_table_count; i++) {
484 const struct drm_i915_cmd_descriptor *desc;
485
486 desc = find_cmd_in_table(&ring->cmd_tables[i], cmd_header);
487 if (desc)
488 return desc;
489 }
490
491 mask = ring->get_cmd_length_mask(cmd_header);
492 if (!mask)
493 return NULL;
494
495 BUG_ON(!default_desc);
496 default_desc->flags = CMD_DESC_SKIP;
497 default_desc->length.mask = mask;
498
499 return default_desc;
500}
501
502static bool valid_reg(const u32 *table, int count, u32 addr)
503{
504 if (table && count != 0) {
505 int i;
506
507 for (i = 0; i < count; i++) {
508 if (table[i] == addr)
509 return true;
510 }
511 }
512
513 return false;
514}
515
516static u32 *vmap_batch(struct drm_i915_gem_object *obj)
517{
518 int i;
519 void *addr = NULL;
520 struct sg_page_iter sg_iter;
521 struct page **pages;
522
523 pages = drm_malloc_ab(obj->base.size >> PAGE_SHIFT, sizeof(*pages));
524 if (pages == NULL) {
525 DRM_DEBUG_DRIVER("Failed to get space for pages\n");
526 goto finish;
527 }
528
529 i = 0;
530 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
531 pages[i] = sg_page_iter_page(&sg_iter);
532 i++;
533 }
534
535 addr = vmap(pages, i, 0, PAGE_KERNEL);
536 if (addr == NULL) {
537 DRM_DEBUG_DRIVER("Failed to vmap pages\n");
538 goto finish;
539 }
540
541finish:
542 if (pages)
543 drm_free_large(pages);
544 return (u32*)addr;
545}
546
547/**
548 * i915_needs_cmd_parser() - should a given ring use software command parsing?
549 * @ring: the ring in question
550 *
551 * Only certain platforms require software batch buffer command parsing, and
552 * only when enabled via module paramter.
553 *
554 * Return: true if the ring requires software command parsing
555 */
556bool i915_needs_cmd_parser(struct intel_ring_buffer *ring)
557{
558 /* No command tables indicates a platform without parsing */
559 if (!ring->cmd_tables)
560 return false;
561
562 return (i915.enable_cmd_parser == 1);
563}
564
565#define LENGTH_BIAS 2
566
567/**
568 * i915_parse_cmds() - parse a submitted batch buffer for privilege violations
569 * @ring: the ring on which the batch is to execute
570 * @batch_obj: the batch buffer in question
571 * @batch_start_offset: byte offset in the batch at which execution starts
572 * @is_master: is the submitting process the drm master?
573 *
574 * Parses the specified batch buffer looking for privilege violations as
575 * described in the overview.
576 *
577 * Return: non-zero if the parser finds violations or otherwise fails
578 */
579int i915_parse_cmds(struct intel_ring_buffer *ring,
580 struct drm_i915_gem_object *batch_obj,
581 u32 batch_start_offset,
582 bool is_master)
583{
584 int ret = 0;
585 u32 *cmd, *batch_base, *batch_end;
586 struct drm_i915_cmd_descriptor default_desc = { 0 };
587 int needs_clflush = 0;
588
589 ret = i915_gem_obj_prepare_shmem_read(batch_obj, &needs_clflush);
590 if (ret) {
591 DRM_DEBUG_DRIVER("CMD: failed to prep read\n");
592 return ret;
593 }
594
595 batch_base = vmap_batch(batch_obj);
596 if (!batch_base) {
597 DRM_DEBUG_DRIVER("CMD: Failed to vmap batch\n");
598 i915_gem_object_unpin_pages(batch_obj);
599 return -ENOMEM;
600 }
601
602 if (needs_clflush)
603 drm_clflush_virt_range((char *)batch_base, batch_obj->base.size);
604
605 cmd = batch_base + (batch_start_offset / sizeof(*cmd));
606 batch_end = cmd + (batch_obj->base.size / sizeof(*batch_end));
607
608 while (cmd < batch_end) {
609 const struct drm_i915_cmd_descriptor *desc;
610 u32 length;
611
612 if (*cmd == MI_BATCH_BUFFER_END)
613 break;
614
615 desc = find_cmd(ring, *cmd, &default_desc);
616 if (!desc) {
617 DRM_DEBUG_DRIVER("CMD: Unrecognized command: 0x%08X\n",
618 *cmd);
619 ret = -EINVAL;
620 break;
621 }
622
623 if (desc->flags & CMD_DESC_FIXED)
624 length = desc->length.fixed;
625 else
626 length = ((*cmd & desc->length.mask) + LENGTH_BIAS);
627
628 if ((batch_end - cmd) < length) {
Damien Lespiaue5081a52014-03-18 17:43:08 +0000629 DRM_DEBUG_DRIVER("CMD: Command length exceeds batch length: 0x%08X length=%d batchlen=%td\n",
Brad Volkin351e3db2014-02-18 10:15:46 -0800630 *cmd,
631 length,
632 batch_end - cmd);
633 ret = -EINVAL;
634 break;
635 }
636
637 if (desc->flags & CMD_DESC_REJECT) {
638 DRM_DEBUG_DRIVER("CMD: Rejected command: 0x%08X\n", *cmd);
639 ret = -EINVAL;
640 break;
641 }
642
643 if ((desc->flags & CMD_DESC_MASTER) && !is_master) {
644 DRM_DEBUG_DRIVER("CMD: Rejected master-only command: 0x%08X\n",
645 *cmd);
646 ret = -EINVAL;
647 break;
648 }
649
650 if (desc->flags & CMD_DESC_REGISTER) {
651 u32 reg_addr = cmd[desc->reg.offset] & desc->reg.mask;
652
653 if (!valid_reg(ring->reg_table,
654 ring->reg_count, reg_addr)) {
655 if (!is_master ||
656 !valid_reg(ring->master_reg_table,
657 ring->master_reg_count,
658 reg_addr)) {
659 DRM_DEBUG_DRIVER("CMD: Rejected register 0x%08X in command: 0x%08X (ring=%d)\n",
660 reg_addr,
661 *cmd,
662 ring->id);
663 ret = -EINVAL;
664 break;
665 }
666 }
667 }
668
669 if (desc->flags & CMD_DESC_BITMASK) {
670 int i;
671
672 for (i = 0; i < MAX_CMD_DESC_BITMASKS; i++) {
673 u32 dword;
674
675 if (desc->bits[i].mask == 0)
676 break;
677
678 dword = cmd[desc->bits[i].offset] &
679 desc->bits[i].mask;
680
681 if (dword != desc->bits[i].expected) {
682 DRM_DEBUG_DRIVER("CMD: Rejected command 0x%08X for bitmask 0x%08X (exp=0x%08X act=0x%08X) (ring=%d)\n",
683 *cmd,
684 desc->bits[i].mask,
685 desc->bits[i].expected,
686 dword, ring->id);
687 ret = -EINVAL;
688 break;
689 }
690 }
691
692 if (ret)
693 break;
694 }
695
696 cmd += length;
697 }
698
699 if (cmd >= batch_end) {
700 DRM_DEBUG_DRIVER("CMD: Got to the end of the buffer w/o a BBE cmd!\n");
701 ret = -EINVAL;
702 }
703
704 vunmap(batch_base);
705
706 i915_gem_object_unpin_pages(batch_obj);
707
708 return ret;
709}