2007-07-19 05:59:59 -06:00
|
|
|
/*
|
|
|
|
* Copyright © 2007 Intel Corporation
|
|
|
|
*
|
|
|
|
* 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 (including the next
|
|
|
|
* paragraph) 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 AUTHORS OR COPYRIGHT HOLDERS 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:
|
|
|
|
* Eric Anholt <eric@anholt.net>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-01-29 19:14:44 -07:00
|
|
|
#include <string.h>
|
2007-07-19 05:59:59 -06:00
|
|
|
#include <fcntl.h>
|
2009-04-06 15:13:01 -06:00
|
|
|
#include <fnmatch.h>
|
2008-04-23 14:06:58 -06:00
|
|
|
#include <sys/stat.h>
|
2010-01-29 19:14:44 -07:00
|
|
|
#include <sys/ioctl.h>
|
2007-07-19 05:59:59 -06:00
|
|
|
#include "drmtest.h"
|
|
|
|
|
2009-04-06 15:13:01 -06:00
|
|
|
#define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE
|
|
|
|
#include <libudev.h>
|
|
|
|
|
|
|
|
static int is_master(int fd)
|
2007-07-19 05:59:59 -06:00
|
|
|
{
|
2009-04-06 15:13:01 -06:00
|
|
|
drm_client_t client;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Check that we're the only opener and authed. */
|
|
|
|
client.idx = 0;
|
|
|
|
ret = ioctl(fd, DRM_IOCTL_GET_CLIENT, &client);
|
|
|
|
assert (ret == 0);
|
|
|
|
if (!client.auth)
|
|
|
|
return 0;
|
|
|
|
client.idx = 1;
|
|
|
|
ret = ioctl(fd, DRM_IOCTL_GET_CLIENT, &client);
|
|
|
|
if (ret != -1 || errno != EINVAL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Open the first DRM device matching the criteria */
|
|
|
|
int drm_open_matching(const char *pci_glob, int flags)
|
|
|
|
{
|
|
|
|
struct udev *udev;
|
|
|
|
struct udev_enumerate *e;
|
|
|
|
struct udev_device *device, *parent;
|
|
|
|
struct udev_list_entry *entry;
|
|
|
|
const char *pci_id, *path;
|
2011-09-26 09:03:20 -06:00
|
|
|
const char *usub, *dnode;
|
2010-01-29 19:14:44 -07:00
|
|
|
int fd;
|
2007-07-19 05:59:59 -06:00
|
|
|
|
2009-04-06 15:13:01 -06:00
|
|
|
udev = udev_new();
|
|
|
|
if (udev == NULL) {
|
|
|
|
fprintf(stderr, "failed to initialize udev context\n");
|
|
|
|
abort();
|
2007-07-19 05:59:59 -06:00
|
|
|
}
|
2009-04-06 15:13:01 -06:00
|
|
|
|
|
|
|
fd = -1;
|
|
|
|
e = udev_enumerate_new(udev);
|
|
|
|
udev_enumerate_add_match_subsystem(e, "drm");
|
|
|
|
udev_enumerate_scan_devices(e);
|
|
|
|
udev_list_entry_foreach(entry, udev_enumerate_get_list_entry(e)) {
|
|
|
|
path = udev_list_entry_get_name(entry);
|
|
|
|
device = udev_device_new_from_syspath(udev, path);
|
|
|
|
parent = udev_device_get_parent(device);
|
2011-09-26 08:54:13 -06:00
|
|
|
usub = udev_device_get_subsystem(parent);
|
2009-04-06 15:13:01 -06:00
|
|
|
/* Filter out KMS output devices. */
|
2011-09-26 08:54:13 -06:00
|
|
|
if (!usub || (strcmp(usub, "pci") != 0))
|
2009-04-06 15:13:01 -06:00
|
|
|
continue;
|
|
|
|
pci_id = udev_device_get_property_value(parent, "PCI_ID");
|
|
|
|
if (fnmatch(pci_glob, pci_id, 0) != 0)
|
|
|
|
continue;
|
2011-09-26 09:03:20 -06:00
|
|
|
dnode = udev_device_get_devnode(device);
|
|
|
|
if (strstr(dnode, "control"))
|
|
|
|
continue;
|
|
|
|
fd = open(dnode, O_RDWR);
|
2009-04-06 15:13:01 -06:00
|
|
|
if (fd < 0)
|
|
|
|
continue;
|
|
|
|
if ((flags & DRM_TEST_MASTER) && !is_master(fd)) {
|
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
udev_enumerate_unref(e);
|
|
|
|
udev_unref(udev);
|
|
|
|
|
|
|
|
return fd;
|
2007-07-19 05:59:59 -06:00
|
|
|
}
|
|
|
|
|
2009-04-06 15:13:01 -06:00
|
|
|
int drm_open_any(void)
|
|
|
|
{
|
|
|
|
int fd = drm_open_matching("*:*", 0);
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "failed to open any drm device\n");
|
2011-09-26 09:03:20 -06:00
|
|
|
exit(0);
|
2009-04-06 15:13:01 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
2007-07-19 07:17:04 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the first DRM device we can find where we end up being the master.
|
|
|
|
*/
|
|
|
|
int drm_open_any_master(void)
|
|
|
|
{
|
2009-04-06 15:13:01 -06:00
|
|
|
int fd = drm_open_matching("*:*", DRM_TEST_MASTER);
|
2007-07-19 07:17:04 -06:00
|
|
|
|
2009-04-06 15:13:01 -06:00
|
|
|
if (fd < 0) {
|
|
|
|
fprintf(stderr, "failed to open any drm device\n");
|
2011-09-26 09:03:20 -06:00
|
|
|
exit(0);
|
2009-04-06 15:13:01 -06:00
|
|
|
}
|
2007-07-19 07:17:04 -06:00
|
|
|
|
2009-04-06 15:13:01 -06:00
|
|
|
return fd;
|
2007-07-19 07:17:04 -06:00
|
|
|
|
|
|
|
}
|