VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedFolders/mappings.cpp@ 3729

Last change on this file since 3729 was 3338, checked in by vboxsync, 18 years ago

Export HostServices

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
Line 
1/** @file
2 * Shared Folders: Mappings support.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#include "mappings.h"
22#include <iprt/alloc.h>
23#include <iprt/assert.h>
24#include <iprt/string.h>
25
26MAPPING FolderMapping[SHFL_MAX_MAPPINGS];
27
28
29/*
30 *
31 * We are always executed from one specific HGCM thread. So thread safe.
32 *
33 */
34int vbsfMappingsAdd (PSHFLSTRING pFolderName, PSHFLSTRING pMapName)
35{
36 int i;
37
38 Assert(pFolderName && pMapName);
39
40 /* check for duplicates */
41 for (i=0;i<SHFL_MAX_MAPPINGS;i++)
42 {
43 if (FolderMapping[i].fValid == true)
44 {
45 if (!RTUtf16LocaleICmp(FolderMapping[i].pMapName->String.ucs2, pMapName->String.ucs2))
46 {
47 AssertMsgFailed(("vbsfMappingsAdd: %ls mapping already exists!!\n", pMapName->String.ucs2));
48 return VERR_ALREADY_EXISTS;
49 }
50 }
51 }
52
53 for (i=0;i<SHFL_MAX_MAPPINGS;i++)
54 {
55 if (FolderMapping[i].fValid == false)
56 {
57 FolderMapping[i].pFolderName = (PSHFLSTRING)RTMemAlloc(ShflStringSizeOfBuffer(pFolderName));
58 Assert(FolderMapping[i].pFolderName);
59 if (FolderMapping[i].pFolderName == NULL)
60 return VERR_NO_MEMORY;
61
62 FolderMapping[i].pFolderName->u16Length = pFolderName->u16Length;
63 FolderMapping[i].pFolderName->u16Size = pFolderName->u16Size;
64 memcpy(FolderMapping[i].pFolderName->String.ucs2, pFolderName->String.ucs2, pFolderName->u16Size);
65
66 FolderMapping[i].pMapName = (PSHFLSTRING)RTMemAlloc(ShflStringSizeOfBuffer(pMapName));
67 Assert(FolderMapping[i].pMapName);
68 if (FolderMapping[i].pMapName == NULL)
69 return VERR_NO_MEMORY;
70
71 FolderMapping[i].pMapName->u16Length = pMapName->u16Length;
72 FolderMapping[i].pMapName->u16Size = pMapName->u16Size;
73 memcpy(FolderMapping[i].pMapName->String.ucs2, pMapName->String.ucs2, pMapName->u16Size);
74
75 FolderMapping[i].fValid = true;
76 FolderMapping[i].cMappings = 0;
77 break;
78 }
79 }
80 if (i == SHFL_MAX_MAPPINGS)
81 {
82 AssertMsgFailed(("vbsfMappingsAdd: no more room to add mapping %ls to %ls!!\n", pFolderName->String.ucs2, pMapName->String.ucs2));
83 return VERR_TOO_MUCH_DATA;
84 }
85
86 Log(("vbsfMappingsAdd: added mapping %ls to %ls\n", pFolderName->String.ucs2, pMapName->String.ucs2));
87 return VINF_SUCCESS;
88}
89
90int vbsfMappingsRemove (PSHFLSTRING pMapName)
91{
92 int i;
93
94 Assert(pMapName);
95
96 for (i=0;i<SHFL_MAX_MAPPINGS;i++)
97 {
98 if (FolderMapping[i].fValid == true)
99 {
100 if (!RTUtf16LocaleICmp(FolderMapping[i].pMapName->String.ucs2, pMapName->String.ucs2))
101 {
102 RTMemFree(FolderMapping[i].pFolderName);
103 RTMemFree(FolderMapping[i].pMapName);
104 FolderMapping[i].pFolderName = NULL;
105 FolderMapping[i].pMapName = NULL;
106 FolderMapping[i].fValid = false;
107 break;
108 }
109 }
110 }
111
112 if (i == SHFL_MAX_MAPPINGS)
113 {
114 AssertMsgFailed(("vbsfMappingsRemove: mapping %ls not found!!!!\n", pMapName->String));
115 return VERR_FILE_NOT_FOUND;
116 }
117 Log(("vbsfMappingsRemove: mapping %ls removed\n", pMapName->String));
118 return VINF_SUCCESS;
119}
120
121const RTUCS2 *vbsfMappingsQueryHostRoot (SHFLROOT root, uint32_t *pcbRoot)
122{
123 if (root > SHFL_MAX_MAPPINGS)
124 {
125 AssertFailed();
126 return NULL;
127 }
128
129 *pcbRoot = FolderMapping[root].pFolderName->u16Size;
130 return &FolderMapping[root].pFolderName->String.ucs2[0];
131}
132
133int vbsfMappingsQuery (SHFLCLIENTDATA *pClient, SHFLMAPPING *pMappings, uint32_t *pcMappings)
134{
135 int rc = VINF_SUCCESS;
136 uint32_t cMaxMappings = RT_MIN(*pcMappings, SHFL_MAX_MAPPINGS);
137
138 LogFlow(("vbsfMappingsQuery: pClient = %p, pMappings = %p, pcMappings = %p, *pcMappings = %d\n",
139 pClient, pMappings, pcMappings, *pcMappings));
140
141 *pcMappings = 0;
142 for (uint32_t i=0;i<cMaxMappings;i++)
143 {
144 if (FolderMapping[i].fValid == true)
145 {
146 pMappings[*pcMappings].u32Status = SHFL_MS_NEW;
147 pMappings[*pcMappings].root = i;
148 *pcMappings = *pcMappings + 1;
149 }
150 }
151
152 LogFlow(("vbsfMappingsQuery: return rc = %Vrc\n", rc));
153
154 return rc;
155}
156
157int vbsfMappingsQueryName (SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLSTRING *pString)
158{
159 int rc = VINF_SUCCESS;
160
161 LogFlow(("vbsfMappingsQuery: pClient = %p, root = %d, *pString = %p\n",
162 pClient, root, pString));
163
164 if (root >= SHFL_MAX_MAPPINGS)
165 return VERR_INVALID_PARAMETER;
166
167 if (BIT_FLAG(pClient->fu32Flags, SHFL_CF_UTF8))
168 {
169 /* not implemented */
170 AssertFailed();
171 return VERR_INVALID_PARAMETER;
172 }
173
174 if (FolderMapping[root].fValid == true)
175 {
176 pString->u16Length = FolderMapping[root].pMapName->u16Length;
177 memcpy(pString->String.ucs2, FolderMapping[root].pMapName->String.ucs2, pString->u16Size);
178 }
179 else
180 rc = VERR_FILE_NOT_FOUND;
181
182 LogFlow(("vbsfMappingsQuery:Name return rc = %Vrc\n", rc));
183
184 return rc;
185}
186
187static int vbsfQueryMappingIndex (PRTUTF16 utf16Name, size_t *pIndex)
188{
189 size_t i;
190
191 for (i=0;i<SHFL_MAX_MAPPINGS;i++)
192 {
193 if (FolderMapping[i].fValid == true)
194 {
195 if (!RTUtf16LocaleICmp(FolderMapping[i].pMapName->String.ucs2, utf16Name))
196 {
197 *pIndex = i;
198 return 0;
199 }
200 }
201 }
202 return -1;
203}
204
205int vbsfMapFolder (SHFLCLIENTDATA *pClient, PSHFLSTRING pszMapName, RTUCS2 delimiter, SHFLROOT *pRoot)
206{
207 size_t index;
208
209 if (BIT_FLAG(pClient->fu32Flags, SHFL_CF_UTF8))
210 {
211 Log(("vbsfMapFolder %s\n", pszMapName->String.utf8));
212 }
213 else
214 {
215 Log(("vbsfMapFolder %ls\n", pszMapName->String.ucs2));
216 }
217
218 if (pClient->PathDelimiter == 0)
219 {
220 pClient->PathDelimiter = delimiter;
221 }
222 else
223 {
224 Assert(delimiter == pClient->PathDelimiter);
225 }
226
227 if (BIT_FLAG(pClient->fu32Flags, SHFL_CF_UTF8))
228 {
229 int rc;
230 PRTUTF16 utf16Name;
231
232 rc = RTStrToUtf16 ((const char *) pszMapName->String.utf8, &utf16Name);
233 if (VBOX_FAILURE (rc))
234 return rc;
235
236 rc = vbsfQueryMappingIndex (utf16Name, &index);
237 RTUtf16Free (utf16Name);
238
239 if (rc)
240 {
241 // AssertMsgFailed(("vbsfMapFolder: map %s not found!!\n",
242 // pszMapName->String.utf8));
243 return VERR_FILE_NOT_FOUND;
244 }
245 }
246 else
247 {
248 if (vbsfQueryMappingIndex (pszMapName->String.ucs2, &index))
249 {
250 // AssertMsgFailed(("vbsfMapFolder: map %ls not found!!\n",
251 // pszMapName->String.ucs2));
252 return VERR_FILE_NOT_FOUND;
253 }
254 }
255
256 FolderMapping[index].cMappings++;
257 *pRoot = index;
258 return VINF_SUCCESS;
259}
260
261int vbsfUnmapFolder (SHFLCLIENTDATA *pClient, SHFLROOT root)
262{
263 int rc = VINF_SUCCESS;
264
265 if (root > SHFL_MAX_MAPPINGS)
266 {
267 AssertFailed();
268 return VERR_FILE_NOT_FOUND;
269 }
270
271 Assert(FolderMapping[root].fValid == true && FolderMapping[root].cMappings > 0);
272 if (FolderMapping[root].cMappings > 0)
273 FolderMapping[root].cMappings--;
274
275 Log(("vbsfUnmapFolder\n"));
276 return rc;
277}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette