hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * SPDX-License-Identifier: MIT
 *
 * Copyright © 2018 Intel Corporation
 */
 
#include <linux/nospec.h>
#include <linux/sched/signal.h>
#include <linux/uaccess.h>
 
#include <uapi/drm/i915_drm.h>
 
#include "i915_user_extensions.h"
#include "i915_utils.h"
 
int i915_user_extensions(struct i915_user_extension __user *ext,
            const i915_user_extension_fn *tbl,
            unsigned int count,
            void *data)
{
   unsigned int stackdepth = 512;
 
   while (ext) {
       int i, err;
       u32 name;
       u64 next;
 
       if (!stackdepth--) /* recursion vs useful flexibility */
           return -E2BIG;
 
       err = check_user_mbz(&ext->flags);
       if (err)
           return err;
 
       for (i = 0; i < ARRAY_SIZE(ext->rsvd); i++) {
           err = check_user_mbz(&ext->rsvd[i]);
           if (err)
               return err;
       }
 
       if (get_user(name, &ext->name))
           return -EFAULT;
 
       err = -EINVAL;
       if (name < count) {
           name = array_index_nospec(name, count);
           if (tbl[name])
               err = tbl[name](ext, data);
       }
       if (err)
           return err;
 
       if (get_user(next, &ext->next_extension) ||
           overflows_type(next, ext))
           return -EFAULT;
 
       ext = u64_to_user_ptr(next);
   }
 
   return 0;
}