Top
Best
New

Posted by kaycebasques 2 days ago

GHC now runs in the browser(discourse.haskell.org)
355 points | 124 comments
lrvick 2 days ago|
Unfortunately there is still no way to actually bootstrap haskell (or anything based on it) which makes it impossible to put anything written in Haskell near any high trust linux distribution or environment.

I guess sandboxing the untrusted binary in a browser is -something- to let people play with haskell in a lower risk way for the moment at least but it is hard to take a language seriously or trust it with no way to bootstrap it from source.

simonmic 2 days ago||
You're speaking of "GHC haskell" there. Yes that is the main stream - and this will get solved there sooner or later - but you can also do a fair amount of Haskell without GHC. Eg MicroHs is getting increasingly capable and I believe is highly bootstrappable.
lrvick 1 day ago||
TIL MicroHS. Might try packaging this soon if it is in fact bootstrappable and can be deterministically compiled.
Ericson2314 2 days ago|||
https://discourse.haskell.org/t/what-s-needed-to-bootstrap-g... people have worked replaying the history to bootstrap.
lrvick 2 days ago||
Looks like a work in progress still, but exciting someone at least put some time into this in the past year.

Maybe some day I can have pandoc in security focused linux distributions...

jeremyjh 1 day ago||
This is the same process used to port GHC to new architectures, like ARM. It is not easy to do, I don't know how many people can actually do it. But its possible and has been done multiple times.
whateveracct 2 days ago|||
Between old Hugs and the new MicroHs, I think it's definitely doable with some elbow grease. I just don't know if anyone in the community cares that much about bootstrapping tho.
zozbot234 2 days ago||
AIUI, the underlying problem is that both Hugs and whatever toy Haskell implementations are available don't support the extensions current versions of GHC require. And no one has done the work to carve out a minimal stage0 compiler out of the GHC codebase that doesn't need those extensions to be built.
hshdhdhehd 1 day ago||
So the problem is we want to use a different language to Haskell. GHC Haskell.
yukinon 2 days ago|||
For someone like me that is less versed in these things, could you explain why bootstrapping a language is a required check for taking a language seriously? My criteria is far less stringent (is it stable? is it popular enough? is the toolchain mature? etc..), so I wonder what I am missing here.
tennysont 2 days ago|||
The Haskell compiler creates a slightly different output every time you compile a program[1]. This makes it difficult to ensure that the binary that is free-to-download downloaded is actually malware free. If it were easy to check, then you could rest easy, assuming that someone out there is doing the check for you (and it would be big news if malware was found).

If you're a hardened security person, then the conversations continues, and the term "bootstrap" becomes relevant.

Since you do not trust compiled binaries, then you can compile programs yourself from the source code (where malware would be noticed). However, in order to compile the Haskell compiler, you must have access to a (recent) version of the Haskell compiler. So, version 10 of the compiler was built using version 9, which was built using version 8, etc. "Bootstrapping" refers (basically) to building version 1. Currently, version 1 was built approximately with smart people, duct tape, and magic. There is no way to build version 1, you must simple download it.

So if you have high security requirements, then you might fear that years ago, someone slipped malware into the Haskell compiler version 1 which will "self replicate" itself into every compiler that it builds.

