flat assembler
Message board for the users of flat assembler.

Index > Main > FASM-related topics on other forums

Author
Thread Post new topic Reply to topic
UniverseIsASimulation



Joined: 23 Sep 2016
Posts: 34
UniverseIsASimulation 23 Sep 2016, 18:48
Hi, I've made a few FASM-related topics on some other forum, and I didn't get a satisfactory answer. Could you reply to them please?
https://www.theflatearthsociety.org/forum/index.php?topic=67453.0
https://www.theflatearthsociety.org/forum/index.php?topic=67449.0
https://www.theflatearthsociety.org/forum/index.php?topic=64277.0
Post 23 Sep 2016, 18:48
View user's profile Send private message Reply with quote
revolution
When all else fails, read the source


Joined: 24 Aug 2004
Posts: 20445
Location: In your JS exploiting you and your system
revolution 23 Sep 2016, 18:59
For the "bus error" I would assume that you are trying to write to memory marked as read-only and/or execute-only. Try moving your data into a writeable segment. I would guess that strings are placed into "constant" memory by HLLs so if you try to write to them your program will crash.
Post 23 Sep 2016, 18:59
View user's profile Send private message Visit poster's website Reply with quote
UniverseIsASimulation



Joined: 23 Sep 2016
Posts: 34
UniverseIsASimulation 26 Oct 2016, 15:58
Assuming HLL means "High level language", I wasn't using a high-level language, I was writing directly in the assembly language. And how exactly would you mark a part of a memory as "constant"? I've always thought that it's just the compiler keeping track of what's constant and what's a true variable.
Post 26 Oct 2016, 15:58
View user's profile Send private message Reply with quote
revolution
When all else fails, read the source


Joined: 24 Aug 2004
Posts: 20445
Location: In your JS exploiting you and your system
revolution 26 Oct 2016, 23:10
UniverseIsASimulation wrote:
And how exactly would you mark a part of a memory as "constant"?
You can use the paging system to mark memory readable, writeable, executeable or non-existent. Some compilers use this to place constants and variables in certain places within the memory space.
Post 26 Oct 2016, 23:10
View user's profile Send private message Visit poster's website Reply with quote
UniverseIsASimulation



Joined: 23 Sep 2016
Posts: 34
UniverseIsASimulation 27 Oct 2016, 04:46
So, what exactly do I have to add to my source code to be able to, let's say, directly modify the "string" in the 2nd example (without having to use the stack)? I've seen, by disassembling, that the compilers I use all use the stack to keep the variables. I wonder why.
I didn't know that about the paging system. So, DOS doesn't use it, as I can see from the 5th example, right?
Post 27 Oct 2016, 04:46
View user's profile Send private message Reply with quote
revolution
When all else fails, read the source


Joined: 24 Aug 2004
Posts: 20445
Location: In your JS exploiting you and your system
revolution 27 Oct 2016, 04:51
UniverseIsASimulation wrote:
So, what exactly do I have to add to my source code to be able to, let's say, directly modify the "string" ...
For source code in fasm you can simply mark the segment as writeable.
Code:
section '.data' data readable writeable    
Post 27 Oct 2016, 04:51
View user's profile Send private message Visit poster's website Reply with quote
UniverseIsASimulation



Joined: 23 Sep 2016
Posts: 34
UniverseIsASimulation 27 Oct 2016, 08:36
Thanks, that helps!
Anyway, do you have some experience with disassemblers? Can you help me with the problem with them I described on the third link? Thanks in advance.
Post 27 Oct 2016, 08:36
View user's profile Send private message Reply with quote
revolution
When all else fails, read the source


Joined: 24 Aug 2004
Posts: 20445
Location: In your JS exploiting you and your system
revolution 27 Oct 2016, 09:02
You will have to specify which disassemblers you are using. Some disassemblers know about the file formats and will make sense of the code while others are simply raw binary-to-source engines and show lots of useless things that are actually file headers and other non-code parts of executable files.
Post 27 Oct 2016, 09:02
View user's profile Send private message Visit poster's website Reply with quote
UniverseIsASimulation



Joined: 23 Sep 2016
Posts: 34
UniverseIsASimulation 27 Oct 2016, 09:42
I am not sure I understand what you are asking. I did specify them. I was using lldb, the debugger of the LLVM, on an x64 processor structure and Darwin OS, and FreeDOS DEBUG in DosBox (which simulates DOS and x86). Both lldb and FreeDOS DEBUG are, among other things, disassemblers. Isn't that enough?
Post 27 Oct 2016, 09:42
View user's profile Send private message Reply with quote
revolution
When all else fails, read the source


Joined: 24 Aug 2004
Posts: 20445
Location: In your JS exploiting you and your system
revolution 27 Oct 2016, 10:40
Another thing to consider is that if you are using an HLL to create the executable then likely you will have to deal with the extra support wrappers and calling overheads that some compilers insert.

The easiest type of file for disassemblers to deal with are DOS .com programs. These have no file headers, just raw binary code and data.
Post 27 Oct 2016, 10:40
View user's profile Send private message Visit poster's website Reply with quote
system error



Joined: 01 Sep 2013
Posts: 670
system error 27 Oct 2016, 11:03
Universe, programs compiled for different platform and/or using different compiling techniques do generate different binaries. Also emulated environment may introduce their own layers and abstractions that modify the generated binaries. In this case you need to manually point your debugger / disassembler to the correct entry point for each. FreeDos generates / expects either MZ or COM 16-bit format or other extended modes. Clang on Mac Air (something I am not familiar with) have their own format, probably mach-o, elf or things like that. Common sense says, they do produce different binaries or at least read the same binaries differently.
Post 27 Oct 2016, 11:03
View user's profile Send private message Reply with quote
UniverseIsASimulation



Joined: 23 Sep 2016
Posts: 34
UniverseIsASimulation 27 Oct 2016, 14:22
Yeah, System, that was also my guess.
FlatEarthDenial wrote:
Therefore, what I have to do if I want to use FreeDos Debug with Mach-O files is to figure out where the code starts section in one (if I am using the right terminology), probably using lldb, and then tell FreeDos Debug to start disassembling at that address. But I still don't know how to do any of that exactly.
Can you help me, please? Some screen-shoots might be helpful.

https://www.theflatearthsociety.org/forum/index.php?topic=64277.msg1772117#msg1772117
Post 27 Oct 2016, 14:22
View user's profile Send private message Reply with quote
rugxulo



Joined: 09 Aug 2005
Posts: 2341
Location: Usono (aka, USA)
rugxulo 27 Oct 2016, 20:41
Don't use FD Debug for disassembling Mach-O, that's the wrong tool for the job.

Use GNU Objdump (built for Mac OS X support) or BIEW/BEYE or Agner's OBJCONV or .... I'm not sure NASM's NDISASM understands anything besides raw binary, so you may have to tell it to skip directly to the file offset where code starts (assuming it's contiguous). Also, what about distorm or Hopper or IDA or OTX?

In other words, there are probably better tools (for Mac OS X / Mach-O) than FD Debug.
Post 27 Oct 2016, 20:41
View user's profile Send private message Visit poster's website Reply with quote
UniverseIsASimulation



Joined: 23 Sep 2016
Posts: 34
UniverseIsASimulation 01 Nov 2016, 19:04
Oh, I see!
So, what do you think about my proof that FASM preptocessor is Turing-complete? Do you think it's correct? If no, why not?
Post 01 Nov 2016, 19:04
View user's profile Send private message Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  


< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.