[55401] | 1 | /* $Id: vbox-libhal.h 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
[3939] | 2 | /** @file
|
---|
| 3 | *
|
---|
| 4 | * Module to dynamically load libhal and libdbus and load all symbols
|
---|
| 5 | * which are needed by VirtualBox.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
[98103] | 9 | * Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
[3939] | 10 | *
|
---|
[96407] | 11 | * This file is part of VirtualBox base platform packages, as
|
---|
| 12 | * available from https://www.virtualbox.org.
|
---|
| 13 | *
|
---|
| 14 | * This program is free software; you can redistribute it and/or
|
---|
| 15 | * modify it under the terms of the GNU General Public License
|
---|
| 16 | * as published by the Free Software Foundation, in version 3 of the
|
---|
| 17 | * License.
|
---|
| 18 | *
|
---|
| 19 | * This program is distributed in the hope that it will be useful, but
|
---|
| 20 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
| 22 | * General Public License for more details.
|
---|
| 23 | *
|
---|
| 24 | * You should have received a copy of the GNU General Public License
|
---|
| 25 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
| 26 | *
|
---|
| 27 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
[3939] | 28 | */
|
---|
| 29 |
|
---|
[76562] | 30 | #ifndef MAIN_INCLUDED_vbox_libhal_h
|
---|
| 31 | #define MAIN_INCLUDED_vbox_libhal_h
|
---|
[76487] | 32 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
| 33 | # pragma once
|
---|
| 34 | #endif
|
---|
[3939] | 35 |
|
---|
| 36 | #include <stdint.h>
|
---|
| 37 |
|
---|
[5546] | 38 | #define LIB_HAL "libhal.so.1"
|
---|
[3939] | 39 |
|
---|
| 40 | /** Types from the dbus and hal header files which we need. These are taken more or less
|
---|
| 41 | verbatim from the DBus and Hal public interface header files. */
|
---|
| 42 | struct DBusError
|
---|
| 43 | {
|
---|
| 44 | const char *name;
|
---|
| 45 | const char *message;
|
---|
| 46 | unsigned int dummy1 : 1; /**< placeholder */
|
---|
| 47 | unsigned int dummy2 : 1; /**< placeholder */
|
---|
| 48 | unsigned int dummy3 : 1; /**< placeholder */
|
---|
| 49 | unsigned int dummy4 : 1; /**< placeholder */
|
---|
| 50 | unsigned int dummy5 : 1; /**< placeholder */
|
---|
| 51 | void *padding1; /**< placeholder */
|
---|
| 52 | };
|
---|
| 53 | struct DBusConnection;
|
---|
| 54 | typedef struct DBusConnection DBusConnection;
|
---|
| 55 | typedef uint32_t dbus_bool_t;
|
---|
| 56 | typedef enum { DBUS_BUS_SESSON, DBUS_BUS_SYSTEM, DBUS_BUS_STARTER } DBusBusType;
|
---|
| 57 | struct LibHalContext_s;
|
---|
| 58 | typedef struct LibHalContext_s LibHalContext;
|
---|
| 59 |
|
---|
| 60 | /** The following are the symbols which we need from libdbus and libhal. */
|
---|
[3950] | 61 | extern void (*gDBusErrorInit)(DBusError *);
|
---|
| 62 | extern DBusConnection *(*gDBusBusGet)(DBusBusType, DBusError *);
|
---|
| 63 | extern void (*gDBusErrorFree)(DBusError *);
|
---|
| 64 | extern void (*gDBusConnectionUnref)(DBusConnection *);
|
---|
| 65 | extern LibHalContext *(*gLibHalCtxNew)(void);
|
---|
| 66 | extern dbus_bool_t (*gLibHalCtxSetDBusConnection)(LibHalContext *, DBusConnection *);
|
---|
| 67 | extern dbus_bool_t (*gLibHalCtxInit)(LibHalContext *, DBusError *);
|
---|
[5368] | 68 | extern char **(*gLibHalFindDeviceStringMatch)(LibHalContext *, const char *, const char *, int *,
|
---|
| 69 | DBusError *);
|
---|
[3950] | 70 | extern char *(*gLibHalDeviceGetPropertyString)(LibHalContext *, const char *, const char *,
|
---|
[3939] | 71 | DBusError *);
|
---|
[3950] | 72 | extern void (*gLibHalFreeString)(char *);
|
---|
| 73 | extern void (*gLibHalFreeStringArray)(char **);
|
---|
| 74 | extern dbus_bool_t (*gLibHalCtxShutdown)(LibHalContext *, DBusError *);
|
---|
| 75 | extern dbus_bool_t (*gLibHalCtxFree)(LibHalContext *);
|
---|
[3939] | 76 |
|
---|
[3950] | 77 | extern bool gLibHalCheckPresence(void);
|
---|
[3939] | 78 |
|
---|
[76562] | 79 | #endif /* !MAIN_INCLUDED_vbox_libhal_h */
|
---|
[14949] | 80 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|