1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/* $Id: VBoxGuestR3LibMisc.cpp $ */
/** @file
* VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Misc.
*/
/*
* Copyright (C) 2007-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
#include <VBox/log.h>
#include "VBoxGuestR3LibInternal.h"
/**
* Change the IRQ filter mask.
*
* @returns IPRT status code.
* @param fOr The OR mask.
* @param fNot The NOT mask.
*/
VBGLR3DECL(int) VbglR3CtlFilterMask(uint32_t fOr, uint32_t fNot)
{
VBGLIOCCHANGEFILTERMASK Info;
VBGLREQHDR_INIT(&Info.Hdr, CHANGE_FILTER_MASK);
Info.u.In.fOrMask = fOr;
Info.u.In.fNotMask = fNot;
return vbglR3DoIOCtl(VBGL_IOCTL_CHANGE_FILTER_MASK, &Info.Hdr, sizeof(Info));
}
/**
* Report a change in the capabilities that we support to the host.
*
* @returns IPRT status code.
* @param fOr Capabilities which have been added.
* @param fNot Capabilities which have been removed.
*
* @todo Move to a different file.
*/
VBGLR3DECL(int) VbglR3SetGuestCaps(uint32_t fOr, uint32_t fNot)
{
VBGLIOCSETGUESTCAPS Info;
VBGLREQHDR_INIT(&Info.Hdr, CHANGE_GUEST_CAPABILITIES);
Info.u.In.fOrMask = fOr;
Info.u.In.fNotMask = fNot;
return vbglR3DoIOCtl(VBGL_IOCTL_CHANGE_GUEST_CAPABILITIES, &Info.Hdr, sizeof(Info));
}
/**
* Acquire capabilities to report to the host.
*
* The capabilities which can be acquired are the same as those reported by
* VbglR3SetGuestCaps, and once a capability has been acquired once is is
* switched to "acquire mode" and can no longer be set using VbglR3SetGuestCaps.
* Capabilities can also be switched to acquire mode without actually being
* acquired. A client can not acquire a capability which has been acquired and
* not released by another client. Capabilities acquired are automatically
* released on session termination.
*
* @returns IPRT status code
* @returns VERR_RESOURCE_BUSY and acquires nothing if another client has
* acquired and not released at least one of the @a fOr capabilities
* @param fOr Capabilities to acquire or to switch to acquire mode
* @param fNot Capabilities to release
* @param fConfig if set, capabilities in @a fOr are switched to acquire mode
* but not acquired, and @a fNot is ignored. See
* VBGL_IOC_AGC_FLAGS_CONFIG_ACQUIRE_MODE for details.
*/
VBGLR3DECL(int) VbglR3AcquireGuestCaps(uint32_t fOr, uint32_t fNot, bool fConfig)
{
VBGLIOCACQUIREGUESTCAPS Info;
VBGLREQHDR_INIT(&Info.Hdr, ACQUIRE_GUEST_CAPABILITIES);
Info.u.In.fFlags = fConfig ? VBGL_IOC_AGC_FLAGS_CONFIG_ACQUIRE_MODE : VBGL_IOC_AGC_FLAGS_DEFAULT;
Info.u.In.fOrMask = fOr;
Info.u.In.fNotMask = fNot;
return vbglR3DoIOCtl(VBGL_IOCTL_ACQUIRE_GUEST_CAPABILITIES, &Info.Hdr, sizeof(Info));
}
/**
* Query the session ID of this VM.
*
* The session id is an unique identifier that gets changed for each VM start,
* reset or restore. Useful for detection a VM restore.
*
* @returns IPRT status code.
* @param pu64IdSession Session id (out). This is NOT changed on
* failure, so the caller can depend on this to
* deal with backward compatibility (see
* VBoxServiceVMInfoWorker() for an example.)
*/
VBGLR3DECL(int) VbglR3GetSessionId(uint64_t *pu64IdSession)
{
VMMDevReqSessionId Req;
vmmdevInitRequest(&Req.header, VMMDevReq_GetSessionId);
Req.idSession = 0;
int rc = vbglR3GRPerform(&Req.header);
if (RT_SUCCESS(rc))
*pu64IdSession = Req.idSession;
return rc;
}
|