Anyone working on implementing AccessCheck?

2005-04-27 Thread Michael Ost
We have an installer program (for the Native Instruments Komplete VST
plugin package) that fails to run because NtAccessCheck is stubbed out
--- that's our best guess at this point, anyway, from watching the
WINEDBG trace while the program ran.

I noticed that in the last few months someone implemented
GetFileSecurity that the installer uses as well --- it looks like Troy
Rollo? from scanning the cvs archives. Thanks for that. But
NtAccessCheck is still stubbed out. Is that call at all related? any
work underway? any suggestions on direction for implementing it? 

And, how seriously should I take the FIXME(returns fake
SECURITY_DESCRIPTOR) in GetFileSecurity.

Thanks... mo

===
Michael Ost, Software Architect
Muse Research, Inc.
[EMAIL PROTECTED]





Re: Anyone working on implementing AccessCheck?

2005-04-27 Thread Robert Shearman
Michael Ost wrote:
We have an installer program (for the Native Instruments Komplete VST
plugin package) that fails to run because NtAccessCheck is stubbed out
--- that's our best guess at this point, anyway, from watching the
WINEDBG trace while the program ran.
I noticed that in the last few months someone implemented
GetFileSecurity that the installer uses as well --- it looks like Troy
Rollo? from scanning the cvs archives. Thanks for that. But
NtAccessCheck is still stubbed out. Is that call at all related? any
work underway? any suggestions on direction for implementing it? 
 

Yes. I have an implementation at the moment, but it depends on token 
objects storing more information than they do at the moment and it is 
completely untested. However, I can send a patch to you to test if you want.

Rob


Re: Anyone working on implementing AccessCheck?

2005-04-27 Thread Michael Ost
On Wed, 2005-04-27 at 10:30, Robert Shearman wrote:
 Michael Ost wrote:
 
 We have an installer program (for the Native Instruments Komplete VST
 plugin package) that fails to run because NtAccessCheck is stubbed out
 --- that's our best guess at this point, anyway, from watching the
 WINEDBG trace while the program ran.
 
 I noticed that in the last few months someone implemented
 GetFileSecurity that the installer uses as well --- it looks like Troy
 Rollo? from scanning the cvs archives. Thanks for that. But
 NtAccessCheck is still stubbed out. Is that call at all related? any
 work underway? any suggestions on direction for implementing it? 
   
 
 
 Yes. I have an implementation at the moment, but it depends on token 
 objects storing more information than they do at the moment and it is 
 completely untested. However, I can send a patch to you to test if you want.

Yes. We'd be happy to try it out and tweak if necessary. Thanks... mo