VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/solaris/RTSystemFirmware-solaris.cpp@ 97766

Last change on this file since 97766 was 97766, checked in by vboxsync, 2 years ago

IPRT/RTSystemFirmware/solaris: Add a Solaris-specific implementation of
RTSystemQueryFirmwareType() to the runtime library. It isn't possible
to implement a Solaris-specific version of RTSystemQueryFirmwareBoolean()
due to a lack of public interfaces for accessing UEFI variables.
bugref:10332

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/* $Id: RTSystemFirmware-solaris.cpp 97766 2022-12-08 21:09:03Z vboxsync $ */
2/** @file
3 * IPRT - System firmware information for Solaris.
4 */
5
6/*
7 * Copyright (C) 2022 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include "internal/iprt.h"
42#include <iprt/system.h>
43#include <iprt/errcore.h>
44
45#include <libdevinfo.h>
46
47
48/**
49 * Determine the type of firmware of a host, i.e. whether it booted using UEFI
50 * or BIOS.
51 *
52 * @param penmFirmwareType Where to store the firmware type.
53 *
54 * @return VINF_SUCCESS, if successfully able to determine the firmware type,
55 * otherwise VERR_NOT_SUPPORTED.
56 */
57RTDECL(int) RTSystemQueryFirmwareType(PRTSYSFWTYPE penmFirmwareType)
58{
59 di_node_t di_node;
60 di_node = di_init("/", DINFOSUBTREE|DINFOPROP);
61 if (di_node == DI_NODE_NIL)
62 {
63 *penmFirmwareType = RTSYSFWTYPE_INVALID;
64 return VERR_NOT_SUPPORTED;
65 }
66
67 int64_t *efiprop;
68 int rc = di_prop_lookup_int64(DDI_DEV_T_ANY, di_node, "efi-systab", &efiprop);
69 if (rc == -1)
70 *penmFirmwareType = RTSYSFWTYPE_BIOS;
71 else
72 *penmFirmwareType = RTSYSFWTYPE_UEFI;
73
74 di_fini(di_node);
75
76 return VINF_SUCCESS;
77}
78RT_EXPORT_SYMBOL(RTSystemQueryFirmwareType);
79
80
81RTDECL(int) RTSystemQueryFirmwareBoolean(RTSYSFWBOOL enmBoolean, bool *pfValue)
82{
83 RT_NOREF(enmBoolean, pfValue);
84 return VERR_NOT_SUPPORTED;
85}
86RT_EXPORT_SYMBOL(RTSystemQueryFirmwareBoolean);
87
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette