VirtualBox

source: vbox/trunk/include/VBox/HostServices/GuestPropertySvc.h@ 22173

Last change on this file since 22173 was 22173, checked in by vboxsync, 15 years ago

Main: the big XML settings rework. Move XML reading/writing out of interface implementation code into separate layer so it can handle individual settings versions in the future.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 15.6 KB
Line 
1/** @file
2 * Guest property service:
3 * Common header for host service and guest clients.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * 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#ifndef ___VBox_HostService_GuestPropertyService_h
32#define ___VBox_HostService_GuestPropertyService_h
33
34#include <VBox/types.h>
35#include <VBox/VMMDev.h>
36#include <VBox/VBoxGuest2.h>
37#include <VBox/hgcmsvc.h>
38#include <VBox/log.h>
39#include <iprt/assert.h>
40#include <iprt/string.h>
41
42/** Everything defined in this file lives in this namespace. */
43namespace guestProp {
44
45/******************************************************************************
46* Typedefs, constants and inlines *
47******************************************************************************/
48
49/** Maximum length for property names */
50enum { MAX_NAME_LEN = 64 };
51/** Maximum length for property values */
52enum { MAX_VALUE_LEN = 128 };
53/** Maximum number of properties per guest */
54enum { MAX_PROPS = 256 };
55/** Maximum size for enumeration patterns */
56enum { MAX_PATTERN_LEN = 1024 };
57/** Maximum number of changes we remember for guest notifications */
58enum { MAX_GUEST_NOTIFICATIONS = 256 };
59
60/**
61 * The guest property flag values which are currently accepted.
62 */
63enum ePropFlags
64{
65 NILFLAG = 0,
66 TRANSIENT = RT_BIT(1),
67 RDONLYGUEST = RT_BIT(2),
68 RDONLYHOST = RT_BIT(3),
69 READONLY = RDONLYGUEST | RDONLYHOST,
70 ALLFLAGS = TRANSIENT | READONLY
71};
72
73/**
74 * Get the name of a flag as a string.
75 * @returns the name, or NULL if fFlag is invalid.
76 * @param fFlag the flag. Must be a value from the ePropFlags enumeration
77 * list.
78 */
79DECLINLINE(const char *) flagName(uint32_t fFlag)
80{
81 switch(fFlag)
82 {
83 case TRANSIENT:
84 return "TRANSIENT";
85 case RDONLYGUEST:
86 return "RDONLYGUEST";
87 case RDONLYHOST:
88 return "RDONLYHOST";
89 case READONLY:
90 return "READONLY";
91 default:
92 return NULL;
93 }
94}
95
96/**
97 * Get the length of a flag name as returned by flagName.
98 * @returns the length, or 0 if fFlag is invalid.
99 * @param fFlag the flag. Must be a value from the ePropFlags enumeration
100 * list.
101 */
102DECLINLINE(size_t) flagNameLen(uint32_t fFlag)
103{
104 const char *pcszName = flagName(fFlag);
105 return RT_LIKELY(pcszName != NULL) ? strlen(pcszName) : 0;
106}
107
108/**
109 * Maximum length for the property flags field. We only ever return one of
110 * RDONLYGUEST, RDONLYHOST and RDONLY
111 */
112enum { MAX_FLAGS_LEN = sizeof("TRANSIENT, RDONLYGUEST") };
113
114/**
115 * Parse a guest properties flags string for flag names and make sure that
116 * there is no junk text in the string.
117 * @returns IPRT status code
118 * @returns VERR_INVALID_PARAM if the flag string is not valid
119 * @param pcszFlags the flag string to parse
120 * @param pfFlags where to store the parse result. May not be NULL.
121 * @note This function is also inline because it must be accessible from
122 * several modules and it does not seem reasonable to put it into
123 * its own library.
124 */
125DECLINLINE(int) validateFlags(const char *pcszFlags, uint32_t *pfFlags)
126{
127 const static uint32_t sFlagList[] =
128 {
129 TRANSIENT, READONLY, RDONLYGUEST, RDONLYHOST
130 };
131 const char *pcszNext = pcszFlags;
132 int rc = VINF_SUCCESS;
133 uint32_t fFlags = 0;
134 AssertLogRelReturn(VALID_PTR(pfFlags), VERR_INVALID_POINTER);
135
136 if (pcszFlags)
137 {
138 while (' ' == *pcszNext)
139 ++pcszNext;
140 while ((*pcszNext != '\0') && RT_SUCCESS(rc))
141 {
142 unsigned i = 0;
143 for (; i < RT_ELEMENTS(sFlagList); ++i)
144 if (RTStrNICmp(pcszNext, flagName(sFlagList[i]),
145 flagNameLen(sFlagList[i])
146 ) == 0
147 )
148 break;
149 if (RT_ELEMENTS(sFlagList) == i)
150 rc = VERR_PARSE_ERROR;
151 else
152 {
153 fFlags |= sFlagList[i];
154 pcszNext += flagNameLen(sFlagList[i]);
155 while (' ' == *pcszNext)
156 ++pcszNext;
157 if (',' == *pcszNext)
158 ++pcszNext;
159 else if (*pcszNext != '\0')
160 rc = VERR_PARSE_ERROR;
161 while (' ' == *pcszNext)
162 ++pcszNext;
163 }
164 }
165 }
166 if (RT_SUCCESS(rc))
167 *pfFlags = fFlags;
168 return rc;
169}
170
171/**
172 * Write out flags to a string.
173 * @returns IPRT status code
174 * @param fFlags the flags to write out
175 * @param pszFlags where to write the flags string. This must point to
176 * a buffer of size (at least) MAX_FLAGS_LEN.
177 */
178DECLINLINE(int) writeFlags(uint32_t fFlags, char *pszFlags)
179{
180 const static uint32_t sFlagList[] =
181 {
182 TRANSIENT, READONLY, RDONLYGUEST, RDONLYHOST
183 };
184 char *pszNext = pszFlags;
185 int rc = VINF_SUCCESS;
186 AssertLogRelReturn(VALID_PTR(pszFlags), VERR_INVALID_POINTER);
187 if ((fFlags & ~ALLFLAGS) != NILFLAG)
188 rc = VERR_INVALID_PARAMETER;
189 if (RT_SUCCESS(rc))
190 {
191 unsigned i = 0;
192 for (; i < RT_ELEMENTS(sFlagList); ++i)
193 {
194 if (sFlagList[i] == (fFlags & sFlagList[i]))
195 {
196 strcpy(pszNext, flagName(sFlagList[i]));
197 pszNext += flagNameLen(sFlagList[i]);
198 fFlags &= ~sFlagList[i];
199 if (fFlags != NILFLAG)
200 {
201 strcpy(pszNext, ", ");
202 pszNext += 2;
203 }
204 }
205 }
206 *pszNext = '\0';
207 if (fFlags != NILFLAG)
208 rc = VERR_INVALID_PARAMETER; /* But pszFlags will still be set right. */
209 }
210 return rc;
211}
212
213/**
214 * The service functions which are callable by host.
215 */
216enum eHostFn
217{
218 /**
219 * Set properties in a block. The parameters are pointers to
220 * NULL-terminated arrays containing the paramters. These are, in order,
221 * name, value, timestamp, flags. Strings are stored as pointers to
222 * mutable utf8 data. All parameters must be supplied.
223 */
224 SET_PROPS_HOST = 1,
225 /**
226 * Get the value attached to a guest property
227 * The parameter format matches that of GET_PROP.
228 */
229 GET_PROP_HOST = 2,
230 /**
231 * Set the value attached to a guest property
232 * The parameter format matches that of SET_PROP.
233 */
234 SET_PROP_HOST = 3,
235 /**
236 * Set the value attached to a guest property
237 * The parameter format matches that of SET_PROP_VALUE.
238 */
239 SET_PROP_VALUE_HOST = 4,
240 /**
241 * Remove a guest property.
242 * The parameter format matches that of DEL_PROP.
243 */
244 DEL_PROP_HOST = 5,
245 /**
246 * Enumerate guest properties.
247 * The parameter format matches that of ENUM_PROPS.
248 */
249 ENUM_PROPS_HOST = 6
250};
251
252/**
253 * The service functions which are called by guest. The numbers may not change,
254 * so we hardcode them.
255 */
256enum eGuestFn
257{
258 /** Get a guest property */
259 GET_PROP = 1,
260 /** Set a guest property */
261 SET_PROP = 2,
262 /** Set just the value of a guest property */
263 SET_PROP_VALUE = 3,
264 /** Delete a guest property */
265 DEL_PROP = 4,
266 /** Enumerate guest properties */
267 ENUM_PROPS = 5,
268 /** Poll for guest notifications */
269 GET_NOTIFICATION = 6
270};
271
272/**
273 * Data structure to pass to the service extension callback. We use this to
274 * notify the host of changes to properties.
275 */
276typedef struct _HOSTCALLBACKDATA
277{
278 /** Magic number to identify the structure */
279 uint32_t u32Magic;
280 /** The name of the property that was changed */
281 const char *pcszName;
282 /** The new property value, or NULL if the property was deleted */
283 const char *pcszValue;
284 /** The timestamp of the modification */
285 uint64_t u64Timestamp;
286 /** The flags field of the modified property */
287 const char *pcszFlags;
288} HOSTCALLBACKDATA, *PHOSTCALLBACKDATA;
289
290enum
291{
292 /** Magic number for sanity checking the HOSTCALLBACKDATA structure */
293 HOSTCALLBACKMAGIC = 0x69c87a78
294};
295
296/**
297 * HGCM parameter structures. Packing is explicitly defined as this is a wire format.
298 */
299#pragma pack (1)
300/** The guest is requesting the value of a property */
301typedef struct _GetProperty
302{
303 VBoxGuestHGCMCallInfo hdr;
304
305 /**
306 * The property name (IN pointer)
307 * This must fit to a number of criteria, namely
308 * - Only Utf8 strings are allowed
309 * - Less than or equal to MAX_NAME_LEN bytes in length
310 * - Zero terminated
311 */
312 HGCMFunctionParameter name;
313
314 /**
315 * The returned string data will be placed here. (OUT pointer)
316 * This call returns two null-terminated strings which will be placed one
317 * after another: value and flags.
318 */
319 HGCMFunctionParameter buffer;
320
321 /**
322 * The property timestamp. (OUT uint64_t)
323 */
324 HGCMFunctionParameter timestamp;
325
326 /**
327 * If the buffer provided was large enough this will contain the size of
328 * the returned data. Otherwise it will contain the size of the buffer
329 * needed to hold the data and VERR_BUFFER_OVERFLOW will be returned.
330 * (OUT uint32_t)
331 */
332 HGCMFunctionParameter size;
333} GetProperty;
334
335/** The guest is requesting to change a property */
336typedef struct _SetProperty
337{
338 VBoxGuestHGCMCallInfo hdr;
339
340 /**
341 * The property name. (IN pointer)
342 * This must fit to a number of criteria, namely
343 * - Only Utf8 strings are allowed
344 * - Less than or equal to MAX_NAME_LEN bytes in length
345 * - Zero terminated
346 */
347 HGCMFunctionParameter name;
348
349 /**
350 * The value of the property (IN pointer)
351 * Criteria as for the name parameter, but with length less than or equal to
352 * MAX_VALUE_LEN.
353 */
354 HGCMFunctionParameter value;
355
356 /**
357 * The property flags (IN pointer)
358 * This is a comma-separated list of the format flag=value
359 * The length must be less than or equal to MAX_FLAGS_LEN and only
360 * known flag names and values will be accepted.
361 */
362 HGCMFunctionParameter flags;
363} SetProperty;
364
365/** The guest is requesting to change the value of a property */
366typedef struct _SetPropertyValue
367{
368 VBoxGuestHGCMCallInfo hdr;
369
370 /**
371 * The property name. (IN pointer)
372 * This must fit to a number of criteria, namely
373 * - Only Utf8 strings are allowed
374 * - Less than or equal to MAX_NAME_LEN bytes in length
375 * - Zero terminated
376 */
377 HGCMFunctionParameter name;
378
379 /**
380 * The value of the property (IN pointer)
381 * Criteria as for the name parameter, but with length less than or equal to
382 * MAX_VALUE_LEN.
383 */
384 HGCMFunctionParameter value;
385} SetPropertyValue;
386
387/** The guest is requesting to remove a property */
388typedef struct _DelProperty
389{
390 VBoxGuestHGCMCallInfo hdr;
391
392 /**
393 * The property name. This must fit to a number of criteria, namely
394 * - Only Utf8 strings are allowed
395 * - Less than or equal to MAX_NAME_LEN bytes in length
396 * - Zero terminated
397 */
398 HGCMFunctionParameter name;
399} DelProperty;
400
401/** The guest is requesting to enumerate properties */
402typedef struct _EnumProperties
403{
404 VBoxGuestHGCMCallInfo hdr;
405
406 /**
407 * Array of patterns to match the properties against, separated by '|'
408 * characters. For backwards compatibility, '\0' is also accepted
409 * as a separater.
410 * (IN pointer)
411 * If only a single, empty pattern is given then match all.
412 */
413 HGCMFunctionParameter patterns;
414 /**
415 * On success, null-separated array of strings in which the properties are
416 * returned. (OUT pointer)
417 * The number of strings in the array is always a multiple of four,
418 * and in sequences of name, value, timestamp (hexadecimal string) and the
419 * flags as a comma-separated list in the format "name=value". The list
420 * is terminated by an empty string after a "flags" entry (or at the
421 * start).
422 */
423 HGCMFunctionParameter strings;
424 /**
425 * On success, the size of the returned data. If the buffer provided is
426 * too small, the size of buffer needed. (OUT uint32_t)
427 */
428 HGCMFunctionParameter size;
429} EnumProperties;
430
431/**
432 * The guest is polling for notifications on changes to properties, specifying
433 * a set of patterns to match the names of changed properties against and
434 * optionally the timestamp of the last notification seen.
435 * On success, VINF_SUCCESS will be returned and the buffer will contain
436 * details of a property notification. If no new notification is available
437 * which matches one of the specified patterns, the call will block until one
438 * is.
439 * If the last notification could not be found by timestamp, VWRN_NOT_FOUND
440 * will be returned and the oldest available notification will be returned.
441 * If a zero timestamp is specified, the call will always wait for a new
442 * notification to arrive.
443 * If the buffer supplied was not large enough to hold the notification,
444 * VERR_BUFFER_OVERFLOW will be returned and the size parameter will contain
445 * the size of the buffer needed.
446 *
447 * The protocol for a guest to obtain notifications is to call
448 * GET_NOTIFICATION in a loop. On the first call, the ingoing timestamp
449 * parameter should be set to zero. On subsequent calls, it should be set to
450 * the outgoing timestamp from the previous call.
451 */
452typedef struct _GetNotification
453{
454 VBoxGuestHGCMCallInfoTimed hdr;
455
456 /**
457 * A list of patterns to match the guest event name against, separated by
458 * vertical bars (|) (IN pointer)
459 * An empty string means match all.
460 */
461 HGCMFunctionParameter patterns;
462 /**
463 * The timestamp of the last change seen (IN uint64_t)
464 * This may be zero, in which case the oldest available change will be
465 * sent. If the service does not remember an event matching the
466 * timestamp, then VWRN_NOT_FOUND will be returned, and the guest should
467 * assume that it has missed a certain number of notifications.
468 *
469 * The timestamp of the change being notified of (OUT uint64_t)
470 * Undefined on failure.
471 */
472 HGCMFunctionParameter timestamp;
473
474 /**
475 * The returned data, if any, will be placed here. (OUT pointer)
476 * This call returns three null-terminated strings which will be placed
477 * one after another: name, value and flags. For a delete notification,
478 * value and flags will be empty strings. Undefined on failure.
479 */
480 HGCMFunctionParameter buffer;
481
482 /**
483 * On success, the size of the returned data. (OUT uint32_t)
484 * On buffer overflow, the size of the buffer needed to hold the data.
485 * Undefined on failure.
486 */
487 HGCMFunctionParameter size;
488} GetNotification;
489#pragma pack ()
490
491} /* namespace guestProp */
492
493#endif /* ___VBox_HostService_GuestPropertySvc_h defined */
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