Live data from Hacker News

M/o/Vfuscator: A single instruction C compiler

github.com

11–20 of 30 posts

Re: M/o/Vfuscator: A single instruction C compiler

#11

If you haven't seen it, the original conference talk on the Movfuscator is excellent – https://www.youtube.com/watch?v=R7EEoWg6Ekk – it goes through it in detail and describes how version 0.0 had Brainfuck as a totally legitimately valid intermediate language ;-)

I want Christopher Domas for an older brother, in the 90s.

Re: M/o/Vfuscator: A single instruction C compiler

#12
post #3

Branching with only MOV? How does that work? Is there no actual flow control but instead conditional manipulation (MOVs) of values?

"All problems in computer science can be solved by another level of indirection." - David Wheeler

Basically the branching points are pointers where one writes a junk memory address or the actual one to operate on. Where to get the correct addresses? A lookup table, the addresses moved into registers.

I think this could be a hack that's repeatable to a pretty good degree in many architectures.

If you'd like to see how exactly, watch the presentation. The presentation links were already shared in discussion and searching movfuscator in Youtube also gets you the result.

Re: M/o/Vfuscator: A single instruction C compiler

#14

If you haven't seen it, the original conference talk on the Movfuscator is excellent – https://www.youtube.com/watch?v=R7EEoWg6Ekk – it goes through it in detail and describes how version 0.0 had Brainfuck as a totally legitimately valid intermediate language ;-)

He's my favorite speaker (watch all his talks... they're worth it!), but he seems to have gone MIA (possibly after joining Intel? I don't know the timeline), much to my dismay.

Re: M/o/Vfuscator: A single instruction C compiler

#15

If you haven't seen it, the original conference talk on the Movfuscator is excellent – https://www.youtube.com/watch?v=R7EEoWg6Ekk – it goes through it in detail and describes how version 0.0 had Brainfuck as a totally legitimately valid intermediate language ;-)

He's my favorite speaker (watch all his talks... they're worth it!), but he seems to have gone MIA (possibly after joining Intel? I don't know the timeline), much to my dismay.

Yes, you got the timeline right, he went MIA after joining Intel. Turns out a great way to stop vulnerability disclosures is to protect them behind an NDA, plus for any that are found you can give first dibs to all of the 3-letter agencies that are shoveling money your way.

Re: M/o/Vfuscator: A single instruction C compiler

#16
post #3

Branching with only MOV? How does that work? Is there no actual flow control but instead conditional manipulation (MOVs) of values?

There can be control flow. MOV an address into the right spot in the interrupt vector table then do a MOV that causes a fault that calls the right interrupt (such as a page fault).

But now you're just employing another machine, which is not just made out of MOVs.

The video describes in detail what actually happens. I encourage watching it, it's pretty genius, but the very short version is that you turn execution "off" for any code that is not in the "current" branch by switching over all MOVs to target a scratch space instead of their real targets, which means they still execute, but don't have an actual effect. Before each possible branch target, you check whether to turn execution "on", if it's the current one, i.e. making the instructions which are part of that branch affect "actual" memory again.

Re: M/o/Vfuscator: A single instruction C compiler

#17
post #3

Branching with only MOV? How does that work? Is there no actual flow control but instead conditional manipulation (MOVs) of values?

X86 MOV is quite a beast.

I'm not entirely through with the video yet, but the core of the idea doesn't need that much from the MOV instruction. No control flow happens in the traditional sense from the CPUs point of view, it's all just linear execution. Instead, there's an abstraction on top that implements control flow by making all code that is not part of the current branch ineffective (but still executed).

Re: M/o/Vfuscator: A single instruction C compiler

#18
post #3

Branching with only MOV? How does that work? Is there no actual flow control but instead conditional manipulation (MOVs) of values?

There can be control flow. MOV an address into the right spot in the interrupt vector table then do a MOV that causes a fault that calls the right interrupt (such as a page fault).

Incidentally, the fault handling (presumably done in microcode) is itself Turing-complete:

https://news.ycombinator.com/item?id=5261598

Re: M/o/Vfuscator: A single instruction C compiler

#19
post #12
post #3

Branching with only MOV? How does that work? Is there no actual flow control but instead conditional manipulation (MOVs) of values?

"All problems in computer science can be solved by another level of indirection." - David Wheeler Basically the branching points are pointers where one writes a junk memory address or the actual one to operate on. Where to get the correct addresses? A lookup table, the addresses moved into registers. I think this could be a hack that's repeatable to a pretty good degree in many architectures. If you'd like to see how…

That trick doesn't work for writing an infinite loop.

Re: M/o/Vfuscator: A single instruction C compiler

#20
post #3

Branching with only MOV? How does that work? Is there no actual flow control but instead conditional manipulation (MOVs) of values?

Others have described how branching works. But I'm not convinced it's possible to loop around to the beginning using only MOV instructions. movfuscator as currently implemented performs a CALL at the beginning to set up a signal handler, under the justification that it's not part of the real program and could be done with only MOVs, if the program were running in ring 0. (Even if you got rid of libc, it would still take an INT 0x80, SYSENTER, or SYSCALL to pass control to the kernel.)

However, it seems to me like if you booted the processor directly into the program instead of having a bootloader and kernel to help you, then you'd run into a brick wall trying to move from 16-bit real mode to 32-bit protected mode, since doing so requires setting up a global descriptor table (GDT), and the only way I know of to do that is with the LGDT instruction. Unless I'm forgetting something?

Post reply on HN