1 | /* $Id: VBoxCredProvPoller.cpp 62679 2016-07-29 12:52:10Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxCredPoller - Thread for querying / retrieving user credentials.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2016 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 <iprt/win/windows.h>
|
---|
23 |
|
---|
24 | #include <VBox/VBoxGuest.h>
|
---|
25 | #include <VBox/VBoxGuestLib.h>
|
---|
26 | #include <VBox/VMMDev.h>
|
---|
27 | #include <iprt/string.h>
|
---|
28 |
|
---|
29 | #include "VBoxCredProvProvider.h"
|
---|
30 |
|
---|
31 | #include "VBoxCredProvCredential.h"
|
---|
32 | #include "VBoxCredProvPoller.h"
|
---|
33 | #include "VBoxCredProvUtils.h"
|
---|
34 |
|
---|
35 |
|
---|
36 | VBoxCredProvPoller::VBoxCredProvPoller(void) :
|
---|
37 | m_hThreadPoller(NIL_RTTHREAD),
|
---|
38 | m_pProv(NULL)
|
---|
39 | {
|
---|
40 | }
|
---|
41 |
|
---|
42 |
|
---|
43 | VBoxCredProvPoller::~VBoxCredProvPoller(void)
|
---|
44 | {
|
---|
45 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Destroying ...\n");
|
---|
46 |
|
---|
47 | Shutdown();
|
---|
48 | }
|
---|
49 |
|
---|
50 |
|
---|
51 | int
|
---|
52 | VBoxCredProvPoller::Initialize(VBoxCredProvProvider *pProvider)
|
---|
53 | {
|
---|
54 | AssertPtrReturn(pProvider, VERR_INVALID_POINTER);
|
---|
55 |
|
---|
56 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Initializing\n");
|
---|
57 |
|
---|
58 | /* Don't create more than one of them. */
|
---|
59 | if (m_hThreadPoller != NIL_RTTHREAD)
|
---|
60 | {
|
---|
61 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Thread already running, returning\n");
|
---|
62 | return VINF_SUCCESS;
|
---|
63 | }
|
---|
64 |
|
---|
65 | if (m_pProv != NULL)
|
---|
66 | m_pProv->Release();
|
---|
67 |
|
---|
68 | m_pProv = pProvider;
|
---|
69 | /*
|
---|
70 | * We must not add a reference via AddRef() here, otherwise
|
---|
71 | * the credential provider does not get destructed properly.
|
---|
72 | * In order to get this thread terminated normally the credential
|
---|
73 | * provider has to call Shutdown().
|
---|
74 | */
|
---|
75 |
|
---|
76 | /* Create the poller thread. */
|
---|
77 | int rc = RTThreadCreate(&m_hThreadPoller, VBoxCredProvPoller::threadPoller, this, 0, RTTHREADTYPE_INFREQUENT_POLLER,
|
---|
78 | RTTHREADFLAGS_WAITABLE, "credpoll");
|
---|
79 | if (RT_FAILURE(rc))
|
---|
80 | VBoxCredProvVerbose(0, "VBoxCredProvPoller::Initialize: Failed to create thread, rc=%Rrc\n", rc);
|
---|
81 |
|
---|
82 | return rc;
|
---|
83 | }
|
---|
84 |
|
---|
85 |
|
---|
86 | int
|
---|
87 | VBoxCredProvPoller::Shutdown(void)
|
---|
88 | {
|
---|
89 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Shutdown\n");
|
---|
90 |
|
---|
91 | if (m_hThreadPoller == NIL_RTTHREAD)
|
---|
92 | return VINF_SUCCESS;
|
---|
93 |
|
---|
94 | /* Post termination event semaphore. */
|
---|
95 | int rc = RTThreadUserSignal(m_hThreadPoller);
|
---|
96 | if (RT_SUCCESS(rc))
|
---|
97 | {
|
---|
98 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Waiting for thread to terminate\n");
|
---|
99 | /* Wait until the thread has terminated. */
|
---|
100 | rc = RTThreadWait(m_hThreadPoller, RT_INDEFINITE_WAIT, NULL);
|
---|
101 | if (RT_FAILURE(rc))
|
---|
102 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Wait returned error rc=%Rrc\n", rc);
|
---|
103 | }
|
---|
104 | else
|
---|
105 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Error waiting for thread shutdown, rc=%Rrc\n", rc);
|
---|
106 |
|
---|
107 | m_pProv = NULL;
|
---|
108 | m_hThreadPoller = NIL_RTTHREAD;
|
---|
109 |
|
---|
110 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Shutdown returned with rc=%Rrc\n", rc);
|
---|
111 | return rc;
|
---|
112 | }
|
---|
113 |
|
---|
114 |
|
---|
115 | /*static*/ DECLCALLBACK(int)
|
---|
116 | VBoxCredProvPoller::threadPoller(RTTHREAD hThreadSelf, void *pvUser)
|
---|
117 | {
|
---|
118 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Starting, pvUser=0x%p\n", pvUser);
|
---|
119 |
|
---|
120 | VBoxCredProvPoller *pThis = (VBoxCredProvPoller*)pvUser;
|
---|
121 | AssertPtr(pThis);
|
---|
122 |
|
---|
123 | for (;;)
|
---|
124 | {
|
---|
125 | int rc;
|
---|
126 | rc = VbglR3CredentialsQueryAvailability();
|
---|
127 | if (RT_FAILURE(rc))
|
---|
128 | {
|
---|
129 | if (rc != VERR_NOT_FOUND)
|
---|
130 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Could not retrieve credentials! rc=%Rc\n", rc);
|
---|
131 | }
|
---|
132 | else
|
---|
133 | {
|
---|
134 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Credentials available, notifying provider\n");
|
---|
135 |
|
---|
136 | if (pThis->m_pProv)
|
---|
137 | pThis->m_pProv->OnCredentialsProvided();
|
---|
138 | }
|
---|
139 |
|
---|
140 | /* Wait a bit. */
|
---|
141 | if (RTThreadUserWait(hThreadSelf, 500) == VINF_SUCCESS)
|
---|
142 | {
|
---|
143 | VBoxCredProvVerbose(0, "VBoxCredProvPoller: Terminating\n");
|
---|
144 | break;
|
---|
145 | }
|
---|
146 | }
|
---|
147 |
|
---|
148 | return VINF_SUCCESS;
|
---|
149 | }
|
---|
150 |
|
---|