Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | /* * Copyright 2014 Red Hat Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: Ben Skeggs <bskeggs@redhat.com> */ #include "nouveau_drv.h" #include "nouveau_usif.h" #include "nouveau_abi16.h" #include <nvif/unpack.h> #include <nvif/client.h> #include <nvif/ioctl.h> #include <nvif/class.h> #include <nvif/cl0080.h> struct usif_object { struct list_head head; u8 route; u64 token; }; static void usif_object_dtor(struct usif_object *object) { list_del(&object->head); kfree(object); } static int usif_object_new(struct drm_file *f, void *data, u32 size, void *argv, u32 argc, bool parent_abi16) { struct nouveau_cli *cli = nouveau_cli(f); struct nvif_client *client = &cli->base; union { struct nvif_ioctl_new_v0 v0; } *args = data; struct usif_object *object; int ret = -ENOSYS; if ((ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true))) return ret; switch (args->v0.oclass) { case NV_DMA_FROM_MEMORY: case NV_DMA_TO_MEMORY: case NV_DMA_IN_MEMORY: return -EINVAL; case NV_DEVICE: { union { struct nv_device_v0 v0; } *args = data; if ((ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) return ret; args->v0.priv = false; break; } default: if (!parent_abi16) return -EINVAL; break; } if (!(object = kmalloc(sizeof(*object), GFP_KERNEL))) return -ENOMEM; list_add(&object->head, &cli->objects); object->route = args->v0.route; object->token = args->v0.token; args->v0.route = NVDRM_OBJECT_USIF; args->v0.token = (unsigned long)(void *)object; ret = nvif_client_ioctl(client, argv, argc); if (ret) { usif_object_dtor(object); return ret; } args->v0.token = object->token; args->v0.route = object->route; return 0; } int usif_ioctl(struct drm_file *filp, void __user *user, u32 argc) { struct nouveau_cli *cli = nouveau_cli(filp); struct nvif_client *client = &cli->base; void *data = kmalloc(argc, GFP_KERNEL); u32 size = argc; union { struct nvif_ioctl_v0 v0; } *argv = data; struct usif_object *object; bool abi16 = false; u8 owner; int ret; if (ret = -ENOMEM, !argv) goto done; if (ret = -EFAULT, copy_from_user(argv, user, size)) goto done; if (!(ret = nvif_unpack(-ENOSYS, &data, &size, argv->v0, 0, 0, true))) { /* block access to objects not created via this interface */ owner = argv->v0.owner; if (argv->v0.object == 0ULL && argv->v0.type != NVIF_IOCTL_V0_DEL) argv->v0.owner = NVDRM_OBJECT_ANY; /* except client */ else argv->v0.owner = NVDRM_OBJECT_USIF; } else goto done; /* USIF slightly abuses some return-only ioctl members in order * to provide interoperability with the older ABI16 objects */ mutex_lock(&cli->mutex); if (argv->v0.route) { if (ret = -EINVAL, argv->v0.route == 0xff) ret = nouveau_abi16_usif(filp, argv, argc); if (ret) { mutex_unlock(&cli->mutex); goto done; } abi16 = true; } switch (argv->v0.type) { case NVIF_IOCTL_V0_NEW: ret = usif_object_new(filp, data, size, argv, argc, abi16); break; default: ret = nvif_client_ioctl(client, argv, argc); break; } if (argv->v0.route == NVDRM_OBJECT_USIF) { object = (void *)(unsigned long)argv->v0.token; argv->v0.route = object->route; argv->v0.token = object->token; if (ret == 0 && argv->v0.type == NVIF_IOCTL_V0_DEL) { list_del(&object->head); kfree(object); } } else { argv->v0.route = NVIF_IOCTL_V0_ROUTE_HIDDEN; argv->v0.token = 0; } argv->v0.owner = owner; mutex_unlock(&cli->mutex); if (copy_to_user(user, argv, argc)) ret = -EFAULT; done: kfree(argv); return ret; } void usif_client_fini(struct nouveau_cli *cli) { struct usif_object *object, *otemp; list_for_each_entry_safe(object, otemp, &cli->objects, head) { usif_object_dtor(object); } } void usif_client_init(struct nouveau_cli *cli) { INIT_LIST_HEAD(&cli->objects); } |