Update to libudev.pc name
[platform/upstream/libgbm.git] / backend.c
1 /*
2  * Copyright © 2011 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *    Benjamin Franzke <benjaminfranzke@googlemail.com>
26  */
27
28 #include <stdio.h>
29 #include <stddef.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <limits.h>
33 #include <dlfcn.h>
34
35 #include "backend.h"
36
37 #define ARRAY_SIZE(a) (sizeof(a)/sizeof((a)[0]))
38
39 /* a more clever scheme would be to discover backends in a certain
40  * directory..
41  */
42 static const char *backends[] = {
43       "gbm_dri.so",
44       "gbm_gallium_drm.so",
45       "gbm_pvr.so",
46 };
47
48 static const void *
49 load_backend(const char *name)
50 {
51    char path[PATH_MAX];
52    void *module;
53    const char *entrypoint = "gbm_backend";
54
55    if (name[0] != '/')
56       snprintf(path, sizeof path, MODULEDIR "/%s", name);
57    else
58       snprintf(path, sizeof path, "%s", name);
59
60    module = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
61    if (!module) {
62       fprintf(stderr, "failed to load module: %s\n", dlerror());
63       return NULL;
64    }
65
66    return dlsym(module, entrypoint);
67 }
68
69 struct gbm_device *
70 _gbm_create_device(int fd)
71 {
72    const struct gbm_backend *backend = NULL;
73    struct gbm_device *dev = NULL;
74    int i;
75    const char *b;
76
77    b = getenv("GBM_BACKEND");
78    if (b)
79       backend = load_backend(b);
80
81    if (backend)
82       dev = backend->create_device(fd);
83
84    for (i = 0; i < ARRAY_SIZE(backends) && dev == NULL; ++i) {
85       backend = load_backend(backends[i]);
86       if (backend == NULL)
87          continue;
88       fprintf(stderr, "loaded module: %s\n", backends[i]);
89       dev = backend->create_device(fd);
90    }
91    
92    return dev;
93 }