Merge tag 'drm-intel-next-2022-04-13-1' of git://anongit.freedesktop.org/drm/drm...
[linux-2.6-microblaze.git] / drivers / gpu / drm / i915 / gem / i915_gem_execbuffer.c
1 /*
2  * SPDX-License-Identifier: MIT
3  *
4  * Copyright © 2008,2010 Intel Corporation
5  */
6
7 #include <linux/dma-resv.h>
8 #include <linux/highmem.h>
9 #include <linux/intel-iommu.h>
10 #include <linux/sync_file.h>
11 #include <linux/uaccess.h>
12
13 #include <drm/drm_syncobj.h>
14
15 #include "display/intel_frontbuffer.h"
16
17 #include "gem/i915_gem_ioctls.h"
18 #include "gt/intel_context.h"
19 #include "gt/intel_gpu_commands.h"
20 #include "gt/intel_gt.h"
21 #include "gt/intel_gt_buffer_pool.h"
22 #include "gt/intel_gt_pm.h"
23 #include "gt/intel_ring.h"
24
25 #include "pxp/intel_pxp.h"
26
27 #include "i915_cmd_parser.h"
28 #include "i915_drv.h"
29 #include "i915_file_private.h"
30 #include "i915_gem_clflush.h"
31 #include "i915_gem_context.h"
32 #include "i915_gem_evict.h"
33 #include "i915_gem_ioctls.h"
34 #include "i915_trace.h"
35 #include "i915_user_extensions.h"
36
37 struct eb_vma {
38         struct i915_vma *vma;
39         unsigned int flags;
40
41         /** This vma's place in the execbuf reservation list */
42         struct drm_i915_gem_exec_object2 *exec;
43         struct list_head bind_link;
44         struct list_head reloc_link;
45
46         struct hlist_node node;
47         u32 handle;
48 };
49
50 enum {
51         FORCE_CPU_RELOC = 1,
52         FORCE_GTT_RELOC,
53         FORCE_GPU_RELOC,
54 #define DBG_FORCE_RELOC 0 /* choose one of the above! */
55 };
56
57 /* __EXEC_OBJECT_NO_RESERVE is BIT(31), defined in i915_vma.h */
58 #define __EXEC_OBJECT_HAS_PIN           BIT(30)
59 #define __EXEC_OBJECT_HAS_FENCE         BIT(29)
60 #define __EXEC_OBJECT_USERPTR_INIT      BIT(28)
61 #define __EXEC_OBJECT_NEEDS_MAP         BIT(27)
62 #define __EXEC_OBJECT_NEEDS_BIAS        BIT(26)
63 #define __EXEC_OBJECT_INTERNAL_FLAGS    (~0u << 26) /* all of the above + */
64 #define __EXEC_OBJECT_RESERVED (__EXEC_OBJECT_HAS_PIN | __EXEC_OBJECT_HAS_FENCE)
65
66 #define __EXEC_HAS_RELOC        BIT(31)
67 #define __EXEC_ENGINE_PINNED    BIT(30)
68 #define __EXEC_USERPTR_USED     BIT(29)
69 #define __EXEC_INTERNAL_FLAGS   (~0u << 29)
70 #define UPDATE                  PIN_OFFSET_FIXED
71
72 #define BATCH_OFFSET_BIAS (256*1024)
73
74 #define __I915_EXEC_ILLEGAL_FLAGS \
75         (__I915_EXEC_UNKNOWN_FLAGS | \
76          I915_EXEC_CONSTANTS_MASK  | \
77          I915_EXEC_RESOURCE_STREAMER)
78
79 /* Catch emission of unexpected errors for CI! */
80 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)
81 #undef EINVAL
82 #define EINVAL ({ \
83         DRM_DEBUG_DRIVER("EINVAL at %s:%d\n", __func__, __LINE__); \
84         22; \
85 })
86 #endif
87
88 /**
89  * DOC: User command execution
90  *
91  * Userspace submits commands to be executed on the GPU as an instruction
92  * stream within a GEM object we call a batchbuffer. This instructions may
93  * refer to other GEM objects containing auxiliary state such as kernels,
94  * samplers, render targets and even secondary batchbuffers. Userspace does
95  * not know where in the GPU memory these objects reside and so before the
96  * batchbuffer is passed to the GPU for execution, those addresses in the
97  * batchbuffer and auxiliary objects are updated. This is known as relocation,
98  * or patching. To try and avoid having to relocate each object on the next
99  * execution, userspace is told the location of those objects in this pass,
100  * but this remains just a hint as the kernel may choose a new location for
101  * any object in the future.
102  *
103  * At the level of talking to the hardware, submitting a batchbuffer for the
104  * GPU to execute is to add content to a buffer from which the HW
105  * command streamer is reading.
106  *
107  * 1. Add a command to load the HW context. For Logical Ring Contexts, i.e.
108  *    Execlists, this command is not placed on the same buffer as the
109  *    remaining items.
110  *
111  * 2. Add a command to invalidate caches to the buffer.
112  *
113  * 3. Add a batchbuffer start command to the buffer; the start command is
114  *    essentially a token together with the GPU address of the batchbuffer
115  *    to be executed.
116  *
117  * 4. Add a pipeline flush to the buffer.
118  *
119  * 5. Add a memory write command to the buffer to record when the GPU
120  *    is done executing the batchbuffer. The memory write writes the
121  *    global sequence number of the request, ``i915_request::global_seqno``;
122  *    the i915 driver uses the current value in the register to determine
123  *    if the GPU has completed the batchbuffer.
124  *
125  * 6. Add a user interrupt command to the buffer. This command instructs
126  *    the GPU to issue an interrupt when the command, pipeline flush and
127  *    memory write are completed.
128  *
129  * 7. Inform the hardware of the additional commands added to the buffer
130  *    (by updating the tail pointer).
131  *
132  * Processing an execbuf ioctl is conceptually split up into a few phases.
133  *
134  * 1. Validation - Ensure all the pointers, handles and flags are valid.
135  * 2. Reservation - Assign GPU address space for every object
136  * 3. Relocation - Update any addresses to point to the final locations
137  * 4. Serialisation - Order the request with respect to its dependencies
138  * 5. Construction - Construct a request to execute the batchbuffer
139  * 6. Submission (at some point in the future execution)
140  *
141  * Reserving resources for the execbuf is the most complicated phase. We
142  * neither want to have to migrate the object in the address space, nor do
143  * we want to have to update any relocations pointing to this object. Ideally,
144  * we want to leave the object where it is and for all the existing relocations
145  * to match. If the object is given a new address, or if userspace thinks the
146  * object is elsewhere, we have to parse all the relocation entries and update
147  * the addresses. Userspace can set the I915_EXEC_NORELOC flag to hint that
148  * all the target addresses in all of its objects match the value in the
149  * relocation entries and that they all match the presumed offsets given by the
150  * list of execbuffer objects. Using this knowledge, we know that if we haven't
151  * moved any buffers, all the relocation entries are valid and we can skip
152  * the update. (If userspace is wrong, the likely outcome is an impromptu GPU
153  * hang.) The requirement for using I915_EXEC_NO_RELOC are:
154  *
155  *      The addresses written in the objects must match the corresponding
156  *      reloc.presumed_offset which in turn must match the corresponding
157  *      execobject.offset.
158  *
159  *      Any render targets written to in the batch must be flagged with
160  *      EXEC_OBJECT_WRITE.
161  *
162  *      To avoid stalling, execobject.offset should match the current
163  *      address of that object within the active context.
164  *
165  * The reservation is done is multiple phases. First we try and keep any
166  * object already bound in its current location - so as long as meets the
167  * constraints imposed by the new execbuffer. Any object left unbound after the
168  * first pass is then fitted into any available idle space. If an object does
169  * not fit, all objects are removed from the reservation and the process rerun
170  * after sorting the objects into a priority order (more difficult to fit
171  * objects are tried first). Failing that, the entire VM is cleared and we try
172  * to fit the execbuf once last time before concluding that it simply will not
173  * fit.
174  *
175  * A small complication to all of this is that we allow userspace not only to
176  * specify an alignment and a size for the object in the address space, but
177  * we also allow userspace to specify the exact offset. This objects are
178  * simpler to place (the location is known a priori) all we have to do is make
179  * sure the space is available.
180  *
181  * Once all the objects are in place, patching up the buried pointers to point
182  * to the final locations is a fairly simple job of walking over the relocation
183  * entry arrays, looking up the right address and rewriting the value into
184  * the object. Simple! ... The relocation entries are stored in user memory
185  * and so to access them we have to copy them into a local buffer. That copy
186  * has to avoid taking any pagefaults as they may lead back to a GEM object
187  * requiring the struct_mutex (i.e. recursive deadlock). So once again we split
188  * the relocation into multiple passes. First we try to do everything within an
189  * atomic context (avoid the pagefaults) which requires that we never wait. If
190  * we detect that we may wait, or if we need to fault, then we have to fallback
191  * to a slower path. The slowpath has to drop the mutex. (Can you hear alarm
192  * bells yet?) Dropping the mutex means that we lose all the state we have
193  * built up so far for the execbuf and we must reset any global data. However,
194  * we do leave the objects pinned in their final locations - which is a
195  * potential issue for concurrent execbufs. Once we have left the mutex, we can
196  * allocate and copy all the relocation entries into a large array at our
197  * leisure, reacquire the mutex, reclaim all the objects and other state and
198  * then proceed to update any incorrect addresses with the objects.
199  *
200  * As we process the relocation entries, we maintain a record of whether the
201  * object is being written to. Using NORELOC, we expect userspace to provide
202  * this information instead. We also check whether we can skip the relocation
203  * by comparing the expected value inside the relocation entry with the target's
204  * final address. If they differ, we have to map the current object and rewrite
205  * the 4 or 8 byte pointer within.
206  *
207  * Serialising an execbuf is quite simple according to the rules of the GEM
208  * ABI. Execution within each context is ordered by the order of submission.
209  * Writes to any GEM object are in order of submission and are exclusive. Reads
210  * from a GEM object are unordered with respect to other reads, but ordered by
211  * writes. A write submitted after a read cannot occur before the read, and
212  * similarly any read submitted after a write cannot occur before the write.
213  * Writes are ordered between engines such that only one write occurs at any
214  * time (completing any reads beforehand) - using semaphores where available
215  * and CPU serialisation otherwise. Other GEM access obey the same rules, any
216  * write (either via mmaps using set-domain, or via pwrite) must flush all GPU
217  * reads before starting, and any read (either using set-domain or pread) must
218  * flush all GPU writes before starting. (Note we only employ a barrier before,
219  * we currently rely on userspace not concurrently starting a new execution
220  * whilst reading or writing to an object. This may be an advantage or not
221  * depending on how much you trust userspace not to shoot themselves in the
222  * foot.) Serialisation may just result in the request being inserted into
223  * a DAG awaiting its turn, but most simple is to wait on the CPU until
224  * all dependencies are resolved.
225  *
226  * After all of that, is just a matter of closing the request and handing it to
227  * the hardware (well, leaving it in a queue to be executed). However, we also
228  * offer the ability for batchbuffers to be run with elevated privileges so
229  * that they access otherwise hidden registers. (Used to adjust L3 cache etc.)
230  * Before any batch is given extra privileges we first must check that it
231  * contains no nefarious instructions, we check that each instruction is from
232  * our whitelist and all registers are also from an allowed list. We first
233  * copy the user's batchbuffer to a shadow (so that the user doesn't have
234  * access to it, either by the CPU or GPU as we scan it) and then parse each
235  * instruction. If everything is ok, we set a flag telling the hardware to run
236  * the batchbuffer in trusted mode, otherwise the ioctl is rejected.
237  */
238
239 struct eb_fence {
240         struct drm_syncobj *syncobj; /* Use with ptr_mask_bits() */
241         struct dma_fence *dma_fence;
242         u64 value;
243         struct dma_fence_chain *chain_fence;
244 };
245
246 struct i915_execbuffer {
247         struct drm_i915_private *i915; /** i915 backpointer */
248         struct drm_file *file; /** per-file lookup tables and limits */
249         struct drm_i915_gem_execbuffer2 *args; /** ioctl parameters */
250         struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */
251         struct eb_vma *vma;
252
253         struct intel_gt *gt; /* gt for the execbuf */
254         struct intel_context *context; /* logical state for the request */
255         struct i915_gem_context *gem_context; /** caller's context */
256
257         /** our requests to build */
258         struct i915_request *requests[MAX_ENGINE_INSTANCE + 1];
259         /** identity of the batch obj/vma */
260         struct eb_vma *batches[MAX_ENGINE_INSTANCE + 1];
261         struct i915_vma *trampoline; /** trampoline used for chaining */
262
263         /** used for excl fence in dma_resv objects when > 1 BB submitted */
264         struct dma_fence *composite_fence;
265
266         /** actual size of execobj[] as we may extend it for the cmdparser */
267         unsigned int buffer_count;
268
269         /* number of batches in execbuf IOCTL */
270         unsigned int num_batches;
271
272         /** list of vma not yet bound during reservation phase */
273         struct list_head unbound;
274
275         /** list of vma that have execobj.relocation_count */
276         struct list_head relocs;
277
278         struct i915_gem_ww_ctx ww;
279
280         /**
281          * Track the most recently used object for relocations, as we
282          * frequently have to perform multiple relocations within the same
283          * obj/page
284          */
285         struct reloc_cache {
286                 struct drm_mm_node node; /** temporary GTT binding */
287                 unsigned long vaddr; /** Current kmap address */
288                 unsigned long page; /** Currently mapped page index */
289                 unsigned int graphics_ver; /** Cached value of GRAPHICS_VER */
290                 bool use_64bit_reloc : 1;
291                 bool has_llc : 1;
292                 bool has_fence : 1;
293                 bool needs_unfenced : 1;
294         } reloc_cache;
295
296         u64 invalid_flags; /** Set of execobj.flags that are invalid */
297
298         /** Length of batch within object */
299         u64 batch_len[MAX_ENGINE_INSTANCE + 1];
300         u32 batch_start_offset; /** Location within object of batch */
301         u32 batch_flags; /** Flags composed for emit_bb_start() */
302         struct intel_gt_buffer_pool_node *batch_pool; /** pool node for batch buffer */
303
304         /**
305          * Indicate either the size of the hastable used to resolve
306          * relocation handles, or if negative that we are using a direct
307          * index into the execobj[].
308          */
309         int lut_size;
310         struct hlist_head *buckets; /** ht for relocation handles */
311
312         struct eb_fence *fences;
313         unsigned long num_fences;
314 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
315         struct i915_capture_list *capture_lists[MAX_ENGINE_INSTANCE + 1];
316 #endif
317 };
318
319 static int eb_parse(struct i915_execbuffer *eb);
320 static int eb_pin_engine(struct i915_execbuffer *eb, bool throttle);
321 static void eb_unpin_engine(struct i915_execbuffer *eb);
322 static void eb_capture_release(struct i915_execbuffer *eb);
323
324 static inline bool eb_use_cmdparser(const struct i915_execbuffer *eb)
325 {
326         return intel_engine_requires_cmd_parser(eb->context->engine) ||
327                 (intel_engine_using_cmd_parser(eb->context->engine) &&
328                  eb->args->batch_len);
329 }
330
331 static int eb_create(struct i915_execbuffer *eb)
332 {
333         if (!(eb->args->flags & I915_EXEC_HANDLE_LUT)) {
334                 unsigned int size = 1 + ilog2(eb->buffer_count);
335
336                 /*
337                  * Without a 1:1 association between relocation handles and
338                  * the execobject[] index, we instead create a hashtable.
339                  * We size it dynamically based on available memory, starting
340                  * first with 1:1 assocative hash and scaling back until
341                  * the allocation succeeds.
342                  *
343                  * Later on we use a positive lut_size to indicate we are
344                  * using this hashtable, and a negative value to indicate a
345                  * direct lookup.
346                  */
347                 do {
348                         gfp_t flags;
349
350                         /* While we can still reduce the allocation size, don't
351                          * raise a warning and allow the allocation to fail.
352                          * On the last pass though, we want to try as hard
353                          * as possible to perform the allocation and warn
354                          * if it fails.
355                          */
356                         flags = GFP_KERNEL;
357                         if (size > 1)
358                                 flags |= __GFP_NORETRY | __GFP_NOWARN;
359
360                         eb->buckets = kzalloc(sizeof(struct hlist_head) << size,
361                                               flags);
362                         if (eb->buckets)
363                                 break;
364                 } while (--size);
365
366                 if (unlikely(!size))
367                         return -ENOMEM;
368
369                 eb->lut_size = size;
370         } else {
371                 eb->lut_size = -eb->buffer_count;
372         }
373
374         return 0;
375 }
376
377 static bool
378 eb_vma_misplaced(const struct drm_i915_gem_exec_object2 *entry,
379                  const struct i915_vma *vma,
380                  unsigned int flags)
381 {
382         if (vma->node.size < entry->pad_to_size)
383                 return true;
384
385         if (entry->alignment && !IS_ALIGNED(vma->node.start, entry->alignment))
386                 return true;
387
388         if (flags & EXEC_OBJECT_PINNED &&
389             vma->node.start != entry->offset)
390                 return true;
391
392         if (flags & __EXEC_OBJECT_NEEDS_BIAS &&
393             vma->node.start < BATCH_OFFSET_BIAS)
394                 return true;
395
396         if (!(flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) &&
397             (vma->node.start + vma->node.size + 4095) >> 32)
398                 return true;
399
400         if (flags & __EXEC_OBJECT_NEEDS_MAP &&
401             !i915_vma_is_map_and_fenceable(vma))
402                 return true;
403
404         return false;
405 }
406
407 static u64 eb_pin_flags(const struct drm_i915_gem_exec_object2 *entry,
408                         unsigned int exec_flags)
409 {
410         u64 pin_flags = 0;
411
412         if (exec_flags & EXEC_OBJECT_NEEDS_GTT)
413                 pin_flags |= PIN_GLOBAL;
414
415         /*
416          * Wa32bitGeneralStateOffset & Wa32bitInstructionBaseOffset,
417          * limit address to the first 4GBs for unflagged objects.
418          */
419         if (!(exec_flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS))
420                 pin_flags |= PIN_ZONE_4G;
421
422         if (exec_flags & __EXEC_OBJECT_NEEDS_MAP)
423                 pin_flags |= PIN_MAPPABLE;
424
425         if (exec_flags & EXEC_OBJECT_PINNED)
426                 pin_flags |= entry->offset | PIN_OFFSET_FIXED;
427         else if (exec_flags & __EXEC_OBJECT_NEEDS_BIAS)
428                 pin_flags |= BATCH_OFFSET_BIAS | PIN_OFFSET_BIAS;
429
430         return pin_flags;
431 }
432
433 static inline int
434 eb_pin_vma(struct i915_execbuffer *eb,
435            const struct drm_i915_gem_exec_object2 *entry,
436            struct eb_vma *ev)
437 {
438         struct i915_vma *vma = ev->vma;
439         u64 pin_flags;
440         int err;
441
442         if (vma->node.size)
443                 pin_flags = vma->node.start;
444         else
445                 pin_flags = entry->offset & PIN_OFFSET_MASK;
446
447         pin_flags |= PIN_USER | PIN_NOEVICT | PIN_OFFSET_FIXED | PIN_VALIDATE;
448         if (unlikely(ev->flags & EXEC_OBJECT_NEEDS_GTT))
449                 pin_flags |= PIN_GLOBAL;
450
451         /* Attempt to reuse the current location if available */
452         err = i915_vma_pin_ww(vma, &eb->ww, 0, 0, pin_flags);
453         if (err == -EDEADLK)
454                 return err;
455
456         if (unlikely(err)) {
457                 if (entry->flags & EXEC_OBJECT_PINNED)
458                         return err;
459
460                 /* Failing that pick any _free_ space if suitable */
461                 err = i915_vma_pin_ww(vma, &eb->ww,
462                                              entry->pad_to_size,
463                                              entry->alignment,
464                                              eb_pin_flags(entry, ev->flags) |
465                                              PIN_USER | PIN_NOEVICT | PIN_VALIDATE);
466                 if (unlikely(err))
467                         return err;
468         }
469
470         if (unlikely(ev->flags & EXEC_OBJECT_NEEDS_FENCE)) {
471                 err = i915_vma_pin_fence(vma);
472                 if (unlikely(err))
473                         return err;
474
475                 if (vma->fence)
476                         ev->flags |= __EXEC_OBJECT_HAS_FENCE;
477         }
478
479         ev->flags |= __EXEC_OBJECT_HAS_PIN;
480         if (eb_vma_misplaced(entry, vma, ev->flags))
481                 return -EBADSLT;
482
483         return 0;
484 }
485
486 static inline void
487 eb_unreserve_vma(struct eb_vma *ev)
488 {
489         if (unlikely(ev->flags & __EXEC_OBJECT_HAS_FENCE))
490                 __i915_vma_unpin_fence(ev->vma);
491
492         ev->flags &= ~__EXEC_OBJECT_RESERVED;
493 }
494
495 static int
496 eb_validate_vma(struct i915_execbuffer *eb,
497                 struct drm_i915_gem_exec_object2 *entry,
498                 struct i915_vma *vma)
499 {
500         /* Relocations are disallowed for all platforms after TGL-LP.  This
501          * also covers all platforms with local memory.
502          */
503         if (entry->relocation_count &&
504             GRAPHICS_VER(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
505                 return -EINVAL;
506
507         if (unlikely(entry->flags & eb->invalid_flags))
508                 return -EINVAL;
509
510         if (unlikely(entry->alignment &&
511                      !is_power_of_2_u64(entry->alignment)))
512                 return -EINVAL;
513
514         /*
515          * Offset can be used as input (EXEC_OBJECT_PINNED), reject
516          * any non-page-aligned or non-canonical addresses.
517          */
518         if (unlikely(entry->flags & EXEC_OBJECT_PINNED &&
519                      entry->offset != gen8_canonical_addr(entry->offset & I915_GTT_PAGE_MASK)))
520                 return -EINVAL;
521
522         /* pad_to_size was once a reserved field, so sanitize it */
523         if (entry->flags & EXEC_OBJECT_PAD_TO_SIZE) {
524                 if (unlikely(offset_in_page(entry->pad_to_size)))
525                         return -EINVAL;
526         } else {
527                 entry->pad_to_size = 0;
528         }
529         /*
530          * From drm_mm perspective address space is continuous,
531          * so from this point we're always using non-canonical
532          * form internally.
533          */
534         entry->offset = gen8_noncanonical_addr(entry->offset);
535
536         if (!eb->reloc_cache.has_fence) {
537                 entry->flags &= ~EXEC_OBJECT_NEEDS_FENCE;
538         } else {
539                 if ((entry->flags & EXEC_OBJECT_NEEDS_FENCE ||
540                      eb->reloc_cache.needs_unfenced) &&
541                     i915_gem_object_is_tiled(vma->obj))
542                         entry->flags |= EXEC_OBJECT_NEEDS_GTT | __EXEC_OBJECT_NEEDS_MAP;
543         }
544
545         return 0;
546 }
547
548 static inline bool
549 is_batch_buffer(struct i915_execbuffer *eb, unsigned int buffer_idx)
550 {
551         return eb->args->flags & I915_EXEC_BATCH_FIRST ?
552                 buffer_idx < eb->num_batches :
553                 buffer_idx >= eb->args->buffer_count - eb->num_batches;
554 }
555
556 static int
557 eb_add_vma(struct i915_execbuffer *eb,
558            unsigned int *current_batch,
559            unsigned int i,
560            struct i915_vma *vma)
561 {
562         struct drm_i915_private *i915 = eb->i915;
563         struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
564         struct eb_vma *ev = &eb->vma[i];
565
566         ev->vma = vma;
567         ev->exec = entry;
568         ev->flags = entry->flags;
569
570         if (eb->lut_size > 0) {
571                 ev->handle = entry->handle;
572                 hlist_add_head(&ev->node,
573                                &eb->buckets[hash_32(entry->handle,
574                                                     eb->lut_size)]);
575         }
576
577         if (entry->relocation_count)
578                 list_add_tail(&ev->reloc_link, &eb->relocs);
579
580         /*
581          * SNA is doing fancy tricks with compressing batch buffers, which leads
582          * to negative relocation deltas. Usually that works out ok since the
583          * relocate address is still positive, except when the batch is placed
584          * very low in the GTT. Ensure this doesn't happen.
585          *
586          * Note that actual hangs have only been observed on gen7, but for
587          * paranoia do it everywhere.
588          */
589         if (is_batch_buffer(eb, i)) {
590                 if (entry->relocation_count &&
591                     !(ev->flags & EXEC_OBJECT_PINNED))
592                         ev->flags |= __EXEC_OBJECT_NEEDS_BIAS;
593                 if (eb->reloc_cache.has_fence)
594                         ev->flags |= EXEC_OBJECT_NEEDS_FENCE;
595
596                 eb->batches[*current_batch] = ev;
597
598                 if (unlikely(ev->flags & EXEC_OBJECT_WRITE)) {
599                         drm_dbg(&i915->drm,
600                                 "Attempting to use self-modifying batch buffer\n");
601                         return -EINVAL;
602                 }
603
604                 if (range_overflows_t(u64,
605                                       eb->batch_start_offset,
606                                       eb->args->batch_len,
607                                       ev->vma->size)) {
608                         drm_dbg(&i915->drm, "Attempting to use out-of-bounds batch\n");
609                         return -EINVAL;
610                 }
611
612                 if (eb->args->batch_len == 0)
613                         eb->batch_len[*current_batch] = ev->vma->size -
614                                 eb->batch_start_offset;
615                 else
616                         eb->batch_len[*current_batch] = eb->args->batch_len;
617                 if (unlikely(eb->batch_len[*current_batch] == 0)) { /* impossible! */
618                         drm_dbg(&i915->drm, "Invalid batch length\n");
619                         return -EINVAL;
620                 }
621
622                 ++*current_batch;
623         }
624
625         return 0;
626 }
627
628 static inline int use_cpu_reloc(const struct reloc_cache *cache,
629                                 const struct drm_i915_gem_object *obj)
630 {
631         if (!i915_gem_object_has_struct_page(obj))
632                 return false;
633
634         if (DBG_FORCE_RELOC == FORCE_CPU_RELOC)
635                 return true;
636
637         if (DBG_FORCE_RELOC == FORCE_GTT_RELOC)
638                 return false;
639
640         return (cache->has_llc ||
641                 obj->cache_dirty ||
642                 obj->cache_level != I915_CACHE_NONE);
643 }
644
645 static int eb_reserve_vma(struct i915_execbuffer *eb,
646                           struct eb_vma *ev,
647                           u64 pin_flags)
648 {
649         struct drm_i915_gem_exec_object2 *entry = ev->exec;
650         struct i915_vma *vma = ev->vma;
651         int err;
652
653         if (drm_mm_node_allocated(&vma->node) &&
654             eb_vma_misplaced(entry, vma, ev->flags)) {
655                 err = i915_vma_unbind(vma);
656                 if (err)
657                         return err;
658         }
659
660         err = i915_vma_pin_ww(vma, &eb->ww,
661                            entry->pad_to_size, entry->alignment,
662                            eb_pin_flags(entry, ev->flags) | pin_flags);
663         if (err)
664                 return err;
665
666         if (entry->offset != vma->node.start) {
667                 entry->offset = vma->node.start | UPDATE;
668                 eb->args->flags |= __EXEC_HAS_RELOC;
669         }
670
671         if (unlikely(ev->flags & EXEC_OBJECT_NEEDS_FENCE)) {
672                 err = i915_vma_pin_fence(vma);
673                 if (unlikely(err))
674                         return err;
675
676                 if (vma->fence)
677                         ev->flags |= __EXEC_OBJECT_HAS_FENCE;
678         }
679
680         ev->flags |= __EXEC_OBJECT_HAS_PIN;
681         GEM_BUG_ON(eb_vma_misplaced(entry, vma, ev->flags));
682
683         return 0;
684 }
685
686 static bool eb_unbind(struct i915_execbuffer *eb, bool force)
687 {
688         const unsigned int count = eb->buffer_count;
689         unsigned int i;
690         struct list_head last;
691         bool unpinned = false;
692
693         /* Resort *all* the objects into priority order */
694         INIT_LIST_HEAD(&eb->unbound);
695         INIT_LIST_HEAD(&last);
696
697         for (i = 0; i < count; i++) {
698                 struct eb_vma *ev = &eb->vma[i];
699                 unsigned int flags = ev->flags;
700
701                 if (!force && flags & EXEC_OBJECT_PINNED &&
702                     flags & __EXEC_OBJECT_HAS_PIN)
703                         continue;
704
705                 unpinned = true;
706                 eb_unreserve_vma(ev);
707
708                 if (flags & EXEC_OBJECT_PINNED)
709                         /* Pinned must have their slot */
710                         list_add(&ev->bind_link, &eb->unbound);
711                 else if (flags & __EXEC_OBJECT_NEEDS_MAP)
712                         /* Map require the lowest 256MiB (aperture) */
713                         list_add_tail(&ev->bind_link, &eb->unbound);
714                 else if (!(flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS))
715                         /* Prioritise 4GiB region for restricted bo */
716                         list_add(&ev->bind_link, &last);
717                 else
718                         list_add_tail(&ev->bind_link, &last);
719         }
720
721         list_splice_tail(&last, &eb->unbound);
722         return unpinned;
723 }
724
725 static int eb_reserve(struct i915_execbuffer *eb)
726 {
727         struct eb_vma *ev;
728         unsigned int pass;
729         int err = 0;
730         bool unpinned;
731
732         /*
733          * Attempt to pin all of the buffers into the GTT.
734          * This is done in 2 phases:
735          *
736          * 1. Unbind all objects that do not match the GTT constraints for
737          *    the execbuffer (fenceable, mappable, alignment etc).
738          * 2. Bind new objects.
739          *
740          * This avoid unnecessary unbinding of later objects in order to make
741          * room for the earlier objects *unless* we need to defragment.
742          *
743          * Defragmenting is skipped if all objects are pinned at a fixed location.
744          */
745         for (pass = 0; pass <= 2; pass++) {
746                 int pin_flags = PIN_USER | PIN_VALIDATE;
747
748                 if (pass == 0)
749                         pin_flags |= PIN_NONBLOCK;
750
751                 if (pass >= 1)
752                         unpinned = eb_unbind(eb, pass == 2);
753
754                 if (pass == 2) {
755                         err = mutex_lock_interruptible(&eb->context->vm->mutex);
756                         if (!err) {
757                                 err = i915_gem_evict_vm(eb->context->vm, &eb->ww);
758                                 mutex_unlock(&eb->context->vm->mutex);
759                         }
760                         if (err)
761                                 return err;
762                 }
763
764                 list_for_each_entry(ev, &eb->unbound, bind_link) {
765                         err = eb_reserve_vma(eb, ev, pin_flags);
766                         if (err)
767                                 break;
768                 }
769
770                 if (err != -ENOSPC)
771                         break;
772         }
773
774         return err;
775 }
776
777 static int eb_select_context(struct i915_execbuffer *eb)
778 {
779         struct i915_gem_context *ctx;
780
781         ctx = i915_gem_context_lookup(eb->file->driver_priv, eb->args->rsvd1);
782         if (unlikely(IS_ERR(ctx)))
783                 return PTR_ERR(ctx);
784
785         eb->gem_context = ctx;
786         if (i915_gem_context_has_full_ppgtt(ctx))
787                 eb->invalid_flags |= EXEC_OBJECT_NEEDS_GTT;
788
789         return 0;
790 }
791
792 static int __eb_add_lut(struct i915_execbuffer *eb,
793                         u32 handle, struct i915_vma *vma)
794 {
795         struct i915_gem_context *ctx = eb->gem_context;
796         struct i915_lut_handle *lut;
797         int err;
798
799         lut = i915_lut_handle_alloc();
800         if (unlikely(!lut))
801                 return -ENOMEM;
802
803         i915_vma_get(vma);
804         if (!atomic_fetch_inc(&vma->open_count))
805                 i915_vma_reopen(vma);
806         lut->handle = handle;
807         lut->ctx = ctx;
808
809         /* Check that the context hasn't been closed in the meantime */
810         err = -EINTR;
811         if (!mutex_lock_interruptible(&ctx->lut_mutex)) {
812                 if (likely(!i915_gem_context_is_closed(ctx)))
813                         err = radix_tree_insert(&ctx->handles_vma, handle, vma);
814                 else
815                         err = -ENOENT;
816                 if (err == 0) { /* And nor has this handle */
817                         struct drm_i915_gem_object *obj = vma->obj;
818
819                         spin_lock(&obj->lut_lock);
820                         if (idr_find(&eb->file->object_idr, handle) == obj) {
821                                 list_add(&lut->obj_link, &obj->lut_list);
822                         } else {
823                                 radix_tree_delete(&ctx->handles_vma, handle);
824                                 err = -ENOENT;
825                         }
826                         spin_unlock(&obj->lut_lock);
827                 }
828                 mutex_unlock(&ctx->lut_mutex);
829         }
830         if (unlikely(err))
831                 goto err;
832
833         return 0;
834
835 err:
836         i915_vma_close(vma);
837         i915_vma_put(vma);
838         i915_lut_handle_free(lut);
839         return err;
840 }
841
842 static struct i915_vma *eb_lookup_vma(struct i915_execbuffer *eb, u32 handle)
843 {
844         struct i915_address_space *vm = eb->context->vm;
845
846         do {
847                 struct drm_i915_gem_object *obj;
848                 struct i915_vma *vma;
849                 int err;
850
851                 rcu_read_lock();
852                 vma = radix_tree_lookup(&eb->gem_context->handles_vma, handle);
853                 if (likely(vma && vma->vm == vm))
854                         vma = i915_vma_tryget(vma);
855                 rcu_read_unlock();
856                 if (likely(vma))
857                         return vma;
858
859                 obj = i915_gem_object_lookup(eb->file, handle);
860                 if (unlikely(!obj))
861                         return ERR_PTR(-ENOENT);
862
863                 /*
864                  * If the user has opted-in for protected-object tracking, make
865                  * sure the object encryption can be used.
866                  * We only need to do this when the object is first used with
867                  * this context, because the context itself will be banned when
868                  * the protected objects become invalid.
869                  */
870                 if (i915_gem_context_uses_protected_content(eb->gem_context) &&
871                     i915_gem_object_is_protected(obj)) {
872                         err = intel_pxp_key_check(&vm->gt->pxp, obj, true);
873                         if (err) {
874                                 i915_gem_object_put(obj);
875                                 return ERR_PTR(err);
876                         }
877                 }
878
879                 vma = i915_vma_instance(obj, vm, NULL);
880                 if (IS_ERR(vma)) {
881                         i915_gem_object_put(obj);
882                         return vma;
883                 }
884
885                 err = __eb_add_lut(eb, handle, vma);
886                 if (likely(!err))
887                         return vma;
888
889                 i915_gem_object_put(obj);
890                 if (err != -EEXIST)
891                         return ERR_PTR(err);
892         } while (1);
893 }
894
895 static int eb_lookup_vmas(struct i915_execbuffer *eb)
896 {
897         unsigned int i, current_batch = 0;
898         int err = 0;
899
900         INIT_LIST_HEAD(&eb->relocs);
901
902         for (i = 0; i < eb->buffer_count; i++) {
903                 struct i915_vma *vma;
904
905                 vma = eb_lookup_vma(eb, eb->exec[i].handle);
906                 if (IS_ERR(vma)) {
907                         err = PTR_ERR(vma);
908                         goto err;
909                 }
910
911                 err = eb_validate_vma(eb, &eb->exec[i], vma);
912                 if (unlikely(err)) {
913                         i915_vma_put(vma);
914                         goto err;
915                 }
916
917                 err = eb_add_vma(eb, &current_batch, i, vma);
918                 if (err)
919                         return err;
920
921                 if (i915_gem_object_is_userptr(vma->obj)) {
922                         err = i915_gem_object_userptr_submit_init(vma->obj);
923                         if (err) {
924                                 if (i + 1 < eb->buffer_count) {
925                                         /*
926                                          * Execbuffer code expects last vma entry to be NULL,
927                                          * since we already initialized this entry,
928                                          * set the next value to NULL or we mess up
929                                          * cleanup handling.
930                                          */
931                                         eb->vma[i + 1].vma = NULL;
932                                 }
933
934                                 return err;
935                         }
936
937                         eb->vma[i].flags |= __EXEC_OBJECT_USERPTR_INIT;
938                         eb->args->flags |= __EXEC_USERPTR_USED;
939                 }
940         }
941
942         return 0;
943
944 err:
945         eb->vma[i].vma = NULL;
946         return err;
947 }
948
949 static int eb_lock_vmas(struct i915_execbuffer *eb)
950 {
951         unsigned int i;
952         int err;
953
954         for (i = 0; i < eb->buffer_count; i++) {
955                 struct eb_vma *ev = &eb->vma[i];
956                 struct i915_vma *vma = ev->vma;
957
958                 err = i915_gem_object_lock(vma->obj, &eb->ww);
959                 if (err)
960                         return err;
961         }
962
963         return 0;
964 }
965
966 static int eb_validate_vmas(struct i915_execbuffer *eb)
967 {
968         unsigned int i;
969         int err;
970
971         INIT_LIST_HEAD(&eb->unbound);
972
973         err = eb_lock_vmas(eb);
974         if (err)
975                 return err;
976
977         for (i = 0; i < eb->buffer_count; i++) {
978                 struct drm_i915_gem_exec_object2 *entry = &eb->exec[i];
979                 struct eb_vma *ev = &eb->vma[i];
980                 struct i915_vma *vma = ev->vma;
981
982                 err = eb_pin_vma(eb, entry, ev);
983                 if (err == -EDEADLK)
984                         return err;
985
986                 if (!err) {
987                         if (entry->offset != vma->node.start) {
988                                 entry->offset = vma->node.start | UPDATE;
989                                 eb->args->flags |= __EXEC_HAS_RELOC;
990                         }
991                 } else {
992                         eb_unreserve_vma(ev);
993
994                         list_add_tail(&ev->bind_link, &eb->unbound);
995                         if (drm_mm_node_allocated(&vma->node)) {
996                                 err = i915_vma_unbind(vma);
997                                 if (err)
998                                         return err;
999                         }
1000                 }
1001
1002                 err = dma_resv_reserve_fences(vma->obj->base.resv, 1);
1003                 if (err)
1004                         return err;
1005
1006                 GEM_BUG_ON(drm_mm_node_allocated(&vma->node) &&
1007                            eb_vma_misplaced(&eb->exec[i], vma, ev->flags));
1008         }
1009
1010         if (!list_empty(&eb->unbound))
1011                 return eb_reserve(eb);
1012
1013         return 0;
1014 }
1015
1016 static struct eb_vma *
1017 eb_get_vma(const struct i915_execbuffer *eb, unsigned long handle)
1018 {
1019         if (eb->lut_size < 0) {
1020                 if (handle >= -eb->lut_size)
1021                         return NULL;
1022                 return &eb->vma[handle];
1023         } else {
1024                 struct hlist_head *head;
1025                 struct eb_vma *ev;
1026
1027                 head = &eb->buckets[hash_32(handle, eb->lut_size)];
1028                 hlist_for_each_entry(ev, head, node) {
1029                         if (ev->handle == handle)
1030                                 return ev;
1031                 }
1032                 return NULL;
1033         }
1034 }
1035
1036 static void eb_release_vmas(struct i915_execbuffer *eb, bool final)
1037 {
1038         const unsigned int count = eb->buffer_count;
1039         unsigned int i;
1040
1041         for (i = 0; i < count; i++) {
1042                 struct eb_vma *ev = &eb->vma[i];
1043                 struct i915_vma *vma = ev->vma;
1044
1045                 if (!vma)
1046                         break;
1047
1048                 eb_unreserve_vma(ev);
1049
1050                 if (final)
1051                         i915_vma_put(vma);
1052         }
1053
1054         eb_capture_release(eb);
1055         eb_unpin_engine(eb);
1056 }
1057
1058 static void eb_destroy(const struct i915_execbuffer *eb)
1059 {
1060         if (eb->lut_size > 0)
1061                 kfree(eb->buckets);
1062 }
1063
1064 static inline u64
1065 relocation_target(const struct drm_i915_gem_relocation_entry *reloc,
1066                   const struct i915_vma *target)
1067 {
1068         return gen8_canonical_addr((int)reloc->delta + target->node.start);
1069 }
1070
1071 static void reloc_cache_init(struct reloc_cache *cache,
1072                              struct drm_i915_private *i915)
1073 {
1074         cache->page = -1;
1075         cache->vaddr = 0;
1076         /* Must be a variable in the struct to allow GCC to unroll. */
1077         cache->graphics_ver = GRAPHICS_VER(i915);
1078         cache->has_llc = HAS_LLC(i915);
1079         cache->use_64bit_reloc = HAS_64BIT_RELOC(i915);
1080         cache->has_fence = cache->graphics_ver < 4;
1081         cache->needs_unfenced = INTEL_INFO(i915)->unfenced_needs_alignment;
1082         cache->node.flags = 0;
1083 }
1084
1085 static inline void *unmask_page(unsigned long p)
1086 {
1087         return (void *)(uintptr_t)(p & PAGE_MASK);
1088 }
1089
1090 static inline unsigned int unmask_flags(unsigned long p)
1091 {
1092         return p & ~PAGE_MASK;
1093 }
1094
1095 #define KMAP 0x4 /* after CLFLUSH_FLAGS */
1096
1097 static inline struct i915_ggtt *cache_to_ggtt(struct reloc_cache *cache)
1098 {
1099         struct drm_i915_private *i915 =
1100                 container_of(cache, struct i915_execbuffer, reloc_cache)->i915;
1101         return to_gt(i915)->ggtt;
1102 }
1103
1104 static void reloc_cache_unmap(struct reloc_cache *cache)
1105 {
1106         void *vaddr;
1107
1108         if (!cache->vaddr)
1109                 return;
1110
1111         vaddr = unmask_page(cache->vaddr);
1112         if (cache->vaddr & KMAP)
1113                 kunmap_atomic(vaddr);
1114         else
1115                 io_mapping_unmap_atomic((void __iomem *)vaddr);
1116 }
1117
1118 static void reloc_cache_remap(struct reloc_cache *cache,
1119                               struct drm_i915_gem_object *obj)
1120 {
1121         void *vaddr;
1122
1123         if (!cache->vaddr)
1124                 return;
1125
1126         if (cache->vaddr & KMAP) {
1127                 struct page *page = i915_gem_object_get_page(obj, cache->page);
1128
1129                 vaddr = kmap_atomic(page);
1130                 cache->vaddr = unmask_flags(cache->vaddr) |
1131                         (unsigned long)vaddr;
1132         } else {
1133                 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
1134                 unsigned long offset;
1135
1136                 offset = cache->node.start;
1137                 if (!drm_mm_node_allocated(&cache->node))
1138                         offset += cache->page << PAGE_SHIFT;
1139
1140                 cache->vaddr = (unsigned long)
1141                         io_mapping_map_atomic_wc(&ggtt->iomap, offset);
1142         }
1143 }
1144
1145 static void reloc_cache_reset(struct reloc_cache *cache, struct i915_execbuffer *eb)
1146 {
1147         void *vaddr;
1148
1149         if (!cache->vaddr)
1150                 return;
1151
1152         vaddr = unmask_page(cache->vaddr);
1153         if (cache->vaddr & KMAP) {
1154                 struct drm_i915_gem_object *obj =
1155                         (struct drm_i915_gem_object *)cache->node.mm;
1156                 if (cache->vaddr & CLFLUSH_AFTER)
1157                         mb();
1158
1159                 kunmap_atomic(vaddr);
1160                 i915_gem_object_finish_access(obj);
1161         } else {
1162                 struct i915_ggtt *ggtt = cache_to_ggtt(cache);
1163
1164                 intel_gt_flush_ggtt_writes(ggtt->vm.gt);
1165                 io_mapping_unmap_atomic((void __iomem *)vaddr);
1166
1167                 if (drm_mm_node_allocated(&cache->node)) {
1168                         ggtt->vm.clear_range(&ggtt->vm,
1169                                              cache->node.start,
1170                                              cache->node.size);
1171                         mutex_lock(&ggtt->vm.mutex);
1172                         drm_mm_remove_node(&cache->node);
1173                         mutex_unlock(&ggtt->vm.mutex);
1174                 } else {
1175                         i915_vma_unpin((struct i915_vma *)cache->node.mm);
1176                 }
1177         }
1178
1179         cache->vaddr = 0;
1180         cache->page = -1;
1181 }
1182
1183 static void *reloc_kmap(struct drm_i915_gem_object *obj,
1184                         struct reloc_cache *cache,
1185                         unsigned long pageno)
1186 {
1187         void *vaddr;
1188         struct page *page;
1189
1190         if (cache->vaddr) {
1191                 kunmap_atomic(unmask_page(cache->vaddr));
1192         } else {
1193                 unsigned int flushes;
1194                 int err;
1195
1196                 err = i915_gem_object_prepare_write(obj, &flushes);
1197                 if (err)
1198                         return ERR_PTR(err);
1199
1200                 BUILD_BUG_ON(KMAP & CLFLUSH_FLAGS);
1201                 BUILD_BUG_ON((KMAP | CLFLUSH_FLAGS) & PAGE_MASK);
1202
1203                 cache->vaddr = flushes | KMAP;
1204                 cache->node.mm = (void *)obj;
1205                 if (flushes)
1206                         mb();
1207         }
1208
1209         page = i915_gem_object_get_page(obj, pageno);
1210         if (!obj->mm.dirty)
1211                 set_page_dirty(page);
1212
1213         vaddr = kmap_atomic(page);
1214         cache->vaddr = unmask_flags(cache->vaddr) | (unsigned long)vaddr;
1215         cache->page = pageno;
1216
1217         return vaddr;
1218 }
1219
1220 static void *reloc_iomap(struct i915_vma *batch,
1221                          struct i915_execbuffer *eb,
1222                          unsigned long page)
1223 {
1224         struct drm_i915_gem_object *obj = batch->obj;
1225         struct reloc_cache *cache = &eb->reloc_cache;
1226         struct i915_ggtt *ggtt = cache_to_ggtt(cache);
1227         unsigned long offset;
1228         void *vaddr;
1229
1230         if (cache->vaddr) {
1231                 intel_gt_flush_ggtt_writes(ggtt->vm.gt);
1232                 io_mapping_unmap_atomic((void __force __iomem *) unmask_page(cache->vaddr));
1233         } else {
1234                 struct i915_vma *vma = ERR_PTR(-ENODEV);
1235                 int err;
1236
1237                 if (i915_gem_object_is_tiled(obj))
1238                         return ERR_PTR(-EINVAL);
1239
1240                 if (use_cpu_reloc(cache, obj))
1241                         return NULL;
1242
1243                 err = i915_gem_object_set_to_gtt_domain(obj, true);
1244                 if (err)
1245                         return ERR_PTR(err);
1246
1247                 /*
1248                  * i915_gem_object_ggtt_pin_ww may attempt to remove the batch
1249                  * VMA from the object list because we no longer pin.
1250                  *
1251                  * Only attempt to pin the batch buffer to ggtt if the current batch
1252                  * is not inside ggtt, or the batch buffer is not misplaced.
1253                  */
1254                 if (!i915_is_ggtt(batch->vm)) {
1255                         vma = i915_gem_object_ggtt_pin_ww(obj, &eb->ww, NULL, 0, 0,
1256                                                           PIN_MAPPABLE |
1257                                                           PIN_NONBLOCK /* NOWARN */ |
1258                                                           PIN_NOEVICT);
1259                 } else if (i915_vma_is_map_and_fenceable(batch)) {
1260                         __i915_vma_pin(batch);
1261                         vma = batch;
1262                 }
1263
1264                 if (vma == ERR_PTR(-EDEADLK))
1265                         return vma;
1266
1267                 if (IS_ERR(vma)) {
1268                         memset(&cache->node, 0, sizeof(cache->node));
1269                         mutex_lock(&ggtt->vm.mutex);
1270                         err = drm_mm_insert_node_in_range
1271                                 (&ggtt->vm.mm, &cache->node,
1272                                  PAGE_SIZE, 0, I915_COLOR_UNEVICTABLE,
1273                                  0, ggtt->mappable_end,
1274                                  DRM_MM_INSERT_LOW);
1275                         mutex_unlock(&ggtt->vm.mutex);
1276                         if (err) /* no inactive aperture space, use cpu reloc */
1277                                 return NULL;
1278                 } else {
1279                         cache->node.start = vma->node.start;
1280                         cache->node.mm = (void *)vma;
1281                 }
1282         }
1283
1284         offset = cache->node.start;
1285         if (drm_mm_node_allocated(&cache->node)) {
1286                 ggtt->vm.insert_page(&ggtt->vm,
1287                                      i915_gem_object_get_dma_address(obj, page),
1288                                      offset, I915_CACHE_NONE, 0);
1289         } else {
1290                 offset += page << PAGE_SHIFT;
1291         }
1292
1293         vaddr = (void __force *)io_mapping_map_atomic_wc(&ggtt->iomap,
1294                                                          offset);
1295         cache->page = page;
1296         cache->vaddr = (unsigned long)vaddr;
1297
1298         return vaddr;
1299 }
1300
1301 static void *reloc_vaddr(struct i915_vma *vma,
1302                          struct i915_execbuffer *eb,
1303                          unsigned long page)
1304 {
1305         struct reloc_cache *cache = &eb->reloc_cache;
1306         void *vaddr;
1307
1308         if (cache->page == page) {
1309                 vaddr = unmask_page(cache->vaddr);
1310         } else {
1311                 vaddr = NULL;
1312                 if ((cache->vaddr & KMAP) == 0)
1313                         vaddr = reloc_iomap(vma, eb, page);
1314                 if (!vaddr)
1315                         vaddr = reloc_kmap(vma->obj, cache, page);
1316         }
1317
1318         return vaddr;
1319 }
1320
1321 static void clflush_write32(u32 *addr, u32 value, unsigned int flushes)
1322 {
1323         if (unlikely(flushes & (CLFLUSH_BEFORE | CLFLUSH_AFTER))) {
1324                 if (flushes & CLFLUSH_BEFORE) {
1325                         clflushopt(addr);
1326                         mb();
1327                 }
1328
1329                 *addr = value;
1330
1331                 /*
1332                  * Writes to the same cacheline are serialised by the CPU
1333                  * (including clflush). On the write path, we only require
1334                  * that it hits memory in an orderly fashion and place
1335                  * mb barriers at the start and end of the relocation phase
1336                  * to ensure ordering of clflush wrt to the system.
1337                  */
1338                 if (flushes & CLFLUSH_AFTER)
1339                         clflushopt(addr);
1340         } else
1341                 *addr = value;
1342 }
1343
1344 static u64
1345 relocate_entry(struct i915_vma *vma,
1346                const struct drm_i915_gem_relocation_entry *reloc,
1347                struct i915_execbuffer *eb,
1348                const struct i915_vma *target)
1349 {
1350         u64 target_addr = relocation_target(reloc, target);
1351         u64 offset = reloc->offset;
1352         bool wide = eb->reloc_cache.use_64bit_reloc;
1353         void *vaddr;
1354
1355 repeat:
1356         vaddr = reloc_vaddr(vma, eb,
1357                             offset >> PAGE_SHIFT);
1358         if (IS_ERR(vaddr))
1359                 return PTR_ERR(vaddr);
1360
1361         GEM_BUG_ON(!IS_ALIGNED(offset, sizeof(u32)));
1362         clflush_write32(vaddr + offset_in_page(offset),
1363                         lower_32_bits(target_addr),
1364                         eb->reloc_cache.vaddr);
1365
1366         if (wide) {
1367                 offset += sizeof(u32);
1368                 target_addr >>= 32;
1369                 wide = false;
1370                 goto repeat;
1371         }
1372
1373         return target->node.start | UPDATE;
1374 }
1375
1376 static u64
1377 eb_relocate_entry(struct i915_execbuffer *eb,
1378                   struct eb_vma *ev,
1379                   const struct drm_i915_gem_relocation_entry *reloc)
1380 {
1381         struct drm_i915_private *i915 = eb->i915;
1382         struct eb_vma *target;
1383         int err;
1384
1385         /* we've already hold a reference to all valid objects */
1386         target = eb_get_vma(eb, reloc->target_handle);
1387         if (unlikely(!target))
1388                 return -ENOENT;
1389
1390         /* Validate that the target is in a valid r/w GPU domain */
1391         if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
1392                 drm_dbg(&i915->drm, "reloc with multiple write domains: "
1393                           "target %d offset %d "
1394                           "read %08x write %08x",
1395                           reloc->target_handle,
1396                           (int) reloc->offset,
1397                           reloc->read_domains,
1398                           reloc->write_domain);
1399                 return -EINVAL;
1400         }
1401         if (unlikely((reloc->write_domain | reloc->read_domains)
1402                      & ~I915_GEM_GPU_DOMAINS)) {
1403                 drm_dbg(&i915->drm, "reloc with read/write non-GPU domains: "
1404                           "target %d offset %d "
1405                           "read %08x write %08x",
1406                           reloc->target_handle,
1407                           (int) reloc->offset,
1408                           reloc->read_domains,
1409                           reloc->write_domain);
1410                 return -EINVAL;
1411         }
1412
1413         if (reloc->write_domain) {
1414                 target->flags |= EXEC_OBJECT_WRITE;
1415
1416                 /*
1417                  * Sandybridge PPGTT errata: We need a global gtt mapping
1418                  * for MI and pipe_control writes because the gpu doesn't
1419                  * properly redirect them through the ppgtt for non_secure
1420                  * batchbuffers.
1421                  */
1422                 if (reloc->write_domain == I915_GEM_DOMAIN_INSTRUCTION &&
1423                     GRAPHICS_VER(eb->i915) == 6 &&
1424                     !i915_vma_is_bound(target->vma, I915_VMA_GLOBAL_BIND)) {
1425                         struct i915_vma *vma = target->vma;
1426
1427                         reloc_cache_unmap(&eb->reloc_cache);
1428                         mutex_lock(&vma->vm->mutex);
1429                         err = i915_vma_bind(target->vma,
1430                                             target->vma->obj->cache_level,
1431                                             PIN_GLOBAL, NULL, NULL);
1432                         mutex_unlock(&vma->vm->mutex);
1433                         reloc_cache_remap(&eb->reloc_cache, ev->vma->obj);
1434                         if (err)
1435                                 return err;
1436                 }
1437         }
1438
1439         /*
1440          * If the relocation already has the right value in it, no
1441          * more work needs to be done.
1442          */
1443         if (!DBG_FORCE_RELOC &&
1444             gen8_canonical_addr(target->vma->node.start) == reloc->presumed_offset)
1445                 return 0;
1446
1447         /* Check that the relocation address is valid... */
1448         if (unlikely(reloc->offset >
1449                      ev->vma->size - (eb->reloc_cache.use_64bit_reloc ? 8 : 4))) {
1450                 drm_dbg(&i915->drm, "Relocation beyond object bounds: "
1451                           "target %d offset %d size %d.\n",
1452                           reloc->target_handle,
1453                           (int)reloc->offset,
1454                           (int)ev->vma->size);
1455                 return -EINVAL;
1456         }
1457         if (unlikely(reloc->offset & 3)) {
1458                 drm_dbg(&i915->drm, "Relocation not 4-byte aligned: "
1459                           "target %d offset %d.\n",
1460                           reloc->target_handle,
1461                           (int)reloc->offset);
1462                 return -EINVAL;
1463         }
1464
1465         /*
1466          * If we write into the object, we need to force the synchronisation
1467          * barrier, either with an asynchronous clflush or if we executed the
1468          * patching using the GPU (though that should be serialised by the
1469          * timeline). To be completely sure, and since we are required to
1470          * do relocations we are already stalling, disable the user's opt
1471          * out of our synchronisation.
1472          */
1473         ev->flags &= ~EXEC_OBJECT_ASYNC;
1474
1475         /* and update the user's relocation entry */
1476         return relocate_entry(ev->vma, reloc, eb, target->vma);
1477 }
1478
1479 static int eb_relocate_vma(struct i915_execbuffer *eb, struct eb_vma *ev)
1480 {
1481 #define N_RELOC(x) ((x) / sizeof(struct drm_i915_gem_relocation_entry))
1482         struct drm_i915_gem_relocation_entry stack[N_RELOC(512)];
1483         const struct drm_i915_gem_exec_object2 *entry = ev->exec;
1484         struct drm_i915_gem_relocation_entry __user *urelocs =
1485                 u64_to_user_ptr(entry->relocs_ptr);
1486         unsigned long remain = entry->relocation_count;
1487
1488         if (unlikely(remain > N_RELOC(ULONG_MAX)))
1489                 return -EINVAL;
1490
1491         /*
1492          * We must check that the entire relocation array is safe
1493          * to read. However, if the array is not writable the user loses
1494          * the updated relocation values.
1495          */
1496         if (unlikely(!access_ok(urelocs, remain * sizeof(*urelocs))))
1497                 return -EFAULT;
1498
1499         do {
1500                 struct drm_i915_gem_relocation_entry *r = stack;
1501                 unsigned int count =
1502                         min_t(unsigned long, remain, ARRAY_SIZE(stack));
1503                 unsigned int copied;
1504
1505                 /*
1506                  * This is the fast path and we cannot handle a pagefault
1507                  * whilst holding the struct mutex lest the user pass in the
1508                  * relocations contained within a mmaped bo. For in such a case
1509                  * we, the page fault handler would call i915_gem_fault() and
1510                  * we would try to acquire the struct mutex again. Obviously
1511                  * this is bad and so lockdep complains vehemently.
1512                  */
1513                 pagefault_disable();
1514                 copied = __copy_from_user_inatomic(r, urelocs, count * sizeof(r[0]));
1515                 pagefault_enable();
1516                 if (unlikely(copied)) {
1517                         remain = -EFAULT;
1518                         goto out;
1519                 }
1520
1521                 remain -= count;
1522                 do {
1523                         u64 offset = eb_relocate_entry(eb, ev, r);
1524
1525                         if (likely(offset == 0)) {
1526                         } else if ((s64)offset < 0) {
1527                                 remain = (int)offset;
1528                                 goto out;
1529                         } else {
1530                                 /*
1531                                  * Note that reporting an error now
1532                                  * leaves everything in an inconsistent
1533                                  * state as we have *already* changed
1534                                  * the relocation value inside the
1535                                  * object. As we have not changed the
1536                                  * reloc.presumed_offset or will not
1537                                  * change the execobject.offset, on the
1538                                  * call we may not rewrite the value
1539                                  * inside the object, leaving it
1540                                  * dangling and causing a GPU hang. Unless
1541                                  * userspace dynamically rebuilds the
1542                                  * relocations on each execbuf rather than
1543                                  * presume a static tree.
1544                                  *
1545                                  * We did previously check if the relocations
1546                                  * were writable (access_ok), an error now
1547                                  * would be a strange race with mprotect,
1548                                  * having already demonstrated that we
1549                                  * can read from this userspace address.
1550                                  */
1551                                 offset = gen8_canonical_addr(offset & ~UPDATE);
1552                                 __put_user(offset,
1553                                            &urelocs[r - stack].presumed_offset);
1554                         }
1555                 } while (r++, --count);
1556                 urelocs += ARRAY_SIZE(stack);
1557         } while (remain);
1558 out:
1559         reloc_cache_reset(&eb->reloc_cache, eb);
1560         return remain;
1561 }
1562
1563 static int
1564 eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
1565 {
1566         const struct drm_i915_gem_exec_object2 *entry = ev->exec;
1567         struct drm_i915_gem_relocation_entry *relocs =
1568                 u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1569         unsigned int i;
1570         int err;
1571
1572         for (i = 0; i < entry->relocation_count; i++) {
1573                 u64 offset = eb_relocate_entry(eb, ev, &relocs[i]);
1574
1575                 if ((s64)offset < 0) {
1576                         err = (int)offset;
1577                         goto err;
1578                 }
1579         }
1580         err = 0;
1581 err:
1582         reloc_cache_reset(&eb->reloc_cache, eb);
1583         return err;
1584 }
1585
1586 static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
1587 {
1588         const char __user *addr, *end;
1589         unsigned long size;
1590         char __maybe_unused c;
1591
1592         size = entry->relocation_count;
1593         if (size == 0)
1594                 return 0;
1595
1596         if (size > N_RELOC(ULONG_MAX))
1597                 return -EINVAL;
1598
1599         addr = u64_to_user_ptr(entry->relocs_ptr);
1600         size *= sizeof(struct drm_i915_gem_relocation_entry);
1601         if (!access_ok(addr, size))
1602                 return -EFAULT;
1603
1604         end = addr + size;
1605         for (; addr < end; addr += PAGE_SIZE) {
1606                 int err = __get_user(c, addr);
1607                 if (err)
1608                         return err;
1609         }
1610         return __get_user(c, end - 1);
1611 }
1612
1613 static int eb_copy_relocations(const struct i915_execbuffer *eb)
1614 {
1615         struct drm_i915_gem_relocation_entry *relocs;
1616         const unsigned int count = eb->buffer_count;
1617         unsigned int i;
1618         int err;
1619
1620         for (i = 0; i < count; i++) {
1621                 const unsigned int nreloc = eb->exec[i].relocation_count;
1622                 struct drm_i915_gem_relocation_entry __user *urelocs;
1623                 unsigned long size;
1624                 unsigned long copied;
1625
1626                 if (nreloc == 0)
1627                         continue;
1628
1629                 err = check_relocations(&eb->exec[i]);
1630                 if (err)
1631                         goto err;
1632
1633                 urelocs = u64_to_user_ptr(eb->exec[i].relocs_ptr);
1634                 size = nreloc * sizeof(*relocs);
1635
1636                 relocs = kvmalloc_array(size, 1, GFP_KERNEL);
1637                 if (!relocs) {
1638                         err = -ENOMEM;
1639                         goto err;
1640                 }
1641
1642                 /* copy_from_user is limited to < 4GiB */
1643                 copied = 0;
1644                 do {
1645                         unsigned int len =
1646                                 min_t(u64, BIT_ULL(31), size - copied);
1647
1648                         if (__copy_from_user((char *)relocs + copied,
1649                                              (char __user *)urelocs + copied,
1650                                              len))
1651                                 goto end;
1652
1653                         copied += len;
1654                 } while (copied < size);
1655
1656                 /*
1657                  * As we do not update the known relocation offsets after
1658                  * relocating (due to the complexities in lock handling),
1659                  * we need to mark them as invalid now so that we force the
1660                  * relocation processing next time. Just in case the target
1661                  * object is evicted and then rebound into its old
1662                  * presumed_offset before the next execbuffer - if that
1663                  * happened we would make the mistake of assuming that the
1664                  * relocations were valid.
1665                  */
1666                 if (!user_access_begin(urelocs, size))
1667                         goto end;
1668
1669                 for (copied = 0; copied < nreloc; copied++)
1670                         unsafe_put_user(-1,
1671                                         &urelocs[copied].presumed_offset,
1672                                         end_user);
1673                 user_access_end();
1674
1675                 eb->exec[i].relocs_ptr = (uintptr_t)relocs;
1676         }
1677
1678         return 0;
1679
1680 end_user:
1681         user_access_end();
1682 end:
1683         kvfree(relocs);
1684         err = -EFAULT;
1685 err:
1686         while (i--) {
1687                 relocs = u64_to_ptr(typeof(*relocs), eb->exec[i].relocs_ptr);
1688                 if (eb->exec[i].relocation_count)
1689                         kvfree(relocs);
1690         }
1691         return err;
1692 }
1693
1694 static int eb_prefault_relocations(const struct i915_execbuffer *eb)
1695 {
1696         const unsigned int count = eb->buffer_count;
1697         unsigned int i;
1698
1699         for (i = 0; i < count; i++) {
1700                 int err;
1701
1702                 err = check_relocations(&eb->exec[i]);
1703                 if (err)
1704                         return err;
1705         }
1706
1707         return 0;
1708 }
1709
1710 static int eb_reinit_userptr(struct i915_execbuffer *eb)
1711 {
1712         const unsigned int count = eb->buffer_count;
1713         unsigned int i;
1714         int ret;
1715
1716         if (likely(!(eb->args->flags & __EXEC_USERPTR_USED)))
1717                 return 0;
1718
1719         for (i = 0; i < count; i++) {
1720                 struct eb_vma *ev = &eb->vma[i];
1721
1722                 if (!i915_gem_object_is_userptr(ev->vma->obj))
1723                         continue;
1724
1725                 ret = i915_gem_object_userptr_submit_init(ev->vma->obj);
1726                 if (ret)
1727                         return ret;
1728
1729                 ev->flags |= __EXEC_OBJECT_USERPTR_INIT;
1730         }
1731
1732         return 0;
1733 }
1734
1735 static noinline int eb_relocate_parse_slow(struct i915_execbuffer *eb)
1736 {
1737         bool have_copy = false;
1738         struct eb_vma *ev;
1739         int err = 0;
1740
1741 repeat:
1742         if (signal_pending(current)) {
1743                 err = -ERESTARTSYS;
1744                 goto out;
1745         }
1746
1747         /* We may process another execbuffer during the unlock... */
1748         eb_release_vmas(eb, false);
1749         i915_gem_ww_ctx_fini(&eb->ww);
1750
1751         /*
1752          * We take 3 passes through the slowpatch.
1753          *
1754          * 1 - we try to just prefault all the user relocation entries and
1755          * then attempt to reuse the atomic pagefault disabled fast path again.
1756          *
1757          * 2 - we copy the user entries to a local buffer here outside of the
1758          * local and allow ourselves to wait upon any rendering before
1759          * relocations
1760          *
1761          * 3 - we already have a local copy of the relocation entries, but
1762          * were interrupted (EAGAIN) whilst waiting for the objects, try again.
1763          */
1764         if (!err) {
1765                 err = eb_prefault_relocations(eb);
1766         } else if (!have_copy) {
1767                 err = eb_copy_relocations(eb);
1768                 have_copy = err == 0;
1769         } else {
1770                 cond_resched();
1771                 err = 0;
1772         }
1773
1774         if (!err)
1775                 err = eb_reinit_userptr(eb);
1776
1777         i915_gem_ww_ctx_init(&eb->ww, true);
1778         if (err)
1779                 goto out;
1780
1781         /* reacquire the objects */
1782 repeat_validate:
1783         err = eb_pin_engine(eb, false);
1784         if (err)
1785                 goto err;
1786
1787         err = eb_validate_vmas(eb);
1788         if (err)
1789                 goto err;
1790
1791         GEM_BUG_ON(!eb->batches[0]);
1792
1793         list_for_each_entry(ev, &eb->relocs, reloc_link) {
1794                 if (!have_copy) {
1795                         err = eb_relocate_vma(eb, ev);
1796                         if (err)
1797                                 break;
1798                 } else {
1799                         err = eb_relocate_vma_slow(eb, ev);
1800                         if (err)
1801                                 break;
1802                 }
1803         }
1804
1805         if (err == -EDEADLK)
1806                 goto err;
1807
1808         if (err && !have_copy)
1809                 goto repeat;
1810
1811         if (err)
1812                 goto err;
1813
1814         /* as last step, parse the command buffer */
1815         err = eb_parse(eb);
1816         if (err)
1817                 goto err;
1818
1819         /*
1820          * Leave the user relocations as are, this is the painfully slow path,
1821          * and we want to avoid the complication of dropping the lock whilst
1822          * having buffers reserved in the aperture and so causing spurious
1823          * ENOSPC for random operations.
1824          */
1825
1826 err:
1827         if (err == -EDEADLK) {
1828                 eb_release_vmas(eb, false);
1829                 err = i915_gem_ww_ctx_backoff(&eb->ww);
1830                 if (!err)
1831                         goto repeat_validate;
1832         }
1833
1834         if (err == -EAGAIN)
1835                 goto repeat;
1836
1837 out:
1838         if (have_copy) {
1839                 const unsigned int count = eb->buffer_count;
1840                 unsigned int i;
1841
1842                 for (i = 0; i < count; i++) {
1843                         const struct drm_i915_gem_exec_object2 *entry =
1844                                 &eb->exec[i];
1845                         struct drm_i915_gem_relocation_entry *relocs;
1846
1847                         if (!entry->relocation_count)
1848                                 continue;
1849
1850                         relocs = u64_to_ptr(typeof(*relocs), entry->relocs_ptr);
1851                         kvfree(relocs);
1852                 }
1853         }
1854
1855         return err;
1856 }
1857
1858 static int eb_relocate_parse(struct i915_execbuffer *eb)
1859 {
1860         int err;
1861         bool throttle = true;
1862
1863 retry:
1864         err = eb_pin_engine(eb, throttle);
1865         if (err) {
1866                 if (err != -EDEADLK)
1867                         return err;
1868
1869                 goto err;
1870         }
1871
1872         /* only throttle once, even if we didn't need to throttle */
1873         throttle = false;
1874
1875         err = eb_validate_vmas(eb);
1876         if (err == -EAGAIN)
1877                 goto slow;
1878         else if (err)
1879                 goto err;
1880
1881         /* The objects are in their final locations, apply the relocations. */
1882         if (eb->args->flags & __EXEC_HAS_RELOC) {
1883                 struct eb_vma *ev;
1884
1885                 list_for_each_entry(ev, &eb->relocs, reloc_link) {
1886                         err = eb_relocate_vma(eb, ev);
1887                         if (err)
1888                                 break;
1889                 }
1890
1891                 if (err == -EDEADLK)
1892                         goto err;
1893                 else if (err)
1894                         goto slow;
1895         }
1896
1897         if (!err)
1898                 err = eb_parse(eb);
1899
1900 err:
1901         if (err == -EDEADLK) {
1902                 eb_release_vmas(eb, false);
1903                 err = i915_gem_ww_ctx_backoff(&eb->ww);
1904                 if (!err)
1905                         goto retry;
1906         }
1907
1908         return err;
1909
1910 slow:
1911         err = eb_relocate_parse_slow(eb);
1912         if (err)
1913                 /*
1914                  * If the user expects the execobject.offset and
1915                  * reloc.presumed_offset to be an exact match,
1916                  * as for using NO_RELOC, then we cannot update
1917                  * the execobject.offset until we have completed
1918                  * relocation.
1919                  */
1920                 eb->args->flags &= ~__EXEC_HAS_RELOC;
1921
1922         return err;
1923 }
1924
1925 /*
1926  * Using two helper loops for the order of which requests / batches are created
1927  * and added the to backend. Requests are created in order from the parent to
1928  * the last child. Requests are added in the reverse order, from the last child
1929  * to parent. This is done for locking reasons as the timeline lock is acquired
1930  * during request creation and released when the request is added to the
1931  * backend. To make lockdep happy (see intel_context_timeline_lock) this must be
1932  * the ordering.
1933  */
1934 #define for_each_batch_create_order(_eb, _i) \
1935         for ((_i) = 0; (_i) < (_eb)->num_batches; ++(_i))
1936 #define for_each_batch_add_order(_eb, _i) \
1937         BUILD_BUG_ON(!typecheck(int, _i)); \
1938         for ((_i) = (_eb)->num_batches - 1; (_i) >= 0; --(_i))
1939
1940 static struct i915_request *
1941 eb_find_first_request_added(struct i915_execbuffer *eb)
1942 {
1943         int i;
1944
1945         for_each_batch_add_order(eb, i)
1946                 if (eb->requests[i])
1947                         return eb->requests[i];
1948
1949         GEM_BUG_ON("Request not found");
1950
1951         return NULL;
1952 }
1953
1954 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
1955
1956 /* Stage with GFP_KERNEL allocations before we enter the signaling critical path */
1957 static void eb_capture_stage(struct i915_execbuffer *eb)
1958 {
1959         const unsigned int count = eb->buffer_count;
1960         unsigned int i = count, j;
1961
1962         while (i--) {
1963                 struct eb_vma *ev = &eb->vma[i];
1964                 struct i915_vma *vma = ev->vma;
1965                 unsigned int flags = ev->flags;
1966
1967                 if (!(flags & EXEC_OBJECT_CAPTURE))
1968                         continue;
1969
1970                 for_each_batch_create_order(eb, j) {
1971                         struct i915_capture_list *capture;
1972
1973                         capture = kmalloc(sizeof(*capture), GFP_KERNEL);
1974                         if (!capture)
1975                                 continue;
1976
1977                         capture->next = eb->capture_lists[j];
1978                         capture->vma_res = i915_vma_resource_get(vma->resource);
1979                         eb->capture_lists[j] = capture;
1980                 }
1981         }
1982 }
1983
1984 /* Commit once we're in the critical path */
1985 static void eb_capture_commit(struct i915_execbuffer *eb)
1986 {
1987         unsigned int j;
1988
1989         for_each_batch_create_order(eb, j) {
1990                 struct i915_request *rq = eb->requests[j];
1991
1992                 if (!rq)
1993                         break;
1994
1995                 rq->capture_list = eb->capture_lists[j];
1996                 eb->capture_lists[j] = NULL;
1997         }
1998 }
1999
2000 /*
2001  * Release anything that didn't get committed due to errors.
2002  * The capture_list will otherwise be freed at request retire.
2003  */
2004 static void eb_capture_release(struct i915_execbuffer *eb)
2005 {
2006         unsigned int j;
2007
2008         for_each_batch_create_order(eb, j) {
2009                 if (eb->capture_lists[j]) {
2010                         i915_request_free_capture_list(eb->capture_lists[j]);
2011                         eb->capture_lists[j] = NULL;
2012                 }
2013         }
2014 }
2015
2016 static void eb_capture_list_clear(struct i915_execbuffer *eb)
2017 {
2018         memset(eb->capture_lists, 0, sizeof(eb->capture_lists));
2019 }
2020
2021 #else
2022
2023 static void eb_capture_stage(struct i915_execbuffer *eb)
2024 {
2025 }
2026
2027 static void eb_capture_commit(struct i915_execbuffer *eb)
2028 {
2029 }
2030
2031 static void eb_capture_release(struct i915_execbuffer *eb)
2032 {
2033 }
2034
2035 static void eb_capture_list_clear(struct i915_execbuffer *eb)
2036 {
2037 }
2038
2039 #endif
2040
2041 static int eb_move_to_gpu(struct i915_execbuffer *eb)
2042 {
2043         const unsigned int count = eb->buffer_count;
2044         unsigned int i = count;
2045         int err = 0, j;
2046
2047         while (i--) {
2048                 struct eb_vma *ev = &eb->vma[i];
2049                 struct i915_vma *vma = ev->vma;
2050                 unsigned int flags = ev->flags;
2051                 struct drm_i915_gem_object *obj = vma->obj;
2052
2053                 assert_vma_held(vma);
2054
2055                 /*
2056                  * If the GPU is not _reading_ through the CPU cache, we need
2057                  * to make sure that any writes (both previous GPU writes from
2058                  * before a change in snooping levels and normal CPU writes)
2059                  * caught in that cache are flushed to main memory.
2060                  *
2061                  * We want to say
2062                  *   obj->cache_dirty &&
2063                  *   !(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ)
2064                  * but gcc's optimiser doesn't handle that as well and emits
2065                  * two jumps instead of one. Maybe one day...
2066                  *
2067                  * FIXME: There is also sync flushing in set_pages(), which
2068                  * serves a different purpose(some of the time at least).
2069                  *
2070                  * We should consider:
2071                  *
2072                  *   1. Rip out the async flush code.
2073                  *
2074                  *   2. Or make the sync flushing use the async clflush path
2075                  *   using mandatory fences underneath. Currently the below
2076                  *   async flush happens after we bind the object.
2077                  */
2078                 if (unlikely(obj->cache_dirty & ~obj->cache_coherent)) {
2079                         if (i915_gem_clflush_object(obj, 0))
2080                                 flags &= ~EXEC_OBJECT_ASYNC;
2081                 }
2082
2083                 /* We only need to await on the first request */
2084                 if (err == 0 && !(flags & EXEC_OBJECT_ASYNC)) {
2085                         err = i915_request_await_object
2086                                 (eb_find_first_request_added(eb), obj,
2087                                  flags & EXEC_OBJECT_WRITE);
2088                 }
2089
2090                 for_each_batch_add_order(eb, j) {
2091                         if (err)
2092                                 break;
2093                         if (!eb->requests[j])
2094                                 continue;
2095
2096                         err = _i915_vma_move_to_active(vma, eb->requests[j],
2097                                                        j ? NULL :
2098                                                        eb->composite_fence ?
2099                                                        eb->composite_fence :
2100                                                        &eb->requests[j]->fence,
2101                                                        flags | __EXEC_OBJECT_NO_RESERVE);
2102                 }
2103         }
2104
2105 #ifdef CONFIG_MMU_NOTIFIER
2106         if (!err && (eb->args->flags & __EXEC_USERPTR_USED)) {
2107                 read_lock(&eb->i915->mm.notifier_lock);
2108
2109                 /*
2110                  * count is always at least 1, otherwise __EXEC_USERPTR_USED
2111                  * could not have been set
2112                  */
2113                 for (i = 0; i < count; i++) {
2114                         struct eb_vma *ev = &eb->vma[i];
2115                         struct drm_i915_gem_object *obj = ev->vma->obj;
2116
2117                         if (!i915_gem_object_is_userptr(obj))
2118                                 continue;
2119
2120                         err = i915_gem_object_userptr_submit_done(obj);
2121                         if (err)
2122                                 break;
2123                 }
2124
2125                 read_unlock(&eb->i915->mm.notifier_lock);
2126         }
2127 #endif
2128
2129         if (unlikely(err))
2130                 goto err_skip;
2131
2132         /* Unconditionally flush any chipset caches (for streaming writes). */
2133         intel_gt_chipset_flush(eb->gt);
2134         eb_capture_commit(eb);
2135
2136         return 0;
2137
2138 err_skip:
2139         for_each_batch_create_order(eb, j) {
2140                 if (!eb->requests[j])
2141                         break;
2142
2143                 i915_request_set_error_once(eb->requests[j], err);
2144         }
2145         return err;
2146 }
2147
2148 static int i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
2149 {
2150         if (exec->flags & __I915_EXEC_ILLEGAL_FLAGS)
2151                 return -EINVAL;
2152
2153         /* Kernel clipping was a DRI1 misfeature */
2154         if (!(exec->flags & (I915_EXEC_FENCE_ARRAY |
2155                              I915_EXEC_USE_EXTENSIONS))) {
2156                 if (exec->num_cliprects || exec->cliprects_ptr)
2157                         return -EINVAL;
2158         }
2159
2160         if (exec->DR4 == 0xffffffff) {
2161                 DRM_DEBUG("UXA submitting garbage DR4, fixing up\n");
2162                 exec->DR4 = 0;
2163         }
2164         if (exec->DR1 || exec->DR4)
2165                 return -EINVAL;
2166
2167         if ((exec->batch_start_offset | exec->batch_len) & 0x7)
2168                 return -EINVAL;
2169
2170         return 0;
2171 }
2172
2173 static int i915_reset_gen7_sol_offsets(struct i915_request *rq)
2174 {
2175         u32 *cs;
2176         int i;
2177
2178         if (GRAPHICS_VER(rq->engine->i915) != 7 || rq->engine->id != RCS0) {
2179                 drm_dbg(&rq->engine->i915->drm, "sol reset is gen7/rcs only\n");
2180                 return -EINVAL;
2181         }
2182
2183         cs = intel_ring_begin(rq, 4 * 2 + 2);
2184         if (IS_ERR(cs))
2185                 return PTR_ERR(cs);
2186
2187         *cs++ = MI_LOAD_REGISTER_IMM(4);
2188         for (i = 0; i < 4; i++) {
2189                 *cs++ = i915_mmio_reg_offset(GEN7_SO_WRITE_OFFSET(i));
2190                 *cs++ = 0;
2191         }
2192         *cs++ = MI_NOOP;
2193         intel_ring_advance(rq, cs);
2194
2195         return 0;
2196 }
2197
2198 static struct i915_vma *
2199 shadow_batch_pin(struct i915_execbuffer *eb,
2200                  struct drm_i915_gem_object *obj,
2201                  struct i915_address_space *vm,
2202                  unsigned int flags)
2203 {
2204         struct i915_vma *vma;
2205         int err;
2206
2207         vma = i915_vma_instance(obj, vm, NULL);
2208         if (IS_ERR(vma))
2209                 return vma;
2210
2211         err = i915_vma_pin_ww(vma, &eb->ww, 0, 0, flags | PIN_VALIDATE);
2212         if (err)
2213                 return ERR_PTR(err);
2214
2215         return vma;
2216 }
2217
2218 static struct i915_vma *eb_dispatch_secure(struct i915_execbuffer *eb, struct i915_vma *vma)
2219 {
2220         /*
2221          * snb/ivb/vlv conflate the "batch in ppgtt" bit with the "non-secure
2222          * batch" bit. Hence we need to pin secure batches into the global gtt.
2223          * hsw should have this fixed, but bdw mucks it up again. */
2224         if (eb->batch_flags & I915_DISPATCH_SECURE)
2225                 return i915_gem_object_ggtt_pin_ww(vma->obj, &eb->ww, NULL, 0, 0, PIN_VALIDATE);
2226
2227         return NULL;
2228 }
2229
2230 static int eb_parse(struct i915_execbuffer *eb)
2231 {
2232         struct drm_i915_private *i915 = eb->i915;
2233         struct intel_gt_buffer_pool_node *pool = eb->batch_pool;
2234         struct i915_vma *shadow, *trampoline, *batch;
2235         unsigned long len;
2236         int err;
2237
2238         if (!eb_use_cmdparser(eb)) {
2239                 batch = eb_dispatch_secure(eb, eb->batches[0]->vma);
2240                 if (IS_ERR(batch))
2241                         return PTR_ERR(batch);
2242
2243                 goto secure_batch;
2244         }
2245
2246         if (intel_context_is_parallel(eb->context))
2247                 return -EINVAL;
2248
2249         len = eb->batch_len[0];
2250         if (!CMDPARSER_USES_GGTT(eb->i915)) {
2251                 /*
2252                  * ppGTT backed shadow buffers must be mapped RO, to prevent
2253                  * post-scan tampering
2254                  */
2255                 if (!eb->context->vm->has_read_only) {
2256                         drm_dbg(&i915->drm,
2257                                 "Cannot prevent post-scan tampering without RO capable vm\n");
2258                         return -EINVAL;
2259                 }
2260         } else {
2261                 len += I915_CMD_PARSER_TRAMPOLINE_SIZE;
2262         }
2263         if (unlikely(len < eb->batch_len[0])) /* last paranoid check of overflow */
2264                 return -EINVAL;
2265
2266         if (!pool) {
2267                 pool = intel_gt_get_buffer_pool(eb->gt, len,
2268                                                 I915_MAP_WB);
2269                 if (IS_ERR(pool))
2270                         return PTR_ERR(pool);
2271                 eb->batch_pool = pool;
2272         }
2273
2274         err = i915_gem_object_lock(pool->obj, &eb->ww);
2275         if (err)
2276                 return err;
2277
2278         shadow = shadow_batch_pin(eb, pool->obj, eb->context->vm, PIN_USER);
2279         if (IS_ERR(shadow))
2280                 return PTR_ERR(shadow);
2281
2282         intel_gt_buffer_pool_mark_used(pool);
2283         i915_gem_object_set_readonly(shadow->obj);
2284         shadow->private = pool;
2285
2286         trampoline = NULL;
2287         if (CMDPARSER_USES_GGTT(eb->i915)) {
2288                 trampoline = shadow;
2289
2290                 shadow = shadow_batch_pin(eb, pool->obj,
2291                                           &eb->gt->ggtt->vm,
2292                                           PIN_GLOBAL);
2293                 if (IS_ERR(shadow))
2294                         return PTR_ERR(shadow);
2295
2296                 shadow->private = pool;
2297
2298                 eb->batch_flags |= I915_DISPATCH_SECURE;
2299         }
2300
2301         batch = eb_dispatch_secure(eb, shadow);
2302         if (IS_ERR(batch))
2303                 return PTR_ERR(batch);
2304
2305         err = dma_resv_reserve_fences(shadow->obj->base.resv, 1);
2306         if (err)
2307                 return err;
2308
2309         err = intel_engine_cmd_parser(eb->context->engine,
2310                                       eb->batches[0]->vma,
2311                                       eb->batch_start_offset,
2312                                       eb->batch_len[0],
2313                                       shadow, trampoline);
2314         if (err)
2315                 return err;
2316
2317         eb->batches[0] = &eb->vma[eb->buffer_count++];
2318         eb->batches[0]->vma = i915_vma_get(shadow);
2319         eb->batches[0]->flags = __EXEC_OBJECT_HAS_PIN;
2320
2321         eb->trampoline = trampoline;
2322         eb->batch_start_offset = 0;
2323
2324 secure_batch:
2325         if (batch) {
2326                 if (intel_context_is_parallel(eb->context))
2327                         return -EINVAL;
2328
2329                 eb->batches[0] = &eb->vma[eb->buffer_count++];
2330                 eb->batches[0]->flags = __EXEC_OBJECT_HAS_PIN;
2331                 eb->batches[0]->vma = i915_vma_get(batch);
2332         }
2333         return 0;
2334 }
2335
2336 static int eb_request_submit(struct i915_execbuffer *eb,
2337                              struct i915_request *rq,
2338                              struct i915_vma *batch,
2339                              u64 batch_len)
2340 {
2341         int err;
2342
2343         if (intel_context_nopreempt(rq->context))
2344                 __set_bit(I915_FENCE_FLAG_NOPREEMPT, &rq->fence.flags);
2345
2346         if (eb->args->flags & I915_EXEC_GEN7_SOL_RESET) {
2347                 err = i915_reset_gen7_sol_offsets(rq);
2348                 if (err)
2349                         return err;
2350         }
2351
2352         /*
2353          * After we completed waiting for other engines (using HW semaphores)
2354          * then we can signal that this request/batch is ready to run. This
2355          * allows us to determine if the batch is still waiting on the GPU
2356          * or actually running by checking the breadcrumb.
2357          */
2358         if (rq->context->engine->emit_init_breadcrumb) {
2359                 err = rq->context->engine->emit_init_breadcrumb(rq);
2360                 if (err)
2361                         return err;
2362         }
2363
2364         err = rq->context->engine->emit_bb_start(rq,
2365                                                  batch->node.start +
2366                                                  eb->batch_start_offset,
2367                                                  batch_len,
2368                                                  eb->batch_flags);
2369         if (err)
2370                 return err;
2371
2372         if (eb->trampoline) {
2373                 GEM_BUG_ON(intel_context_is_parallel(rq->context));
2374                 GEM_BUG_ON(eb->batch_start_offset);
2375                 err = rq->context->engine->emit_bb_start(rq,
2376                                                          eb->trampoline->node.start +
2377                                                          batch_len, 0, 0);
2378                 if (err)
2379                         return err;
2380         }
2381
2382         return 0;
2383 }
2384
2385 static int eb_submit(struct i915_execbuffer *eb)
2386 {
2387         unsigned int i;
2388         int err;
2389
2390         err = eb_move_to_gpu(eb);
2391
2392         for_each_batch_create_order(eb, i) {
2393                 if (!eb->requests[i])
2394                         break;
2395
2396                 trace_i915_request_queue(eb->requests[i], eb->batch_flags);
2397                 if (!err)
2398                         err = eb_request_submit(eb, eb->requests[i],
2399                                                 eb->batches[i]->vma,
2400                                                 eb->batch_len[i]);
2401         }
2402
2403         return err;
2404 }
2405
2406 static int num_vcs_engines(struct drm_i915_private *i915)
2407 {
2408         return hweight_long(VDBOX_MASK(to_gt(i915)));
2409 }
2410
2411 /*
2412  * Find one BSD ring to dispatch the corresponding BSD command.
2413  * The engine index is returned.
2414  */
2415 static unsigned int
2416 gen8_dispatch_bsd_engine(struct drm_i915_private *dev_priv,
2417                          struct drm_file *file)
2418 {
2419         struct drm_i915_file_private *file_priv = file->driver_priv;
2420
2421         /* Check whether the file_priv has already selected one ring. */
2422         if ((int)file_priv->bsd_engine < 0)
2423                 file_priv->bsd_engine =
2424                         get_random_int() % num_vcs_engines(dev_priv);
2425
2426         return file_priv->bsd_engine;
2427 }
2428
2429 static const enum intel_engine_id user_ring_map[] = {
2430         [I915_EXEC_DEFAULT]     = RCS0,
2431         [I915_EXEC_RENDER]      = RCS0,
2432         [I915_EXEC_BLT]         = BCS0,
2433         [I915_EXEC_BSD]         = VCS0,
2434         [I915_EXEC_VEBOX]       = VECS0
2435 };
2436
2437 static struct i915_request *eb_throttle(struct i915_execbuffer *eb, struct intel_context *ce)
2438 {
2439         struct intel_ring *ring = ce->ring;
2440         struct intel_timeline *tl = ce->timeline;
2441         struct i915_request *rq;
2442
2443         /*
2444          * Completely unscientific finger-in-the-air estimates for suitable
2445          * maximum user request size (to avoid blocking) and then backoff.
2446          */
2447         if (intel_ring_update_space(ring) >= PAGE_SIZE)
2448                 return NULL;
2449
2450         /*
2451          * Find a request that after waiting upon, there will be at least half
2452          * the ring available. The hysteresis allows us to compete for the
2453          * shared ring and should mean that we sleep less often prior to
2454          * claiming our resources, but not so long that the ring completely
2455          * drains before we can submit our next request.
2456          */
2457         list_for_each_entry(rq, &tl->requests, link) {
2458                 if (rq->ring != ring)
2459                         continue;
2460
2461                 if (__intel_ring_space(rq->postfix,
2462                                        ring->emit, ring->size) > ring->size / 2)
2463                         break;
2464         }
2465         if (&rq->link == &tl->requests)
2466                 return NULL; /* weird, we will check again later for real */
2467
2468         return i915_request_get(rq);
2469 }
2470
2471 static int eb_pin_timeline(struct i915_execbuffer *eb, struct intel_context *ce,
2472                            bool throttle)
2473 {
2474         struct intel_timeline *tl;
2475         struct i915_request *rq = NULL;
2476
2477         /*
2478          * Take a local wakeref for preparing to dispatch the execbuf as
2479          * we expect to access the hardware fairly frequently in the
2480          * process, and require the engine to be kept awake between accesses.
2481          * Upon dispatch, we acquire another prolonged wakeref that we hold
2482          * until the timeline is idle, which in turn releases the wakeref
2483          * taken on the engine, and the parent device.
2484          */
2485         tl = intel_context_timeline_lock(ce);
2486         if (IS_ERR(tl))
2487                 return PTR_ERR(tl);
2488
2489         intel_context_enter(ce);
2490         if (throttle)
2491                 rq = eb_throttle(eb, ce);
2492         intel_context_timeline_unlock(tl);
2493
2494         if (rq) {
2495                 bool nonblock = eb->file->filp->f_flags & O_NONBLOCK;
2496                 long timeout = nonblock ? 0 : MAX_SCHEDULE_TIMEOUT;
2497
2498                 if (i915_request_wait(rq, I915_WAIT_INTERRUPTIBLE,
2499                                       timeout) < 0) {
2500                         i915_request_put(rq);
2501
2502                         /*
2503                          * Error path, cannot use intel_context_timeline_lock as
2504                          * that is user interruptable and this clean up step
2505                          * must be done.
2506                          */
2507                         mutex_lock(&ce->timeline->mutex);
2508                         intel_context_exit(ce);
2509                         mutex_unlock(&ce->timeline->mutex);
2510
2511                         if (nonblock)
2512                                 return -EWOULDBLOCK;
2513                         else
2514                                 return -EINTR;
2515                 }
2516                 i915_request_put(rq);
2517         }
2518
2519         return 0;
2520 }
2521
2522 static int eb_pin_engine(struct i915_execbuffer *eb, bool throttle)
2523 {
2524         struct intel_context *ce = eb->context, *child;
2525         int err;
2526         int i = 0, j = 0;
2527
2528         GEM_BUG_ON(eb->args->flags & __EXEC_ENGINE_PINNED);
2529
2530         if (unlikely(intel_context_is_banned(ce)))
2531                 return -EIO;
2532
2533         /*
2534          * Pinning the contexts may generate requests in order to acquire
2535          * GGTT space, so do this first before we reserve a seqno for
2536          * ourselves.
2537          */
2538         err = intel_context_pin_ww(ce, &eb->ww);
2539         if (err)
2540                 return err;
2541         for_each_child(ce, child) {
2542                 err = intel_context_pin_ww(child, &eb->ww);
2543                 GEM_BUG_ON(err);        /* perma-pinned should incr a counter */
2544         }
2545
2546         for_each_child(ce, child) {
2547                 err = eb_pin_timeline(eb, child, throttle);
2548                 if (err)
2549                         goto unwind;
2550                 ++i;
2551         }
2552         err = eb_pin_timeline(eb, ce, throttle);
2553         if (err)
2554                 goto unwind;
2555
2556         eb->args->flags |= __EXEC_ENGINE_PINNED;
2557         return 0;
2558
2559 unwind:
2560         for_each_child(ce, child) {
2561                 if (j++ < i) {
2562                         mutex_lock(&child->timeline->mutex);
2563                         intel_context_exit(child);
2564                         mutex_unlock(&child->timeline->mutex);
2565                 }
2566         }
2567         for_each_child(ce, child)
2568                 intel_context_unpin(child);
2569         intel_context_unpin(ce);
2570         return err;
2571 }
2572
2573 static void eb_unpin_engine(struct i915_execbuffer *eb)
2574 {
2575         struct intel_context *ce = eb->context, *child;
2576
2577         if (!(eb->args->flags & __EXEC_ENGINE_PINNED))
2578                 return;
2579
2580         eb->args->flags &= ~__EXEC_ENGINE_PINNED;
2581
2582         for_each_child(ce, child) {
2583                 mutex_lock(&child->timeline->mutex);
2584                 intel_context_exit(child);
2585                 mutex_unlock(&child->timeline->mutex);
2586
2587                 intel_context_unpin(child);
2588         }
2589
2590         mutex_lock(&ce->timeline->mutex);
2591         intel_context_exit(ce);
2592         mutex_unlock(&ce->timeline->mutex);
2593
2594         intel_context_unpin(ce);
2595 }
2596
2597 static unsigned int
2598 eb_select_legacy_ring(struct i915_execbuffer *eb)
2599 {
2600         struct drm_i915_private *i915 = eb->i915;
2601         struct drm_i915_gem_execbuffer2 *args = eb->args;
2602         unsigned int user_ring_id = args->flags & I915_EXEC_RING_MASK;
2603
2604         if (user_ring_id != I915_EXEC_BSD &&
2605             (args->flags & I915_EXEC_BSD_MASK)) {
2606                 drm_dbg(&i915->drm,
2607                         "execbuf with non bsd ring but with invalid "
2608                         "bsd dispatch flags: %d\n", (int)(args->flags));
2609                 return -1;
2610         }
2611
2612         if (user_ring_id == I915_EXEC_BSD && num_vcs_engines(i915) > 1) {
2613                 unsigned int bsd_idx = args->flags & I915_EXEC_BSD_MASK;
2614
2615                 if (bsd_idx == I915_EXEC_BSD_DEFAULT) {
2616                         bsd_idx = gen8_dispatch_bsd_engine(i915, eb->file);
2617                 } else if (bsd_idx >= I915_EXEC_BSD_RING1 &&
2618                            bsd_idx <= I915_EXEC_BSD_RING2) {
2619                         bsd_idx >>= I915_EXEC_BSD_SHIFT;
2620                         bsd_idx--;
2621                 } else {
2622                         drm_dbg(&i915->drm,
2623                                 "execbuf with unknown bsd ring: %u\n",
2624                                 bsd_idx);
2625                         return -1;
2626                 }
2627
2628                 return _VCS(bsd_idx);
2629         }
2630
2631         if (user_ring_id >= ARRAY_SIZE(user_ring_map)) {
2632                 drm_dbg(&i915->drm, "execbuf with unknown ring: %u\n",
2633                         user_ring_id);
2634                 return -1;
2635         }
2636
2637         return user_ring_map[user_ring_id];
2638 }
2639
2640 static int
2641 eb_select_engine(struct i915_execbuffer *eb)
2642 {
2643         struct intel_context *ce, *child;
2644         unsigned int idx;
2645         int err;
2646
2647         if (i915_gem_context_user_engines(eb->gem_context))
2648                 idx = eb->args->flags & I915_EXEC_RING_MASK;
2649         else
2650                 idx = eb_select_legacy_ring(eb);
2651
2652         ce = i915_gem_context_get_engine(eb->gem_context, idx);
2653         if (IS_ERR(ce))
2654                 return PTR_ERR(ce);
2655
2656         if (intel_context_is_parallel(ce)) {
2657                 if (eb->buffer_count < ce->parallel.number_children + 1) {
2658                         intel_context_put(ce);
2659                         return -EINVAL;
2660                 }
2661                 if (eb->batch_start_offset || eb->args->batch_len) {
2662                         intel_context_put(ce);
2663                         return -EINVAL;
2664                 }
2665         }
2666         eb->num_batches = ce->parallel.number_children + 1;
2667
2668         for_each_child(ce, child)
2669                 intel_context_get(child);
2670         intel_gt_pm_get(ce->engine->gt);
2671
2672         if (!test_bit(CONTEXT_ALLOC_BIT, &ce->flags)) {
2673                 err = intel_context_alloc_state(ce);
2674                 if (err)
2675                         goto err;
2676         }
2677         for_each_child(ce, child) {
2678                 if (!test_bit(CONTEXT_ALLOC_BIT, &child->flags)) {
2679                         err = intel_context_alloc_state(child);
2680                         if (err)
2681                                 goto err;
2682                 }
2683         }
2684
2685         /*
2686          * ABI: Before userspace accesses the GPU (e.g. execbuffer), report
2687          * EIO if the GPU is already wedged.
2688          */
2689         err = intel_gt_terminally_wedged(ce->engine->gt);
2690         if (err)
2691                 goto err;
2692
2693         eb->context = ce;
2694         eb->gt = ce->engine->gt;
2695
2696         /*
2697          * Make sure engine pool stays alive even if we call intel_context_put
2698          * during ww handling. The pool is destroyed when last pm reference
2699          * is dropped, which breaks our -EDEADLK handling.
2700          */
2701         return err;
2702
2703 err:
2704         intel_gt_pm_put(ce->engine->gt);
2705         for_each_child(ce, child)
2706                 intel_context_put(child);
2707         intel_context_put(ce);
2708         return err;
2709 }
2710
2711 static void
2712 eb_put_engine(struct i915_execbuffer *eb)
2713 {
2714         struct intel_context *child;
2715
2716         intel_gt_pm_put(eb->gt);
2717         for_each_child(eb->context, child)
2718                 intel_context_put(child);
2719         intel_context_put(eb->context);
2720 }
2721
2722 static void
2723 __free_fence_array(struct eb_fence *fences, unsigned int n)
2724 {
2725         while (n--) {
2726                 drm_syncobj_put(ptr_mask_bits(fences[n].syncobj, 2));
2727                 dma_fence_put(fences[n].dma_fence);
2728                 dma_fence_chain_free(fences[n].chain_fence);
2729         }
2730         kvfree(fences);
2731 }
2732
2733 static int
2734 add_timeline_fence_array(struct i915_execbuffer *eb,
2735                          const struct drm_i915_gem_execbuffer_ext_timeline_fences *timeline_fences)
2736 {
2737         struct drm_i915_gem_exec_fence __user *user_fences;
2738         u64 __user *user_values;
2739         struct eb_fence *f;
2740         u64 nfences;
2741         int err = 0;
2742
2743         nfences = timeline_fences->fence_count;
2744         if (!nfences)
2745                 return 0;
2746
2747         /* Check multiplication overflow for access_ok() and kvmalloc_array() */
2748         BUILD_BUG_ON(sizeof(size_t) > sizeof(unsigned long));
2749         if (nfences > min_t(unsigned long,
2750                             ULONG_MAX / sizeof(*user_fences),
2751                             SIZE_MAX / sizeof(*f)) - eb->num_fences)
2752                 return -EINVAL;
2753
2754         user_fences = u64_to_user_ptr(timeline_fences->handles_ptr);
2755         if (!access_ok(user_fences, nfences * sizeof(*user_fences)))
2756                 return -EFAULT;
2757
2758         user_values = u64_to_user_ptr(timeline_fences->values_ptr);
2759         if (!access_ok(user_values, nfences * sizeof(*user_values)))
2760                 return -EFAULT;
2761
2762         f = krealloc(eb->fences,
2763                      (eb->num_fences + nfences) * sizeof(*f),
2764                      __GFP_NOWARN | GFP_KERNEL);
2765         if (!f)
2766                 return -ENOMEM;
2767
2768         eb->fences = f;
2769         f += eb->num_fences;
2770
2771         BUILD_BUG_ON(~(ARCH_KMALLOC_MINALIGN - 1) &
2772                      ~__I915_EXEC_FENCE_UNKNOWN_FLAGS);
2773
2774         while (nfences--) {
2775                 struct drm_i915_gem_exec_fence user_fence;
2776                 struct drm_syncobj *syncobj;
2777                 struct dma_fence *fence = NULL;
2778                 u64 point;
2779
2780                 if (__copy_from_user(&user_fence,
2781                                      user_fences++,
2782                                      sizeof(user_fence)))
2783                         return -EFAULT;
2784
2785                 if (user_fence.flags & __I915_EXEC_FENCE_UNKNOWN_FLAGS)
2786                         return -EINVAL;
2787
2788                 if (__get_user(point, user_values++))
2789                         return -EFAULT;
2790
2791                 syncobj = drm_syncobj_find(eb->file, user_fence.handle);
2792                 if (!syncobj) {
2793                         DRM_DEBUG("Invalid syncobj handle provided\n");
2794                         return -ENOENT;
2795                 }
2796
2797                 fence = drm_syncobj_fence_get(syncobj);
2798
2799                 if (!fence && user_fence.flags &&
2800                     !(user_fence.flags & I915_EXEC_FENCE_SIGNAL)) {
2801                         DRM_DEBUG("Syncobj handle has no fence\n");
2802                         drm_syncobj_put(syncobj);
2803                         return -EINVAL;
2804                 }
2805
2806                 if (fence)
2807                         err = dma_fence_chain_find_seqno(&fence, point);
2808
2809                 if (err && !(user_fence.flags & I915_EXEC_FENCE_SIGNAL)) {
2810                         DRM_DEBUG("Syncobj handle missing requested point %llu\n", point);
2811                         dma_fence_put(fence);
2812                         drm_syncobj_put(syncobj);
2813                         return err;
2814                 }
2815
2816                 /*
2817                  * A point might have been signaled already and
2818                  * garbage collected from the timeline. In this case
2819                  * just ignore the point and carry on.
2820                  */
2821                 if (!fence && !(user_fence.flags & I915_EXEC_FENCE_SIGNAL)) {
2822                         drm_syncobj_put(syncobj);
2823                         continue;
2824                 }
2825
2826                 /*
2827                  * For timeline syncobjs we need to preallocate chains for
2828                  * later signaling.
2829                  */
2830                 if (point != 0 && user_fence.flags & I915_EXEC_FENCE_SIGNAL) {
2831                         /*
2832                          * Waiting and signaling the same point (when point !=
2833                          * 0) would break the timeline.
2834                          */
2835                         if (user_fence.flags & I915_EXEC_FENCE_WAIT) {
2836                                 DRM_DEBUG("Trying to wait & signal the same timeline point.\n");
2837                                 dma_fence_put(fence);
2838                                 drm_syncobj_put(syncobj);
2839                                 return -EINVAL;
2840                         }
2841
2842                         f->chain_fence = dma_fence_chain_alloc();
2843                         if (!f->chain_fence) {
2844                                 drm_syncobj_put(syncobj);
2845                                 dma_fence_put(fence);
2846                                 return -ENOMEM;
2847                         }
2848                 } else {
2849                         f->chain_fence = NULL;
2850                 }
2851
2852                 f->syncobj = ptr_pack_bits(syncobj, user_fence.flags, 2);
2853                 f->dma_fence = fence;
2854                 f->value = point;
2855                 f++;
2856                 eb->num_fences++;
2857         }
2858
2859         return 0;
2860 }
2861
2862 static int add_fence_array(struct i915_execbuffer *eb)
2863 {
2864         struct drm_i915_gem_execbuffer2 *args = eb->args;
2865         struct drm_i915_gem_exec_fence __user *user;
2866         unsigned long num_fences = args->num_cliprects;
2867         struct eb_fence *f;
2868
2869         if (!(args->flags & I915_EXEC_FENCE_ARRAY))
2870                 return 0;
2871
2872         if (!num_fences)
2873                 return 0;
2874
2875         /* Check multiplication overflow for access_ok() and kvmalloc_array() */
2876         BUILD_BUG_ON(sizeof(size_t) > sizeof(unsigned long));
2877         if (num_fences > min_t(unsigned long,
2878                                ULONG_MAX / sizeof(*user),
2879                                SIZE_MAX / sizeof(*f) - eb->num_fences))
2880                 return -EINVAL;
2881
2882         user = u64_to_user_ptr(args->cliprects_ptr);
2883         if (!access_ok(user, num_fences * sizeof(*user)))
2884                 return -EFAULT;
2885
2886         f = krealloc(eb->fences,
2887                      (eb->num_fences + num_fences) * sizeof(*f),
2888                      __GFP_NOWARN | GFP_KERNEL);
2889         if (!f)
2890                 return -ENOMEM;
2891
2892         eb->fences = f;
2893         f += eb->num_fences;
2894         while (num_fences--) {
2895                 struct drm_i915_gem_exec_fence user_fence;
2896                 struct drm_syncobj *syncobj;
2897                 struct dma_fence *fence = NULL;
2898
2899                 if (__copy_from_user(&user_fence, user++, sizeof(user_fence)))
2900                         return -EFAULT;
2901
2902                 if (user_fence.flags & __I915_EXEC_FENCE_UNKNOWN_FLAGS)
2903                         return -EINVAL;
2904
2905                 syncobj = drm_syncobj_find(eb->file, user_fence.handle);
2906                 if (!syncobj) {
2907                         DRM_DEBUG("Invalid syncobj handle provided\n");
2908                         return -ENOENT;
2909                 }
2910
2911                 if (user_fence.flags & I915_EXEC_FENCE_WAIT) {
2912                         fence = drm_syncobj_fence_get(syncobj);
2913                         if (!fence) {
2914                                 DRM_DEBUG("Syncobj handle has no fence\n");
2915                                 drm_syncobj_put(syncobj);
2916                                 return -EINVAL;
2917                         }
2918                 }
2919
2920                 BUILD_BUG_ON(~(ARCH_KMALLOC_MINALIGN - 1) &
2921                              ~__I915_EXEC_FENCE_UNKNOWN_FLAGS);
2922
2923                 f->syncobj = ptr_pack_bits(syncobj, user_fence.flags, 2);
2924                 f->dma_fence = fence;
2925                 f->value = 0;
2926                 f->chain_fence = NULL;
2927                 f++;
2928                 eb->num_fences++;
2929         }
2930
2931         return 0;
2932 }
2933
2934 static void put_fence_array(struct eb_fence *fences, int num_fences)
2935 {
2936         if (fences)
2937                 __free_fence_array(fences, num_fences);
2938 }
2939
2940 static int
2941 await_fence_array(struct i915_execbuffer *eb,
2942                   struct i915_request *rq)
2943 {
2944         unsigned int n;
2945         int err;
2946
2947         for (n = 0; n < eb->num_fences; n++) {
2948                 struct drm_syncobj *syncobj;
2949                 unsigned int flags;
2950
2951                 syncobj = ptr_unpack_bits(eb->fences[n].syncobj, &flags, 2);
2952
2953                 if (!eb->fences[n].dma_fence)
2954                         continue;
2955
2956                 err = i915_request_await_dma_fence(rq, eb->fences[n].dma_fence);
2957                 if (err < 0)
2958                         return err;
2959         }
2960
2961         return 0;
2962 }
2963
2964 static void signal_fence_array(const struct i915_execbuffer *eb,
2965                                struct dma_fence * const fence)
2966 {
2967         unsigned int n;
2968
2969         for (n = 0; n < eb->num_fences; n++) {
2970                 struct drm_syncobj *syncobj;
2971                 unsigned int flags;
2972
2973                 syncobj = ptr_unpack_bits(eb->fences[n].syncobj, &flags, 2);
2974                 if (!(flags & I915_EXEC_FENCE_SIGNAL))
2975                         continue;
2976
2977                 if (eb->fences[n].chain_fence) {
2978                         drm_syncobj_add_point(syncobj,
2979                                               eb->fences[n].chain_fence,
2980                                               fence,
2981                                               eb->fences[n].value);
2982                         /*
2983                          * The chain's ownership is transferred to the
2984                          * timeline.
2985                          */
2986                         eb->fences[n].chain_fence = NULL;
2987                 } else {
2988                         drm_syncobj_replace_fence(syncobj, fence);
2989                 }
2990         }
2991 }
2992
2993 static int
2994 parse_timeline_fences(struct i915_user_extension __user *ext, void *data)
2995 {
2996         struct i915_execbuffer *eb = data;
2997         struct drm_i915_gem_execbuffer_ext_timeline_fences timeline_fences;
2998
2999         if (copy_from_user(&timeline_fences, ext, sizeof(timeline_fences)))
3000                 return -EFAULT;
3001
3002         return add_timeline_fence_array(eb, &timeline_fences);
3003 }
3004
3005 static void retire_requests(struct intel_timeline *tl, struct i915_request *end)
3006 {
3007         struct i915_request *rq, *rn;
3008
3009         list_for_each_entry_safe(rq, rn, &tl->requests, link)
3010                 if (rq == end || !i915_request_retire(rq))
3011                         break;
3012 }
3013
3014 static int eb_request_add(struct i915_execbuffer *eb, struct i915_request *rq,
3015                           int err, bool last_parallel)
3016 {
3017         struct intel_timeline * const tl = i915_request_timeline(rq);
3018         struct i915_sched_attr attr = {};
3019         struct i915_request *prev;
3020
3021         lockdep_assert_held(&tl->mutex);
3022         lockdep_unpin_lock(&tl->mutex, rq->cookie);
3023
3024         trace_i915_request_add(rq);
3025
3026         prev = __i915_request_commit(rq);
3027
3028         /* Check that the context wasn't destroyed before submission */
3029         if (likely(!intel_context_is_closed(eb->context))) {
3030                 attr = eb->gem_context->sched;
3031         } else {
3032                 /* Serialise with context_close via the add_to_timeline */
3033                 i915_request_set_error_once(rq, -ENOENT);
3034                 __i915_request_skip(rq);
3035                 err = -ENOENT; /* override any transient errors */
3036         }
3037
3038         if (intel_context_is_parallel(eb->context)) {
3039                 if (err) {
3040                         __i915_request_skip(rq);
3041                         set_bit(I915_FENCE_FLAG_SKIP_PARALLEL,
3042                                 &rq->fence.flags);
3043                 }
3044                 if (last_parallel)
3045                         set_bit(I915_FENCE_FLAG_SUBMIT_PARALLEL,
3046                                 &rq->fence.flags);
3047         }
3048
3049         __i915_request_queue(rq, &attr);
3050
3051         /* Try to clean up the client's timeline after submitting the request */
3052         if (prev)
3053                 retire_requests(tl, prev);
3054
3055         mutex_unlock(&tl->mutex);
3056
3057         return err;
3058 }
3059
3060 static int eb_requests_add(struct i915_execbuffer *eb, int err)
3061 {
3062         int i;
3063
3064         /*
3065          * We iterate in reverse order of creation to release timeline mutexes in
3066          * same order.
3067          */
3068         for_each_batch_add_order(eb, i) {
3069                 struct i915_request *rq = eb->requests[i];
3070
3071                 if (!rq)
3072                         continue;
3073                 err |= eb_request_add(eb, rq, err, i == 0);
3074         }
3075
3076         return err;
3077 }
3078
3079 static const i915_user_extension_fn execbuf_extensions[] = {
3080         [DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES] = parse_timeline_fences,
3081 };
3082
3083 static int
3084 parse_execbuf2_extensions(struct drm_i915_gem_execbuffer2 *args,
3085                           struct i915_execbuffer *eb)
3086 {
3087         if (!(args->flags & I915_EXEC_USE_EXTENSIONS))
3088                 return 0;
3089
3090         /* The execbuf2 extension mechanism reuses cliprects_ptr. So we cannot
3091          * have another flag also using it at the same time.
3092          */
3093         if (eb->args->flags & I915_EXEC_FENCE_ARRAY)
3094                 return -EINVAL;
3095
3096         if (args->num_cliprects != 0)
3097                 return -EINVAL;
3098
3099         return i915_user_extensions(u64_to_user_ptr(args->cliprects_ptr),
3100                                     execbuf_extensions,
3101                                     ARRAY_SIZE(execbuf_extensions),
3102                                     eb);
3103 }
3104
3105 static void eb_requests_get(struct i915_execbuffer *eb)
3106 {
3107         unsigned int i;
3108
3109         for_each_batch_create_order(eb, i) {
3110                 if (!eb->requests[i])
3111                         break;
3112
3113                 i915_request_get(eb->requests[i]);
3114         }
3115 }
3116
3117 static void eb_requests_put(struct i915_execbuffer *eb)
3118 {
3119         unsigned int i;
3120
3121         for_each_batch_create_order(eb, i) {
3122                 if (!eb->requests[i])
3123                         break;
3124
3125                 i915_request_put(eb->requests[i]);
3126         }
3127 }
3128
3129 static struct sync_file *
3130 eb_composite_fence_create(struct i915_execbuffer *eb, int out_fence_fd)
3131 {
3132         struct sync_file *out_fence = NULL;
3133         struct dma_fence_array *fence_array;
3134         struct dma_fence **fences;
3135         unsigned int i;
3136
3137         GEM_BUG_ON(!intel_context_is_parent(eb->context));
3138
3139         fences = kmalloc_array(eb->num_batches, sizeof(*fences), GFP_KERNEL);
3140         if (!fences)
3141                 return ERR_PTR(-ENOMEM);
3142
3143         for_each_batch_create_order(eb, i) {
3144                 fences[i] = &eb->requests[i]->fence;
3145                 __set_bit(I915_FENCE_FLAG_COMPOSITE,
3146                           &eb->requests[i]->fence.flags);
3147         }
3148
3149         fence_array = dma_fence_array_create(eb->num_batches,
3150                                              fences,
3151                                              eb->context->parallel.fence_context,
3152                                              eb->context->parallel.seqno++,
3153                                              false);
3154         if (!fence_array) {
3155                 kfree(fences);
3156                 return ERR_PTR(-ENOMEM);
3157         }
3158
3159         /* Move ownership to the dma_fence_array created above */
3160         for_each_batch_create_order(eb, i)
3161                 dma_fence_get(fences[i]);
3162
3163         if (out_fence_fd != -1) {
3164                 out_fence = sync_file_create(&fence_array->base);
3165                 /* sync_file now owns fence_arry, drop creation ref */
3166                 dma_fence_put(&fence_array->base);
3167                 if (!out_fence)
3168                         return ERR_PTR(-ENOMEM);
3169         }
3170
3171         eb->composite_fence = &fence_array->base;
3172
3173         return out_fence;
3174 }
3175
3176 static struct sync_file *
3177 eb_fences_add(struct i915_execbuffer *eb, struct i915_request *rq,
3178               struct dma_fence *in_fence, int out_fence_fd)
3179 {
3180         struct sync_file *out_fence = NULL;
3181         int err;
3182
3183         if (unlikely(eb->gem_context->syncobj)) {
3184                 struct dma_fence *fence;
3185
3186                 fence = drm_syncobj_fence_get(eb->gem_context->syncobj);
3187                 err = i915_request_await_dma_fence(rq, fence);
3188                 dma_fence_put(fence);
3189                 if (err)
3190                         return ERR_PTR(err);
3191         }
3192
3193         if (in_fence) {
3194                 if (eb->args->flags & I915_EXEC_FENCE_SUBMIT)
3195                         err = i915_request_await_execution(rq, in_fence);
3196                 else
3197                         err = i915_request_await_dma_fence(rq, in_fence);
3198                 if (err < 0)
3199                         return ERR_PTR(err);
3200         }
3201
3202         if (eb->fences) {
3203                 err = await_fence_array(eb, rq);
3204                 if (err)
3205                         return ERR_PTR(err);
3206         }
3207
3208         if (intel_context_is_parallel(eb->context)) {
3209                 out_fence = eb_composite_fence_create(eb, out_fence_fd);
3210                 if (IS_ERR(out_fence))
3211                         return ERR_PTR(-ENOMEM);
3212         } else if (out_fence_fd != -1) {
3213                 out_fence = sync_file_create(&rq->fence);
3214                 if (!out_fence)
3215                         return ERR_PTR(-ENOMEM);
3216         }
3217
3218         return out_fence;
3219 }
3220
3221 static struct intel_context *
3222 eb_find_context(struct i915_execbuffer *eb, unsigned int context_number)
3223 {
3224         struct intel_context *child;
3225
3226         if (likely(context_number == 0))
3227                 return eb->context;
3228
3229         for_each_child(eb->context, child)
3230                 if (!--context_number)
3231                         return child;
3232
3233         GEM_BUG_ON("Context not found");
3234
3235         return NULL;
3236 }
3237
3238 static struct sync_file *
3239 eb_requests_create(struct i915_execbuffer *eb, struct dma_fence *in_fence,
3240                    int out_fence_fd)
3241 {
3242         struct sync_file *out_fence = NULL;
3243         unsigned int i;
3244
3245         for_each_batch_create_order(eb, i) {
3246                 /* Allocate a request for this batch buffer nice and early. */
3247                 eb->requests[i] = i915_request_create(eb_find_context(eb, i));
3248                 if (IS_ERR(eb->requests[i])) {
3249                         out_fence = ERR_CAST(eb->requests[i]);
3250                         eb->requests[i] = NULL;
3251                         return out_fence;
3252                 }
3253
3254                 /*
3255                  * Only the first request added (committed to backend) has to
3256                  * take the in fences into account as all subsequent requests
3257                  * will have fences inserted inbetween them.
3258                  */
3259                 if (i + 1 == eb->num_batches) {
3260                         out_fence = eb_fences_add(eb, eb->requests[i],
3261                                                   in_fence, out_fence_fd);
3262                         if (IS_ERR(out_fence))
3263                                 return out_fence;
3264                 }
3265
3266                 /*
3267                  * Not really on stack, but we don't want to call
3268                  * kfree on the batch_snapshot when we put it, so use the
3269                  * _onstack interface.
3270                  */
3271                 if (eb->batches[i]->vma)
3272                         eb->requests[i]->batch_res =
3273                                 i915_vma_resource_get(eb->batches[i]->vma->resource);
3274                 if (eb->batch_pool) {
3275                         GEM_BUG_ON(intel_context_is_parallel(eb->context));
3276                         intel_gt_buffer_pool_mark_active(eb->batch_pool,
3277                                                          eb->requests[i]);
3278                 }
3279         }
3280
3281         return out_fence;
3282 }
3283
3284 static int
3285 i915_gem_do_execbuffer(struct drm_device *dev,
3286                        struct drm_file *file,
3287                        struct drm_i915_gem_execbuffer2 *args,
3288                        struct drm_i915_gem_exec_object2 *exec)
3289 {
3290         struct drm_i915_private *i915 = to_i915(dev);
3291         struct i915_execbuffer eb;
3292         struct dma_fence *in_fence = NULL;
3293         struct sync_file *out_fence = NULL;
3294         int out_fence_fd = -1;
3295         int err;
3296
3297         BUILD_BUG_ON(__EXEC_INTERNAL_FLAGS & ~__I915_EXEC_ILLEGAL_FLAGS);
3298         BUILD_BUG_ON(__EXEC_OBJECT_INTERNAL_FLAGS &
3299                      ~__EXEC_OBJECT_UNKNOWN_FLAGS);
3300
3301         eb.i915 = i915;
3302         eb.file = file;
3303         eb.args = args;
3304         if (DBG_FORCE_RELOC || !(args->flags & I915_EXEC_NO_RELOC))
3305                 args->flags |= __EXEC_HAS_RELOC;
3306
3307         eb.exec = exec;
3308         eb.vma = (struct eb_vma *)(exec + args->buffer_count + 1);
3309         eb.vma[0].vma = NULL;
3310         eb.batch_pool = NULL;
3311
3312         eb.invalid_flags = __EXEC_OBJECT_UNKNOWN_FLAGS;
3313         reloc_cache_init(&eb.reloc_cache, eb.i915);
3314
3315         eb.buffer_count = args->buffer_count;
3316         eb.batch_start_offset = args->batch_start_offset;
3317         eb.trampoline = NULL;
3318
3319         eb.fences = NULL;
3320         eb.num_fences = 0;
3321
3322         eb_capture_list_clear(&eb);
3323
3324         memset(eb.requests, 0, sizeof(struct i915_request *) *
3325                ARRAY_SIZE(eb.requests));
3326         eb.composite_fence = NULL;
3327
3328         eb.batch_flags = 0;
3329         if (args->flags & I915_EXEC_SECURE) {
3330                 if (GRAPHICS_VER(i915) >= 11)
3331                         return -ENODEV;
3332
3333                 /* Return -EPERM to trigger fallback code on old binaries. */
3334                 if (!HAS_SECURE_BATCHES(i915))
3335                         return -EPERM;
3336
3337                 if (!drm_is_current_master(file) || !capable(CAP_SYS_ADMIN))
3338                         return -EPERM;
3339
3340                 eb.batch_flags |= I915_DISPATCH_SECURE;
3341         }
3342         if (args->flags & I915_EXEC_IS_PINNED)
3343                 eb.batch_flags |= I915_DISPATCH_PINNED;
3344
3345         err = parse_execbuf2_extensions(args, &eb);
3346         if (err)
3347                 goto err_ext;
3348
3349         err = add_fence_array(&eb);
3350         if (err)
3351                 goto err_ext;
3352
3353 #define IN_FENCES (I915_EXEC_FENCE_IN | I915_EXEC_FENCE_SUBMIT)
3354         if (args->flags & IN_FENCES) {
3355                 if ((args->flags & IN_FENCES) == IN_FENCES)
3356                         return -EINVAL;
3357
3358                 in_fence = sync_file_get_fence(lower_32_bits(args->rsvd2));
3359                 if (!in_fence) {
3360                         err = -EINVAL;
3361                         goto err_ext;
3362                 }
3363         }
3364 #undef IN_FENCES
3365
3366         if (args->flags & I915_EXEC_FENCE_OUT) {
3367                 out_fence_fd = get_unused_fd_flags(O_CLOEXEC);
3368                 if (out_fence_fd < 0) {
3369                         err = out_fence_fd;
3370                         goto err_in_fence;
3371                 }
3372         }
3373
3374         err = eb_create(&eb);
3375         if (err)
3376                 goto err_out_fence;
3377
3378         GEM_BUG_ON(!eb.lut_size);
3379
3380         err = eb_select_context(&eb);
3381         if (unlikely(err))
3382                 goto err_destroy;
3383
3384         err = eb_select_engine(&eb);
3385         if (unlikely(err))
3386                 goto err_context;
3387
3388         err = eb_lookup_vmas(&eb);
3389         if (err) {
3390                 eb_release_vmas(&eb, true);
3391                 goto err_engine;
3392         }
3393
3394         i915_gem_ww_ctx_init(&eb.ww, true);
3395
3396         err = eb_relocate_parse(&eb);
3397         if (err) {
3398                 /*
3399                  * If the user expects the execobject.offset and
3400                  * reloc.presumed_offset to be an exact match,
3401                  * as for using NO_RELOC, then we cannot update
3402                  * the execobject.offset until we have completed
3403                  * relocation.
3404                  */
3405                 args->flags &= ~__EXEC_HAS_RELOC;
3406                 goto err_vma;
3407         }
3408
3409         ww_acquire_done(&eb.ww.ctx);
3410         eb_capture_stage(&eb);
3411
3412         out_fence = eb_requests_create(&eb, in_fence, out_fence_fd);
3413         if (IS_ERR(out_fence)) {
3414                 err = PTR_ERR(out_fence);
3415                 out_fence = NULL;
3416                 if (eb.requests[0])
3417                         goto err_request;
3418                 else
3419                         goto err_vma;
3420         }
3421
3422         err = eb_submit(&eb);
3423
3424 err_request:
3425         eb_requests_get(&eb);
3426         err = eb_requests_add(&eb, err);
3427
3428         if (eb.fences)
3429                 signal_fence_array(&eb, eb.composite_fence ?
3430                                    eb.composite_fence :
3431                                    &eb.requests[0]->fence);
3432
3433         if (out_fence) {
3434                 if (err == 0) {
3435                         fd_install(out_fence_fd, out_fence->file);
3436                         args->rsvd2 &= GENMASK_ULL(31, 0); /* keep in-fence */
3437                         args->rsvd2 |= (u64)out_fence_fd << 32;
3438                         out_fence_fd = -1;
3439                 } else {
3440                         fput(out_fence->file);
3441                 }
3442         }
3443
3444         if (unlikely(eb.gem_context->syncobj)) {
3445                 drm_syncobj_replace_fence(eb.gem_context->syncobj,
3446                                           eb.composite_fence ?
3447                                           eb.composite_fence :
3448                                           &eb.requests[0]->fence);
3449         }
3450
3451         if (!out_fence && eb.composite_fence)
3452                 dma_fence_put(eb.composite_fence);
3453
3454         eb_requests_put(&eb);
3455
3456 err_vma:
3457         eb_release_vmas(&eb, true);
3458         WARN_ON(err == -EDEADLK);
3459         i915_gem_ww_ctx_fini(&eb.ww);
3460
3461         if (eb.batch_pool)
3462                 intel_gt_buffer_pool_put(eb.batch_pool);
3463 err_engine:
3464         eb_put_engine(&eb);
3465 err_context:
3466         i915_gem_context_put(eb.gem_context);
3467 err_destroy:
3468         eb_destroy(&eb);
3469 err_out_fence:
3470         if (out_fence_fd != -1)
3471                 put_unused_fd(out_fence_fd);
3472 err_in_fence:
3473         dma_fence_put(in_fence);
3474 err_ext:
3475         put_fence_array(eb.fences, eb.num_fences);
3476         return err;
3477 }
3478
3479 static size_t eb_element_size(void)
3480 {
3481         return sizeof(struct drm_i915_gem_exec_object2) + sizeof(struct eb_vma);
3482 }
3483
3484 static bool check_buffer_count(size_t count)
3485 {
3486         const size_t sz = eb_element_size();
3487
3488         /*
3489          * When using LUT_HANDLE, we impose a limit of INT_MAX for the lookup
3490          * array size (see eb_create()). Otherwise, we can accept an array as
3491          * large as can be addressed (though use large arrays at your peril)!
3492          */
3493
3494         return !(count < 1 || count > INT_MAX || count > SIZE_MAX / sz - 1);
3495 }
3496
3497 int
3498 i915_gem_execbuffer2_ioctl(struct drm_device *dev, void *data,
3499                            struct drm_file *file)
3500 {
3501         struct drm_i915_private *i915 = to_i915(dev);
3502         struct drm_i915_gem_execbuffer2 *args = data;
3503         struct drm_i915_gem_exec_object2 *exec2_list;
3504         const size_t count = args->buffer_count;
3505         int err;
3506
3507         if (!check_buffer_count(count)) {
3508                 drm_dbg(&i915->drm, "execbuf2 with %zd buffers\n", count);
3509                 return -EINVAL;
3510         }
3511
3512         err = i915_gem_check_execbuffer(args);
3513         if (err)
3514                 return err;
3515
3516         /* Allocate extra slots for use by the command parser */
3517         exec2_list = kvmalloc_array(count + 2, eb_element_size(),
3518                                     __GFP_NOWARN | GFP_KERNEL);
3519         if (exec2_list == NULL) {
3520                 drm_dbg(&i915->drm, "Failed to allocate exec list for %zd buffers\n",
3521                         count);
3522                 return -ENOMEM;
3523         }
3524         if (copy_from_user(exec2_list,
3525                            u64_to_user_ptr(args->buffers_ptr),
3526                            sizeof(*exec2_list) * count)) {
3527                 drm_dbg(&i915->drm, "copy %zd exec entries failed\n", count);
3528                 kvfree(exec2_list);
3529                 return -EFAULT;
3530         }
3531
3532         err = i915_gem_do_execbuffer(dev, file, args, exec2_list);
3533
3534         /*
3535          * Now that we have begun execution of the batchbuffer, we ignore
3536          * any new error after this point. Also given that we have already
3537          * updated the associated relocations, we try to write out the current
3538          * object locations irrespective of any error.
3539          */
3540         if (args->flags & __EXEC_HAS_RELOC) {
3541                 struct drm_i915_gem_exec_object2 __user *user_exec_list =
3542                         u64_to_user_ptr(args->buffers_ptr);
3543                 unsigned int i;
3544
3545                 /* Copy the new buffer offsets back to the user's exec list. */
3546                 /*
3547                  * Note: count * sizeof(*user_exec_list) does not overflow,
3548                  * because we checked 'count' in check_buffer_count().
3549                  *
3550                  * And this range already got effectively checked earlier
3551                  * when we did the "copy_from_user()" above.
3552                  */
3553                 if (!user_write_access_begin(user_exec_list,
3554                                              count * sizeof(*user_exec_list)))
3555                         goto end;
3556
3557                 for (i = 0; i < args->buffer_count; i++) {
3558                         if (!(exec2_list[i].offset & UPDATE))
3559                                 continue;
3560
3561                         exec2_list[i].offset =
3562                                 gen8_canonical_addr(exec2_list[i].offset & PIN_OFFSET_MASK);
3563                         unsafe_put_user(exec2_list[i].offset,
3564                                         &user_exec_list[i].offset,
3565                                         end_user);
3566                 }
3567 end_user:
3568                 user_write_access_end();
3569 end:;
3570         }
3571
3572         args->flags &= ~__I915_EXEC_UNKNOWN_FLAGS;
3573         kvfree(exec2_list);
3574         return err;
3575 }