1 | /* $Id: DynLoadLibSolaris.cpp 12866 2008-10-01 13:50:12Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Dynamically load libraries for Solaris hosts.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #include "DynLoadLibSolaris.h"
|
---|
23 |
|
---|
24 | #include <iprt/err.h>
|
---|
25 | #include <iprt/ldr.h>
|
---|
26 |
|
---|
27 |
|
---|
28 | /** -=-=-=-=-= LIB DLPI -=-=-=-=-=-=- **/
|
---|
29 |
|
---|
30 | /**
|
---|
31 | * Global pointer to the libdlpi module. This should only be set once all needed libraries
|
---|
32 | * and symbols have been successfully loaded.
|
---|
33 | */
|
---|
34 | static RTLDRMOD g_hLibDlpi = NULL;
|
---|
35 |
|
---|
36 | /**
|
---|
37 | * Whether we have tried to load libdlpi yet. This flag should only be set
|
---|
38 | * to "true" after we have either loaded both libraries and all symbols which we need,
|
---|
39 | * or failed to load something and unloaded.
|
---|
40 | */
|
---|
41 | static bool g_fCheckedForLibDlpi = false;
|
---|
42 |
|
---|
43 | /** All the symbols we need from libdlpi.
|
---|
44 | * @{
|
---|
45 | */
|
---|
46 | int (*g_pfnLibDlpiWalk)(dlpi_walkfunc_t *, void *, uint_t);
|
---|
47 | /** @} */
|
---|
48 |
|
---|
49 | bool VBoxSolarisLibDlpiFound(void)
|
---|
50 | {
|
---|
51 | RTLDRMOD hLibDlpi;
|
---|
52 |
|
---|
53 | if (g_hLibDlpi && g_fCheckedForLibDlpi)
|
---|
54 | return true;
|
---|
55 | if (g_fCheckedForLibDlpi)
|
---|
56 | return false;
|
---|
57 | if (!RT_SUCCESS(RTLdrLoad(LIB_DLPI, &hLibDlpi)))
|
---|
58 | return false;
|
---|
59 | /*
|
---|
60 | * Unfortunately; we cannot make use of dlpi_get_physaddr because it requires us to
|
---|
61 | * open the VNIC/link which requires root permissions :/
|
---|
62 | */
|
---|
63 | if (RT_SUCCESS(RTLdrGetSymbol(hLibDlpi, "dlpi_walk", (void **)&g_pfnLibDlpiWalk)))
|
---|
64 | {
|
---|
65 | g_hLibDlpi = hLibDlpi;
|
---|
66 | g_fCheckedForLibDlpi = true;
|
---|
67 | return true;
|
---|
68 | }
|
---|
69 | else
|
---|
70 | {
|
---|
71 | RTLdrClose(hLibDlpi);
|
---|
72 | g_fCheckedForLibDlpi = true;
|
---|
73 | return false;
|
---|
74 | }
|
---|
75 | }
|
---|
76 |
|
---|