VirtualBox

source: vbox/trunk/src/VBox/Main/src-all/AuthLibrary.cpp

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.5 KB
Line 
1/* $Id: AuthLibrary.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * Main - External authentication library interface.
4 */
5
6/*
7 * Copyright (C) 2015-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#define LOG_GROUP LOG_GROUP_MAIN
29#include "AuthLibrary.h"
30#include "LoggingNew.h"
31
32#include <iprt/err.h>
33#include <iprt/ldr.h>
34#include <iprt/path.h>
35#include <iprt/string.h>
36#include <iprt/thread.h>
37
38typedef struct AuthCtx
39{
40 AuthResult result;
41
42 PAUTHENTRY3 pfnAuthEntry3;
43 PAUTHENTRY2 pfnAuthEntry2;
44 PAUTHENTRY pfnAuthEntry;
45
46 const char *pszCaller;
47 PAUTHUUID pUuid;
48 AuthGuestJudgement guestJudgement;
49 const char *pszUser;
50 const char *pszPassword;
51 const char *pszDomain;
52 int fLogon;
53 unsigned clientId;
54} AuthCtx;
55
56static DECLCALLBACK(int) authThread(RTTHREAD hThreadSelf, void *pvUser)
57{
58 RT_NOREF(hThreadSelf);
59 AuthCtx *pCtx = (AuthCtx *)pvUser;
60
61 if (pCtx->pfnAuthEntry3)
62 {
63 pCtx->result = pCtx->pfnAuthEntry3(pCtx->pszCaller, pCtx->pUuid, pCtx->guestJudgement,
64 pCtx->pszUser, pCtx->pszPassword, pCtx->pszDomain,
65 pCtx->fLogon, pCtx->clientId);
66 }
67 else if (pCtx->pfnAuthEntry2)
68 {
69 pCtx->result = pCtx->pfnAuthEntry2(pCtx->pUuid, pCtx->guestJudgement,
70 pCtx->pszUser, pCtx->pszPassword, pCtx->pszDomain,
71 pCtx->fLogon, pCtx->clientId);
72 }
73 else if (pCtx->pfnAuthEntry)
74 {
75 pCtx->result = pCtx->pfnAuthEntry(pCtx->pUuid, pCtx->guestJudgement,
76 pCtx->pszUser, pCtx->pszPassword, pCtx->pszDomain);
77 }
78 return VINF_SUCCESS;
79}
80
81static AuthResult authCall(AuthCtx *pCtx)
82{
83 AuthResult result = AuthResultAccessDenied;
84
85 /* Use a separate thread because external modules might need a lot of stack space. */
86 RTTHREAD thread = NIL_RTTHREAD;
87 int vrc = RTThreadCreate(&thread, authThread, pCtx, 512*_1K,
88 RTTHREADTYPE_DEFAULT, RTTHREADFLAGS_WAITABLE, "VRDEAuth");
89 LogFlowFunc(("RTThreadCreate %Rrc\n", vrc));
90
91 if (RT_SUCCESS(vrc))
92 {
93 vrc = RTThreadWait(thread, RT_INDEFINITE_WAIT, NULL);
94 LogFlowFunc(("RTThreadWait %Rrc\n", vrc));
95 }
96
97 if (RT_SUCCESS(vrc))
98 {
99 /* Only update the result if the thread finished without errors. */
100 result = pCtx->result;
101 }
102 else
103 {
104 LogRel(("AUTH: Unable to execute the auth thread %Rrc\n", vrc));
105 }
106
107 return result;
108}
109
110int AuthLibLoad(AUTHLIBRARYCONTEXT *pAuthLibCtx, const char *pszLibrary)
111{
112 RT_ZERO(*pAuthLibCtx);
113
114 /* Load the external authentication library. */
115 LogRel(("AUTH: Loading external authentication library '%s'\n", pszLibrary));
116
117 int vrc;
118 if (RTPathHavePath(pszLibrary))
119 vrc = RTLdrLoad(pszLibrary, &pAuthLibCtx->hAuthLibrary);
120 else
121 {
122 vrc = RTLdrLoadAppPriv(pszLibrary, &pAuthLibCtx->hAuthLibrary);
123 if (RT_FAILURE(vrc))
124 {
125 /* Backward compatibility with old default 'VRDPAuth' name.
126 * Try to load new default 'VBoxAuth' instead.
127 */
128 if (RTStrICmp(pszLibrary, "VRDPAuth") == 0)
129 {
130 LogRel(("AUTH: Loading external authentication library 'VBoxAuth'\n"));
131 vrc = RTLdrLoadAppPriv("VBoxAuth", &pAuthLibCtx->hAuthLibrary);
132 }
133 }
134 }
135
136 if (RT_FAILURE(vrc))
137 {
138 LogRel(("AUTH: Failed to load external authentication library: %Rrc\n", vrc));
139 pAuthLibCtx->hAuthLibrary = NIL_RTLDRMOD;
140 }
141
142 if (RT_SUCCESS(vrc))
143 {
144 typedef struct AuthEntryInfoStruct
145 {
146 const char *pszName;
147 void **ppvAddress;
148 } AuthEntryInfo;
149
150 AuthEntryInfo entries[] =
151 {
152 { AUTHENTRY3_NAME, (void **)&pAuthLibCtx->pfnAuthEntry3 },
153 { AUTHENTRY2_NAME, (void **)&pAuthLibCtx->pfnAuthEntry2 },
154 { AUTHENTRY_NAME, (void **)&pAuthLibCtx->pfnAuthEntry },
155 { NULL, NULL }
156 };
157
158 /* Get the entry point. */
159 AuthEntryInfo *pEntryInfo = &entries[0];
160 while (pEntryInfo->pszName)
161 {
162 *pEntryInfo->ppvAddress = NULL;
163
164 int vrc2 = RTLdrGetSymbol(pAuthLibCtx->hAuthLibrary, pEntryInfo->pszName, pEntryInfo->ppvAddress);
165 if (RT_SUCCESS(vrc2))
166 {
167 /* Found an entry point. */
168 LogRel(("AUTH: Using entry point '%s'\n", pEntryInfo->pszName));
169 vrc = VINF_SUCCESS;
170 break;
171 }
172
173 if (vrc2 != VERR_SYMBOL_NOT_FOUND)
174 LogRel(("AUTH: Could not resolve import '%s': %Rrc\n", pEntryInfo->pszName, vrc2));
175
176 vrc = vrc2;
177
178 pEntryInfo++;
179 }
180 }
181
182 if (RT_FAILURE(vrc))
183 AuthLibUnload(pAuthLibCtx);
184
185 return vrc;
186}
187
188void AuthLibUnload(AUTHLIBRARYCONTEXT *pAuthLibCtx)
189{
190 if (pAuthLibCtx->hAuthLibrary != NIL_RTLDRMOD)
191 RTLdrClose(pAuthLibCtx->hAuthLibrary);
192
193 RT_ZERO(*pAuthLibCtx);
194 pAuthLibCtx->hAuthLibrary = NIL_RTLDRMOD;
195}
196
197AuthResult AuthLibAuthenticate(const AUTHLIBRARYCONTEXT *pAuthLibCtx,
198 PCRTUUID pUuid, AuthGuestJudgement guestJudgement,
199 const char *pszUser, const char *pszPassword, const char *pszDomain,
200 uint32_t u32ClientId)
201{
202 AuthResult result = AuthResultAccessDenied;
203
204 AUTHUUID rawuuid;
205 memcpy(rawuuid, pUuid, sizeof(rawuuid));
206
207 LogFlowFunc(("pAuthLibCtx = %p, uuid = %RTuuid, guestJudgement = %d, pszUser = %s, pszPassword = %s, pszDomain = %s, u32ClientId = %d\n",
208 pAuthLibCtx, rawuuid, guestJudgement, pszUser, pszPassword, pszDomain, u32ClientId));
209
210 if ( pAuthLibCtx->hAuthLibrary
211 && (pAuthLibCtx->pfnAuthEntry || pAuthLibCtx->pfnAuthEntry2 || pAuthLibCtx->pfnAuthEntry3))
212 {
213 AuthCtx ctx;
214 ctx.result = AuthResultAccessDenied; /* Denied by default. */
215 ctx.pfnAuthEntry3 = pAuthLibCtx->pfnAuthEntry3;
216 ctx.pfnAuthEntry2 = pAuthLibCtx->pfnAuthEntry2;
217 ctx.pfnAuthEntry = pAuthLibCtx->pfnAuthEntry;
218 ctx.pszCaller = "vrde";
219 ctx.pUuid = &rawuuid;
220 ctx.guestJudgement = guestJudgement;
221 ctx.pszUser = pszUser;
222 ctx.pszPassword = pszPassword;
223 ctx.pszDomain = pszDomain;
224 ctx.fLogon = true;
225 ctx.clientId = u32ClientId;
226
227 result = authCall(&ctx);
228 }
229 else
230 {
231 LogRelMax(8, ("AUTH: Invalid authentication module context\n"));
232 AssertFailed();
233 }
234
235 LogFlowFunc(("result = %d\n", result));
236
237 return result;
238}
239
240void AuthLibDisconnect(const AUTHLIBRARYCONTEXT *pAuthLibCtx, PCRTUUID pUuid, uint32_t u32ClientId)
241{
242 AUTHUUID rawuuid;
243 memcpy(rawuuid, pUuid, sizeof(rawuuid));
244
245 LogFlowFunc(("pAuthLibCtx = %p, , uuid = %RTuuid, u32ClientId = %d\n",
246 pAuthLibCtx, rawuuid, u32ClientId));
247
248 if ( pAuthLibCtx->hAuthLibrary
249 && (pAuthLibCtx->pfnAuthEntry || pAuthLibCtx->pfnAuthEntry2 || pAuthLibCtx->pfnAuthEntry3))
250 {
251 AuthCtx ctx;
252 ctx.result = AuthResultAccessDenied; /* Not used. */
253 ctx.pfnAuthEntry3 = pAuthLibCtx->pfnAuthEntry3;
254 ctx.pfnAuthEntry2 = pAuthLibCtx->pfnAuthEntry2;
255 ctx.pfnAuthEntry = NULL; /* Does not use disconnect notification. */
256 ctx.pszCaller = "vrde";
257 ctx.pUuid = &rawuuid;
258 ctx.guestJudgement = AuthGuestNotAsked;
259 ctx.pszUser = NULL;
260 ctx.pszPassword = NULL;
261 ctx.pszDomain = NULL;
262 ctx.fLogon = false;
263 ctx.clientId = u32ClientId;
264
265 authCall(&ctx);
266 }
267}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use