Re: [ros-dev] [ros-diffs] [pschweitzer] 58960: [RTL] Finally reenable RtlAcquirePrivilege

2013-05-06 Thread Jérôme Gardou
Hey Pierre!

Nice patch series, that takes ReactOS nearer to being secure. A remark though :

  /*
 - * enable the SeSystemtimePrivilege privilege
 + * Call SetLocalTime twice to ensure correct results
   */
 +Ret = SetLocalTime(SetupData-SystemTime) 
 +  SetLocalTime(SetupData-SystemTime);

This is a bit confusing, and the comment doesn't really help. Why would calling 
the function twice ansure correct result ? Also, this is likely to be optimized 
away by the compiler, or at least produce a report in static code analysers.

I know this isn't pure chance. Any hint as to why you wrote it like this ?

Cheers
Jérôme

___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev


Re: [ros-dev] [ros-diffs] [pschweitzer] 58960: [RTL] Finally reenable RtlAcquirePrivilege

2013-05-06 Thread Hermès BÉLUSCA - MAÏTO
IMHO he just kept the original code : see
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/syssetup/wizard.c
?r1=58960r2=58959pathrev=58960
You can discover the real culprit here :
http://svn.reactos.org/svn/reactos?view=revisionrevision=21249 (6 years
ago) :D

Cheers,
Hermès

-Message d'origine-
De : ros-dev-boun...@reactos.org [mailto:ros-dev-boun...@reactos.org] De la
part de Jérôme Gardou
Envoyé : lundi 6 mai 2013 17:49
À : ros-dev@reactos.org
Objet : Re: [ros-dev] [ros-diffs] [pschweitzer] 58960: [RTL] Finally
reenable RtlAcquirePrivilege

Hey Pierre!

Nice patch series, that takes ReactOS nearer to being secure. A remark
though :

  /*
 - * enable the SeSystemtimePrivilege privilege
 + * Call SetLocalTime twice to ensure correct results
   */
 +Ret = SetLocalTime(SetupData-SystemTime) 
 +  SetLocalTime(SetupData-SystemTime);

This is a bit confusing, and the comment doesn't really help. Why would
calling the function twice ansure correct result ? Also, this is likely to
be optimized away by the compiler, or at least produce a report in static
code analysers.

I know this isn't pure chance. Any hint as to why you wrote it like this ?

Cheers
Jérôme

___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev

___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev


Re: [ros-dev] [ros-diffs] [pschweitzer] 58960: [RTL] Finally reenable RtlAcquirePrivilege

2013-05-06 Thread Sven Barth

On 06.05.2013 17:48, Jérôme Gardou wrote:

Hey Pierre!

Nice patch series, that takes ReactOS nearer to being secure. A remark though :


  /*
- * enable the SeSystemtimePrivilege privilege
+ * Call SetLocalTime twice to ensure correct results
   */
+Ret = SetLocalTime(SetupData-SystemTime) 
+  SetLocalTime(SetupData-SystemTime);


This is a bit confusing, and the comment doesn't really help. Why would calling 
the function twice ansure correct result ? Also, this is likely to be optimized 
away by the compiler, or at least produce a report in static code analysers.

I know this isn't pure chance. Any hint as to why you wrote it like this ?


Even MSDN states that it might be necessary to call SetLocalTime twice: 
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724936%28v=vs.85%29.aspx


Regards,
Sven


___
Ros-dev mailing list
Ros-dev@reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev