1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
/* $Id: gctrl.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
/** @file
* Guest Control Service: Internal function used by service, Main and testcase.
*/
/*
* Copyright (C) 2010 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/** @page pg_svc_guest_control Guest Control HGCM Service
*
* @todo Write up some nice text here.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP LOG_GROUP_HGCM
#include <VBox/HostServices/GuestControlSvc.h>
/** @todo Remove unused header files below! */
#include <iprt/alloca.h>
#include <iprt/initterm.h>
#include <iprt/crc32.h>
#include <iprt/ctype.h>
#include <iprt/env.h>
#include <iprt/file.h>
#include <iprt/getopt.h>
#include <iprt/handle.h>
#include <iprt/mem.h>
#include <iprt/message.h>
#include <iprt/param.h>
#include <iprt/path.h>
#include <iprt/pipe.h>
#include <iprt/poll.h>
#include <iprt/process.h>
#include <iprt/stream.h>
#include <iprt/thread.h>
#include "gctrl.h"
namespace guestControl {
/**
* Creates the argument list as an array used for executing a program.
*
* @returns VBox status code.
*
* @todo
*
* @todo Respect spaces when quoting for arguments, e.g. "c:\\program files\\".
* @todo Handle empty ("") argguments.
*/
int gctrlPrepareExecArgv(char *pszArgs, void **ppvList, uint32_t *pcbList, uint32_t *pcArgs)
{
char **ppaArg;
int iArgs;
int rc = RTGetOptArgvFromString(&ppaArg, &iArgs, pszArgs, NULL);
if (RT_SUCCESS(rc))
{
char *pszTemp = NULL;
*pcbList = 0;
for (int i=0; i<iArgs; i++)
{
if (i > 0) /* Insert space as delimiter. */
rc = RTStrAAppendN(&pszTemp, " ", 1);
if (RT_FAILURE(rc))
break;
else
{
rc = RTStrAAppendN(&pszTemp, ppaArg[i], strlen(ppaArg[i]));
if (RT_FAILURE(rc))
break;
}
}
RTGetOptArgvFree(ppaArg);
if (RT_SUCCESS(rc))
{
*ppvList = pszTemp;
*pcArgs = iArgs;
*pcbList = strlen(pszTemp) + 1; /* Include zero termination. */
}
else
RTStrFree(pszTemp);
}
return rc;
}
/**
* Appends environment variables to the environment block. Each var=value pair is separated
* by NULL (\0) sequence. The whole block will be stored in one blob and disassembled on the
* guest side later to fit into the HGCM param structure.
*
* @returns VBox status code.
*
* @todo
*
*/
int gctrlAddToExecEnvv(const char *pszEnv, void **ppvList, uint32_t *pcbList, uint32_t *pcEnv)
{
int rc = VINF_SUCCESS;
uint32_t cbLen = strlen(pszEnv);
if (*ppvList)
{
uint32_t cbNewLen = *pcbList + cbLen + 1; /* Include zero termination. */
char *pvTmp = (char*)RTMemRealloc(*ppvList, cbNewLen);
if (NULL == pvTmp)
{
rc = VERR_NO_MEMORY;
}
else
{
memcpy(pvTmp + *pcbList, pszEnv, cbLen);
pvTmp[cbNewLen - 1] = '\0'; /* Add zero termination. */
*ppvList = (void**)pvTmp;
}
}
else
{
char *pcTmp;
if (RTStrAPrintf(&pcTmp, "%s", pszEnv) > 0)
{
*ppvList = (void**)pcTmp;
/* Reset counters. */
*pcEnv = 0;
*pcbList = 0;
}
}
if (RT_SUCCESS(rc))
{
*pcbList += cbLen + 1; /* Include zero termination. */
*pcEnv += 1; /* Increase env pairs count. */
}
return rc;
}
/*
int gctrlAllocateExecBlock(PVBOXGUESTCTRLEXECBLOCK *ppBlock,
const char *pszCmd, uint32_t fFlags,
uint32_t cArgs, const char * const *papszArgs,
uint32_t cEnvVars, const char * const *papszEnv,
const char *pszStdIn, const char *pszStdOut, const char *pszStdErr,
const char *pszUsername, const char *pszPassword, RTMSINTERVAL cMillies)
{
PVBOXGUESTCTRLEXECBLOCK pNewBlock = (VBOXGUESTCTRLEXECBLOCK*)RTMemAlloc(sizeof(VBOXGUESTCTRLEXECBLOCK));
int rc;
if (pNewBlock)
{
*ppBlock = pNewBlock;
rc = VINF_SUCCESS;
}
else
rc = VERR_NO_MEMORY;
return rc;
}
int gctrlFreeExecBlock(PVBOXGUESTCTRLEXECBLOCK pBlock)
{
AssertPtr(pBlock);
RTStrFree(pBlock->pszCmd);
RTMemFree(pBlock->pvArgs);
RTMemFree(pBlock->pvEnv);
RTStrFree(pBlock->pszStdIn);
RTStrFree(pBlock->pszStdOut);
RTStrFree(pBlock->pszStdErr);
RTStrFree(pBlock->pszUsername);
RTStrFree(pBlock->pszPassword);
RT_ZERO(*pBlock);
return VINF_SUCCESS;
}
int gctrlPrepareHostCmdExec(PVBOXHGCMSVCPARM *ppaParms, uint32_t *pcParms,
PVBOXGUESTCTRLEXECBLOCK pBlock)
{
AssertPtr(ppaParms);
AssertPtr(pBlock);
PVBOXHGCMSVCPARM pNewParms =
(VBOXHGCMSVCPARM*)RTMemAlloc(sizeof(VBOXHGCMSVCPARM) * 13);
int rc;
if (pNewParms)
{
pNewParms[0].setUInt32(HOST_EXEC_CMD);
pNewParms[1].setUInt32(pBlock->u32Flags);
pNewParms[2].setPointer((void*)pBlock->pszCmd, (uint32_t)strlen(pBlock->pszCmd) + 1);
pNewParms[3].setUInt32(pBlock->u32Args);
pNewParms[4].setPointer((void*)pBlock->pvArgs, pBlock->cbArgs);
pNewParms[5].setUInt32(pBlock->u32EnvVars);
pNewParms[6].setPointer((void*)pBlock->pvEnv, pBlock->cbEnv);
pNewParms[7].setPointer((void*)pBlock->pszStdIn, (uint32_t)strlen(pBlock->pszStdIn) + 1);
pNewParms[8].setPointer((void*)pBlock->pszStdOut, (uint32_t)strlen(pBlock->pszStdOut) + 1);
pNewParms[9].setPointer((void*)pBlock->pszStdErr, (uint32_t)strlen(pBlock->pszStdErr) + 1);
pNewParms[10].setPointer((void*)pBlock->pszUsername, (uint32_t)strlen(pBlock->pszUsername) + 1);
pNewParms[11].setPointer((void*)pBlock->pszPassword, (uint32_t)strlen(pBlock->pszPassword) + 1);
pNewParms[12].setUInt32(pBlock->cMillies);
*ppaParms = pNewParms;
rc = VINF_SUCCESS;
}
else
rc = VERR_NO_MEMORY;
if (pcParms)
*pcParms = 13;
return rc;
}
void gctrlFreeHostCmd(PVBOXHGCMSVCPARM paParms)
{
RTMemFree(paParms);
}
*/
}
|