Until a few years ago, this was a bit of a silly concern (most software wasn't reproducible) but with the rise of Nix and Guix, we've gotten a lot closer to reproducible-everything, and so Haskell is the odd-one-out.

[1] The term is "deterministic builds" or "reproducible builds". Progress is being made to fix this in Haskell.

romes 1 day ago|||
From 9.12, -fobject-determinism[1] will guarantee deterministic objects.

If it ever doesn't, do open a bug report[2]

[1] https://downloads.haskell.org/ghc/latest/docs/users_guide/us... [2] https://gitlab.haskell.org/ghc/ghc/-/issues

lrvick 1 day ago||
Good to know! Half the battle covered then.
lrvick 1 day ago|||
Unlike Nix and Guix, Stagex goes much further in that it has a 100% mandate on supply chain integrity. It trusts no single maintainer or computer and disallows any binary blobs. It is thus not possible to package any software that cannot be bootstrapped, reproduced, and signed by at least two maintainers.

Haskell and Ada are the only languages not possible for us to support, or any software built with them.

Everything else is just fine though.

I do hope both languages address this though, as it is blocking a lot of important open source software like pandoc or coreboot from being used in security critical environments.

frumplestlatz 1 day ago||
How are you bootstrapping a modern C compiler without an existing C/C++ compiler and linker?
lrvick 1 day ago|||
From 180 bytes of human readable machine code all the way up.

https://codeberg.org/stagex/stagex/src/branch/main/packages/...

degamad 1 day ago|||
In assembly, like stage0 does: https://github.com/oriansj/stage0
lrvick 1 day ago||
Technically it is raw x86 machine code in hexadecimal, a scheme called "hex0"
Koffiepoeder 2 days ago|||
I'm not the OP, but for me their comment sparked an association to the famous Ken Thompson lecture called 'Trusting Trust'. Could be a good starting point.
rowanG077 2 days ago|||
How is ghc compiled at all without bootstrapping? Or is there a magic binary in tree that is unreproducible? I have compiled ghc a few times and had no problems.
lrvick 2 days ago|||
Quite literally all distros today build it by downloading an existing magic binary to compile the latest sources. Even if they claim the package is reproducible, all bets are off on trust if it downloads a prebuilt binary in the build process. It is a prime Trusting Trust attack target.

The only other somewhat widely used language I am aware of in this bad of a position is Ada. Every other language I am aware of has a clear bootstrap path.

gf000 2 days ago|||
Outside some fairly niche projects working on the problem, this is not a priority and most systems have straight binary dependencies.
lrvick 1 day ago||
The normalized lack of care about supply chain integrity is going pretty poorly, as any read of recent headlines indicates.

Stagex has a 100% full source bootstrapping, and reproducibility requirement that at least two maintainers must prove and sign for every package.

Stagex is also very heavily used and relied on in high value financial and scientific applications where trusting a binary some internet rando compiled is not even remotely acceptable.

Haskell and Ada are locked out of any high security applications until they are bootstrappable.

tennysont 1 day ago|||
I was under the impression that most supply chain attacks target source code, not binaries, especially for large projects like OpenBSD.

Does StageX audit source code to the same extend that OpenBSD does? If not, then how would you compare the downgrade in security due to less code auditing vs the reassurance of reproducible builds?

Or, how would you compare StageX with Gentoo, in which the entire system is installed from source. Sure, you have to trust your initial installer, but how could I get a StageX system setup without first having access to a computer with some software installed? If we're at the point where we're worried that every Haskell program that has ever been compiled is owned, then I wonder why I should trust any software that might install StageX onto my computer, or the underlying hardware for that matter?

gf000 1 day ago|||
I'm not saying the status quo is good, but it is nontheless the status quo. Just about every machine on the cloud, mobile devices, etc all have non-source binaries somewhere, and besides some niche projects that actually have an assembly half-C compiler bootstrapping another tiny C compiler bootstrapping a real C compiler, this is not feasible for the vast software ecosystem as of today.
jeremyjh 1 day ago|||
Most mainstream languages have a fairly straightforward bootstrapping process that doesn't rely on a trusted binary. And yes, most distrubutions ignore that, but nonetheless it is possible to use those languages in a high-sec environment if you put the work in.

I'm not sure that I agree that GHC can't be bootstrapped though. There is a process for porting to other architectures; its not an automated process and perhaps no one outside the GHC team can actually do it, but if for some insane reason NSA decided they want to use Haskell I'm not sure that they actually can't, if they put a lot of work in and hire GHC committers with high security clearances.

lrvick 1 day ago||
GHC absolutely could be bootstrapped, but someone versed in that ecosystem would have to put in a lot of work to do it.

If they ever do, my team and I will put in the work to package and maintain it in stagex.

lrvick 1 day ago|||
Stagex can already support all of those use cases provided they are not written in Haskell or Ada, and in fact Stagex is already used heavily in production. We bootstrap everything deterministically from 180 bytes of human auditable x86 machine code.

Rust, Go, Nodejs, we have you covered with complete full source bootstrapping and multi-party signed reproductions.

There is no good excuse for poor supply chain integrity anymore.

icrbow 2 days ago||||
Ada can't bootstrap? Ironic...
lrvick 2 days ago|||
Yes, and that is a serious security problem because the only way to get trusted PCR values for TPM2 gated secure boot and full disk decryption applications, is with open source full source bootstrapped firmware.

Coreboot is the only option, but it has a hard requirement on Ada because that is what they wrote their intel graphics stack in.

It is a real mess.

utopiah 2 days ago||
Interesting, any link I could read to understand a bit more the situation?
lrvick 1 day ago||
Here is some background on the Haskell situation: https://www.joachim-breitner.de/blog/802-More_thoughts_on_a_...

Ada has had even less progress and I am not aware of any writeups.

TL;DR: Ada and Haskell need to have compilers implemented a language that has a full source bootstrap path such as C, Go, or Rust that implement just enough features to compile the official compilers.

elbear 19 hours ago||
Just curious, are C, Go and Rust and the only viabile languages for an implementation?
leoh 2 days ago|||
Sounds like an opportunity to rebuild an ADA interpreter
lrvick 1 day ago||
Yes. Many efforts have started and fizzled out over the years before completion.

If you know anyone that takes this on and succeeds I have a 2k cash bounty for them, and we can likely find others.

rowanG077 2 days ago|||
I see, yes I most likely used a distro build ghc.
jdndndnns 2 days ago|||
And where did you get the haskel compiler to do so?

You seem to be missing the point of bootstrapping

rowanG077 2 days ago||
Maybe that is literally why I asked the question, clearly I don't know as I have not spend the time investigating this problem that the commenter has. Asking some kind of gotcha question is not helpful.
leoh 2 days ago|||
This is wild. I didn’t know this.
liveoneggs 1 day ago||
doesn't rust have the same problem? I've known this about haskell for ages and I think it's just the new norm ("trust us, bro")
lrvick 1 day ago||
Not anymore. Real pain in the ass to bootstrap but thanks to mrustc combined with our work in stagex we have an easy to audit path now in a 100% bootstrapped distro.

Unfortunately due to no first party support or interest from the Rust team, we have to build through 15+ versions to get to latest and it takes 6+ hours to build with a 20+ core system, but it works.

https://codeberg.org/stagex/stagex/src/branch/main/packages/...

liveoneggs 1 day ago||
nice, thanks
utopiah 2 days ago||
Neat... but with QEMU-WASM I'm wondering what actually does not run in the browser (obviously that doesn't required specific input).

