VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibGR.cpp@ 74714

Last change on this file since 74714 was 70873, checked in by vboxsync, 7 years ago

VMMDev,VBoxGuest: Classify who is calling the host (part 1). bugref:9105

  • Property svn:eol-style set to native
  • Property svn:keyword set to Id
  • Property svn:keywords set to Id Revision
File size: 2.8 KB
Line 
1/* $Id: VBoxGuestR3LibGR.cpp 70873 2018-02-05 18:13:55Z vboxsync $ */
2/** @file
3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, GR.
4 */
5
6/*
7 * Copyright (C) 2007-2017 Oracle Corporation
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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/mem.h>
32#include <iprt/assert.h>
33#include <iprt/string.h>
34#include <iprt/err.h>
35#include "VBoxGuestR3LibInternal.h"
36
37
38int vbglR3GRAlloc(VMMDevRequestHeader **ppReq, size_t cb, VMMDevRequestType enmReqType)
39{
40 VMMDevRequestHeader *pReq;
41
42 AssertPtrReturn(ppReq, VERR_INVALID_PARAMETER);
43 AssertMsgReturn(cb >= sizeof(VMMDevRequestHeader) && cb < _1G, ("%#zx vs %#zx\n", cb, sizeof(VMMDevRequestHeader)),
44 VERR_INVALID_PARAMETER);
45
46 pReq = (VMMDevRequestHeader *)RTMemTmpAlloc(cb);
47 if (RT_LIKELY(pReq))
48 {
49 pReq->size = (uint32_t)cb;
50 pReq->version = VMMDEV_REQUEST_HEADER_VERSION;
51 pReq->requestType = enmReqType;
52 pReq->rc = VERR_GENERAL_FAILURE;
53 pReq->reserved1 = 0;
54 pReq->fRequestor = 0;
55
56 *ppReq = pReq;
57
58 return VINF_SUCCESS;
59 }
60 return VERR_NO_MEMORY;
61}
62
63
64int vbglR3GRPerform(VMMDevRequestHeader *pReq)
65{
66 PVBGLREQHDR pReqHdr = (PVBGLREQHDR)pReq;
67 uint32_t const cbReq = pReqHdr->cbIn;
68 Assert(pReqHdr->cbOut == 0 || pReqHdr->cbOut == cbReq);
69 pReqHdr->cbOut = cbReq;
70 if (pReq->size < _1K)
71 return vbglR3DoIOCtl(VBGL_IOCTL_VMMDEV_REQUEST(cbReq), pReqHdr, cbReq);
72 return vbglR3DoIOCtl(VBGL_IOCTL_VMMDEV_REQUEST_BIG, pReqHdr, cbReq);
73}
74
75
76void vbglR3GRFree(VMMDevRequestHeader *pReq)
77{
78 RTMemTmpFree(pReq);
79}
80
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