The MASM Forum

General => The Campus => Topic started by: xandaz on October 27, 2021, 02:31:27 AM

Title: RtlZeroMemory Macro
Post by: xandaz on October 27, 2021, 02:31:27 AM
    hi guys. I'm here just to say that RtlZeroMemory has been overwritting some of my data. Are there any known issues with this macro? ty
Title: Re: RtlZeroMemory Macro
Post by: TimoVJL on October 27, 2021, 03:03:04 AM
What macro was used ?
It's a kernel function, but some C-includes have macro to use memset function instead.
Title: Re: RtlZeroMemory Macro
Post by: xandaz on October 27, 2021, 04:02:27 AM
   i don't know what macro was used but it cleared some data that i needed available. ty
Title: Re: RtlZeroMemory Macro
Post by: Vortex on October 27, 2021, 05:32:06 AM
Hi xandaz,

The RtlZeroMemory macro is not defined in windows.inc  Could please post here your code?

winnt.h from Pelles C :

#define RtlZeroMemory(Destination,Length) memset((Destination),0,(Length))
Title: Re: RtlZeroMemory Macro
Post by: Vortex on October 27, 2021, 05:48:36 AM
A quick test :

include     \masm32\include\masm32rt.inc

.data

mystr  db 'This line is truncated.'
mystr2 db 'Test'

.data?

RtlZeroMem MACRO Destination,Length

    invoke crt_memset,Destination,0,Length

ENDM

.code

start:

    RtlZeroMem ADDR mystr2,4

    invoke  StdOut,ADDR mystr

    invoke  ExitProcess,0

END start
Title: Re: RtlZeroMemory Macro
Post by: jj2007 on October 27, 2021, 06:03:07 AM
include \masm32\include\masm32rt.inc

.data
somestring db "Hello, this is a simple string intended for testing string algos. It has 100 characters without zero", 0

.code
start:
  print "["
  print offset somestring, "]", 13, 10
  invoke RtlZeroMemory, addr somestring, sizeof somestring
  print "["
  print offset somestring, "]", 13, 10
  MsgBox 0, "Surprise, surprise, it works!!", "RtlZeroMemory, an old Kernel32 function:", MB_OK
  exit
end start


Under the hood:
0040101F  |.  6A 65         push 65                                  ; /Arg2 = 65
00401021  |.  68 00204000   push offset 00402000                     ; |Arg1 = ASCII "Hello, this is a simple string intended for testing string algos. It has 100 characters without zero"
00401026  |.  E8 ED000000   call <jmp.&kernel32.RtlZeroMemory>       ; \ntdll.RtlZeroMemory
Title: Re: RtlZeroMemory Macro
Post by: Vortex on October 27, 2021, 06:19:27 AM
Hi Jochen,

I get this error message :

error LNK2001: unresolved external symbol _RtlZeroMemory@8
Title: Re: RtlZeroMemory Macro
Post by: jj2007 on October 27, 2021, 06:23:57 AM
Quote from: Vortex on October 27, 2021, 06:19:27 AM
Hi Jochen,

I get this error message :

error LNK2001: unresolved external symbol _RtlZeroMemory@8

Hi Erol,

For such cases, I always have a virgin Masm32 SDK on C:\Masm32. Attached exe assembled with qEditor "build all" :cool:
Title: Re: RtlZeroMemory Macro
Post by: hutch-- on October 27, 2021, 09:15:18 AM
You could alway look at the library module "memfill" but a fill algo is very simple to write. I have always wondered why people chase after a C runtime function when the actual algo is so simple.
Title: Re: RtlZeroMemory Macro
Post by: jj2007 on October 27, 2021, 11:10:05 AM
True, Hutch, but RtlZeroMemory is not a C runtime function but a Kernel32/NtDll function.
Title: Re: RtlZeroMemory Macro
Post by: hutch-- on October 27, 2021, 11:58:38 AM
That makes sense, I have used it so rarely that I was not sure where it came from.
Title: Re: RtlZeroMemory Macro
Post by: Vortex on October 28, 2021, 05:40:46 AM
Hi Jochen,

Thanks, you are right. I fixed the problem in my Masm32 installation.