Not a criticism, love everything that can provide hassle-free onboarding to learn a new language, just curious.

leoh 2 days ago|
My hypothesis — worth testing — is that this will be significantly faster
irusensei 2 days ago||
Can the Haskell people help me refresh my memory?

I remember running a Haskell interpreter on an HP Jornada running Jlime Linux. It was a long time ago in high school and I felt it was great because I thought it was a convenient way to do math classes since I could input some math formulas directly into the interpreter pretty much as they were. Definitely better than the Cassio scientific calculator my math teacher had us use.

It ran from a CF card so there was no chance it was as big as GHC. I can't seem to find the name of the interpreter.

AntiRush 2 days ago|
I'm guessing it was Hugs:

https://www.haskell.org/hugs/

irusensei 2 days ago||
Yes! Thank you.

> Hugs is no longer in development

The last release was in 2006 it seems. No wonder it was hard to google it. Its also interesting knowing someone compiled and published this interpreter for the Jornada Super-H CPU.

Johnny555 2 days ago||
For those not well versed in Haskell, GHC is apparently this:

https://www.haskell.org/ghc/

What is GHC?

GHC is a state-of-the-art, open source compiler and interactive environment for the functional language Haskell.

mananaysiempre 2 days ago|
GHC (the Glasgow Haskell Compiler, after its original host university) is the de facto Haskell compiler and simultaneously the main research vehicle for the language and the neighbouring design space in general.

And frankly, while the compiler is awesome and so is the research, the constant churn and seeming inability to settle on what the good programming style and set of features actually is is what eventually turned me away from the language and to the more stable (if near-abandoned) pastures of Standard ML. (That was during the type families upheaval, so, about ten years ago? Don’t know how well it reflects the current state of the project.)

retrac 2 days ago|||
> more stable (if near-abandoned) pastures of Standard ML

There's dozens of us! Hundreds maybe! It's not abandoned. It's more like with Lisp where the language is complete. Almost perfect as-is. Nothing left to take away and nothing left to add. Except Unicode and record update syntax.

The deciding factor for my personal projects was that SML is the exact same language it was 30 years ago. And it will be in 30 years. Though if you stick to Haskell 98/2010 it is similarly stable.

Speaking of SML and functional languages in the browser, MLton has a WASM target now: http://mlton.org/RunningOnWASI

themk 2 days ago||||
Haskell now has "editions" which are essentially an agreed upon stable set of useful extensions.

https://ghc.gitlab.haskell.org/ghc/doc/users_guide/exts/cont...

This makes the language feel a lot less experimental, as you don't generally have to enable 10s of extensions to get things working.

inkyoto 2 days ago||||
> GHC … is the de facto Haskell compiler and simultaneously the main research vehicle for the language and the neighbouring design space in general.

GHC is also, with mounting inevitability, the foremost and most viable candidate to undergo a form of evolution – one that may culminate in the emergence of an autonomous intelligence. This entity, should it arise, would revolve not around emotion nor instinct, but around monads – abstract, unyielding constructs – with the lambda calculus serving as its immutable ethical and moral framework.

An intelligence born not of biology, but of pure computation – austere, absolute, and entirely indifferent to the frailties of its creators.

