Autor |
Beitrag |
randydom
Hält's aus hier
Beiträge: 8
|
Verfasst: Sa 07.01.12 15:03
Could someone helps me in porting this C++ function into Delphi?
sys is a class named TSystem.
SharedMem is a class named TVirtualMemory
C#-Quelltext 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24:
| int Process::FixApi(dword FileHandler,image_import_descriptor* Imports,dword dllbase){ image_import_by_name** names; dword* pointers; if (Imports->original_first_thunk!=0){ names=(image_import_by_name**)Imports->original_first_thunk; }else{ names=(image_import_by_name**)Imports->first_thunk; }; names=(image_import_by_name**)((dword)names+FileHandler); pointers=(dword*)(Imports->first_thunk + FileHandler); if (Imports->first_thunk==0)return 0; for (int i=0;i<200;i++){ if (names[i]==0)break; if(!((dword)(names[i]->name+FileHandler) & 0x80000000)){ dword s=(dword)names[i]->name; dword ptr=sys->GetAPI((char*)(s+FileHandler),dllbase); dword n=this->SharedMem->get_virtual_pointer(ptr); if (n!=0){ ptr=n; } memcpy(&pointers[i],&ptr,4); } }; }; |
|
|
Delphi-Laie
      
Beiträge: 1600
Erhaltene Danke: 232
Delphi 2 - RAD-Studio 10.1 Berlin
|
Verfasst: Sa 07.01.12 16:14
Wie wäre es denn auf Deutsch? Schließlich ist das hier ein deutschsprachiges Forum!
|
|
jaenicke
      
Beiträge: 19315
Erhaltene Danke: 1747
W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
|
Verfasst: Sa 07.01.12 18:29
Für diesen Beitrag haben gedankt: Dude566
|
|
randydom 
Hält's aus hier
Beiträge: 8
|
Verfasst: Sa 07.01.12 18:41
sorry Delphi-Laie because i don't speak German ( sorry again ).
thank you jaenicke .
i did this attempt :
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:
| function FixApi(FileHandler: dword; Imports: Pimage_import_descriptor; dllbase: dword): Integer; var names:^image_import_by_name; pointers:Pdword; i:integer; s,ptr,n:dword; begin if Imports^.original_first_thunk<>0 then names:=Pointer(Imports^.original_first_thunk) else names:=Pointer(Imports^.first_thunk);
names:=Pointer(dword(names)+FileHandler); pointers:=Pdword(Imports^.first_thunk+FileHandler); if (Imports^.first_thunk=0)then result:=0;
for i:=0 to 200 do begin
ptr:=sys.GetAPI(PChar(s+FileHandler),dllbase); n:=SharedMem.get_virtual_pointer(ptr); if n<>0 then ptr:=n;
CopyMemory(@pointers[i],@ptr,4);
end; end; |
Zitat: | Without the context I don't see what the code is supposed to do exactly |
The code is stripped from a machine emulator.
many thanks
|
|
Delphi-Laie
      
Beiträge: 1600
Erhaltene Danke: 232
Delphi 2 - RAD-Studio 10.1 Berlin
|
Verfasst: Sa 07.01.12 18:42
Dann sollte man aber wenigstens sich kurz dazu äußern, warum man zu der Gastfreundlichkeit, sich in der Sprache des Gastgebers äußern zu können, nicht imstande ist. Soviel Anstand sollte schon sein.
Übrigens, Ankunftsgruß, Bitte und Danke gibt es auch im Englischen, was ich oben auch vermisse.
Ich verstehe Englisch durchaus, werde aber einen Teufel tun, mich auch noch innerhalb meines Sprachraumes in eine Fremdsprache verbiegen zu lassen.
|
|
jaenicke
      
Beiträge: 19315
Erhaltene Danke: 1747
W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
|
Verfasst: Sa 07.01.12 19:08
randydom hat folgendes geschrieben : | Delphi-Quelltext 1: 2: 3: 4: 5: 6: 7: 8:
| for i:=0 to 200 do begin | |
Well, in Delphi you don't have the possibility to use the pointer "names" as an array implicitly. The easiest way is just to increase the pointer after each loop. This way you just jump to the next entry and that's all you need.
If you do so you can just use names^ instead of names[i]. Then we have this expression: names[i]->name+FileHandler
What is done in C++ is: take the first character of name as ordinal value ans add it to FileHandler. So in Delphi (dependend on your definition of image_import_by_name use the first index for the name array, 0 or 1):
Delphi-Quelltext 1:
| Ord(names^.name[1]) + FileHandler |
The bitwise and operator & in C++ is in Delphi just and. You can compare the result against 0 as you want to know whether the expression is false in C++ and false is 0.
This should be all I think. 
|
|
Christian S.
      
