loader: s/int/bool/ for predicate result
[mesa.git] / src / loader / loader.c
1 /*
2 * Copyright (C) 2013 Rob Clark <robclark@freedesktop.org>
3 * Copyright (C) 2014-2016 Emil Velikov <emil.l.velikov@gmail.com>
4 * Copyright (C) 2016 Intel Corporation
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Authors:
26 * Rob Clark <robclark@freedesktop.org>
27 */
28
29 #include <dlfcn.h>
30 #include <errno.h>
31 #include <fcntl.h>
32 #include <sys/stat.h>
33 #include <stdarg.h>
34 #include <stdio.h>
35 #include <stdbool.h>
36 #include <string.h>
37 #include <unistd.h>
38 #include <stdlib.h>
39 #include <limits.h>
40 #include <sys/param.h>
41 #ifdef MAJOR_IN_MKDEV
42 #include <sys/mkdev.h>
43 #endif
44 #ifdef MAJOR_IN_SYSMACROS
45 #include <sys/sysmacros.h>
46 #endif
47 #include <GL/gl.h>
48 #include <GL/internal/dri_interface.h>
49 #include "loader.h"
50
51 #ifdef HAVE_LIBDRM
52 #include <xf86drm.h>
53 #ifdef USE_DRICONF
54 #include "util/xmlconfig.h"
55 #include "util/xmlpool.h"
56 #endif
57 #endif
58
59 #define __IS_LOADER
60 #include "pci_id_driver_map.h"
61
62 static void default_logger(int level, const char *fmt, ...)
63 {
64 if (level <= _LOADER_WARNING) {
65 va_list args;
66 va_start(args, fmt);
67 vfprintf(stderr, fmt, args);
68 va_end(args);
69 }
70 }
71
72 static loader_logger *log_ = default_logger;
73
74 int
75 loader_open_device(const char *device_name)
76 {
77 int fd;
78 #ifdef O_CLOEXEC
79 fd = open(device_name, O_RDWR | O_CLOEXEC);
80 if (fd == -1 && errno == EINVAL)
81 #endif
82 {
83 fd = open(device_name, O_RDWR);
84 if (fd != -1)
85 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
86 }
87 return fd;
88 }
89
90 static char *loader_get_kernel_driver_name(int fd)
91 {
92 #if HAVE_LIBDRM
93 char *driver;
94 drmVersionPtr version = drmGetVersion(fd);
95
96 if (!version) {
97 log_(_LOADER_WARNING, "failed to get driver name for fd %d\n", fd);
98 return NULL;
99 }
100
101 driver = strndup(version->name, version->name_len);
102
103 drmFreeVersion(version);
104 return driver;
105 #else
106 return NULL;
107 #endif
108 }
109
110 #if defined(HAVE_LIBDRM)
111 int
112 loader_open_render_node(const char *name)
113 {
114 drmDevicePtr *devices, device;
115 int err, render = -ENOENT, fd;
116 unsigned int num, i;
117
118 err = drmGetDevices2(0, NULL, 0);
119 if (err < 0)
120 return err;
121
122 num = err;
123
124 devices = calloc(num, sizeof(*devices));
125 if (!devices)
126 return -ENOMEM;
127
128 err = drmGetDevices2(0, devices, num);
129 if (err < 0) {
130 render = err;
131 goto free;
132 }
133
134 for (i = 0; i < num; i++) {
135 device = devices[i];
136
137 if ((device->available_nodes & (1 << DRM_NODE_RENDER)) &&
138 (device->bustype == DRM_BUS_PLATFORM)) {
139 drmVersionPtr version;
140
141 fd = loader_open_device(device->nodes[DRM_NODE_RENDER]);
142 if (fd < 0)
143 continue;
144
145 version = drmGetVersion(fd);
146 if (!version) {
147 close(fd);
148 continue;
149 }
150
151 if (strcmp(version->name, name) != 0) {
152 drmFreeVersion(version);
153 close(fd);
154 continue;
155 }
156
157 drmFreeVersion(version);
158 render = fd;
159 break;
160 }
161 }
162
163 drmFreeDevices(devices, num);
164
165 free:
166 free(devices);
167 return render;
168 }
169
170 #ifdef USE_DRICONF
171 static const char __driConfigOptionsLoader[] =
172 DRI_CONF_BEGIN
173 DRI_CONF_SECTION_INITIALIZATION
174 DRI_CONF_DEVICE_ID_PATH_TAG()
175 DRI_CONF_DRI_DRIVER()
176 DRI_CONF_SECTION_END
177 DRI_CONF_END;
178
179 static char *loader_get_dri_config_driver(int fd)
180 {
181 driOptionCache defaultInitOptions;
182 driOptionCache userInitOptions;
183 char *dri_driver = NULL;
184 char *kernel_driver = loader_get_kernel_driver_name(fd);
185
186 driParseOptionInfo(&defaultInitOptions, __driConfigOptionsLoader);
187 driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0,
188 "loader", kernel_driver, NULL, 0);
189 if (driCheckOption(&userInitOptions, "dri_driver", DRI_STRING)) {
190 char *opt = driQueryOptionstr(&userInitOptions, "dri_driver");
191 /* not an empty string */
192 if (*opt)
193 dri_driver = strdup(opt);
194 }
195 driDestroyOptionCache(&userInitOptions);
196 driDestroyOptionInfo(&defaultInitOptions);
197
198 free(kernel_driver);
199 return dri_driver;
200 }
201
202 static char *loader_get_dri_config_device_id(void)
203 {
204 driOptionCache defaultInitOptions;
205 driOptionCache userInitOptions;
206 char *prime = NULL;
207
208 driParseOptionInfo(&defaultInitOptions, __driConfigOptionsLoader);
209 driParseConfigFiles(&userInitOptions, &defaultInitOptions, 0,
210 "loader", NULL, NULL, 0);
211 if (driCheckOption(&userInitOptions, "device_id", DRI_STRING))
212 prime = strdup(driQueryOptionstr(&userInitOptions, "device_id"));
213 driDestroyOptionCache(&userInitOptions);
214 driDestroyOptionInfo(&defaultInitOptions);
215
216 return prime;
217 }
218 #endif
219
220 static char *drm_construct_id_path_tag(drmDevicePtr device)
221 {
222 char *tag = NULL;
223
224 if (device->bustype == DRM_BUS_PCI) {
225 if (asprintf(&tag, "pci-%04x_%02x_%02x_%1u",
226 device->businfo.pci->domain,
227 device->businfo.pci->bus,
228 device->businfo.pci->dev,
229 device->businfo.pci->func) < 0) {
230 return NULL;
231 }
232 } else if (device->bustype == DRM_BUS_PLATFORM ||
233 device->bustype == DRM_BUS_HOST1X) {
234 char *fullname, *name, *address;
235
236 if (device->bustype == DRM_BUS_PLATFORM)
237 fullname = device->businfo.platform->fullname;
238 else
239 fullname = device->businfo.host1x->fullname;
240
241 name = strrchr(fullname, '/');
242 if (!name)
243 name = strdup(fullname);
244 else
245 name = strdup(name + 1);
246
247 address = strchr(name, '@');
248 if (address) {
249 *address++ = '\0';
250
251 if (asprintf(&tag, "platform-%s_%s", address, name) < 0)
252 tag = NULL;
253 } else {
254 if (asprintf(&tag, "platform-%s", name) < 0)
255 tag = NULL;
256 }
257
258 free(name);
259 }
260 return tag;
261 }
262
263 static bool drm_device_matches_tag(drmDevicePtr device, const char *prime_tag)
264 {
265 char *tag = drm_construct_id_path_tag(device);
266 int ret;
267
268 if (tag == NULL)
269 return false;
270
271 ret = strcmp(tag, prime_tag);
272
273 free(tag);
274 return ret == 0;
275 }
276
277 static char *drm_get_id_path_tag_for_fd(int fd)
278 {
279 drmDevicePtr device;
280 char *tag;
281
282 if (drmGetDevice2(fd, 0, &device) != 0)
283 return NULL;
284
285 tag = drm_construct_id_path_tag(device);
286 drmFreeDevice(&device);
287 return tag;
288 }
289
290 int loader_get_user_preferred_fd(int default_fd, bool *different_device)
291 {
292 /* Arbitrary "maximum" value of drm devices. */
293 #define MAX_DRM_DEVICES 32
294 const char *dri_prime = getenv("DRI_PRIME");
295 char *default_tag, *prime = NULL;
296 drmDevicePtr devices[MAX_DRM_DEVICES];
297 int i, num_devices, fd;
298 bool found = false;
299
300 if (dri_prime)
301 prime = strdup(dri_prime);
302 #ifdef USE_DRICONF
303 else
304 prime = loader_get_dri_config_device_id();
305 #endif
306
307 if (prime == NULL) {
308 *different_device = false;
309 return default_fd;
310 }
311
312 default_tag = drm_get_id_path_tag_for_fd(default_fd);
313 if (default_tag == NULL)
314 goto err;
315
316 num_devices = drmGetDevices2(0, devices, MAX_DRM_DEVICES);
317 if (num_devices < 0)
318 goto err;
319
320 /* two format are supported:
321 * "1": choose any other card than the card used by default.
322 * id_path_tag: (for example "pci-0000_02_00_0") choose the card
323 * with this id_path_tag.
324 */
325 if (!strcmp(prime,"1")) {
326 /* Hmm... detection for 2-7 seems to be broken. Oh well ...
327 * Pick the first render device that is not our own.
328 */
329 for (i = 0; i < num_devices; i++) {
330 if (devices[i]->available_nodes & 1 << DRM_NODE_RENDER &&
331 !drm_device_matches_tag(devices[i], default_tag)) {
332
333 found = true;
334 break;
335 }
336 }
337 } else {
338 for (i = 0; i < num_devices; i++) {
339 if (devices[i]->available_nodes & 1 << DRM_NODE_RENDER &&
340 drm_device_matches_tag(devices[i], prime)) {
341
342 found = true;
343 break;
344 }
345 }
346 }
347
348 if (!found) {
349 drmFreeDevices(devices, num_devices);
350 goto err;
351 }
352
353 fd = loader_open_device(devices[i]->nodes[DRM_NODE_RENDER]);
354 drmFreeDevices(devices, num_devices);
355 if (fd < 0)
356 goto err;
357
358 close(default_fd);
359
360 *different_device = !!strcmp(default_tag, prime);
361
362 free(default_tag);
363 free(prime);
364 return fd;
365
366 err:
367 *different_device = false;
368
369 free(default_tag);
370 free(prime);
371 return default_fd;
372 }
373 #else
374 int
375 loader_open_render_node(const char *name)
376 {
377 return -1;
378 }
379
380 int loader_get_user_preferred_fd(int default_fd, bool *different_device)
381 {
382 *different_device = false;
383 return default_fd;
384 }
385 #endif
386
387 #if defined(HAVE_LIBDRM)
388
389 static bool
390 drm_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id)
391 {
392 drmDevicePtr device;
393 bool ret;
394
395 if (drmGetDevice2(fd, 0, &device) == 0) {
396 if (device->bustype == DRM_BUS_PCI) {
397 *vendor_id = device->deviceinfo.pci->vendor_id;
398 *chip_id = device->deviceinfo.pci->device_id;
399 ret = true;
400 }
401 else {
402 log_(_LOADER_DEBUG, "MESA-LOADER: device is not located on the PCI bus\n");
403 ret = false;
404 }
405 drmFreeDevice(&device);
406 }
407 else {
408 log_(_LOADER_WARNING, "MESA-LOADER: failed to retrieve device information\n");
409 ret = false;
410 }
411
412 return ret;
413 }
414 #endif
415
416
417 bool
418 loader_get_pci_id_for_fd(int fd, int *vendor_id, int *chip_id)
419 {
420 #if HAVE_LIBDRM
421 return drm_get_pci_id_for_fd(fd, vendor_id, chip_id);
422 #endif
423 return false;
424 }
425
426 char *
427 loader_get_device_name_for_fd(int fd)
428 {
429 char *result = NULL;
430
431 #if HAVE_LIBDRM
432 result = drmGetDeviceNameFromFd2(fd);
433 #endif
434
435 return result;
436 }
437
438 char *
439 loader_get_driver_for_fd(int fd)
440 {
441 int vendor_id, chip_id, i, j;
442 char *driver = NULL;
443
444 /* Allow an environment variable to force choosing a different driver
445 * binary. If that driver binary can't survive on this FD, that's the
446 * user's problem, but this allows vc4 simulator to run on an i965 host,
447 * and may be useful for some touch testing of i915 on an i965 host.
448 */
449 if (geteuid() == getuid()) {
450 driver = getenv("MESA_LOADER_DRIVER_OVERRIDE");
451 if (driver)
452 return strdup(driver);
453 }
454
455 #if defined(HAVE_LIBDRM) && defined(USE_DRICONF)
456 driver = loader_get_dri_config_driver(fd);
457 if (driver)
458 return driver;
459 #endif
460
461 if (!loader_get_pci_id_for_fd(fd, &vendor_id, &chip_id)) {
462 driver = loader_get_kernel_driver_name(fd);
463 if (driver)
464 log_(_LOADER_INFO, "using driver %s for %d\n", driver, fd);
465 return driver;
466 }
467
468 for (i = 0; driver_map[i].driver; i++) {
469 if (vendor_id != driver_map[i].vendor_id)
470 continue;
471
472 if (driver_map[i].predicate && !driver_map[i].predicate(fd))
473 continue;
474
475 if (driver_map[i].num_chips_ids == -1) {
476 driver = strdup(driver_map[i].driver);
477 goto out;
478 }
479
480 for (j = 0; j < driver_map[i].num_chips_ids; j++)
481 if (driver_map[i].chip_ids[j] == chip_id) {
482 driver = strdup(driver_map[i].driver);
483 goto out;
484 }
485 }
486
487 driver = loader_get_kernel_driver_name(fd);
488 bool is_amdgpu = driver && strcmp(driver, "amdgpu") == 0;
489 free(driver);
490
491 if (is_amdgpu)
492 driver = strdup("radeonsi");
493 else
494 driver = NULL;
495
496 out:
497 log_(driver ? _LOADER_DEBUG : _LOADER_WARNING,
498 "pci id for fd %d: %04x:%04x, driver %s\n",
499 fd, vendor_id, chip_id, driver);
500 return driver;
501 }
502
503 void
504 loader_set_logger(loader_logger *logger)
505 {
506 log_ = logger;
507 }
508
509 char *
510 loader_get_extensions_name(const char *driver_name)
511 {
512 char *name = NULL;
513
514 if (asprintf(&name, "%s_%s", __DRI_DRIVER_GET_EXTENSIONS, driver_name) < 0)
515 return NULL;
516
517 const size_t len = strlen(name);
518 for (size_t i = 0; i < len; i++) {
519 if (name[i] == '-')
520 name[i] = '_';
521 }
522
523 return name;
524 }
525
526 /**
527 * Opens a DRI driver using its driver name, returning the __DRIextension
528 * entrypoints.
529 *
530 * \param driverName - a name like "i965", "radeon", "nouveau", etc.
531 * \param out_driver - Address where the dlopen() return value will be stored.
532 * \param search_path_vars - NULL-terminated list of env vars that can be used
533 * to override the DEFAULT_DRIVER_DIR search path.
534 */
535 const struct __DRIextensionRec **
536 loader_open_driver(const char *driver_name,
537 void **out_driver_handle,
538 const char **search_path_vars)
539 {
540 char path[PATH_MAX], *search_paths, *next, *end;
541 char *get_extensions_name;
542 const struct __DRIextensionRec **extensions = NULL;
543 const struct __DRIextensionRec **(*get_extensions)(void);
544
545 search_paths = NULL;
546 if (geteuid() == getuid() && search_path_vars) {
547 for (int i = 0; search_path_vars[i] != NULL; i++) {
548 search_paths = getenv(search_path_vars[i]);
549 if (search_paths)
550 break;
551 }
552 }
553 if (search_paths == NULL)
554 search_paths = DEFAULT_DRIVER_DIR;
555
556 void *driver = NULL;
557 end = search_paths + strlen(search_paths);
558 for (char *p = search_paths; p < end; p = next + 1) {
559 int len;
560 next = strchr(p, ':');
561 if (next == NULL)
562 next = end;
563
564 len = next - p;
565 #if USE_ELF_TLS
566 snprintf(path, sizeof(path), "%.*s/tls/%s_dri.so", len, p, driver_name);
567 driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
568 #endif
569 if (driver == NULL) {
570 snprintf(path, sizeof(path), "%.*s/%s_dri.so", len, p, driver_name);
571 driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
572 if (driver == NULL)
573 log_(_LOADER_DEBUG, "MESA-LOADER: failed to open %s: %s\n",
574 path, dlerror());
575 }
576 /* not need continue to loop all paths once the driver is found */
577 if (driver != NULL)
578 break;
579 }
580
581 if (driver == NULL) {
582 log_(_LOADER_WARNING, "MESA-LOADER: failed to open %s (search paths %s)\n",
583 driver_name, search_paths);
584 *out_driver_handle = NULL;
585 return NULL;
586 }
587
588 log_(_LOADER_DEBUG, "MESA-LOADER: dlopen(%s)\n", path);
589
590 get_extensions_name = loader_get_extensions_name(driver_name);
591 if (get_extensions_name) {
592 get_extensions = dlsym(driver, get_extensions_name);
593 if (get_extensions) {
594 extensions = get_extensions();
595 } else {
596 log_(_LOADER_DEBUG, "MESA-LOADER: driver does not expose %s(): %s\n",
597 get_extensions_name, dlerror());
598 }
599 free(get_extensions_name);
600 }
601
602 if (!extensions)
603 extensions = dlsym(driver, __DRI_DRIVER_EXTENSIONS);
604 if (extensions == NULL) {
605 log_(_LOADER_WARNING,
606 "MESA-LOADER: driver exports no extensions (%s)\n", dlerror());
607 dlclose(driver);
608 }
609
610 *out_driver_handle = driver;
611 return extensions;
612 }