-
-
Notifications
You must be signed in to change notification settings - Fork 325
/
SynGSSAPIAuth.pas
344 lines (295 loc) · 13.7 KB
/
SynGSSAPIAuth.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
/// Low-level access to GSSAPI Authentication for Linux 32/64-bit platform
// - this unit is a part of the freeware Synopse mORMot framework,
// licensed under a MPL/GPL/LGPL tri-license; version 1.18
unit SynGSSAPIAuth;
{
This file is part of Synopse mORMot framework.
Synopse mORMot framework. Copyright (c) Arnaud Bouchez
Synopse Informatique - https://synopse.info
*** BEGIN LICENSE BLOCK *****
Version: MPL 1.1/GPL 2.0/LGPL 2.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
The Original Code is Synopse mORMot framework.
The Initial Developer of the Original Code is Chaa.
Portions created by the Initial Developer are Copyright (c)
the Initial Developer. All Rights Reserved.
Contributor(s):
Arnaud Bouchez
Alternatively, the contents of this file may be used under the terms of
either the GNU General Public License Version 2 or later (the "GPL"), or
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
in which case the provisions of the GPL or the LGPL are applicable instead
of those above. If you wish to allow use of your version of this file only
under the terms of either the GPL or the LGPL, and not to allow others to
use your version of this file under the terms of the MPL, indicate your
decision by deleting the provisions above and replace them with the notice
and other provisions required by the GPL or the LGPL. If you do not delete
the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****
}
{$I Synopse.inc} // define HASINLINE and other compatibility switches
interface
uses
SysUtils,
SynCommons,
SynGSSAPI;
/// Client-side authentication procedure
// - aSecContext holds information between function calls
// - aInData contains data received from server
// - aSecKerberosSPN is the Service Principal Name,
// registered in domain, e.g.
// 'mymormotservice/[email protected]'
// - aOutData contains data that must be sent to server
// - if function returns True, client must send aOutData to server
// and call function again with data, returned from server
function ClientSSPIAuth(var aSecContext: TSecContext;
const aInData: RawByteString; const aSecKerberosSPN: RawUTF8;
out aOutData: RawByteString): Boolean;
/// Client-side authentication procedure with clear text password.
// This function must be used when application need to use different
// user credentials (not credentials of logged in user)
// - aSecContext holds information between function calls
// - aInData contains data received from server
// - aUserName is the domain and user name, in form of
// '[email protected]'. Note that domain name requires to be in upper case.
// - aPassword is the user clear text password
// - aOutData contains data that must be sent to server
// - if function returns True, client must send aOutData to server
// and call function again with data, returned from server
// - you must use ClientForceSPN to specify server SPN before call
function ClientSSPIAuthWithPassword(var aSecContext: TSecContext;
const aInData: RawByteString; const aUserName: RawUTF8;
const aPassword: RawUTF8; out aOutData: RawByteString): Boolean;
/// Server-side authentication procedure
// - aSecContext holds information between function calls
// - aInData contains data received from client
// - aOutData contains data that must be sent to client
// - if function returns True, server must send aOutData to client
// and call function again with data, returned from client
function ServerSSPIAuth(var aSecContext: TSecContext;
const aInData: RawByteString; out aOutData: RawByteString): Boolean;
/// Server-side function that returns authenticated user name
// - aSecContext must be received from previous successful call to ServerSSPIAuth
// - aUserName contains authenticated user name
procedure ServerSSPIAuthUser(var aSecContext: TSecContext; out aUserName: RawUTF8);
/// Returns name of the security package that has been used with the negotiation process
// - aSecContext must be received from previous success call to ServerSSPIAuth
// or ClientSSPIAuth
function SecPackageName(var aSecContext: TSecContext): RawUTF8;
/// Force using aSecKerberosSPN for server identification
// - aSecKerberosSPN is the Service Principal Name, registered in domain, e.g.
// 'mymormotservice/[email protected]'
procedure ClientForceSPN(const aSecKerberosSPN: RawUTF8);
/// Force loading server credentials from specified keytab file
// - by default, clients may authenticate to any service principal
// in the default keytab (/etc/krb5.keytab or the value of the KRB5_KTNAME
// environment variable)
procedure ServerForceKeytab(const aKeytab: RawUTF8);
const
/// HTTP header to be set for authentication
SECPKGNAMEHTTPWWWAUTHENTICATE = 'WWW-Authenticate: Negotiate';
/// HTTP header pattern received for authentication
SECPKGNAMEHTTPAUTHORIZATION = 'AUTHORIZATION: NEGOTIATE ';
var
/// Dictionary for converting fully qualified domain names to NT4-style NetBIOS names
// - to use same value for TSQLAuthUser.LogonName on all platforms user name
// changed from '[email protected]' to 'MYDOMAIN\username'
// - when converting fully qualified domain name to NT4-style NetBIOS name
// ServerDomainMap first checked. If domain name not found, then it's truncated on first dot,
// e.g. '[email protected]' changed to 'CORP\user1'
// - you can change domain name conversion by registering names at server startup, e.g.
// ServerDomainMap.Add('CORP.ABC.COM', 'ABCCORP') change conversion for previuos
// example to 'ABCCORP\user1'
// - use only if automatic conversion (truncate on first dot) do it wrong
ServerDomainMap: TSynNameValue;
implementation
var
ForceSecKerberosSPN: RawUTF8;
function ClientSSPIAuthWorker(var aSecContext: TSecContext;
const aInData: RawByteString; const aSecKerberosSPN: RawUTF8;
out aOutData: RawByteString): Boolean;
var TargetName: gss_name_t;
MajStatus, MinStatus: Cardinal;
InBuf: gss_buffer_desc;
OutBuf: gss_buffer_desc;
CtxReqAttr: Cardinal;
CtxAttr: Cardinal;
begin
TargetName := nil;
if aSecKerberosSPN <> '' then begin
InBuf.length := Length(aSecKerberosSPN);
InBuf.value := Pointer(aSecKerberosSPN);
MajStatus := gss_import_name(MinStatus, @InBuf, GSS_KRB5_NT_PRINCIPAL_NAME, TargetName);
GSSCheck(MajStatus, MinStatus, 'Failed to import server SPN');
end;
try
CtxReqAttr := GSS_C_INTEG_FLAG or GSS_C_CONF_FLAG;
if TargetName <> nil then
CtxReqAttr := CtxReqAttr or GSS_C_MUTUAL_FLAG;
InBuf.length := Length(aInData);
InBuf.value := Pointer(aInData);
OutBuf.length := 0;
OutBuf.value := nil;
MajStatus := gss_init_sec_context(MinStatus, aSecContext.CredHandle,
aSecContext.CtxHandle, TargetName, GSS_C_MECH_SPNEGO,
CtxReqAttr, GSS_C_INDEFINITE, nil, @InBuf, nil, @OutBuf, @CtxAttr, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to initialize security context');
Result := (MajStatus and GSS_S_CONTINUE_NEEDED) <> 0;
SetString(aOutData, PAnsiChar(OutBuf.value), OutBuf.length);
gss_release_buffer(MinStatus, OutBuf);
finally
if TargetName <> nil then
gss_release_name(MinStatus, TargetName);
end;
end;
function ClientSSPIAuth(var aSecContext: TSecContext;
const aInData: RawByteString; const aSecKerberosSPN: RawUTF8;
out aOutData: RawByteString): Boolean;
var MajStatus, MinStatus: Cardinal;
SecKerberosSPN: RawUTF8;
begin
RequireGSSAPI;
if aSecContext.CredHandle = nil then begin
aSecContext.CreatedTick64 := GetTickCount64();
MajStatus := gss_acquire_cred(MinStatus, nil, GSS_C_INDEFINITE, nil,
GSS_C_INITIATE, aSecContext.CredHandle, nil, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to acquire credentials for current user');
end;
if aSecKerberosSPN<>'' then
SecKerberosSPN := aSecKerberosSPN else
SecKerberosSPN := ForceSecKerberosSPN;
Result := ClientSSPIAuthWorker(aSecContext, aInData, SecKerberosSPN, aOutData);
end;
function ClientSSPIAuthWithPassword(var aSecContext: TSecContext;
const aInData: RawByteString; const aUserName: RawUTF8;
const aPassword: RawUTF8; out aOutData: RawByteString): Boolean;
var MajStatus, MinStatus: Cardinal;
InBuf: gss_buffer_desc;
UserName: gss_name_t;
begin
RequireGSSAPI;
if aSecContext.CredHandle = nil then begin
aSecContext.CreatedTick64 := GetTickCount64();
InBuf.length := Length(aUserName);
InBuf.value := Pointer(aUserName);
MajStatus := gss_import_name(MinStatus, @InBuf, GSS_KRB5_NT_PRINCIPAL_NAME, UserName);
GSSCheck(MajStatus, MinStatus, 'Failed to import UserName');
InBuf.length := Length(aPassword);
InBuf.value := Pointer(aPassword);
MajStatus := gss_acquire_cred_with_password(MinStatus, UserName, @InBuf,
GSS_C_INDEFINITE, nil, GSS_C_INITIATE, aSecContext.CredHandle, nil, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to acquire credentials for specified user');
end;
Result := ClientSSPIAuthWorker(aSecContext, aInData, ForceSecKerberosSPN, aOutData);
end;
function ServerSSPIAuth(var aSecContext: TSecContext;
const aInData: RawByteString; out aOutData: RawByteString): Boolean;
var MajStatus, MinStatus: Cardinal;
InBuf: gss_buffer_desc;
OutBuf: gss_buffer_desc;
CtxAttr: Cardinal;
begin
RequireGSSAPI;
if aSecContext.CredHandle = nil then begin
aSecContext.CreatedTick64 := GetTickCount64();
if IdemPChar(Pointer(aInData), 'NTLMSSP') then
raise ESynGSSAPI.CreateFmt('NTLM authentication not supported by GSSAPI library',[]);
MajStatus := gss_acquire_cred(MinStatus, nil, GSS_C_INDEFINITE, nil,
GSS_C_ACCEPT, aSecContext.CredHandle, nil, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to aquire credentials for service');
end;
InBuf.length := Length(aInData);
InBuf.value := PByte(aInData);
OutBuf.length := 0;
OutBuf.value := nil;
MajStatus := gss_accept_sec_context(MinStatus, aSecContext.CtxHandle,
aSecContext.CredHandle, @InBuf, nil, nil, nil, @OutBuf, @CtxAttr, nil, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to accept client credentials');
Result := (MajStatus and GSS_S_CONTINUE_NEEDED) <> 0;
SetString(aOutData, PAnsiChar(OutBuf.value), OutBuf.length);
gss_release_buffer(MinStatus, OutBuf);
end;
procedure ConvertUserName(P: PUTF8Char; Len: PtrUInt; out aUserName: RawUTF8);
var DomainStart, DomainEnd: PUTF8Char;
Index: Integer;
Domain: RawUTF8;
begin
// Assume GSSAPI buffer is null-terminated
Assert(P[Len] = #0);
// Change user name from '[email protected]' to 'MYDOMAIN\username'
DomainStart := PosChar(P, '@');
if DomainStart<>nil then begin
DomainStart^ := #0;
Inc(DomainStart);
Index := ServerDomainMap.Find(DomainStart);
if Index<0 then begin
DomainEnd := PosChar(DomainStart, '.');
if DomainEnd<>nil then
DomainEnd^ := #0;
Domain := DomainStart;
end else
Domain := ServerDomainMap.List[Index].Value;
aUserName := FormatUTF8('%\%', [Domain, P]);
end else
// Unknown user name format, leave as is
SetString(aUserName, P, Len);
end;
procedure ServerSSPIAuthUser(var aSecContext: TSecContext; out aUserName: RawUTF8);
var MajStatus, MinStatus: Cardinal;
SrcName: gss_name_t;
OutBuf: gss_buffer_desc;
NameType: gss_OID;
begin
RequireGSSAPI;
MajStatus := gss_inquire_context(MinStatus, aSecContext.CtxHandle,
@SrcName, nil, nil, nil, nil, nil, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to inquire security context information (src_name)');
try
OutBuf.length := 0;
OutBuf.value := nil;
MajStatus := gss_display_name(MinStatus, SrcName, @OutBuf, @NameType);
GSSCheck(MajStatus, MinStatus, 'Failed to obtain name for authenticated user');
if gss_compare_oid(NameType, GSS_KRB5_NT_PRINCIPAL_NAME) then begin
ConvertUserName(PUTF8Char(OutBuf.value), OutBuf.length, aUserName);
end;
gss_release_buffer(MinStatus, OutBuf);
finally
gss_release_name(MinStatus, SrcName);
end;
end;
function SecPackageName(var aSecContext: TSecContext): RawUTF8;
var MajStatus, MinStatus: Cardinal;
MechType: gss_OID;
OutBuf: gss_buffer_desc;
begin
RequireGSSAPI;
MajStatus := gss_inquire_context(MinStatus, aSecContext.CtxHandle,
nil, nil, nil, @MechType, nil, nil, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to inquire security context information (mech_type)');
OutBuf.length := 0;
OutBuf.value := nil;
MajStatus := gss_inquire_saslname_for_mech(MinStatus, MechType, nil, @OutBuf, nil);
GSSCheck(MajStatus, MinStatus, 'Failed to obtain name for mech');
SetString(Result, PAnsiChar(OutBuf.value), OutBuf.length);
gss_release_buffer(MinStatus, OutBuf);
end;
procedure ClientForceSPN(const aSecKerberosSPN: RawUTF8);
begin
ForceSecKerberosSPN := aSecKerberosSPN;
end;
procedure ServerForceKeytab(const aKeytab: RawUTF8);
begin
if Assigned(krb5_gss_register_acceptor_identity) then begin
krb5_gss_register_acceptor_identity(Pointer(aKeytab));
end;
end;
initialization
ServerDomainMap.Init({casesensitive=}false);
end.