← Back to context

Comment by jart

5 years ago

Author here. I wanted to honor Greece for the amazing cultural impact they've had, similar to how mathematics honors Greece. We got a lot of comments like this in the last thread. What dang said about it was really smart: https://news.ycombinator.com/item?id=24264514

Ah, I don't want to make a fuss about it (my comment was tongue-in-cheek), it's really not a big deal, but it is annoying to spend 2-3 seconds trying to figure out if you're having a stroke, and then some more trying to suss out what the sentence is actually trying to say.

If you want to honor Greece, use the letters as they're meant to be used! "Acτuaλλy πoρτabλe εxecuταbλe" would be much better (though I've intentionally tried to give English readers a stroke with this one :)!

  • The entire project is built on not using things the way they are meant to be used, though. The name is kind of doing the exact same thing the code is.

    • Though, oddly enough, the English letters are used exactly how they're meant to be used :P

It's actually not smart at all. Replacing the letters in the Roman alphabet with Greek letters based on superficial resemblance is not any different from replacing the "R" with "Я" when writing about anything Russian-related (you see it stupidly used in book covers, t-shirts, etc).

How does this do anything to honor the cultural legacy of Greece? Perhaps we could honor the legacy of 19th century mathematics by using Fraktur characters when they resemble Latin ones?

When people who can read Greek are telling you it's bad taste maybe take their word for it! Not dang.

What you're really saying is that the Greek alphabet (and by extension its language community) is so insignificant compared to Latin that the cost of potential misrecognition is so low that it can be disregarded. This is chauvinism, not "honoring Greek mathematics"!

  • Word. I'm still trying to find out who Doidld Tyatsmr is and why is he so hated in the US.

Aren't the Greek symbols used in math void of implicit meaning? You're taking a meaningful English sentence and replacing its letters with Greek letters while making it extremely difficult for people with disability on screen readers, those two things are not the same.

I have to admit, every previous time I saw this linked I didn't bother clicking through, because from the title I thought it was a post mocking the concept of portable executables.

  • I'm guessing this the unfortunate consequence of the pattern "actually, " becoming a pejorative meme in the past year or so.

    • no, it's that the greek letters reminded me of the twitter "Im MoCkInG SoMeThInG sTuPid" format

I appreciate the good intentions, but confusing Greek readers doesn't seem to me like a good way to honor the cultural impact of Greece.

