Back

UEFI Bindings for JavaScript

122 points4 hourscodeberg.org
fnimick2 hours ago
epistasis27 minutes ago

Whoa, I haven not been following ASM.js stuff in any detail.

Seeing that Metal replaces kernel/userspace boundaries with VM protections for memory, meaning that system call overhead is eliminated, at the price of ASM/VM overhead.

What a fascinating idea. Kidding on the square...

monax2 hours ago

I'm doing my part ∠(‘-‘)

ruined2 hours ago

thank u 4 ur serves

kiddico2 hours ago

Thank you for the reminder to do my yearly viewing of that video lol

faxmeyourcode3 hours ago

Love this. An example of complete and total dominion over the machine. Great quote here too lol

> Prometheus stole fire from the gods and gave it to man. For this he was chained to a rock and tortured for eternity.

raphaelmolly858 minutes ago

The choice of Duktape here is smart — it's one of the few JS engines that can actually run freestanding with minimal libc stubs, since it was designed for embedding in constrained environments. V8 or SpiderMonkey would be a nightmare to get running pre-boot.

What I find most interesting is the UEFI services binding approach. Rather than trying to abstract away the hardware, it exposes the raw EFI protocols (GraphicsOutput, SimpleFileSystem, etc.) directly to JS. That's a much more pragmatic design than trying to build a full HAL — you get to prototype UEFI applications rapidly while keeping the escape hatch to C for anything performance-critical.

Would love to see if anyone tries hooking this into UEFI's built-in network stack for PXE boot scripting. That could actually be useful beyond the novelty factor.

written-beyond32 minutes ago

Are em-dashes really that common to use or did I just start noticing them after LLMs became popular for rewriting comments?

Not implying your comment is LLM generated, clearly it isn't but asking as a genuine question.

catapart3 hours ago

Can someone break this down for me? Looks like it's using... C? to load a js interpreter which bootstraps an API around all UEFI features? Do I have that right?

And, if so, does that mean that once the API has been bootstrapped, one could actually write an OS in js? Or are there other abstractions that would need to be migrated first?

tatskaari2 hours ago

You don't need a JS bootloader to write an OS in JS. The bootloader just drops the machine into some memory address for it to start executing your OS init script. that bit could be a Javascript interpreter. You can't do much with the architecture in Javascript though, because it doesn't allow you to map memory directly to your types (unless there's some ungodly nonesense I'm not aware of) so you'll have to drop into C/asm to e.g. interact with the ports/registers/tables to set up userspace.

Zambyte1 hour ago

An OS doesn't need to have a user space :)

hajile1 hour ago

I'm pretty sure someone already compiled Linux to asm.js a few years ago. As asm.js is/was a subset of JS, you could say it's already been done. In theory, you could continue work from there in JS.

https://medium.com/@retrage/lkl-js-running-linux-kernel-on-j...

asveikau2 hours ago

> And, if so, does that mean that once the API has been bootstrapped, one could actually write an OS in js?

I bet somebody has done that.

https://www.google.com/search?q=os+kernel+in+javascript

Seems like a small number of hobbyists have attempted.

I've heard of people doing this with other high level languages. Basically you need enough low level code to bootstrap a VM. Once you have that, you can make the high level language decide some logic that traditionally would be in C code, like manipulating page tables or whatever.

gwbas1c2 hours ago

Automatic Garbage Collection in a kernel probably won't work:

I vaguely remember hearing about someone trying to use .Net in the Windows kernel.

The big problem is garbage collection: If I remember correctly, the fact that "any" operation can fail with an out of memory exception was a huge problem. Another problem was that random pauses for garbage collections in the kernel had major stability issues.

In short, I hope that the js kernel is for amusement and education; otherwise it would need a much more advanced garbage collector then earl 2000's .Net.

leoedin2 hours ago

You'd need to write an entire hardware abstraction layer to do anything useful. There's projects that do this for microcontrollers - eg MicroPython and Espruino.

monax3 hours ago

Depending on your definition of OS, yeah you could do that :)

nxobject3 hours ago

Hey, when Apple transitioned from m68k to PowerPC, it took them a hell of a long time to rewrite massive parts of their OS. It's a low bar, though...

DustinBrett2 hours ago

OS in JS, ok I am interested now...

my_throwaway233 hours ago

I presume you'll add the network stack next, so that I can use my favourite, most useful packages?

  import isOdd from "https://unpkg.com/is-odd";
p_l3 hours ago

Well, there's a network stack already there, including HTTP and HTTPS on newer firmwares.

monax3 hours ago

We are getting isOdd in the bootloader before GTA-IV

spiffyk3 hours ago

Wait, when did I time-travel?

monax3 hours ago

oops typo

shevy-java1 hour ago

I think there are two philosophies here:

1) JavaScript must stay in the box (aka in the browser).

2) JavaScript as a general purpose programming language.

While I can absolutely understand 1), I have had wanted to access the filesystem via JavaScript, just as I do via ruby or python, for local use only. After I googled for a while, they would say that this is not possible unless one uses npm/node. I think this shows that there are use cases here and the "default" JavaScript, aka 1), does not cover these. I do not like JavaScript, but based on my own use cases, I actually favour 2) far more than 1). So from that point of view, being able to access UEFI can also be useful. So why not.

