1 | /* $Id: VBoxGuestR3LibLog.cpp 27083 2010-03-05 13:05:51Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, Logging.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007-2010 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.alldomusa.eu.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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | /*******************************************************************************
|
---|
33 | * Header Files *
|
---|
34 | *******************************************************************************/
|
---|
35 | #include <iprt/mem.h>
|
---|
36 | #include "VBGLR3Internal.h"
|
---|
37 |
|
---|
38 |
|
---|
39 | /**
|
---|
40 | * Write to the backdoor logger from ring 3 guest code.
|
---|
41 | *
|
---|
42 | * @returns IPRT status code.
|
---|
43 | *
|
---|
44 | * @param pch The string to log. Does not need to be terminated.
|
---|
45 | * @param cch The number of chars (bytes) to log.
|
---|
46 | *
|
---|
47 | * @remarks This currently does not accept more than 255 bytes of data at
|
---|
48 | * one time. It should probably be rewritten to use pass a pointer
|
---|
49 | * in the IOCtl.
|
---|
50 | */
|
---|
51 | VBGLR3DECL(int) VbglR3WriteLog(const char *pch, size_t cch)
|
---|
52 | {
|
---|
53 | /*
|
---|
54 | * Quietly skip NULL strings.
|
---|
55 | * (Happens in the RTLogBackdoorPrintf case.)
|
---|
56 | */
|
---|
57 | if (!cch)
|
---|
58 | return VINF_SUCCESS;
|
---|
59 | if (!VALID_PTR(pch))
|
---|
60 | return VERR_INVALID_POINTER;
|
---|
61 |
|
---|
62 | #ifdef RT_OS_WINDOWS
|
---|
63 | /*
|
---|
64 | * Duplicate the string as it may be read only (a C string).
|
---|
65 | */
|
---|
66 | void *pvTmp = RTMemDup(pch, cch);
|
---|
67 | if (!pvTmp)
|
---|
68 | return VERR_NO_MEMORY;
|
---|
69 | int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_LOG(cch), pvTmp, cch);
|
---|
70 | RTMemFree(pvTmp);
|
---|
71 | return rc;
|
---|
72 |
|
---|
73 | #elif 0 /** @todo Several OSes could take this route (solaris and freebsd for instance). */
|
---|
74 | /*
|
---|
75 | * Handle the entire request in one go.
|
---|
76 | */
|
---|
77 | return vbglR3DoIOCtl(VBOXGUEST_IOCTL_LOG(cch), pvTmp, cch);
|
---|
78 |
|
---|
79 | #else
|
---|
80 | /*
|
---|
81 | * *BSD does not accept more than 4KB per ioctl request, while
|
---|
82 | * Linux can't express sizes above 8KB, so, split it up into 2KB chunks.
|
---|
83 | */
|
---|
84 | # define STEP 2048
|
---|
85 | int rc = VINF_SUCCESS;
|
---|
86 | for (size_t off = 0; off < cch && RT_SUCCESS(rc); off += STEP)
|
---|
87 | {
|
---|
88 | size_t cbStep = RT_MIN(cch - off, STEP);
|
---|
89 | rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_LOG(cbStep), (char *)pch + off, cbStep);
|
---|
90 | }
|
---|
91 | # undef STEP
|
---|
92 | return rc;
|
---|
93 | #endif
|
---|
94 | }
|
---|
95 |
|
---|