Use versioned backend library
[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       "libgbm_kms.so.1",
44 };
45
46 static const void *
47 load_backend(const char *name)
48 {
49    char path[PATH_MAX];
50    void *module;
51    const char *entrypoint = "gbm_backend";
52
53    if (name[0] != '/')
54       snprintf(path, sizeof path, MODULEDIR "/%s", name);
55    else
56       snprintf(path, sizeof path, "%s", name);
57
58    module = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
59    if (!module) {
60       fprintf(stderr, "failed to load module: %s\n", dlerror());
61       return NULL;
62    }
63
64    return dlsym(module, entrypoint);
65 }
66
67 struct gbm_device *
68 _gbm_create_device(int fd)
69 {
70    const struct gbm_backend *backend = NULL;
71    struct gbm_device *dev = NULL;
72    int i;
73    const char *b;
74
75    b = getenv("GBM_BACKEND");
76    if (b)
77       backend = load_backend(b);
78
79    if (backend)
80       dev = backend->create_device(fd);
81
82    for (i = 0; i < ARRAY_SIZE(backends) && dev == NULL; ++i) {
83       backend = load_backend(backends[i]);
84       if (backend == NULL)
85          continue;
86       fprintf(stderr, "loaded module: %s\n", backends[i]);
87       dev = backend->create_device(fd);
88    }
89    
90    return dev;
91 }