1 | /* $Id: VBoxGuestR0LibIdc-os2.cpp 68645 2017-09-05 14:17:02Z 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/err.h>
|
---|
33 | #include <VBox/log.h>
|
---|
34 |
|
---|
35 |
|
---|
36 | /*********************************************************************************************************************************
|
---|
37 | * Global Variables *
|
---|
38 | *********************************************************************************************************************************/
|
---|
39 | /* This is defined in some assembly file. The AttachDD operation
|
---|
40 | is done in the driver init code. */
|
---|
41 | extern VBGLOS2ATTACHDD g_VBoxGuestIDC;
|
---|
42 |
|
---|
43 |
|
---|
44 |
|
---|
45 | int VBOXCALL vbglR0IdcNativeOpen(PVBGLIDCHANDLE pHandle, PVBGLIOCIDCCONNECT pReq)
|
---|
46 | {
|
---|
47 | /*
|
---|
48 | * Just check whether the connection was made or not.
|
---|
49 | */
|
---|
50 | if ( g_VBoxGuestIDC.u32Version == VBGL_IOC_VERSION
|
---|
51 | && RT_VALID_PTR(g_VBoxGuestIDC.u32Session)
|
---|
52 | && RT_VALID_PTR(g_VBoxGuestIDC.pfnServiceEP))
|
---|
53 | return g_VBoxGuestIDC.pfnServiceEP(g_VBoxGuestIDC.u32Session, VBGL_IOCTL_IDC_CONNECT, &pReq->Hdr, sizeof(*pReq));
|
---|
54 | Log(("vbglDriverOpen: failed\n"));
|
---|
55 | return VERR_FILE_NOT_FOUND;
|
---|
56 | }
|
---|
57 |
|
---|
58 |
|
---|
59 | int VBOXCALL vbglR0IdcNativeClose(PVBGLIDCHANDLE pHandle, PVBGLIOCIDCDISCONNECT pReq)
|
---|
60 | {
|
---|
61 | return g_VBoxGuestIDC.pfnServiceEP((uintptr_t)pHandle->s.pvSession, VBGL_IOCTL_IDC_DISCONNECT, &pReq->Hdr, sizeof(*pReq));
|
---|
62 | }
|
---|
63 |
|
---|
64 |
|
---|
65 | /**
|
---|
66 | * Makes an IDC call, returning only the I/O control status code.
|
---|
67 | *
|
---|
68 | * @returns VBox status code (the I/O control failure status).
|
---|
69 | * @param pHandle The IDC handle.
|
---|
70 | * @param uReq The request number.
|
---|
71 | * @param pReqHdr The request header.
|
---|
72 | * @param cbReq The request size.
|
---|
73 | */
|
---|
74 | DECLR0VBGL(int) VbglR0IdcCallRaw(PVBGLIDCHANDLE pHandle, uintptr_t uReq, PVBGLREQHDR pReqHdr, uint32_t cbReq)
|
---|
75 | {
|
---|
76 | return g_VBoxGuestIDC.pfnServiceEP((uintptr_t)pHandle->s.pvSession, uReq, pReqHdr, cbReq);
|
---|
77 | }
|
---|
78 |
|
---|