1 | /* $Id: VBoxGuestR3LibLog.cpp 68650 2017-09-05 14:34:23Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Logging.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007-2016 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/string.h>
|
---|
33 | #include "VBoxGuestR3LibInternal.h"
|
---|
34 |
|
---|
35 |
|
---|
36 | /**
|
---|
37 | * Write to the backdoor logger from ring 3 guest code.
|
---|
38 | *
|
---|
39 | * @returns IPRT status code.
|
---|
40 | *
|
---|
41 | * @param pch The string to log. Does not need to be terminated.
|
---|
42 | * @param cch The number of chars (bytes) to log.
|
---|
43 | *
|
---|
44 | * @remarks This currently does not accept more than 255 bytes of data at
|
---|
45 | * one time. It should probably be rewritten to use pass a pointer
|
---|
46 | * in the IOCtl.
|
---|
47 | */
|
---|
48 | VBGLR3DECL(int) VbglR3WriteLog(const char *pch, size_t cch)
|
---|
49 | {
|
---|
50 | /*
|
---|
51 | * Quietly skip empty strings.
|
---|
52 | * (Happens in the RTLogBackdoorPrintf case.)
|
---|
53 | */
|
---|
54 | int rc;
|
---|
55 | if (cch > 0)
|
---|
56 | {
|
---|
57 | if (RT_VALID_PTR(pch))
|
---|
58 | {
|
---|
59 | /*
|
---|
60 | * We need to repackage the string for ring-0.
|
---|
61 | */
|
---|
62 | size_t cbMsg = VBGL_IOCTL_LOG_SIZE(cch);
|
---|
63 | PVBGLIOCLOG pMsg = (PVBGLIOCLOG)RTMemTmpAlloc(cbMsg);
|
---|
64 | if (pMsg)
|
---|
65 | {
|
---|
66 | VBGLREQHDR_INIT_EX(&pMsg->Hdr, VBGL_IOCTL_LOG_SIZE_IN(cch), VBGL_IOCTL_LOG_SIZE_OUT);
|
---|
67 | memcpy(pMsg->u.In.szMsg, pch, cch);
|
---|
68 | pMsg->u.In.szMsg[cch] = '\0';
|
---|
69 | rc = vbglR3DoIOCtl(VBGL_IOCTL_LOG(cch), &pMsg->Hdr, cbMsg);
|
---|
70 |
|
---|
71 | RTMemTmpFree(pMsg);
|
---|
72 | }
|
---|
73 | else
|
---|
74 | rc = VERR_NO_TMP_MEMORY;
|
---|
75 | }
|
---|
76 | else
|
---|
77 | rc = VERR_INVALID_POINTER;
|
---|
78 | }
|
---|
79 | else
|
---|
80 | rc = VINF_SUCCESS;
|
---|
81 | return rc;
|
---|
82 | }
|
---|
83 |
|
---|