I know this is a loaded question, but are there any resources you can point to in learning the linux syscall stuff, or perhaps writing a C compiler from scratch? I thought I had a fairly good grasp of this stuff but after looking through cosmopolitan code, I realized Im not even close.

  • Rui is writing a book for the chibicc compiler in the cosmo codebase. I should probably write a book on system interfaces since there's no school for it. I had to go straight to the primary materials, i.e. the source to pretty much every existing kernel and libc along with the historical ones in order to understand the origin of influence. That's what helped me have a razor sharp focus on the commonalities which made this project possible.

    So I'd say that the SVR4 source code would be a good place for you to start. It's like ambrosia and once you've read it you can always tell by reading modern code which developers have and haven't seen it. There's also the Lions' Commentary on Unix. I highly recommend Richard W. Stevens. The last book on the required reading list is BOFH.

  • > learning the linux syscall stuff

    I've been studying this for a while. Turns out Linux has an amazing interface. It's stable and language-agnostic. All you need to do is put the values in specific registers and execute a special instruction. The result comes back in one of those same registers.

    The high level documentation is here:

    https://man7.org/linux/man-pages/man2/syscall.2.html

    https://man7.org/linux/man-pages/man2/syscalls.2.html

    https://www.kernel.org/doc/Documentation/ABI/stable/syscalls

    https://www.kernel.org/doc/Documentation/ABI/stable/vdso

    On Windows there is a similar interface but it is not stable. The system call numbers can change. Developers are supposed to use the good old Microsoft DLLs in order to get anything done. Just like how everyone uses libc on other systems.

    Linux is different. The system call binary interface is the Linux interface. So it's actually possible to trash all of GNU and rewrite the entire Linux user space in Rust or Lisp or whatever. It doesn't have to be written in C. It doesn't even have to be POSIX compliant. Could be GUI-focused!

    All you need to make any x86_64 Linux system call is this code:

      long
      system_call(long number, long _1, long _2, long _3, long _4, long _5, long _6)
      {
          register long rax __asm__("rax") = number;
          register long rdi __asm__("rdi") = _1;
          register long rsi __asm__("rsi") = _2;
          register long rdx __asm__("rdx") = _3;
          register long r10 __asm__("r10") = _4;
          register long r8  __asm__("r8")  = _5;
          register long r9  __asm__("r9")  = _6;
    
          /* r8, r9 and r10 may be clobbered but can't be in the clobbers list
             because the compiler won't use clobbered registers as inputs.
             So they're placed in the outputs list instead. */
          __asm__ volatile
          ("syscall"
    
           : "+r" (rax),
             "+r" (r8), "+r" (r9), "+r" (r10)
           : "r" (rdi), "r" (rsi), "r" (rdx)
           : "rcx", "r11", "cc", "memory");
    
          return rax;
      }
    

    This is all you need to do anything. You can perform I/O. You can allocate memory. You can obtain your terminal's dimensions. You can perform ioctl's to your laptop's camera. You could make a new programming language today and all it really needs to be complete is this single function. What if instead of having this function the compiler could simply emit code that conform to this binary interface? The language could have a system_call keyword that generates Linux system call code!

    Once I realized this I tried to turn it into a library called liblinux... I stopped working on it when I found out the kernel already has an awesome single file header you can include that lets you build freestanding Linux executables for a ton of architectures. They use it on the kernel to build their own tools!

    https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/lin...

    It even includes process entry point code! Linux copies the argument and environment vectors to the stack before entering the executable. The process start up code obtains those pointers and passes them to the main function. It also ensures the exit system call is called.

    The process entry point is usually called _start because that's what linkers look for by default. In reality the ELF header has a pointer to the program's entry point, the actual symbol doesn't matter. You can tell the linker to set it to any other address or symbol. Also note that it's an entry point, not a function. There is no return address. Allowing that code to terminate results in a segmentation violation. Hence the need to ensure exit is called before that happens.

    The only feature that seems to be missing is support for the table of auxiliary values:

    https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/lin...

    The auxiliary values are placed on the stack immediately after the environment vector. So all you need to do to find this pointer is loop through it until it goes out of bounds. I wrote this code and it works:

    https://github.com/matheusmoreira/liblinux/blob/master/start...

      struct auxiliary { Elf64_Off type; Elf64_Off value; };
    
      static void *after(void *vector)
      {
          void **pointer = (void **) vector;
          while (*pointer++ != 0);
          return pointer;
      }
    
      int liblinux_start(void *stack_pointer)
      {
          long count;
          char **arguments;
          char **environment;
          struct auxiliary *values;
    
          count = *((long *) stack_pointer);
          arguments = ((char **) stack_pointer) + 1;
          environment = arguments + count + 1;
          values = after(environment);
    
          return start(count, arguments, environment, values);
      }
    

    You can just loop over the pointer to the structure until you find one with type equal to AT_NULL. Example here:

    https://github.com/matheusmoreira/liblinux/blob/master/examp...

    • Author here. You would like this project: https://chromium.googlesource.com/linux-syscall-support/ Thank you for reminding me of the joy I felt when I discovered this. I feel like you should publish this and post it on Hacker News. Because too many people who post here hold the viewpoint that SYSCALL is evil and you must link the platform libc dynamic shared object or else you're a very horrible person who deserves to have their binaries broken like Apple did to Go. But they wouldn't feel that way, if they could just see the beauty you described.

      4 replies →

> The quality of this post is so high that it doesn't feel right to override any aspect of what the author created, including quirks like the title.

I agree with dang's feelings/thoughts about the issue.

Perhaps a solution would be to add the "normal" meaning between parenthesis, after the one in greek alphabet?

By the way, Justine: great work. Besides the obvious HN recognition, I wanted to tell you explicitly as well.

What are you going to work on in the near future? Curious to hear about it. If you don't want to post in public, $my_hn_username at gmail

What dang said about it was not smart.

> it's good for readers to have to work a little

Unless they're using assistive technologies. In that case it's a nightmare. Don't make your users work.

> it's not hard for any HN reader to do the bit of work to figure it out

Unless they're using assistive technologies. Or just want to read it without work.

Or, say searching for it. This post comes up. The one you linked to doesn't.

https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu...

Respect to you for wanting to honor Greece. I think using the letters* correctly would honor them more. (thanks for the correction)

  • > I think using Cyrillic correctly would honor them more.

    (Greece doesn't use Cyrillic but I agree with you otherwise)

  • Yes. My screen reader, at least Voiceover on my phone, had a stroke reading that. I had to navigate letter by letter and guess what it meant. But it's also quite common so I'm used to doing that regardless.