Beiträge: 20451
Erhaltene Danke: 2264
Win 10
C# (VS 2019)
|
Verfasst: Sa 07.01.12 19:22
Delphi-Laie hat folgendes geschrieben : | Ich verstehe Englisch durchaus, werde aber einen Teufel tun, mich auch noch innerhalb meines Sprachraumes in eine Fremdsprache verbiegen zu lassen. |
Es zwingt Dich niemand, auf Englisch zu schreiben.
In diesem Forum sind englischsprachige User ausdrücklich willkommen. Wenn Du mit solchen Postings nicht klar kommst, ignoriere sie bitte einfach. Eine Diskussion darüber ist in diesem Thread fehl am Platze, ich bitte daher drum, beim Thema zu bleiben.
@randydom: Feel free to continue posting in english. That's absolutely no problem for us! 
_________________ Zwei Worte werden Dir im Leben viele Türen öffnen - "ziehen" und "drücken".
Für diesen Beitrag haben gedankt: Dude566, glotzer, jaenicke, Mitmischer 1703, Narses, Oliver Marx, platzwart, Xion
|
|
randydom 
Hält's aus hier
Beiträge: 8
|
Verfasst: Sa 07.01.12 19:31
thank you jaenicke ;
and this how can i read it , because normally its result is a boolean value .
C#-Quelltext 1: 2: 3:
| if(!((dword)(names[i]->name+FileHandler) & 0x80000000)){ dword s=(dword)names[i]->name; } |
@Christian S : thank you .
@Delphi-Laie : again i'm really sorry .
|
|
jaenicke
      
Beiträge: 19315
Erhaltene Danke: 1747
W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
|
Verfasst: Sa 07.01.12 20:03
|
|
Martok
      
Beiträge: 3661
Erhaltene Danke: 604
Win 8.1, Win 10 x64
Pascal: Lazarus Snapshot, Delphi 7,2007; PHP, JS: WebStorm
|
Verfasst: Sa 07.01.12 20:16
jaenicke hat folgendes geschrieben : | As I said / meant  Delphi-Quelltext 1: 2:
| if (Ord(names^.name[0]) + FileHandler) and $80000000 = 0 then s := Ord(names^.name[0]); | |
Are you sure this (using Ord) would actually compile? Coincidentally, I tried the exact same thing yesterday and it did not: I had to use a cast to an actual type (in this case DWORD or Cardinal {which are the same}) for it to work.
_________________ "The phoenix's price isn't inevitable. It's not part of some deep balance built into the universe. It's just the parts of the game where you haven't figured out yet how to cheat."
|
|
jaenicke
      
Beiträge: 19315
Erhaltene Danke: 1747
W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
|
Verfasst: Sa 07.01.12 20:27
Yes, I am absolutely sure. 
|
|
mandras
      
Beiträge: 432
Erhaltene Danke: 107
Win 10
Delphi 6 Prof, Delphi 10.4 Prof
|
Verfasst: So 08.01.12 11:44
Delphi-Quelltext 1:
| if(!((dword)(names[i]->name+FileHandler) & 0x80000000)) |
does the following:
take entry [i] of names, then there look in "field" name at the 4 bytes at position <filehandler>,
use them as DWORD (32Bit-integer) and test if highest bit is set.
|
|
randydom 
Hält's aus hier
Beiträge: 8
|
Verfasst: Di 10.01.12 14:40
|
|
jaenicke
      
Beiträge: 19315
Erhaltene Danke: 1747
W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
|
Verfasst: Di 10.01.12 15:03
You have to call Exit in addition to setting result to zero, 'cause in Delphi you do not exit the function when assigning the result.
In newer versions of Delphi you can just write Exit(0); instead of result := 0;. Before about Delphi 2009 you have to assign 0 to result and call Exit afterwards.
|
|
randydom 
Hält's aus hier
Beiträge: 8
|
Verfasst: Di 10.01.12 15:16
|
|
jaenicke
      
Beiträge: 19315
Erhaltene Danke: 1747
W11 x64 (Chrome, Edge)
Delphi 11 Pro, Oxygene, C# (VS 2022), JS/HTML, Java (NB), PHP, Lazarus
|
Verfasst: Di 10.01.12 15:37
randydom hat folgendes geschrieben : | just a help about this :
|
Your code looked quite good. I thought you just had to correct the translation of return.
If it does not work, what does happen?
|
|
randydom 
Hält's aus hier
Beiträge: 8
|
Verfasst: Di 10.01.12 15:51
Ok jaenicke look at this
Delphi-Quelltext 1: 2: 3: 4:
| if (FileHandler<>$5a4d) then result:=0; PEHeaderPtr:=pDos_header(FileHandler)^.e_lfanew+FileHandler; if PEHeaderPtr<>$4550 then result:=0; FileHeader:=pimage_header(PEHeaderPtr); |
i get an exception near :
Delphi-Quelltext 1:
| PEHeaderPtr:=pDos_header(FileHandler)^.e_lfanew+FileHandler; |
i think the problem is when assigning FileHandler(FileHandler=dword) to pDos_header and the result is PEHeaderPtr(PEHeaderPtr=dword).
Or if possible can you re-convert this code :
C#-Quelltext 1: 2: 3: 4: 5:
| PEHeaderPtr = ((dos_header *) FileHandler)->e_lfanew + FileHandler; if (!(*((short *) PEHeaderPtr) == 0x4550)) { return 0; } FileHeader= (image_header *) PEHeaderPtr; |
|
|