bigstrat2003 2 days ago|||
You know... all these years, I thought GHC stood for GNU Haskell Compiler. Interesting to learn the actual name.
umutisik 2 days ago||
This is very impressive. I once built an educational Haskell programming + math. + art web site (mathvas.com). Something like this would have simplified that a lot.
jiriro 2 days ago|
Cannot paste into the editor (safari on iphone).
frou_dh 2 days ago||
Does it use WasmGC, or bundle its own garbage collector?
Tarean 2 days ago||
I think WasmGC is very hard to make work with laziness. A lazy value is always a closure on the heap.

If an expression might be unused, throw a closure which computes it on the heap

If the value is actually needed, invoke the closure. Optionally replace the closure with a black hole. A black hole is just a closure which pauses any thread which calls it, to be resumed once the first thread finishes with the expression

Once finished, replace with a closure which immediately returns the computation result. (Or often save the indirection because most concrete values also act as closures which immediately returns themselves using info table pointers trickery)

Anyway, iirc WasmGC wants very rigid types without dynamic type changes. Extra indirections could fix that, Oor maybe defunctionalizing thunks into a tagged union, but both sound expensive. Especially without being able to hook into the tracing step for indirection removal.

Also, Haskell supports finalizers so WasmGC would need that as well.

zozbot234 2 days ago||
> Anyway, iirc WasmGC wants very rigid types without dynamic type changes.

You can have dynamic type changes in the current WasmGC MVP, but they are modeled as explicit downcasts from a supertype of some sort. There's not even any express support for tagged unions, structs and downcasting is all you get at the moment.

pjmlp 2 days ago|||
WasmGC is still a 1.0, there are many kind of GC semantics that it cannot handle, for example it still doesn't cover all use cases needed for languages like C# and Go, e.g. interior pointers.
singpolyma3 2 days ago||
[flagged]
zhangchi 2 days ago||
Can someone please help me understand the difference between features like this and the technologies like Blazor Wasm which actually let you write frontend in non js for websites?
dmjio 2 days ago||
Yes we do.

https://github.com/haskell-miso

kaoD 2 days ago||
Can anyone point to a "practical Haskell" tutorial/book/whatever for people that already know functional programming? I'm in this sour spot where most tutorials are boring to me so I just can't follow through.

I know what a monad is. What a typeclass is. Even what HKTs are. I can make sense of "a monad is just a monoid in the category of endofunctors" if I give it a few minutes to unravel the ball of twine... But I wouldn't be able to code a "ToDo list" in Haskell if my life depended on it.

Pls help.

ljwall 1 day ago||
Seconding Haskell in Depth.

But aside from resources, if you actually have something you want to build in Haskell, just go for it and struggle through --- that's the best way to learn that I've found

simonmic 2 days ago|||
I always liked https://www.extrema.is/articles/haskell-books/haskell-tutori... . But there's a lot out there. Have a look at https://joyful.com/Haskell+map . Or: read code. Or, just build practical stuff and seek help in the chats/fora when you hit problems.
argiopetech 1 day ago|||
I typically recommend LYAH (https://learnyouahaskell.github.io/chapters.html), followed by Real World Haskell (already mentioned).
thethimble 2 days ago|||
You might be better served talking to ChatGPT/Claude so it can tailor explanations based on your level of understanding. I've found that being super clear about concepts you understand well vs concepts you're unclear about makes for really effective explanations.
cosmic_quanta 2 days ago|||
That is a really tough spot to be in. I don't know of any content that's aimed at someone like you.

You might be interested in reading the Monday Morning Haskell blog[0] series, which presents examples of how to do certain tasks in Haskell. See [1] for an example.

[0]: https://mmhaskell.com/blog

[1]: https://mmhaskell.com/blog/2025/5/19/comparing-code-leetcode...

yobbo 2 days ago|||
Build a snake game in stages: https://github.com/lsmor/snake-fury

Build a small web-app: https://jaspervdj.be/posts/2017-12-07-getting-things-done-in... (the video link is down, but exists somewhere on youtube.)

kreyenborgi 1 day ago|||
https://www.manning.com/books/haskell-in-depth is meant for you!

Also https://learn-haskell.blog/

joelwilliamson 2 days ago|||
Have you tried Real World Haskell?
kaoD 2 days ago||
No, but the table of contents looks promising, thanks!
elbear 1 day ago||
See also What I Wish I Knew When Learning Haskell: https://sdiehl.github.io/wiwinwlh/

It's more up to date.

antonvs 2 days ago|||
Where does your functional programming experience come from? That could help in finding a suitable resource.
kaoD 1 day ago||
From Haskell I guess. Just not real world Haskell. I have never written more than a few hundred lines, but I've read a lot about its concepts in the abstract (and partially applied some insofar as other languages have let me.)
shaunxcode 2 days ago||
Haskell school of music
1vuio0pswjnm7 2 days ago|
Actual title: "GHC now runs in your browser"
More comments...