VBoxGuestR3LibGuestProp.cpp revision 208aaecb51db539a2f7f3d25f38dd2efd0f014a3
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/* $Id$ */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/** @file
d6aa6429f99fb7648883eb612f8a52b9aaf3bff4vboxsync * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, guest properties.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/*
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Copyright (C) 2007 Sun Microsystems, Inc.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * available from http://www.virtualbox.org. This file is free software;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * you can redistribute it and/or modify it under the terms of the GNU
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * General Public License (GPL) as published by the Free Software
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync * The contents of this file may alternatively be used under the terms
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync * of the Common Development and Distribution License Version 1.0
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync * VirtualBox OSE distribution, in which case the provisions of the
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync * CDDL are applicable instead of those of the GPL.
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync *
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync * You may elect to license modified versions of this file under the
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync * terms and conditions of either the GPL or the CDDL or both.
aba0e602e244ae7c4f11b50fc6d2440f5a762038vboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Clara, CA 95054 USA or visit http://www.sun.com if you need
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * additional information or have any questions.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/*******************************************************************************
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync* Header Files *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync*******************************************************************************/
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync#include <iprt/string.h>
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync#include <iprt/mem.h>
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync#include <iprt/assert.h>
b8f36a8f77f0140f48170d5b3cd9ee9ea1c14294vboxsync#include <iprt/cpp/autores.h>
5debbbcc37114f1dbecaecfc66c81ea2fbda6140vboxsync#include <iprt/stdarg.h>
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync#include <VBox/log.h>
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync#include <VBox/HostServices/GuestPropertySvc.h>
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync#include "VBGLR3Internal.h"
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#ifdef VBOX_VBGLR3_XFREE86
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync/* Rather than try to resolve all the header file conflicts, I will just
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync prototype what we need here. */
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsyncextern "C" char* xf86strcpy(char*,const char*);
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync# undef strcpy
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync# define strcpy xf86strcpy
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsyncextern "C" void* xf86memchr(const void*,int,xf86size_t);
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync# undef memchr
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync# define memchr xf86memchr
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#endif /* VBOX_VBGLR3_XFREE86 */
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync/*******************************************************************************
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync* Structures and Typedefs *
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync*******************************************************************************/
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync/**
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * Structure containing information needed to enumerate through guest
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * properties.
d6aa6429f99fb7648883eb612f8a52b9aaf3bff4vboxsync *
d6aa6429f99fb7648883eb612f8a52b9aaf3bff4vboxsync * @remarks typedef in VBoxGuestLib.h.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsyncstruct VBGLR3GUESTPROPENUM
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync{
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync /** @todo add a magic and validate the handle. */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync /** The buffer containing the raw enumeration data */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync char *pchBuf;
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync /** The end of the buffer */
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync char *pchBufEnd;
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync /** Pointer to the next entry to enumerate inside the buffer */
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync char *pchNext;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync};
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsyncusing namespace guestProp;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Connects to the guest property service.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @returns VBox status code
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pu32ClientId Where to put the client id on success. The client id
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * must be passed to all the other calls to the service.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsyncVBGLR3DECL(int) VbglR3GuestPropConnect(uint32_t *pu32ClientId)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync VBoxGuestHGCMConnectInfo Info;
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Info.result = VERR_WRONG_ORDER;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Info.Loc.type = VMMDevHGCMLoc_LocalHost_Existing;
48d832e07616531bbb720d9c98103c83b561ebb6vboxsync RT_ZERO(Info.Loc.u);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync strcpy(Info.Loc.u.host.achName, "VBoxGuestPropSvc");
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Info.u32ClientID = UINT32_MAX; /* try make valgrid shut up. */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CONNECT, &Info, sizeof(Info));
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = Info.result;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *pu32ClientId = Info.u32ClientID;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync return rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Disconnect from the guest property service.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @returns VBox status code.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param u32ClientId The client id returned by VbglR3InfoSvcConnect().
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsyncVBGLR3DECL(int) VbglR3GuestPropDisconnect(uint32_t u32ClientId)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync VBoxGuestHGCMDisconnectInfo Info;
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Info.result = VERR_WRONG_ORDER;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Info.u32ClientID = u32ClientId;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_DISCONNECT, &Info, sizeof(Info));
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = Info.result;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync return rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Write a property value.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @returns VBox status code.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param u32ClientId The client id returned by VbglR3InvsSvcConnect().
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszName The property to save to. Utf8
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszValue The value to store. Utf8. If this is NULL then
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * the property will be removed.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszFlags The flags for the property
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsyncVBGLR3DECL(int) VbglR3GuestPropWrite(uint32_t u32ClientId, const char *pszName, const char *pszValue, const char *pszFlags)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync int rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (pszValue != NULL)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync SetProperty Msg;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Msg.hdr.result = VERR_WRONG_ORDER;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32ClientID = u32ClientId;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32Function = SET_PROP_VALUE;
ada022f71e6728d4f2b15e643d35aa94992656c7vboxsync Msg.hdr.cParms = 3;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.name, pszName);
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.value, pszValue);
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.flags, pszFlags);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = Msg.hdr.result;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync else
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync DelProperty Msg;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Msg.hdr.result = VERR_WRONG_ORDER;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32ClientID = u32ClientId;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32Function = DEL_PROP;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.cParms = 1;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.name, pszName);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = Msg.hdr.result;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync return rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Write a property value.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @returns VBox status code.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param u32ClientId The client id returned by VbglR3InvsSvcConnect().
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param pszName The property to save to. Must be valid UTF-8.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param pszValue The value to store. Must be valid UTF-8.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * If this is NULL then the property will be removed.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @note if the property already exists and pszValue is not NULL then the
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * property's flags field will be left unchanged
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsyncVBGLR3DECL(int) VbglR3GuestPropWriteValue(uint32_t u32ClientId, const char *pszName, const char *pszValue)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync int rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (pszValue != NULL)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync SetPropertyValue Msg;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Msg.hdr.result = VERR_WRONG_ORDER;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32ClientID = u32ClientId;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32Function = SET_PROP_VALUE;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.cParms = 2;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.name, pszName);
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.value, pszValue);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = Msg.hdr.result;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync else
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync DelProperty Msg;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Msg.hdr.result = VERR_WRONG_ORDER;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32ClientID = u32ClientId;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32Function = DEL_PROP;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.cParms = 1;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.name, pszName);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = Msg.hdr.result;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync return rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#ifndef VBOX_VBGLR3_XFREE86
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync/**
9f9eff04f209bd905529ee3b76076e55568db917vboxsync * Write a property value where the value is formatted in RTStrPrintfV fashion.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync *
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @returns The same as VbglR3GuestPropWriteValue with the addition of VERR_NO_STR_MEMORY.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync *
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param u32ClientId The client ID returned by VbglR3InvsSvcConnect().
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param pszName The property to save to. Must be valid UTF-8.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param pszValueFormat The value format. This must be valid UTF-8 when fully formatted.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param va The format arguments.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync */
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsyncVBGLR3DECL(int) VbglR3GuestPropWriteValueV(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, va_list va)
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync{
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync /*
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * Format the value and pass it on to the setter.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync */
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync int rc = VERR_NO_STR_MEMORY;
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync char *pszValue;
33f11b53cd8c54c594fb6117dc4413e05bd7a3cdvboxsync if (RTStrAPrintfV(&pszValue, pszValueFormat, va) >= 0)
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync {
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync rc = VbglR3GuestPropWriteValue(u32ClientId, pszName, pszValue);
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync RTStrFree(pszValue);
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync }
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync return rc;
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync}
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync/**
9f9eff04f209bd905529ee3b76076e55568db917vboxsync * Write a property value where the value is formatted in RTStrPrintf fashion.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync *
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @returns The same as VbglR3GuestPropWriteValue with the addition of VERR_NO_STR_MEMORY.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync *
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param u32ClientId The client ID returned by VbglR3InvsSvcConnect().
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param pszName The property to save to. Must be valid UTF-8.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param pszValueFormat The value format. This must be valid UTF-8 when fully formatted.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync * @param ... The format arguments.
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync */
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsyncVBGLR3DECL(int) VbglR3GuestPropWriteValueF(uint32_t u32ClientId, const char *pszName, const char *pszValueFormat, ...)
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync{
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync va_list va;
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync va_start(va, pszValueFormat);
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync int rc = VbglR3GuestPropWriteValueV(u32ClientId, pszName, pszValueFormat, va);
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync va_end(va);
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync return rc;
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync}
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#endif /* VBOX_VBGLR3_XFREE86 */
a2d53f020c57ede4a469a06d8ef8f735c7a46596vboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Retrieve a property.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @returns VBox status code.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @retval VINF_SUCCESS on success, pszValue, pu64Timestamp and pszFlags
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * containing valid data.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @retval VERR_BUFFER_OVERFLOW if the scratch buffer @a pcBuf is not large
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * enough. In this case the size needed will be placed in
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @a pcbBufActual if it is not NULL.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @retval VERR_NOT_FOUND if the key wasn't found.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param u32ClientId The client id returned by VbglR3GuestPropConnect().
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszName The value to read. Utf8
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @param pvBuf A scratch buffer to store the data retrieved into.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * The returned data is only valid for it's lifetime.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @a ppszValue will point to the start of this buffer.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param cbBuf The size of @a pcBuf
397a09203bcbe5348def6093e6c855c43d4ad98fvboxsync * @param ppszValue Where to store the pointer to the value retrieved.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * Optional.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pu64Timestamp Where to store the timestamp. Optional.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszFlags Where to store the pointer to the flags. Optional.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pcbBufActual If @a pcBuf is not large enough, the size needed.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Optional.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsyncVBGLR3DECL(int) VbglR3GuestPropRead(uint32_t u32ClientId, const char *pszName,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync void *pvBuf, uint32_t cbBuf,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync char **ppszValue, uint64_t *pu64Timestamp,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync char **ppszFlags,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync uint32_t *pcbBufActual)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /*
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Create the GET_PROP message and call the host.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync GetProperty Msg;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Msg.hdr.result = VERR_WRONG_ORDER;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32ClientID = u32ClientId;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.u32Function = GET_PROP;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync Msg.hdr.cParms = 4;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.name, pszName);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync VbglHGCMParmPtrSet(&Msg.buffer, pvBuf, cbBuf);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync VbglHGCMParmUInt64Set(&Msg.timestamp, 0);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync VbglHGCMParmUInt32Set(&Msg.size, 0);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync rc = Msg.hdr.result;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /*
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * The cbBufActual parameter is also returned on overflow so the call can
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * adjust his/her buffer.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if ( rc == VERR_BUFFER_OVERFLOW
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync || pcbBufActual != NULL)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync int rc2 = VbglHGCMParmUInt32Get(&Msg.size, pcbBufActual);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertRCReturn(rc2, RT_FAILURE(rc) ? rc : rc2);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (RT_FAILURE(rc))
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync return rc;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /*
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Buffer layout: Value\0Flags\0.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * If the caller cares about any of these strings, make sure things are
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * propertly terminated (paranoia).
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if ( RT_SUCCESS(rc)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync && (ppszValue != NULL || ppszFlags != NULL))
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /* Validate / skip 'Name'. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync char *pszFlags = (char *)memchr(pvBuf, '\0', cbBuf) + 1;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertPtrReturn(pszFlags, VERR_TOO_MUCH_DATA);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (ppszValue)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *ppszValue = (char *)pvBuf;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (ppszFlags)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /* Validate 'Flags'. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync void *pvEos = memchr(pszFlags, '\0', cbBuf - (pszFlags - (char *)pvBuf));
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertPtrReturn(pvEos, VERR_TOO_MUCH_DATA);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *ppszFlags = pszFlags;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync }
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /* And the timestamp, if requested. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (pu64Timestamp != NULL)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync rc = VbglHGCMParmUInt64Get(&Msg.timestamp, pu64Timestamp);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertRCReturn(rc, rc);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync }
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync return VINF_SUCCESS;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#ifndef VBOX_VBGLR3_XFREE86
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Retrieve a property value, allocating space for it.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @returns VBox status code.
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsync * @retval VINF_SUCCESS on success, *ppszValue containing valid data.
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync * @retval VERR_NOT_FOUND if the key wasn't found.
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsync * @retval VERR_TOO_MUCH_DATA if we were unable to determine the right size
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsync * to allocate for the buffer. This can happen as the result of a
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsync * race between our allocating space and the host changing the
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsync * property value.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param u32ClientId The client id returned by VbglR3GuestPropConnect().
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync * @param pszName The value to read. Must be valid UTF-8.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param ppszValue Where to store the pointer to the value returned.
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync * This is always set to NULL or to the result, even
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync * on failure.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsyncVBGLR3DECL(int) VbglR3GuestPropReadValueAlloc(uint32_t u32ClientId,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync const char *pszName,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync char **ppszValue)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync /*
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync * Quick input validation.
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync */
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync AssertPtr(ppszValue);
e7e60b177e688900656c04404c5123f1dfa1d02cvboxsync *ppszValue = NULL;
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync AssertPtrReturn(pszName, VERR_INVALID_PARAMETER);
e61cd03db2217b7ec7467065af02d7ea7549149evboxsync
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync /*
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync * There is a race here between our reading the property size and the
e61cd03db2217b7ec7467065af02d7ea7549149evboxsync * host changing the value before we read it. Try up to ten times and
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync * report the problem if that fails.
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync */
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync char *pszValue = NULL;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync void *pvBuf = NULL;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync uint32_t cchBuf = MAX_VALUE_LEN;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync int rc = VERR_BUFFER_OVERFLOW;
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync for (unsigned i = 0; i < 10 && rc == VERR_BUFFER_OVERFLOW; ++i)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync {
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync /* We leave a bit of space here in case the maximum value is raised. */
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync cchBuf += 1024;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync void *pvTmpBuf = RTMemRealloc(pvBuf, cchBuf);
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync if (pvTmpBuf)
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync {
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync pvBuf = pvTmpBuf;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync rc = VbglR3GuestPropRead(u32ClientId, pszName, pvBuf, cchBuf,
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync &pszValue, NULL, NULL, &cchBuf);
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync }
e61cd03db2217b7ec7467065af02d7ea7549149evboxsync else
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync rc = VERR_NO_MEMORY;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync }
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync if (RT_SUCCESS(rc))
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync {
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync Assert(pszValue == (char *)pvBuf);
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync *ppszValue = pszValue;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync }
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync else
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync {
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync RTMemFree(pvBuf);
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync if (rc == VERR_BUFFER_OVERFLOW)
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync /* VERR_BUFFER_OVERFLOW has a different meaning here as a
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * return code, but we need to report the race. */
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync rc = VERR_TOO_MUCH_DATA;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync }
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync return rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Free the memory used by VbglR3GuestPropReadValueAlloc for returning a
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * value.
243041cd7eae9f34b08e7340533b2a88218ee57evboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszValue the memory to be freed. NULL pointers will be ignored.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsyncVBGLR3DECL(void) VbglR3GuestPropReadValueFree(char *pszValue)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync RTMemFree(pszValue);
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#endif /* VBOX_VBGLR3_XFREE86 */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync/**
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * Retrieve a property value, using a user-provided buffer to store it.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @returns VBox status code.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @retval VINF_SUCCESS on success, pszValue containing valid data.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @retval VERR_BUFFER_OVERFLOW and the size needed in pcchValueActual if the
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * buffer provided was too small
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @retval VERR_NOT_FOUND if the key wasn't found.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @note There is a race here between obtaining the size of the buffer
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * needed to hold the value and the value being updated.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync *
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param u32ClientId The client id returned by VbglR3GuestPropConnect().
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszName The value to read. Utf8
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pszValue Where to store the value retrieved.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param cchValue The size of the buffer pointed to by @a pszValue
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * @param pcchValueActual Where to store the size of the buffer needed if
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync * the buffer supplied is too small. Optional.
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync */
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsyncVBGLR3DECL(int) VbglR3GuestPropReadValue(uint32_t u32ClientId, const char *pszName,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync char *pszValue, uint32_t cchValue,
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync uint32_t *pcchValueActual)
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync{
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync void *pvBuf = pszValue;
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync uint32_t cchValueActual;
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync int rc = VbglR3GuestPropRead(u32ClientId, pszName, pvBuf, cchValue,
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync &pszValue, NULL, NULL, &cchValueActual);
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync if (pcchValueActual != NULL)
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync *pcchValueActual = cchValueActual;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync return rc;
3c3a5ab35783f4d31cb5d3a15db9daadeb804daavboxsync}
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#ifndef VBOX_VBGLR3_XFREE86
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync/**
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * Raw API for enumerating guest properties which match a given pattern.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync *
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync * @returns VBox status code.
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync * @retval VINF_SUCCESS on success and pcBuf points to a packed array
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * of the form <name>, <value>, <timestamp string>, <flags>,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * terminated by four empty strings. pcbBufActual will contain the
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * total size of the array.
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync * @retval VERR_BUFFER_OVERFLOW if the buffer provided was too small. In
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * this case pcbBufActual will contain the size of the buffer needed.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @returns IPRT error code in other cases, and pchBufActual is undefined.
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync *
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @param u32ClientId The client ID returned by VbglR3GuestPropConnect
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @param paszPatterns A packed array of zero terminated strings, terminated
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * by an empty string.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @param pcBuf The buffer to store the results to.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @param cbBuf The size of the buffer
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @param pcbBufActual Where to store the size of the returned data on
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * success or the buffer size needed if @a pcBuf is too
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * small.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsyncVBGLR3DECL(int) VbglR3GuestPropEnumRaw(uint32_t u32ClientId,
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync const char *pszzPatterns,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync char *pcBuf,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync uint32_t cbBuf,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync uint32_t *pcbBufActual)
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync{
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync EnumProperties Msg;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Msg.hdr.result = VERR_WRONG_ORDER;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync Msg.hdr.u32ClientID = u32ClientId;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync Msg.hdr.u32Function = ENUM_PROPS;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync Msg.hdr.cParms = 3;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync /* Get the length of the patterns array... */
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync size_t cchPatterns = 0;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync for (size_t cchCurrent = strlen(pszzPatterns); cchCurrent != 0;
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync cchCurrent = strlen(pszzPatterns + cchPatterns))
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync cchPatterns += cchCurrent + 1;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync /* ...including the terminator. */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync ++cchPatterns;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSet(&Msg.patterns, (char *)pszzPatterns, (uint32_t)cchPatterns);
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync VbglHGCMParmPtrSet(&Msg.strings, pcBuf, cbBuf);
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync VbglHGCMParmUInt32Set(&Msg.size, 0);
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL(sizeof(Msg)), &Msg, sizeof(Msg));
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync if (RT_SUCCESS(rc))
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync rc = Msg.hdr.result;
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync if ( pcbBufActual
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync && ( RT_SUCCESS(rc)
0c436e66dac8edc81d43b54cd878ed239a63574bvboxsync || rc == VERR_BUFFER_OVERFLOW))
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync {
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync int rc2 = VbglHGCMParmUInt32Get(&Msg.size, pcbBufActual);
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync if (!RT_SUCCESS(rc2))
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync rc = rc2;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync }
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync return rc;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync}
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync/**
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * Start enumerating guest properties which match a given pattern.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * This function creates a handle which can be used to continue enumerating.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync *
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @returns VBox status code.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @retval VINF_SUCCESS on success, *ppHandle points to a handle for continuing
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * the enumeration and *ppszName, *ppszValue, *pu64Timestamp and
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * *ppszFlags are set.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @retval VERR_NOT_FOUND if no matching properties were found. In this case
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * the return parameters are not initialised.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @retval VERR_TOO_MUCH_DATA if it was not possible to determine the amount
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * of local space needed to store all the enumeration data. This is
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * due to a race between allocating space and the host adding new
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * data, so retrying may help here. Other parameters are left
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * uninitialised
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync *
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param u32ClientId The client id returned by VbglR3InfoSvcConnect().
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param papszPatterns The patterns against which the properties are
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * matched. Pass NULL if everything should be matched.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param cPatterns The number of patterns in @a papszPatterns. 0 means
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * match everything.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param ppHandle where the handle for continued enumeration is stored
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * on success. This must be freed with
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * VbglR3GuestPropEnumFree when it is no longer needed.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param ppszName Where to store the first property name on success.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Should not be freed. Optional.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param ppszValue Where to store the first property value on success.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Should not be freed. Optional.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param ppszValue Where to store the first timestamp value on success.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Optional.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param ppszFlags Where to store the first flags value on success.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Should not be freed. Optional.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsyncVBGLR3DECL(int) VbglR3GuestPropEnum(uint32_t u32ClientId,
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const * const *papszPatterns,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync uint32_t cPatterns,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync PVBGLR3GUESTPROPENUM *ppHandle,
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const **ppszName,
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const **ppszValue,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync uint64_t *pu64Timestamp,
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const **ppszFlags)
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync{
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /* Create the handle. */
7c930c3ee58f55e1a2cebfa2ad3ae918569a8f44vboxsync RTMemAutoPtr<VBGLR3GUESTPROPENUM, VbglR3GuestPropEnumFree> Handle;
9ee72227058430bcead5831131741b5dc1601f00vboxsync Handle = (PVBGLR3GUESTPROPENUM)RTMemAllocZ(sizeof(VBGLR3GUESTPROPENUM));
7c930c3ee58f55e1a2cebfa2ad3ae918569a8f44vboxsync if (!Handle)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync return VERR_NO_MEMORY;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync /* Get the length of the pattern string, including the final terminator. */
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync size_t cchPatterns = 1;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync for (uint32_t i = 0; i < cPatterns; ++i)
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync cchPatterns += strlen(papszPatterns[i]) + 1;
9ee72227058430bcead5831131741b5dc1601f00vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync /* Pack the pattern array */
7c930c3ee58f55e1a2cebfa2ad3ae918569a8f44vboxsync RTMemAutoPtr<char> Patterns;
9ee72227058430bcead5831131741b5dc1601f00vboxsync Patterns = (char *)RTMemAlloc(cchPatterns);
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync size_t off = 0;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync for (uint32_t i = 0; i < cPatterns; ++i)
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync {
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync size_t cb = strlen(papszPatterns[i]) + 1;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync memcpy(&Patterns[off], papszPatterns[i], cb);
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync off += cb;
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync }
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync Patterns[off] = '\0';
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync /* Randomly chosen initial size for the buffer to hold the enumeration
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * information. */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync uint32_t cchBuf = 4096;
7c930c3ee58f55e1a2cebfa2ad3ae918569a8f44vboxsync RTMemAutoPtr<char> Buf;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync /* In reading the guest property data we are racing against the host
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * adding more of it, so loop a few times and retry on overflow. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync int rc = VINF_SUCCESS;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync for (int i = 0; i < 10; ++i)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (!Buf.realloc(cchBuf))
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync rc = VERR_NO_MEMORY;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync break;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync }
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync rc = VbglR3GuestPropEnumRaw(u32ClientId, Patterns.get(),
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync Buf.get(), cchBuf, &cchBuf);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (rc != VERR_BUFFER_OVERFLOW)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync break;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync cchBuf += 4096; /* Just to increase our chances */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync }
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync if (RT_SUCCESS(rc))
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /*
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Transfer ownership of the buffer to the handle structure and
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * call VbglR3GuestPropEnumNext to retriev the first entry.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync */
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync Handle->pchNext = Handle->pchBuf = Buf.release();
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync Handle->pchBufEnd = Handle->pchBuf + cchBuf;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync const char *pszNameTmp;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (!ppszName)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync ppszName = &pszNameTmp;
7c930c3ee58f55e1a2cebfa2ad3ae918569a8f44vboxsync rc = VbglR3GuestPropEnumNext(Handle.get(), ppszName, ppszValue,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync pu64Timestamp, ppszFlags);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (RT_SUCCESS(rc) && *ppszName != NULL)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *ppHandle = Handle.release();
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync else if (RT_SUCCESS(rc))
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync rc = VERR_NOT_FOUND; /* No matching properties found. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync }
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync else if (rc == VERR_BUFFER_OVERFLOW)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync rc = VERR_TOO_MUCH_DATA;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync return rc;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync}
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync/**
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Get the next guest property.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * See @a VbglR3GuestPropEnum.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync *
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @returns VBox status code.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync *
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @param pHandle Handle obtained from @a VbglR3GuestPropEnum.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @param ppszName Where to store the next property name. This will be
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * set to NULL if there are no more properties to
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * enumerate. This pointer should not be freed. Optional.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @param ppszValue Where to store the next property value. This will be
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * set to NULL if there are no more properties to
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * enumerate. This pointer should not be freed. Optional.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @param pu64Timestamp Where to store the next property timestamp. This
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * will be set to zero if there are no more properties
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * to enumerate. Optional.
1f6b1f68eb26f8af1f9a4b5ffd00df66ad7af1devboxsync * @param ppszFlags Where to store the next property flags. This will be
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * set to NULL if there are no more properties to
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * enumerate. This pointer should not be freed. Optional.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * @remarks While all output parameters are optional, you need at least one to
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * figure out when to stop.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsyncVBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle,
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const **ppszName,
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const **ppszValue,
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync uint64_t *pu64Timestamp,
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const **ppszFlags)
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync{
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /*
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * The VBGLR3GUESTPROPENUM structure contains a buffer containing the raw
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync * properties data and a pointer into the buffer which tracks how far we
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync * have parsed so far. The buffer contains packed strings in groups of
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync * four - name, value, timestamp (as a decimal string) and flags. It is
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync * terminated by four empty strings. We can rely on this layout unless
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync * the caller has been poking about in the structure internals, in which
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * case they must take responsibility for the results.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Layout:
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Name\0Value\0Timestamp\0Flags\0
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync char *pchNext = pHandle->pchNext; /* The cursor. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync char *pchEnd = pHandle->pchBufEnd; /* End of buffer, for size calculations. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync char *pszName = pchNext;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync char *pszValue = pchNext = (char *)memchr(pchNext, '\0', pchEnd - pchNext) + 1;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertPtrReturn(pchNext, VERR_PARSE_ERROR); /* 0x1 is also an invalid pointer :) */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync char *pszTimestamp = pchNext = (char *)memchr(pchNext, '\0', pchEnd - pchNext) + 1;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertPtrReturn(pchNext, VERR_PARSE_ERROR);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync char *pszFlags = pchNext = (char *)memchr(pchNext, '\0', pchEnd - pchNext) + 1;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertPtrReturn(pchNext, VERR_PARSE_ERROR);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /*
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Don't move the index pointer if we found the terminating "\0\0\0\0" entry.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Don't try convert the timestamp either.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync uint64_t u64Timestamp;
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync if (*pszName != '\0')
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync pchNext = (char *)memchr(pchNext, '\0', pchEnd - pchNext) + 1;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertPtrReturn(pchNext, VERR_PARSE_ERROR);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /* Convert the timestamp string into a number. */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync int rc = RTStrToUInt64Full(pszTimestamp, 0, &u64Timestamp);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertRCSuccessReturn(rc, VERR_PARSE_ERROR);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync pHandle->pchNext = pchNext;
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync AssertPtr(pchNext);
d44cb80e1d772854c10ef9ae03daba8dcf61d389vboxsync }
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync else
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync {
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync u64Timestamp = 0;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync AssertMsgReturn(!*pszValue && !*pszTimestamp && !*pszFlags,
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync ("'%s' '%s' '%s'\n", pszValue, pszTimestamp, pszFlags),
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync VERR_PARSE_ERROR);
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync }
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync /*
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync * Everything is fine, set the return values.
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync */
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (ppszName)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *ppszName = *pszName != '\0' ? pszName : NULL;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (ppszValue)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *ppszValue = *pszValue != '\0' ? pszValue : NULL;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (pu64Timestamp)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *pu64Timestamp = u64Timestamp;
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync if (ppszFlags)
70142706c9117b6c1befe7a5be768d25c699ead5vboxsync *ppszFlags = *pszFlags != '\0' ? pszFlags : NULL;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync return VINF_SUCCESS;
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync}
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync/**
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * Free an enumeration handle returned by @a VbglR3GuestPropEnum.
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync * @param pHandle the handle to free
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync */
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsyncVBGLR3DECL(void) VbglR3GuestPropEnumFree(PVBGLR3GUESTPROPENUM pHandle)
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync{
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync RTMemFree(pHandle->pchBuf);
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync RTMemFree(pHandle);
3c0e6e6c131cfdaeaeaea598603f6ef6ab10e781vboxsync}
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync/**
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * Deletes a set of keys.
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync *
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * The set is specified in the same way as for VbglR3GuestPropEnum.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync *
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @returns VBox status code. Stops on first failure.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * See also VbglR3GuestPropEnum.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync *
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param u32ClientId The client id returned by VbglR3InfoSvcConnect().
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param papszPatterns The patterns against which the properties are
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * matched. Pass NULL if everything should be matched.
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * @param cPatterns The number of patterns in @a papszPatterns. 0 means
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync * match everything.
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync */
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsyncVBGLR3DECL(int) VbglR3GuestPropDelSet(uint32_t u32ClientId,
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync const char * const *papszPatterns,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync uint32_t cPatterns)
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync{
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync PVBGLR3GUESTPROPENUM pHandle;
9ee72227058430bcead5831131741b5dc1601f00vboxsync char const *pszName, *pszValue, *pszFlags;
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync uint64_t pu64Timestamp;
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync int rc = VbglR3GuestPropEnum(u32ClientId,
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync (char **)papszPatterns, /** @todo fix this cast. */
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync cPatterns,
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync &pHandle,
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync &pszName,
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync &pszValue,
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync &pu64Timestamp,
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync &pszFlags);
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync while (RT_SUCCESS(rc) && pszName)
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync {
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync rc = VbglR3GuestPropWriteValue(u32ClientId, pszName, NULL);
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync if (!RT_SUCCESS(rc))
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync break;
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync rc = VbglR3GuestPropEnumNext(pHandle,
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync &pszName,
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync &pszValue,
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync &pu64Timestamp,
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync &pszFlags);
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync }
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync VbglR3GuestPropEnumFree(pHandle);
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync return rc;
33d90ac36a3ebf89e46a50252fe9542602a6b2bevboxsync}
28563f589b9e002e0ca7d7e2567f423fb620b1advboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync/**
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * Wait for notification of changes to a guest property. If this is called in
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * a loop, the timestamp of the last notification seen can be passed as a
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * parameter to be sure that no notifications are missed.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync *
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @returns VBox status code.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @retval VINF_SUCCESS on success, @a ppszName, @a ppszValue,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @a pu64Timestamp and @a ppszFlags containing valid data.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @retval VINF_NOT_FOUND if no previous notification could be found with the
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * timestamp supplied. This will normally mean that a large number
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * of notifications occurred in between.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @retval VERR_BUFFER_OVERFLOW if the scratch buffer @a pvBuf is not large
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * enough. In this case the size needed will be placed in
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @a pcbBufActual if it is not NULL.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @retval VERR_TIMEOUT if a timeout occurred before a notification was seen.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync *
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param u32ClientId The client id returned by VbglR3GuestPropConnect().
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param pszPatterns The patterns that the property names must matchfor
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * the change to be reported.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param pvBuf A scratch buffer to store the data retrieved into.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * The returned data is only valid for it's lifetime.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @a ppszValue will point to the start of this buffer.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param cbBuf The size of @a pvBuf
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param u64Timestamp The timestamp of the last event seen. Pass zero
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * to wait for the next event.
2e61a24ab78fc4b63349676a08468fbcf1a7a17bvboxsync * @param cMillies Timeout in milliseconds. Use RT_INDEFINITE_WAIT
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * to wait indefinitely.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param ppszName Where to store the pointer to the name retrieved.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * Optional.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param ppszValue Where to store the pointer to the value retrieved.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * Optional.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param pu64Timestamp Where to store the timestamp. Optional.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param ppszFlags Where to store the pointer to the flags. Optional.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * @param pcbBufActual If @a pcBuf is not large enough, the size needed.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * Optional.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsyncVBGLR3DECL(int) VbglR3GuestPropWait(uint32_t u32ClientId,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync const char *pszPatterns,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync void *pvBuf, uint32_t cbBuf,
2e61a24ab78fc4b63349676a08468fbcf1a7a17bvboxsync uint64_t u64Timestamp, uint32_t cMillies,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync char ** ppszName, char **ppszValue,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync uint64_t *pu64Timestamp, char **ppszFlags,
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync uint32_t *pcbBufActual)
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync{
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync /*
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * Create the GET_NOTIFICATION message and call the host.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync GetNotification Msg;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
2e61a24ab78fc4b63349676a08468fbcf1a7a17bvboxsync Msg.hdr.u32Timeout = cMillies;
76b4af0cf9fc1811afa84c646645382467a5350bvboxsync Msg.hdr.fInterruptible = true;
afdf6eaa7e1a0e25a511d96598400f812a5296e3vboxsync Msg.hdr.info.result = VERR_WRONG_ORDER;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync Msg.hdr.info.u32ClientID = u32ClientId;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync Msg.hdr.info.u32Function = GET_NOTIFICATION;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync Msg.hdr.info.cParms = 4;
bf4de0c2965291e927412f708c6c27eeeb5825d4vboxsync VbglHGCMParmPtrSetString(&Msg.patterns, pszPatterns);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync Msg.buffer.SetPtr(pvBuf, cbBuf);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync Msg.timestamp.SetUInt64(u64Timestamp);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync Msg.size.SetUInt32(0);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
32ad75b4af91dad97e4f6c0b1d9f2fd63d173f19vboxsync int rc = vbglR3DoIOCtl(VBOXGUEST_IOCTL_HGCM_CALL_TIMED(sizeof(Msg)), &Msg, sizeof(Msg));
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if (RT_SUCCESS(rc))
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync rc = Msg.hdr.info.result;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync /*
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * The cbBufActual parameter is also returned on overflow so the caller can
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * adjust their buffer.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if ( rc == VERR_BUFFER_OVERFLOW
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync || pcbBufActual != NULL)
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync {
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync int rc2 = Msg.size.GetUInt32(pcbBufActual);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync AssertRCReturn(rc2, RT_FAILURE(rc) ? rc : rc2);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync }
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if (RT_FAILURE(rc))
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync return rc;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync /*
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * Buffer layout: Name\0Value\0Flags\0.
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync *
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * If the caller cares about any of these strings, make sure things are
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync * propertly terminated (paranoia).
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if ( RT_SUCCESS(rc)
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync && (ppszName != NULL || ppszValue != NULL || ppszFlags != NULL))
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync {
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync /* Validate / skip 'Name'. */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync char *pszValue = (char *)memchr(pvBuf, '\0', cbBuf) + 1;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync AssertPtrReturn(pszValue, VERR_TOO_MUCH_DATA);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if (ppszName)
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync *ppszName = (char *)pvBuf;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync /* Validate / skip 'Value'. */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync char *pszFlags = (char *)memchr(pszValue, '\0',
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync cbBuf - (pszValue - (char *)pvBuf)) + 1;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync AssertPtrReturn(pszFlags, VERR_TOO_MUCH_DATA);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if (ppszValue)
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync *ppszValue = pszValue;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if (ppszFlags)
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync {
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync /* Validate 'Flags'. */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync void *pvEos = memchr(pszFlags, '\0', cbBuf - (pszFlags - (char *)pvBuf));
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync AssertPtrReturn(pvEos, VERR_TOO_MUCH_DATA);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync *ppszFlags = pszFlags;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync }
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync }
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync /* And the timestamp, if requested. */
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync if (pu64Timestamp != NULL)
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync {
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync rc = Msg.timestamp.GetUInt64(pu64Timestamp);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync AssertRCReturn(rc, rc);
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync }
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync return VINF_SUCCESS;
714655059cb50166bd78a8b4fc9fe2d4b29ef4afvboxsync}
208aaecb51db539a2f7f3d25f38dd2efd0f014a3vboxsync#endif /* VBOX_VBGLR3_XFREE86 */