1 | /** @file
|
---|
2 | *
|
---|
3 | * Module to dynamically load libhal and libdbus and load all symbols
|
---|
4 | * which are needed by VirtualBox.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
19 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
20 | * additional information or have any questions.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #include "vbox-libhal.h"
|
---|
24 |
|
---|
25 | #include <iprt/err.h>
|
---|
26 | #include <iprt/ldr.h>
|
---|
27 |
|
---|
28 | /**
|
---|
29 | * Whether we have tried to load libdbus and libhal yet. This flag should only be set
|
---|
30 | * to "true" after we have either loaded both libraries and all symbols which we need,
|
---|
31 | * or failed to load something and unloaded and set back to zero pLibDBus and pLibHal.
|
---|
32 | */
|
---|
33 | static bool gCheckedForLibHal = false;
|
---|
34 | /**
|
---|
35 | * Pointer to the libhal shared object. This should only be set once all needed libraries
|
---|
36 | * and symbols have been successfully loaded.
|
---|
37 | */
|
---|
38 | static RTLDRMOD ghLibHal = 0;
|
---|
39 |
|
---|
40 | /** The following are the symbols which we need from libdbus and libhal. */
|
---|
41 | void (*gDBusErrorInit)(DBusError *);
|
---|
42 | DBusConnection *(*gDBusBusGet)(DBusBusType, DBusError *);
|
---|
43 | void (*gDBusErrorFree)(DBusError *);
|
---|
44 | void (*gDBusConnectionUnref)(DBusConnection *);
|
---|
45 | LibHalContext *(*gLibHalCtxNew)(void);
|
---|
46 | dbus_bool_t (*gLibHalCtxSetDBusConnection)(LibHalContext *, DBusConnection *);
|
---|
47 | dbus_bool_t (*gLibHalCtxInit)(LibHalContext *, DBusError *);
|
---|
48 | char **(*gLibHalFindDeviceStringMatch)(LibHalContext *, const char *, const char *, int *,
|
---|
49 | DBusError *);
|
---|
50 | char *(*gLibHalDeviceGetPropertyString)(LibHalContext *, const char *, const char *, DBusError *);
|
---|
51 | void (*gLibHalFreeString)(char *);
|
---|
52 | void (*gLibHalFreeStringArray)(char **);
|
---|
53 | dbus_bool_t (*gLibHalCtxShutdown)(LibHalContext *, DBusError *);
|
---|
54 | dbus_bool_t (*gLibHalCtxFree)(LibHalContext *);
|
---|
55 |
|
---|
56 | bool gLibHalCheckPresence(void)
|
---|
57 | {
|
---|
58 | RTLDRMOD hLibHal;
|
---|
59 |
|
---|
60 | if (ghLibHal != 0 && gCheckedForLibHal == true)
|
---|
61 | return true;
|
---|
62 | if (gCheckedForLibHal == true)
|
---|
63 | return false;
|
---|
64 | if (!RT_SUCCESS(RTLdrLoad(LIB_HAL, &hLibHal)))
|
---|
65 | {
|
---|
66 | return false;
|
---|
67 | }
|
---|
68 | if ( RT_SUCCESS(RTLdrGetSymbol(hLibHal, "dbus_error_init", (void **) &gDBusErrorInit))
|
---|
69 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "dbus_bus_get", (void **) &gDBusBusGet))
|
---|
70 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "dbus_error_free", (void **) &gDBusErrorFree))
|
---|
71 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "dbus_connection_unref",
|
---|
72 | (void **) &gDBusConnectionUnref))
|
---|
73 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_ctx_new", (void **) &gLibHalCtxNew))
|
---|
74 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_ctx_set_dbus_connection",
|
---|
75 | (void **) &gLibHalCtxSetDBusConnection))
|
---|
76 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_ctx_init", (void **) &gLibHalCtxInit))
|
---|
77 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_manager_find_device_string_match",
|
---|
78 | (void **) &gLibHalFindDeviceStringMatch))
|
---|
79 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_device_get_property_string",
|
---|
80 | (void **) &gLibHalDeviceGetPropertyString))
|
---|
81 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_free_string", (void **) &gLibHalFreeString))
|
---|
82 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_free_string_array",
|
---|
83 | (void **) &gLibHalFreeStringArray))
|
---|
84 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_ctx_shutdown", (void **) &gLibHalCtxShutdown))
|
---|
85 | && RT_SUCCESS(RTLdrGetSymbol(hLibHal, "libhal_ctx_free", (void **) &gLibHalCtxFree))
|
---|
86 | )
|
---|
87 | {
|
---|
88 | ghLibHal = hLibHal;
|
---|
89 | gCheckedForLibHal = true;
|
---|
90 | return true;
|
---|
91 | }
|
---|
92 | else
|
---|
93 | {
|
---|
94 | RTLdrClose(hLibHal);
|
---|
95 | gCheckedForLibHal = true;
|
---|
96 | return false;
|
---|
97 | }
|
---|
98 | }
|
---|