#1 2020-06-10 10:11:45

HgAlexx
Member
Registered: 2020-06-10
Posts: 6

THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

Hello,

I found an issue with Windows authentication when using THttpApiServer and Kerberos (Negotiate), and if mORMot (SynCrtSock.pas) is compiled for 64 bits.

When testing on 32 bits, after an authentication attempt, the field "RequestInfoCount" of structure "HTTP_REQUEST" contains a value > 0

But when testing on 64 bits, "RequestInfoCount" is equal to 0 and the correct value is found inside the field "xxxPadding" of structure "HTTP_REQUEST", which is directly before "RequestInfoCount".


I've "fixed" the issue by adding an IFNDEF arround "xxxPadding" like that:

    // beginning of HTTP_REQUEST_V2 structure
    {$IFNDEF CPU64}
    xxxPadding: DWORD;
    {$ENDIF}
    RequestInfoCount: word;

However, C to Delphi structure conversion and fields size/alignment is not my area of expertise and I not sure at all that this is the proper fix.


Please advise.



Regards,

Alex.

Last edited by HgAlexx (2020-06-10 10:29:52)

Offline

#2 2020-06-10 13:56:52

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,253
Website

Re: THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

Offline

#3 2020-06-10 14:58:03

HgAlexx
Member
Registered: 2020-06-10
Posts: 6

Re: THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

I'll give it a try, but I'm wondering:
- Won't this remove the padding when using 32 bits ?
- Since 32 bits was working with the padding, will it still work ?

Offline

#4 2020-06-10 15:01:47

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,253
Website

Re: THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

Nesting records should do proper alignment and padding.
Please try it.

Offline

#5 2020-06-10 20:36:09

mpv
Member
From: Ukraine
Registered: 2012-03-24
Posts: 1,546
Website

Re: THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

@HgAlexx - BTW we have a SynSSPIAuth (Windows) / SynGSSAPIAuth (Linux) for Negotiate authentication. Well tested in production for many years. And (IMHO) much flexible compared to HTTP.SYS level authentication.

Offline

#6 2020-06-11 08:14:30

HgAlexx
Member
Registered: 2020-06-10
Posts: 6

Re: THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

@mpv
I'm only using THttpApiServer so it's pratical for me that http.sys is handling all the back and forth regarding the Windows Auth and make it very simple to implement on my side.

However, we have another issue with it (all request are auth as the first user who logged in, kernel side) so I'll have a look at SynSSPIAuth and see it the issue persist.

@ab
On my way to test the new struct

Offline

#7 2020-06-11 08:27:27

HgAlexx
Member
Registered: 2020-06-10
Posts: 6

Re: THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

@ab
The new struct works for 64 bits but no longer work for 32 bits sad
The value of RequestInfoCount is offset and set into pRequestInfo

Offline

#8 2020-06-15 13:46:41

ab
Administrator
From: France
Registered: 2010-06-21
Posts: 14,253
Website

Re: THttpApiServer, HTTP_REQUEST: Issue with Windows Auth and 64 bits

I put back your modification as https://synopse.info/fossil/info/be31dd9e97

Hope it works on both Win32 and Win64.

Offline

Board footer

Powered by FluxBB