VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibIdc-solaris.cpp@ 68812

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

VBoxGuest/solaris: Use ldi_ioctl instead of VBoxGuestIDC. ldi_open_by_name and ldi_close calls the open & close entry points with the FKLYR flag set, in which case we'll be creating a kernel session rather than a user one. Adjusted vgdrvSolarisIOCtl to handle kernel sessions.

  • 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-solaris.cpp 68812 2017-09-21 15:43:12Z vboxsync $ */
2/** @file
3 * VBoxGuestLib - Ring-0 Support Library for VBoxGuest, IDC, Solaris 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 <sys/conf.h>
32#include <sys/sunldi.h>
33#include <sys/file.h>
34#undef u /* /usr/include/sys/user.h:249:1 is where this is defined to (curproc->p_user). very cool. */
35#include "VBoxGuestR0LibInternal.h"
36#include <VBox/err.h>
37
38
39int VBOXCALL vbglR0IdcNativeOpen(PVBGLIDCHANDLE pHandle, PVBGLIOCIDCCONNECT pReq)
40{
41 ldi_handle_t hDev = NULL;
42 ldi_ident_t hIdent = ldi_ident_from_anon();
43 int rc = ldi_open_by_name((char *)VBOXGUEST_DEVICE_NAME, FREAD, kcred, &hDev, hIdent);
44 ldi_ident_release(hIdent);
45 if (rc == 0)
46 {
47 pHandle->s.hDev = hDev;
48 rc = VbglR0IdcCallRaw(pHandle, VBGL_IOCTL_IDC_CONNECT, &pReq->Hdr, sizeof(*pReq));
49 if (RT_SUCCESS(rc) && RT_SUCCESS(pReq->Hdr.rc))
50 return VINF_SUCCESS;
51 ldi_close(hDev, FREAD, kcred);
52 }
53 else
54 rc = VERR_OPEN_FAILED;
55 pHandle->s.hDev = NULL;
56 return rc;
57}
58
59
60int VBOXCALL vbglR0IdcNativeClose(PVBGLIDCHANDLE pHandle, PVBGLIOCIDCDISCONNECT pReq)
61{
62 int rc = VbglR0IdcCallRaw(pHandle, VBGL_IOCTL_IDC_DISCONNECT, &pReq->Hdr, sizeof(*pReq));
63 if (RT_SUCCESS(rc) && RT_SUCCESS(pReq->Hdr.rc))
64 {
65 ldi_close(pHandle->s.hDev, FREAD, kcred);
66 pHandle->s.hDev = NULL;
67 }
68 return rc;
69}
70
71
72/**
73 * Makes an IDC call, returning only the I/O control status code.
74 *
75 * @returns VBox status code (the I/O control failure status).
76 * @param pHandle The IDC handle.
77 * @param uReq The request number.
78 * @param pReqHdr The request header.
79 * @param cbReq The request size.
80 */
81DECLR0VBGL(int) VbglR0IdcCallRaw(PVBGLIDCHANDLE pHandle, uintptr_t uReq, PVBGLREQHDR pReqHdr, uint32_t cbReq)
82{
83#if 0
84 return VBoxGuestIDC(pHandle->s.pvSession, uReq, pReqHdr, cbReq);
85#else
86 int iIgn;
87 int rc = ldi_ioctl(pHandle->s.hDev, uReq, (intptr_t)pReqHdr, FKIOCTL | FNATIVE, kcred, &iIgn);
88 if (rc == 0)
89 return VINF_SUCCESS;
90 return RTErrConvertFromErrno(rc);
91#endif
92}
93
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