summaryrefslogtreecommitdiff
path: root/utils.c
blob: 7d5867bdcf9dc58a2d7bfab3181d75265d7189f8 (plain)
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
/*
 * utils.c
 *
 * Common bits
 *
 * (c) 2009 Thomas White <taw@bitwiz.org.uk>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>

#include <X11/Xmd.h>
#include <stdint.h>
#include <libdrm/drm.h>

#include "dri2.h"


#define RING_LOCALS int __count = 0;
#define OUT_REG(reg, val) cmds[__count++] = (reg); cmds[__count++] = (val);


int do_drm_authentication(Display *dpy)
{
	int scrnum;
	Window root;
	char *driver;
	char *device;
	int fd;
	drm_magic_t magic;

	/* Get default screen, root window and default visual */
	scrnum = DefaultScreen(dpy);
	root = RootWindow(dpy, scrnum);

	/* Get device name */
	if ( !DRI2Connect(dpy, root, &driver, &device) ) {
		fprintf(stderr, "DRI2Connect failed\n");
	    	return -1;
	}

	/* Open DRM device */
	fd = open(device, O_RDWR);
	if ( fd < 0 ) {
		fprintf(stderr, "Couldn't open '%s': %s\n",
			device, strerror(errno));
	    	return -1;
	}

	/* Get an authentication token */
	if ( drmGetMagic(fd, &magic) ) {
		fprintf(stderr, "drmGetMagic failed\n");
	    	return -1;
	}

	/* Authenticate */
	if ( DRI2Authenticate(dpy, root, magic) == False ) {
		fprintf(stderr, "DRI2Authenticate failed\n");
	    	return -1;
	}

	return fd;
}