VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR0LibIdc-os2.cpp@ 68550

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

merging vbglioc r117689: Initial VBoxGuest I/O control changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1/* $Id: VBoxGuestR0LibIdc-os2.cpp 68550 2017-08-31 12:09:41Z vboxsync $ */
2/** @file
3 * VBoxGuestLib - Ring-0 Support Library for VBoxGuest, IDC, OS/2 specific.
4 */
5
6/*
7 * Copyright (C) 2008-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 "VBoxGuestR0LibInternal.h"
32#include <VBox/VBoxGuest.h>
33#include <VBox/err.h>
34#include <VBox/log.h>
35
36
37/*********************************************************************************************************************************
38* Global Variables *
39*********************************************************************************************************************************/
40/* This is defined in some assembly file. The AttachDD operation
41 is done in the driver init code. */
42extern VBOXGUESTOS2IDCCONNECT g_VBoxGuestIDC;
43
44
45
46int VBOXCALL vbglR0IdcNativeOpen(PVBGLIDCHANDLE pHandle, PVBGLIOCIDCCONNECT pReq)
47{
48 /*
49 * Just check whether the connection was made or not.
50 */
51 if ( g_VBoxGuestIDC.u32Version == VMMDEV_VERSION
52 && RT_VALID_PTR(g_VBoxGuestIDC.u32Session)
53 && RT_VALID_PTR(g_VBoxGuestIDC.pfnServiceEP))
54 {
55 pHandle->s.pvSession = (void *)g_VBoxGuestIDC.u32Session;
56 return vbglR0IdcNativeCall(pHandle, VBGL_IOCTL_IDC_CONNECT, pReq);
57 }
58 pHandle->s.pvSession = NULL;
59 Log(("vbglDriverOpen: failed\n"));
60 return VERR_FILE_NOT_FOUND;
61}
62
63
64int VBOXCALL vbglR0IdcNativeClose(PVBGLIDCHANDLE pHandle, PVBGLIOCIDCDISCONNECT pReq)
65{
66 return vbglR0IdcNativeCall(pHandle, VBGL_IOCTL_IDC_DISCONNECT, &pReq->Hdr);
67}
68
69
70/**
71 * Makes an IDC call, returning only the I/O control status code.
72 *
73 * @returns VBox status code (the I/O control failure status).
74 * @param pHandle The IDC handle.
75 * @param uReq The request number.
76 * @param pReqHdr The request header.
77 * @param cbReq The request size.
78 */
79DECLR0VBGL(int) VbglR0IdcCallRaw(PVBGLIDCHANDLE pHandle, size_t uReq, PVBGLREQHDR pReqHdr, uint32_t cbReq)
80{
81 size_t cbRetIgn;
82 return g_VBoxGuestIDC.pfnServiceEP((uintptr_t)pHandle->s.pvSession, uReq, pReqHdr, cbReq, &cbRetIgn);
83}
84
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