notpushkin28 minutes ago

> I have had wanted to access the filesystem via JavaScript, just as I do via ruby or python

There are some (limited) ways to do so now: https://developer.mozilla.org/en-US/docs/Web/API/File_System...

As for (1) vs (2), it’s not really an issue of JavaScript at all. The main question is, do you want to build something that runs in a browser? If you’re building a web app, you’ll have to use the sandboxed APIs (and probably JavaScript). If you don’t care about the runtime, yeah, you can use Node or Bun or Deno (or use another language altogether).

DJBunnies27 minutes ago

Try webkitdirectory file attribute for browser access to the file system.

eqvinox2 hours ago

> If this makes you grin, you are probably holding the torch.

What if it makes me recoil in horror? screams into the void

bayindirh3 hours ago

This project will go places. Like every silly project not intended for production. :)

redvulps3 hours ago

next step is to create a UEFI TUI using react (please don't)

aruametello3 hours ago

you may just have casted a curse on our future motherboards, damn you

monax3 hours ago

OMG we can use ink for that

sanufar2 hours ago

This is hilarious lol, it’ll be any day now before we get a full JS kernel. Garbage collection could be an obstacle, but I know there have been some kernels written in Go/Java before

shepherdjerred1 hour ago
fnimick2 hours ago

Who needs to garbage collect? Just leak memory until the system dies! That strategy seems to be good enough for claude code, anyway.

cluckindan1 hour ago

If it’s good enough for missile guidance systems, it’s good enough for me.

edward284 hours ago

Wow, this is cursed.

lnenad3 hours ago

I think the proper term is blursed.

monax4 hours ago

I think r/unixporn will love it once it gets DOM support :^)

kijin3 hours ago

Finally, we can create splash screen animations in pure CSS!

pwdisswordfishy2 hours ago

Does it manage to support floats? I am not sure if those can be safely used in the UEFI environment. (I recall GRUB’s build of Lua being integer-only, and Linux avoiding the use of floating-point arithmetic in kernel mode, but I don’t remember the reason.)

monax2 hours ago

Yeah floats works

juancn1 hour ago

This is both so impressive and cursed that I'm not sure how to feel.

GranPC2 hours ago

"The Birth and Death of JavaScript" is coming true after all.

marijnz0r2 hours ago

I was going to post this as well! A direct link to the video: https://www.destroyallsoftware.com/talks/the-birth-and-death...

vaylian2 hours ago

Could this be used as a learning tool? Rebooting the computer takes so much more time compared to reloading the browser tab. And you probably can't brick your computer.

Decabytes2 hours ago

I’m always amazed and slightly envious of what programming languages with large developer bases can do. I mean if a language is Turing complete it can do anything, but JavaScript takes this to the extreme.

Mind you I never said anything about quality or performance, obviously doing everything in JavaScript comes with it’s own issues but if you were to say that someone got JavaScript running in the Linux kernel as a POC I wouldn’t even be surprised

lioeters3 hours ago

Turning in the widening gyre, the falcon cannot hear the falconer. The center cannot hold.. The old prophecy is coming true.

grougnax3 hours ago

Awesome! Everything will be rewritten in JS

Smalltalker-803 hours ago

Can't wait for browser support for this... ;-)

ruined2 hours ago

webuefi has already been shipped by google for use on chromebooks. but mozilla and apple irrationally refuse to implement the standard for "security reasons"

monax3 hours ago

Soon™

fbnszb3 hours ago

Yeah, but your [developers] were so preoccupied with whether or not they could, they didn't stop to think if they should.

rafram2 hours ago

This is incredible.

ycombinatornews2 hours ago

> If this makes you grin you are probably holding a torch

Hilarious

g0510514 hours ago

"Your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should."

Pretty neat, though.

rezmason2 hours ago

It begins!

fenwick673 hours ago

Finally!

outadoc3 hours ago

I love it.

madduci4 hours ago

But why?

monax4 hours ago

It's just a silly experiment; the real endgame is to make a bootloader that is customisable using HTML/CSS/JS

magicalhippo3 hours ago

Since PDFs can contain JS, presumably that should be the preferred way of modifying your boot loader.

monax3 hours ago

Yeah that's the natural next step, I'll work on that next

ThrowawayTestr3 hours ago

Why not?

madduci3 hours ago

Because this can end very badly. It is a new surface to attack

M95D2 hours ago

Exactly! It's actually great! More ways to jailbreak stuff.

eqvinox2 hours ago

Why is it a new surface? Either you can run UEFI code, or you can't. Attacking the JS interpreter itself is unrealistic IMHO, it's the poorly written JavaScript running on top of this that might open new surfaces of attack. But other UEFI code is mostly written in C or C++, so let's call that a wash?

yjftsjthsd-h2 hours ago

Maybe? What's your threat model?

bwat493 hours ago

Your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should!

dfedbeef2 hours ago

Cursed