1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox HDD container maintenance/conversion utility
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2011 Oracle Corporation
|
---|
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 |
|
---|
18 | /*******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #include <VBox/vd.h>
|
---|
22 | #include <iprt/alloc.h>
|
---|
23 | #include <iprt/file.h>
|
---|
24 | #include <iprt/stream.h>
|
---|
25 | #include <iprt/string.h>
|
---|
26 | #include <iprt/initterm.h>
|
---|
27 | #include <VBox/err.h>
|
---|
28 | #include <VBox/log.h>
|
---|
29 |
|
---|
30 | #include <stdlib.h>
|
---|
31 |
|
---|
32 |
|
---|
33 |
|
---|
34 | static void ascii2upper(char *psz)
|
---|
35 | {
|
---|
36 | for (;*psz; psz++)
|
---|
37 | if (*psz >= 'a' && *psz <= 'z')
|
---|
38 | *psz += 'A' - 'a';
|
---|
39 | }
|
---|
40 |
|
---|
41 | static int UsageExit()
|
---|
42 | {
|
---|
43 | RTPrintf("Usage: vditool <Command> [Params]\n"
|
---|
44 | "Commands and params:\n"
|
---|
45 | " NEW Filename Mbytes - create new image\n"
|
---|
46 | #if 0
|
---|
47 | " DD Filename DDFilename - create new image from DD format image\n"
|
---|
48 | " CONVERT Filename - convert VDI image from old format\n"
|
---|
49 | " DUMP Filename - debug dump\n"
|
---|
50 | " RESETGEO Filename - reset geometry information\n"
|
---|
51 | " COPY FromImage ToImage - make image copy\n"
|
---|
52 | " COPYDD FromImage DDFilename - make a DD copy of the image\n"
|
---|
53 | " SHRINK Filename - optimize (reduce) VDI image size\n"
|
---|
54 | #endif
|
---|
55 | );
|
---|
56 | return 1;
|
---|
57 | }
|
---|
58 |
|
---|
59 | static int SyntaxError(const char *pszMsg)
|
---|
60 | {
|
---|
61 | RTPrintf("Syntax error: %s\n\n", pszMsg);
|
---|
62 | UsageExit();
|
---|
63 | return 1;
|
---|
64 | }
|
---|
65 |
|
---|
66 | /**
|
---|
67 | * Our internal functions use UTF8
|
---|
68 | */
|
---|
69 | static int FilenameToUtf8(char **pszUtf8Filename, const char *pszFilename)
|
---|
70 | {
|
---|
71 | int rc = RTStrCurrentCPToUtf8(pszUtf8Filename, pszFilename);
|
---|
72 | if (RT_FAILURE(rc))
|
---|
73 | RTPrintf("Error converting filename '%s' to UTF8! (rc=%Rrc)\n",
|
---|
74 | pszFilename, rc);
|
---|
75 | return rc;
|
---|
76 | }
|
---|
77 |
|
---|
78 | /**
|
---|
79 | * Prints a done message indicating success or failure.
|
---|
80 | * @returns rc
|
---|
81 | * @param rc Status code.
|
---|
82 | */
|
---|
83 | static int PrintDone(int rc)
|
---|
84 | {
|
---|
85 | if (rc == VINF_SUCCESS)
|
---|
86 | RTPrintf("The operation completed successfully!\n");
|
---|
87 | else if (RT_SUCCESS(rc))
|
---|
88 | RTPrintf("The operation completed successfully! (rc=%Rrc)\n", rc);
|
---|
89 | else
|
---|
90 | RTPrintf("FAILURE: %Rrf (%Rrc)\n", rc, rc);
|
---|
91 | return rc;
|
---|
92 | }
|
---|
93 |
|
---|
94 | static int NewImage(const char *pszFilename, uint32_t cMBs)
|
---|
95 | {
|
---|
96 | RTPrintf("Creating VDI: file=\"%s\" size=%u MB...\n",
|
---|
97 | pszFilename, cMBs);
|
---|
98 |
|
---|
99 | /* translate argv[] to UTF8 */
|
---|
100 | char *pszUtf8Filename;
|
---|
101 | int rc = FilenameToUtf8(&pszUtf8Filename, pszFilename);
|
---|
102 | if (RT_FAILURE(rc))
|
---|
103 | return rc;
|
---|
104 |
|
---|
105 | PVBOXHDD hdd;
|
---|
106 | rc = VDCreate(NULL, VDTYPE_HDD, &hdd);
|
---|
107 | if (RT_FAILURE(rc))
|
---|
108 | return PrintDone(rc);
|
---|
109 |
|
---|
110 | VDGEOMETRY geo = { 0, 0, 0 }; /* auto-detect */
|
---|
111 | rc = VDCreateBase(hdd, "vdi", pszUtf8Filename,
|
---|
112 | (uint64_t)cMBs * _1M,
|
---|
113 | VD_IMAGE_FLAGS_NONE,
|
---|
114 | "Newly created test image",
|
---|
115 | &geo, &geo, NULL,
|
---|
116 | VD_OPEN_FLAGS_NORMAL,
|
---|
117 | NULL, NULL);
|
---|
118 | return PrintDone(rc);
|
---|
119 | }
|
---|
120 |
|
---|
121 | #if 0
|
---|
122 | static int ConvertDDImage(const char *pszFilename, const char *pszDDFilename)
|
---|
123 | {
|
---|
124 | RTPrintf("Converting VDI: from DD image file=\"%s\" to file=\"%s\"...\n",
|
---|
125 | pszDDFilename, pszFilename);
|
---|
126 |
|
---|
127 | /* translate argv[] to UTF8 */
|
---|
128 | char *pszUtf8Filename, *pszUtf8DDFilename;
|
---|
129 | int rc = FilenameToUtf8(&pszUtf8Filename, pszFilename);
|
---|
130 | if (RT_FAILURE(rc))
|
---|
131 | return rc;
|
---|
132 | rc = FilenameToUtf8(&pszUtf8DDFilename, pszDDFilename);
|
---|
133 | if (RT_FAILURE(rc))
|
---|
134 | return rc;
|
---|
135 |
|
---|
136 | /* open raw image file. */
|
---|
137 | RTFILE File;
|
---|
138 | rc = RTFileOpen(&File, pszUtf8DDFilename, RTFILE_O_OPEN | RTFILE_O_READ | RTFILE_O_DENY_WRITE);
|
---|
139 | if (RT_FAILURE(rc))
|
---|
140 | {
|
---|
141 | RTPrintf("File=\"%s\" open error: %Rrf\n", pszDDFilename, rc);
|
---|
142 | return rc;
|
---|
143 | }
|
---|
144 |
|
---|
145 | /* get image size. */
|
---|
146 | uint64_t cbFile;
|
---|
147 | rc = RTFileGetSize(File, &cbFile);
|
---|
148 | if (RT_SUCCESS(rc))
|
---|
149 | {
|
---|
150 | RTPrintf("Creating fixed image with size %u Bytes...\n", (unsigned)cbFile);
|
---|
151 | rc = VDICreateBaseImage(pszUtf8Filename,
|
---|
152 | VDI_IMAGE_TYPE_FIXED,
|
---|
153 | cbFile,
|
---|
154 | "Converted from DD test image", NULL, NULL);
|
---|
155 | PrintDone(rc);
|
---|
156 | if (RT_SUCCESS(rc))
|
---|
157 | {
|
---|
158 | RTPrintf("Writing data...\n");
|
---|
159 | PVDIDISK pVdi = VDIDiskCreate();
|
---|
160 | rc = VDIDiskOpenImage(pVdi, pszUtf8Filename, VDI_OPEN_FLAGS_NORMAL);
|
---|
161 | if (RT_SUCCESS(rc))
|
---|
162 | {
|
---|
163 | /* alloc work buffer. */
|
---|
164 | void *pvBuf = RTMemAlloc(VDIDiskGetBufferSize(pVdi));
|
---|
165 | if (pvBuf)
|
---|
166 | {
|
---|
167 | uint64_t off = 0;
|
---|
168 | while (off < cbFile)
|
---|
169 | {
|
---|
170 | size_t cbRead = 0;
|
---|
171 | rc = RTFileRead(File, pvBuf, VDIDiskGetBufferSize(pVdi), &cbRead);
|
---|
172 | if (RT_FAILURE(rc) || !cbRead)
|
---|
173 | break;
|
---|
174 | rc = VDIDiskWrite(pVdi, off, pvBuf, cbRead);
|
---|
175 | if (RT_FAILURE(rc))
|
---|
176 | break;
|
---|
177 | off += cbRead;
|
---|
178 | }
|
---|
179 |
|
---|
180 | RTMemFree(pvBuf);
|
---|
181 | }
|
---|
182 | else
|
---|
183 | rc = VERR_NO_MEMORY;
|
---|
184 |
|
---|
185 | VDIDiskCloseImage(pVdi);
|
---|
186 | }
|
---|
187 |
|
---|
188 | if (RT_FAILURE(rc))
|
---|
189 | {
|
---|
190 | /* delete image on error */
|
---|
191 | VDIDeleteImage(pszUtf8Filename);
|
---|
192 | }
|
---|
193 | PrintDone(rc);
|
---|
194 | }
|
---|
195 | }
|
---|
196 | RTFileClose(File);
|
---|
197 |
|
---|
198 | return rc;
|
---|
199 | }
|
---|
200 | #endif
|
---|
201 |
|
---|
202 | #if 0
|
---|
203 | static DECLCALLBACK(int) ProcessCallback(PVM pVM, unsigned uPercent, void *pvUser)
|
---|
204 | {
|
---|
205 | unsigned *pPercent = (unsigned *)pvUser;
|
---|
206 |
|
---|
207 | if (*pPercent != uPercent)
|
---|
208 | {
|
---|
209 | *pPercent = uPercent;
|
---|
210 | RTPrintf(".");
|
---|
211 | if ((uPercent % 10) == 0 && uPercent)
|
---|
212 | RTPrintf("%d%%", uPercent);
|
---|
213 | RTStrmFlush(g_pStdOut);
|
---|
214 | }
|
---|
215 |
|
---|
216 | return VINF_SUCCESS;
|
---|
217 | }
|
---|
218 | #endif
|
---|
219 |
|
---|
220 | #if 0
|
---|
221 | static int ConvertOldImage(const char *pszFilename)
|
---|
222 | {
|
---|
223 | RTPrintf("Converting VDI image file=\"%s\" to a new format...\n"
|
---|
224 | "progress: 0%%",
|
---|
225 | pszFilename);
|
---|
226 |
|
---|
227 | /* translate argv[] to UTF8 */
|
---|
228 | char *pszUtf8Filename;
|
---|
229 | int rc = FilenameToUtf8(&pszUtf8Filename, pszFilename);
|
---|
230 | if (RT_FAILURE(rc))
|
---|
231 | return rc;
|
---|
232 |
|
---|
233 | unsigned uPercent = 0;
|
---|
234 | rc = VDIConvertImage(pszUtf8Filename, ProcessCallback, &uPercent);
|
---|
235 | RTPrintf("\n");
|
---|
236 | return PrintDone(rc);
|
---|
237 | }
|
---|
238 | #endif
|
---|
239 |
|
---|
240 | #if 0
|
---|
241 | static int DumpImage(const char *pszFilename)
|
---|
242 | {
|
---|
243 | RTPrintf("Dumping VDI image file=\"%s\" into the log file...\n", pszFilename);
|
---|
244 | PVDIDISK pVdi = VDIDiskCreate();
|
---|
245 |
|
---|
246 | /* translate argv[] to UTF8 */
|
---|
247 | char *pszUtf8Filename;
|
---|
248 | int rc = FilenameToUtf8(&pszUtf8Filename, pszFilename);
|
---|
249 | if (RT_FAILURE(rc))
|
---|
250 | return rc;
|
---|
251 | rc = VDIDiskOpenImage(pVdi, pszUtf8Filename, VDI_OPEN_FLAGS_READONLY);
|
---|
252 | if (RT_SUCCESS(rc))
|
---|
253 | {
|
---|
254 | VDIDiskDumpImages(pVdi);
|
---|
255 | VDIDiskCloseAllImages(pVdi);
|
---|
256 | }
|
---|
257 | return PrintDone(rc);
|
---|
258 | }
|
---|
259 | #endif
|
---|
260 |
|
---|
261 | #if 0
|
---|
262 | static int ResetImageGeometry(const char *pszFilename)
|
---|
263 | {
|
---|
264 | RTPrintf("Resetting geometry info of VDI image file=\"%s\"\n", pszFilename);
|
---|
265 | PVDIDISK pVdi = VDIDiskCreate();
|
---|
266 |
|
---|
267 | /* translate argv[] to UTF8 */
|
---|
268 | char *pszUtf8Filename;
|
---|
269 | int rc = FilenameToUtf8(&pszUtf8Filename, pszFilename);
|
---|
270 | if (RT_FAILURE(rc))
|
---|
271 | return rc;
|
---|
272 |
|
---|
273 | rc = VDIDiskOpenImage(pVdi, pszUtf8Filename, VDI_OPEN_FLAGS_NORMAL);
|
---|
274 | if (RT_SUCCESS(rc))
|
---|
275 | {
|
---|
276 | VDGEOMETRY LCHSGeometry = {0, 0, 0};
|
---|
277 | rc = VDIDiskSetLCHSGeometry(pVdi, &LCHSGeometry);
|
---|
278 | }
|
---|
279 | VDIDiskCloseImage(pVdi);
|
---|
280 | return PrintDone(rc);
|
---|
281 | }
|
---|
282 | #endif
|
---|
283 |
|
---|
284 | #if 0
|
---|
285 | static int CopyImage(const char *pszDstFile, const char *pszSrcFile)
|
---|
286 | {
|
---|
287 | RTPrintf("Copying VDI image file=\"%s\" to image file=\"%s\"...\n"
|
---|
288 | "progress: 0%%",
|
---|
289 | pszSrcFile, pszDstFile);
|
---|
290 |
|
---|
291 | /* translate argv[] to UTF8 */
|
---|
292 | char *pszUtf8SrcFile, *pszUtf8DstFile;
|
---|
293 | int rc = FilenameToUtf8(&pszUtf8SrcFile, pszSrcFile);
|
---|
294 | if (RT_FAILURE(rc))
|
---|
295 | return rc;
|
---|
296 | rc = FilenameToUtf8(&pszUtf8DstFile, pszDstFile);
|
---|
297 | if (RT_FAILURE(rc))
|
---|
298 | return rc;
|
---|
299 |
|
---|
300 | unsigned uPrecent = 0;
|
---|
301 | rc = VDICopyImage(pszUtf8DstFile, pszUtf8SrcFile, NULL, ProcessCallback, &uPrecent);
|
---|
302 | RTPrintf("\n");
|
---|
303 | return PrintDone(rc);
|
---|
304 | }
|
---|
305 | #endif
|
---|
306 |
|
---|
307 | #if 0
|
---|
308 | static int CopyToDD(const char *pszDstFile, const char *pszSrcFile)
|
---|
309 | {
|
---|
310 | RTPrintf("Copying VDI image file=\"%s\" to DD file=\"%s\"...\n",
|
---|
311 | pszSrcFile, pszDstFile);
|
---|
312 | PVDIDISK pVdi = VDIDiskCreate();
|
---|
313 |
|
---|
314 | /* translate argv[] to UTF8 */
|
---|
315 | char *pszUtf8SrcFile, *pszUtf8DstFile;
|
---|
316 | int rc = FilenameToUtf8(&pszUtf8SrcFile, pszSrcFile);
|
---|
317 | if (RT_FAILURE(rc))
|
---|
318 | return rc;
|
---|
319 | rc = FilenameToUtf8(&pszUtf8DstFile, pszDstFile);
|
---|
320 | if (RT_FAILURE(rc))
|
---|
321 | return rc;
|
---|
322 |
|
---|
323 | rc = VDIDiskOpenImage(pVdi, pszUtf8SrcFile, VDI_OPEN_FLAGS_NORMAL);
|
---|
324 | if (RT_SUCCESS(rc))
|
---|
325 | {
|
---|
326 | RTFILE FileDst;
|
---|
327 | rc = RTFileOpen(&FileDst, pszUtf8DstFile, RTFILE_O_CREATE | RTFILE_O_READWRITE | RTFILE_O_DENY_WRITE);
|
---|
328 | if (RT_SUCCESS(rc))
|
---|
329 | {
|
---|
330 | uint64_t cbSrc = VDIDiskGetSize(pVdi);
|
---|
331 | const unsigned cbBuf = VDIDiskGetBlockSize(pVdi); /* or perhaps VDIDiskGetBufferSize(pVdi)? */
|
---|
332 | void *pvBuf = RTMemAlloc(cbBuf);
|
---|
333 | if (pvBuf)
|
---|
334 | {
|
---|
335 | uint64_t off = 0;
|
---|
336 | while (off < cbSrc)
|
---|
337 | {
|
---|
338 | rc = VDIDiskRead(pVdi, off, pvBuf, cbBuf);
|
---|
339 | if (RT_FAILURE(rc))
|
---|
340 | break;
|
---|
341 | rc = RTFileWrite(FileDst, pvBuf, cbBuf, NULL);
|
---|
342 | if (RT_FAILURE(rc))
|
---|
343 | break;
|
---|
344 | off += cbBuf;
|
---|
345 | }
|
---|
346 | RTMemFree(pvBuf);
|
---|
347 | }
|
---|
348 | RTFileClose(FileDst);
|
---|
349 | }
|
---|
350 | }
|
---|
351 | VDIDiskCloseImage(pVdi);
|
---|
352 | return PrintDone(rc);
|
---|
353 | }
|
---|
354 | #endif
|
---|
355 |
|
---|
356 | #if 0
|
---|
357 | static int ShrinkImage(const char *pszFilename)
|
---|
358 | {
|
---|
359 | RTPrintf("Shrinking VDI image file=\"%s\"...\n"
|
---|
360 | "progress: 0%%",
|
---|
361 | pszFilename);
|
---|
362 |
|
---|
363 | /* translate argv[] to UTF8 */
|
---|
364 | char *pszUtf8Filename;
|
---|
365 | int rc = FilenameToUtf8(&pszUtf8Filename, pszFilename);
|
---|
366 | if (RT_FAILURE(rc))
|
---|
367 | return rc;
|
---|
368 |
|
---|
369 | unsigned uPrecent;
|
---|
370 | rc = VDIShrinkImage(pszUtf8Filename, ProcessCallback, &uPrecent);
|
---|
371 | RTPrintf("\n");
|
---|
372 | return PrintDone(rc);
|
---|
373 | }
|
---|
374 | #endif
|
---|
375 |
|
---|
376 | int main(int argc, char **argv)
|
---|
377 | {
|
---|
378 | putenv((char*)"VBOX_LOG_DEST=stdout");
|
---|
379 | putenv((char*)"VBOX_LOG_FLAGS=");
|
---|
380 |
|
---|
381 | RTR3Init();
|
---|
382 | RTPrintf("vditool -- for internal use only!\n"
|
---|
383 | "Copyright (c) 2009 Oracle Corporation\n\n");
|
---|
384 |
|
---|
385 | /*
|
---|
386 | * Do cmd line parsing.
|
---|
387 | */
|
---|
388 | if (argc < 2)
|
---|
389 | return UsageExit();
|
---|
390 |
|
---|
391 | char szCmd[16];
|
---|
392 | if (strlen(argv[1]) >= sizeof(szCmd))
|
---|
393 | return SyntaxError("Invalid command!");
|
---|
394 | strcpy(szCmd, argv[1]);
|
---|
395 | ascii2upper(szCmd);
|
---|
396 |
|
---|
397 | PRTLOGGER pLogger;
|
---|
398 | static const char * const s_apszGroups[] = VBOX_LOGGROUP_NAMES;
|
---|
399 | int rc = RTLogCreate(&pLogger, 0, "all",
|
---|
400 | NULL, RT_ELEMENTS(s_apszGroups), s_apszGroups, RTLOGDEST_STDOUT,
|
---|
401 | NULL /* pfnBeginEnd */, 0 /* cHistory */, 0 /* cbHistoryFileMax */, 0 /* uHistoryTimeMax */,
|
---|
402 | NULL);
|
---|
403 | RTLogRelSetDefaultInstance(pLogger);
|
---|
404 |
|
---|
405 | if (strcmp(szCmd, "NEW") == 0)
|
---|
406 | {
|
---|
407 | if (argc != 4)
|
---|
408 | return SyntaxError("Invalid argument count!");
|
---|
409 |
|
---|
410 | uint32_t cMBs;
|
---|
411 | rc = RTStrToUInt32Ex(argv[3], NULL, 10, &cMBs);
|
---|
412 | if (RT_FAILURE(rc))
|
---|
413 | return SyntaxError("Invalid number!");
|
---|
414 | if (cMBs < 2 || cMBs > _1M)
|
---|
415 | {
|
---|
416 | RTPrintf("error: Disk size %RU32 (MB) is not within the range %u-%u!\n",
|
---|
417 | cMBs, 2, _1M);
|
---|
418 | return 1;
|
---|
419 | }
|
---|
420 |
|
---|
421 | rc = NewImage(argv[2], cMBs);
|
---|
422 | }
|
---|
423 | #if 0
|
---|
424 | else if (strcmp(szCmd, "DD") == 0)
|
---|
425 | {
|
---|
426 | if (argc != 4)
|
---|
427 | return SyntaxError("Invalid argument count!");
|
---|
428 | rc = ConvertDDImage(argv[2], argv[3]);
|
---|
429 | }
|
---|
430 | else if (strcmp(szCmd, "CONVERT") == 0)
|
---|
431 | {
|
---|
432 | if (argc != 3)
|
---|
433 | return SyntaxError("Invalid argument count!");
|
---|
434 | rc = ConvertOldImage(argv[2]);
|
---|
435 | }
|
---|
436 | else if (strcmp(szCmd, "DUMP") == 0)
|
---|
437 | {
|
---|
438 | if (argc != 3)
|
---|
439 | return SyntaxError("Invalid argument count!");
|
---|
440 | rc = DumpImage(argv[2]);
|
---|
441 | }
|
---|
442 | else if (strcmp(szCmd, "RESETGEO") == 0)
|
---|
443 | {
|
---|
444 | if (argc != 3)
|
---|
445 | return SyntaxError("Invalid argument count!");
|
---|
446 | rc = ResetImageGeometry(argv[2]);
|
---|
447 | }
|
---|
448 | else if (strcmp(szCmd, "COPY") == 0)
|
---|
449 | {
|
---|
450 | if (argc != 4)
|
---|
451 | return SyntaxError("Invalid argument count!");
|
---|
452 | rc = CopyImage(argv[3], argv[2]);
|
---|
453 | }
|
---|
454 | else if (strcmp(szCmd, "COPYDD") == 0)
|
---|
455 | {
|
---|
456 | if (argc != 4)
|
---|
457 | return SyntaxError("Invalid argument count!");
|
---|
458 | rc = CopyToDD(argv[3], argv[2]);
|
---|
459 | }
|
---|
460 | else if (strcmp(szCmd, "SHRINK") == 0)
|
---|
461 | {
|
---|
462 | if (argc != 3)
|
---|
463 | return SyntaxError("Invalid argument count!");
|
---|
464 | rc = ShrinkImage(argv[2]);
|
---|
465 | }
|
---|
466 | #endif
|
---|
467 | else
|
---|
468 | return SyntaxError("Invalid command!");
|
---|
469 |
|
---|
470 | RTLogFlush(NULL);
|
---|
471 | return !RT_SUCCESS(rc);
|
---|
472 | }
|
---|