VirtualBox

source: vbox/trunk/src/VBox/Main/FloppyDriveImpl.cpp@ 21503

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

DVD/Floppy: rollback if unmount failed

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.9 KB
Line 
1/* $Id: FloppyDriveImpl.cpp 19511 2009-05-08 07:02:41Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2009 Sun Microsystems, Inc.
10 *
11 * This file is part of VirtualBox Open Source Edition (OSE), as
12 * available from http://www.virtualbox.org. This file is free software;
13 * you can redistribute it and/or modify it under the terms of the GNU
14 * General Public License (GPL) as published by the Free Software
15 * Foundation, in version 2 as it comes in the "COPYING" file of the
16 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
20 * Clara, CA 95054 USA or visit http://www.sun.com if you need
21 * additional information or have any questions.
22 */
23
24#include "FloppyDriveImpl.h"
25
26#include "MachineImpl.h"
27#include "HostImpl.h"
28#include "HostFloppyDriveImpl.h"
29#include "VirtualBoxImpl.h"
30
31#include "Global.h"
32
33#include "Logging.h"
34
35#include <iprt/string.h>
36#include <iprt/cpputils.h>
37
38#include <VBox/settings.h>
39
40// constructor / destructor
41/////////////////////////////////////////////////////////////////////////////
42
43DEFINE_EMPTY_CTOR_DTOR (FloppyDrive)
44
45HRESULT FloppyDrive::FinalConstruct()
46{
47 return S_OK;
48}
49
50void FloppyDrive::FinalRelease()
51{
52 uninit();
53}
54
55// public initializer/uninitializer for internal purposes only
56/////////////////////////////////////////////////////////////////////////////
57
58/**
59 * Initializes the Floppy drive object.
60 *
61 * @param aParent Handle of the parent object.
62 */
63HRESULT FloppyDrive::init (Machine *aParent)
64{
65 LogFlowThisFunc (("aParent=%p\n", aParent));
66
67 ComAssertRet (aParent, E_INVALIDARG);
68
69 /* Enclose the state transition NotReady->InInit->Ready */
70 AutoInitSpan autoInitSpan (this);
71 AssertReturn (autoInitSpan.isOk(), E_FAIL);
72
73 unconst (mParent) = aParent;
74 /* mPeer is left null */
75
76 m.allocate();
77
78 /* Confirm a successful initialization */
79 autoInitSpan.setSucceeded();
80
81 return S_OK;
82}
83
84/**
85 * Initializes the Floppy drive object given another Floppy drive object
86 * (a kind of copy constructor). This object shares data with
87 * the object passed as an argument.
88 *
89 * @note This object must be destroyed before the original object
90 * it shares data with is destroyed.
91 *
92 * @note Locks @a aThat object for reading.
93 */
94HRESULT FloppyDrive::init (Machine *aParent, FloppyDrive *aThat)
95{
96 LogFlowThisFunc (("aParent=%p, aThat=%p\n", aParent, aThat));
97
98 ComAssertRet (aParent && aThat, E_INVALIDARG);
99
100 /* Enclose the state transition NotReady->InInit->Ready */
101 AutoInitSpan autoInitSpan (this);
102 AssertReturn (autoInitSpan.isOk(), E_FAIL);
103
104 unconst (mParent) = aParent;
105 unconst (mPeer) = aThat;
106
107 AutoCaller thatCaller (aThat);
108 AssertComRCReturnRC (thatCaller.rc());
109
110 AutoReadLock thatLock (aThat);
111 m.share (aThat->m);
112
113 /* Confirm a successful initialization */
114 autoInitSpan.setSucceeded();
115
116 return S_OK;
117}
118
119/**
120 * Initializes the guest object given another guest object
121 * (a kind of copy constructor). This object makes a private copy of data
122 * of the original object passed as an argument.
123 *
124 * @note Locks @a aThat object for reading.
125 */
126HRESULT FloppyDrive::initCopy (Machine *aParent, FloppyDrive *aThat)
127{
128 LogFlowThisFunc (("aParent=%p, aThat=%p\n", aParent, aThat));
129
130 ComAssertRet (aParent && aThat, E_INVALIDARG);
131
132 /* Enclose the state transition NotReady->InInit->Ready */
133 AutoInitSpan autoInitSpan (this);
134 AssertReturn (autoInitSpan.isOk(), E_FAIL);
135
136 unconst (mParent) = aParent;
137 /* mPeer is left null */
138
139 AutoCaller thatCaller (aThat);
140 AssertComRCReturnRC (thatCaller.rc());
141
142 AutoReadLock thatLock (aThat);
143 m.attachCopy (aThat->m);
144
145 /* at present, this must be a snapshot machine */
146 Assert (!aParent->snapshotId().isEmpty());
147
148 if (m->state == DriveState_ImageMounted)
149 {
150 /* associate the DVD image media with the snapshot */
151 HRESULT rc = m->image->attachTo (aParent->id(),
152 aParent->snapshotId());
153 AssertComRC (rc);
154 }
155
156 /* Confirm a successful initialization */
157 autoInitSpan.setSucceeded();
158
159 return S_OK;
160}
161
162/**
163 * Uninitializes the instance and sets the ready flag to FALSE.
164 * Called either from FinalRelease() or by the parent when it gets destroyed.
165 */
166void FloppyDrive::uninit()
167{
168 LogFlowThisFunc (("\n"));
169
170 /* Enclose the state transition Ready->InUninit->NotReady */
171 AutoUninitSpan autoUninitSpan (this);
172 if (autoUninitSpan.uninitDone())
173 return;
174
175 if ((mParent->type() == Machine::IsMachine ||
176 mParent->type() == Machine::IsSnapshotMachine) &&
177 m->state == DriveState_ImageMounted)
178 {
179 /* Deassociate the DVD image (only when mParent is a real Machine or a
180 * SnapshotMachine instance; SessionMachine instances
181 * refer to real Machine hard disks). This is necessary for a clean
182 * re-initialization of the VM after successfully re-checking the
183 * accessibility state. */
184 HRESULT rc = m->image->detachFrom (mParent->id(),
185 mParent->snapshotId());
186 AssertComRC (rc);
187 }
188
189 m.free();
190
191 unconst (mPeer).setNull();
192 unconst (mParent).setNull();
193}
194
195// IFloppyDrive properties
196/////////////////////////////////////////////////////////////////////////////
197
198STDMETHODIMP FloppyDrive::COMGETTER(Enabled) (BOOL *aEnabled)
199{
200 CheckComArgOutPointerValid(aEnabled);
201
202 AutoCaller autoCaller (this);
203 CheckComRCReturnRC (autoCaller.rc());
204
205 AutoReadLock alock (this);
206
207 *aEnabled = m->enabled;
208
209 return S_OK;
210}
211
212STDMETHODIMP FloppyDrive::COMSETTER(Enabled) (BOOL aEnabled)
213{
214 LogFlowThisFunc (("aEnabled=%RTbool\n", aEnabled));
215
216 AutoCaller autoCaller (this);
217 CheckComRCReturnRC (autoCaller.rc());
218
219 /* the machine needs to be mutable */
220 Machine::AutoMutableStateDependency adep (mParent);
221 CheckComRCReturnRC (adep.rc());
222
223 AutoWriteLock alock (this);
224
225 if (m->enabled != aEnabled)
226 {
227 m.backup();
228 m->enabled = aEnabled;
229
230 /* leave the lock before informing callbacks */
231 alock.unlock();
232
233 mParent->onFloppyDriveChange();
234 }
235
236 return S_OK;
237}
238
239STDMETHODIMP FloppyDrive::COMGETTER(State) (DriveState_T *aState)
240{
241 CheckComArgOutPointerValid(aState);
242
243 AutoCaller autoCaller (this);
244 CheckComRCReturnRC (autoCaller.rc());
245
246 AutoReadLock alock (this);
247
248 *aState = m->state;
249
250 return S_OK;
251}
252
253// IFloppyDrive methods
254/////////////////////////////////////////////////////////////////////////////
255
256STDMETHODIMP FloppyDrive::MountImage (IN_BSTR aImageId)
257{
258 Guid imageId(aImageId);
259 CheckComArgExpr(aImageId, !imageId.isEmpty());
260
261 AutoCaller autoCaller (this);
262 CheckComRCReturnRC (autoCaller.rc());
263
264 /* the machine needs to be mutable */
265 Machine::AutoMutableStateDependency adep (mParent);
266 CheckComRCReturnRC (adep.rc());
267
268 AutoWriteLock alock (this);
269
270 HRESULT rc = E_FAIL;
271
272 /* Our lifetime is bound to mParent's lifetime, so we don't add caller.
273 * We also don't lock mParent since its mParent field is const. */
274
275 ComObjPtr<FloppyImage> image;
276 rc = mParent->virtualBox()->findFloppyImage(&imageId, NULL,
277 true /* aSetError */, &image);
278
279 if (SUCCEEDED (rc))
280 {
281 if (m->state != DriveState_ImageMounted ||
282 !m->image.equalsTo (image))
283 {
284 rc = image->attachTo (mParent->id(), mParent->snapshotId());
285 if (SUCCEEDED (rc))
286 {
287 /* umount() will backup data */
288 rc = unmount();
289
290 if (SUCCEEDED (rc))
291 {
292 /* lock the image for reading if the VM is online. It will
293 * be unlocked either when unmounted from this drive or by
294 * SessionMachine::setMachineState() when the VM is
295 * terminated */
296 if (Global::IsOnline (adep.machineState()))
297 rc = image->LockRead (NULL);
298 }
299
300 if (SUCCEEDED (rc))
301 {
302 m->image = image;
303 m->state = DriveState_ImageMounted;
304
305 /* leave the lock before informing callbacks */
306 alock.unlock();
307
308 mParent->onFloppyDriveChange();
309 }
310 }
311 }
312 }
313
314 return rc;
315}
316
317STDMETHODIMP FloppyDrive::CaptureHostDrive (IHostFloppyDrive *aHostFloppyDrive)
318{
319 CheckComArgNotNull(aHostFloppyDrive);
320
321 AutoCaller autoCaller (this);
322 CheckComRCReturnRC (autoCaller.rc());
323
324 /* the machine needs to be mutable */
325 Machine::AutoMutableStateDependency adep (mParent);
326 CheckComRCReturnRC (adep.rc());
327
328 AutoWriteLock alock (this);
329
330 if (m->state != DriveState_HostDriveCaptured ||
331 !m->hostDrive.equalsTo (aHostFloppyDrive))
332 {
333 /* umount() will backup data */
334 HRESULT rc = unmount();
335 if (SUCCEEDED (rc))
336 {
337 m->hostDrive = aHostFloppyDrive;
338 m->state = DriveState_HostDriveCaptured;
339
340 /* leave the lock before informing callbacks */
341 alock.unlock();
342
343 mParent->onFloppyDriveChange();
344 }
345 }
346
347 return S_OK;
348}
349
350STDMETHODIMP FloppyDrive::Unmount()
351{
352 AutoCaller autoCaller (this);
353 CheckComRCReturnRC (autoCaller.rc());
354
355 /* the machine needs to be mutable */
356 Machine::AutoMutableStateDependency adep (mParent);
357 CheckComRCReturnRC (adep.rc());
358
359 AutoWriteLock alock (this);
360
361 if (m->state != DriveState_NotMounted)
362 {
363 /* umount() will backup data */
364 HRESULT rc = unmount();
365 if (SUCCEEDED (rc))
366 {
367 m->state = DriveState_NotMounted;
368
369 /* leave the lock before informing callbacks */
370 alock.unlock();
371
372 rc = mParent->onFloppyDriveChange();
373 if (FAILED (rc))
374 rollback();
375 }
376 }
377
378 return S_OK;
379}
380
381STDMETHODIMP FloppyDrive::GetImage(IFloppyImage **aFloppyImage)
382{
383 CheckComArgOutPointerValid(aFloppyImage);
384
385 AutoCaller autoCaller (this);
386 CheckComRCReturnRC (autoCaller.rc());
387
388 AutoReadLock alock (this);
389
390 m->image.queryInterfaceTo (aFloppyImage);
391
392 return S_OK;
393}
394
395STDMETHODIMP FloppyDrive::GetHostDrive (IHostFloppyDrive **aHostDrive)
396{
397 CheckComArgOutPointerValid(aHostDrive);
398
399 AutoCaller autoCaller (this);
400 CheckComRCReturnRC (autoCaller.rc());
401
402 AutoReadLock alock (this);
403
404 m->hostDrive.queryInterfaceTo (aHostDrive);
405
406 return S_OK;
407}
408
409// public methods only for internal purposes
410/////////////////////////////////////////////////////////////////////////////
411
412/**
413 * Loads settings from the given machine node. May be called once right after
414 * this object creation.
415 *
416 * @param aMachineNode <Machine> node.
417 *
418 * @note Locks this object for writing.
419 */
420HRESULT FloppyDrive::loadSettings (const settings::Key &aMachineNode)
421{
422 using namespace settings;
423
424 AssertReturn (!aMachineNode.isNull(), E_FAIL);
425
426 AutoCaller autoCaller (this);
427 AssertComRCReturnRC (autoCaller.rc());
428
429 AutoWriteLock alock (this);
430
431 /* Note: we assume that the default values for attributes of optional
432 * nodes are assigned in the Data::Data() constructor and don't do it
433 * here. It implies that this method may only be called after constructing
434 * a new BIOSSettings object while all its data fields are in the default
435 * values. Exceptions are fields whose creation time defaults don't match
436 * values that should be applied when these fields are not explicitly set
437 * in the settings file (for backwards compatibility reasons). This takes
438 * place when a setting of a newly created object must default to A while
439 * the same setting of an object loaded from the old settings file must
440 * default to B. */
441
442 HRESULT rc = S_OK;
443
444 /* Floppy drive (required, contains either Image or HostDrive or nothing) */
445 Key floppyDriveNode = aMachineNode.key ("FloppyDrive");
446
447 /* optional, defaults to true */
448 m->enabled = floppyDriveNode.value <bool> ("enabled");
449
450 Key typeNode;
451
452 if (!(typeNode = floppyDriveNode.findKey ("Image")).isNull())
453 {
454 Guid uuid = typeNode.value <Guid> ("uuid");
455 rc = MountImage (uuid.toUtf16());
456 CheckComRCReturnRC (rc);
457 }
458 else if (!(typeNode = floppyDriveNode.findKey ("HostDrive")).isNull())
459 {
460
461 Bstr src = typeNode.stringValue ("src");
462
463 /* find the corresponding object */
464 ComObjPtr <Host> host = mParent->virtualBox()->host();
465
466 com::SafeIfaceArray <IHostFloppyDrive> coll;
467 rc = host->COMGETTER(FloppyDrives) (ComSafeArrayAsOutParam(coll));
468 AssertComRC (rc);
469
470 ComPtr <IHostFloppyDrive> drive;
471 rc = host->FindHostFloppyDrive (src, drive.asOutParam());
472
473 if (SUCCEEDED (rc))
474 {
475 rc = CaptureHostDrive (drive);
476 CheckComRCReturnRC (rc);
477 }
478 else if (rc == E_INVALIDARG)
479 {
480 /* the host DVD drive is not currently available. we
481 * assume it will be available later and create an
482 * extra object now */
483 ComObjPtr <HostFloppyDrive> hostDrive;
484 hostDrive.createObject();
485 rc = hostDrive->init (src);
486 AssertComRC (rc);
487 rc = CaptureHostDrive (hostDrive);
488 CheckComRCReturnRC (rc);
489 }
490 else
491 AssertComRC (rc);
492 }
493
494 return S_OK;
495}
496
497/**
498 * Saves settings to the given machine node.
499 *
500 * @param aMachineNode <Machine> node.
501 *
502 * @note Locks this object for reading.
503 */
504HRESULT FloppyDrive::saveSettings (settings::Key &aMachineNode)
505{
506 using namespace settings;
507
508 AssertReturn (!aMachineNode.isNull(), E_FAIL);
509
510 AutoCaller autoCaller (this);
511 AssertComRCReturnRC (autoCaller.rc());
512
513 AutoReadLock alock (this);
514
515 Key node = aMachineNode.createKey ("FloppyDrive");
516
517 node.setValue <bool> ("enabled", !!m->enabled);
518
519 switch (m->state)
520 {
521 case DriveState_ImageMounted:
522 {
523 Assert (!m->image.isNull());
524
525 Bstr id;
526 HRESULT rc = m->image->COMGETTER(Id) (id.asOutParam());
527 AssertComRC (rc);
528 Assert (!id.isEmpty());
529
530 Key imageNode = node.createKey ("Image");
531 imageNode.setValue <Guid> ("uuid", Guid(id));
532 break;
533 }
534 case DriveState_HostDriveCaptured:
535 {
536 Assert (!m->hostDrive.isNull());
537
538 Bstr name;
539 HRESULT rc = m->hostDrive->COMGETTER(Name) (name.asOutParam());
540 AssertComRC (rc);
541 Assert (!name.isEmpty());
542
543 Key hostDriveNode = node.createKey ("HostDrive");
544 hostDriveNode.setValue <Bstr> ("src", name);
545 break;
546 }
547 case DriveState_NotMounted:
548 /* do nothing, i.e.leave the drive node empty */
549 break;
550 default:
551 ComAssertMsgFailedRet (("Invalid drive state: %d", m->state),
552 E_FAIL);
553 }
554
555 return S_OK;
556}
557
558/**
559 * @note Locks this object for writing.
560 */
561bool FloppyDrive::rollback()
562{
563 /* sanity */
564 AutoCaller autoCaller (this);
565 AssertComRCReturn (autoCaller.rc(), false);
566
567 /* we need adep for the state check */
568 Machine::AutoAnyStateDependency adep (mParent);
569 AssertComRCReturn (adep.rc(), false);
570
571 AutoWriteLock alock (this);
572
573 bool changed = false;
574
575 if (m.isBackedUp())
576 {
577 /* we need to check all data to see whether anything will be changed
578 * after rollback */
579 changed = m.hasActualChanges();
580
581 if (changed)
582 {
583 Data *oldData = m.backedUpData();
584
585 if (!m->image.isNull() &&
586 !oldData->image.equalsTo (m->image))
587 {
588 /* detach the current image that will go away after rollback */
589 m->image->detachFrom (mParent->id(), mParent->snapshotId());
590
591 /* unlock the image for reading if the VM is online */
592 if (Global::IsOnline (adep.machineState()))
593 {
594 HRESULT rc = m->image->UnlockRead (NULL);
595 AssertComRC (rc);
596 }
597 }
598
599 if (!oldData->image.isNull() &&
600 !oldData->image.equalsTo (m->image))
601 {
602 /* Reattach from the old image. */
603 HRESULT rc = oldData->image->attachTo(mParent->id(), mParent->snapshotId());
604 AssertComRC (rc);
605 if (Global::IsOnline (adep.machineState()))
606 {
607 /* Lock from the old image. */
608 rc = oldData->image->LockRead (NULL);
609 AssertComRC (rc);
610 }
611 }
612
613 }
614
615 m.rollback();
616 }
617
618 return changed;
619}
620
621/**
622 * @note Locks this object for writing, together with the peer object (also for
623 * writing) if there is one.
624 */
625void FloppyDrive::commit()
626{
627 /* sanity */
628 AutoCaller autoCaller (this);
629 AssertComRCReturnVoid (autoCaller.rc());
630
631 /* sanity too */
632 AutoCaller peerCaller (mPeer);
633 AssertComRCReturnVoid (peerCaller.rc());
634
635 /* lock both for writing since we modify both (mPeer is "master" so locked
636 * first) */
637 AutoMultiWriteLock2 alock (mPeer, this);
638
639 if (m.isBackedUp())
640 {
641 m.commit();
642 if (mPeer)
643 {
644 /* attach new data to the peer and reshare it */
645 mPeer->m.attach (m);
646 }
647 }
648}
649
650/**
651 * @note Locks this object for writing, together with the peer object (locked
652 * for reading) if there is one.
653 */
654void FloppyDrive::copyFrom (FloppyDrive *aThat)
655{
656 /* sanity */
657 AutoCaller autoCaller (this);
658 AssertComRCReturnVoid (autoCaller.rc());
659
660 /* sanity too */
661 AutoCaller thatCaller (aThat);
662 AssertComRCReturnVoid (thatCaller.rc());
663
664 /* peer is not modified, lock it for reading (aThat is "master" so locked
665 * first) */
666 AutoMultiLock2 alock (aThat->rlock(), this->wlock());
667
668 /* this will back up current data */
669 m.assignCopy (aThat->m);
670}
671
672/**
673 * Helper to unmount a drive.
674 *
675 * @note Must be called from under this object's write lock.
676 */
677HRESULT FloppyDrive::unmount()
678{
679 AssertReturn (isWriteLockOnCurrentThread(), E_FAIL);
680
681 /* we need adep for the state check */
682 Machine::AutoAnyStateDependency adep (mParent);
683 AssertComRCReturn (adep.rc(), E_FAIL);
684
685 if (!m->image.isNull())
686 {
687 HRESULT rc = m->image->detachFrom (mParent->id(), mParent->snapshotId());
688 AssertComRC (rc);
689 if (Global::IsOnline (adep.machineState()))
690 {
691 rc = m->image->UnlockRead (NULL);
692 AssertComRC (rc);
693 }
694 }
695
696 m.backup();
697
698 if (m->image)
699 m->image.setNull();
700 if (m->hostDrive)
701 m->hostDrive.setNull();
702
703 m->state = DriveState_NotMounted;
704
705 return S_OK;
706}
707
708// private methods
709/////////////////////////////////////////////////////////////////////////////
710
711/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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