1 | /* $Id: VBoxCredProvFactory.cpp 82968 2020-02-04 10:35:17Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxCredentialProvFactory - The VirtualBox Credential Provider Factory.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2020 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 | /*********************************************************************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *********************************************************************************************************************************/
|
---|
22 | #include "VBoxCredentialProvider.h"
|
---|
23 | #include "VBoxCredProvFactory.h"
|
---|
24 | #include "VBoxCredProvProvider.h"
|
---|
25 |
|
---|
26 |
|
---|
27 | /*********************************************************************************************************************************
|
---|
28 | * Internal Functions *
|
---|
29 | *********************************************************************************************************************************/
|
---|
30 | extern HRESULT VBoxCredProvProviderCreate(REFIID interfaceID, void **ppvInterface);
|
---|
31 |
|
---|
32 |
|
---|
33 | VBoxCredProvFactory::VBoxCredProvFactory(void) :
|
---|
34 | m_cRefs(1) /* Start with one instance. */
|
---|
35 | {
|
---|
36 | }
|
---|
37 |
|
---|
38 | VBoxCredProvFactory::~VBoxCredProvFactory(void)
|
---|
39 | {
|
---|
40 | }
|
---|
41 |
|
---|
42 | ULONG
|
---|
43 | VBoxCredProvFactory::AddRef(void)
|
---|
44 | {
|
---|
45 | LONG cRefs = InterlockedIncrement(&m_cRefs);
|
---|
46 | VBoxCredProvVerbose(0, "VBoxCredProvFactory: AddRef: Returning refcount=%ld\n",
|
---|
47 | cRefs);
|
---|
48 | return cRefs;
|
---|
49 | }
|
---|
50 |
|
---|
51 | ULONG
|
---|
52 | VBoxCredProvFactory::Release(void)
|
---|
53 | {
|
---|
54 | LONG cRefs = InterlockedDecrement(&m_cRefs);
|
---|
55 | VBoxCredProvVerbose(0, "VBoxCredProvFactory: Release: Returning refcount=%ld\n",
|
---|
56 | cRefs);
|
---|
57 | if (!cRefs)
|
---|
58 | {
|
---|
59 | VBoxCredProvVerbose(0, "VBoxCredProvFactory: Calling destructor\n");
|
---|
60 | delete this;
|
---|
61 | }
|
---|
62 | return cRefs;
|
---|
63 | }
|
---|
64 |
|
---|
65 | HRESULT
|
---|
66 | VBoxCredProvFactory::QueryInterface(REFIID interfaceID, void **ppvInterface)
|
---|
67 | {
|
---|
68 | VBoxCredProvVerbose(0, "VBoxCredProvFactory: QueryInterface\n");
|
---|
69 |
|
---|
70 | HRESULT hr = S_OK;
|
---|
71 | if (ppvInterface)
|
---|
72 | {
|
---|
73 | if ( IID_IClassFactory == interfaceID
|
---|
74 | || IID_IUnknown == interfaceID)
|
---|
75 | {
|
---|
76 | *ppvInterface = static_cast<IUnknown*>(this);
|
---|
77 | reinterpret_cast<IUnknown*>(*ppvInterface)->AddRef();
|
---|
78 | }
|
---|
79 | else
|
---|
80 | {
|
---|
81 | *ppvInterface = NULL;
|
---|
82 | hr = E_NOINTERFACE;
|
---|
83 | }
|
---|
84 | }
|
---|
85 | else
|
---|
86 | hr = E_INVALIDARG;
|
---|
87 | return hr;
|
---|
88 | }
|
---|
89 |
|
---|
90 | HRESULT
|
---|
91 | VBoxCredProvFactory::CreateInstance(IUnknown *pUnkOuter, REFIID interfaceID, void **ppvInterface)
|
---|
92 | {
|
---|
93 | if (pUnkOuter)
|
---|
94 | return CLASS_E_NOAGGREGATION;
|
---|
95 | return VBoxCredProvProviderCreate(interfaceID, ppvInterface);
|
---|
96 | }
|
---|
97 |
|
---|
98 | HRESULT
|
---|
99 | VBoxCredProvFactory::LockServer(BOOL fLock)
|
---|
100 | {
|
---|
101 | if (fLock)
|
---|
102 | VBoxCredentialProviderAcquire();
|
---|
103 | else
|
---|
104 | VBoxCredentialProviderRelease();
|
---|
105 | return S_OK;
|
---|
106 | }
|
---|
107 |
|
---|