VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibLog.cpp@ 82968

Last change on this file since 82968 was 82968, checked in by vboxsync, 5 years ago

Copyright year updates by scm.

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