this post was submitted on 14 Jan 2025
627 points (96.2% liked)
simpsonsshitposting
3032 readers
856 users here now
I just think they're neat!
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I am an idiot, so this is probably a dumb question, but it sounds like you might be able to shine some light.
Why could we not run kernel level anticheat in a sandbox? Does kernel level inherently mean a sandbox cannot contain it?
As an aside is kernel level anticheat required for anti-cheat to function? Or are the developers of anti-cheat software just doing kernel level because its easier?
The linux kernel actually does have several sandboxing paradigms and techniques, but by the definition of anti cheat means that it cannot be sandboxed.
The anticheat essentially scans the entire system memory, filesystem, and loaded kernel modules to ensure the userspace software is not being tampered with. It would be impossible to do that in a sandbox, hence it breaks all the security standards linux has for kernel modules (ex: why would a wireless driver need to access a printer module?).
Even for windows, kernel level solutions are not very well suited to be running there. The recent crowdstrike outage is a notable example, because it did essentially the same thing but then a bad update bluescreened every machine because giving a kernel module complete access is almost like modifying the kernel itself.
It's not required to function, but kernel level anticheat is just harder to bypass (still doable). They're choosing kernel level because it's cheaper to slap on a 3rd party AC than to make effective server-side software and pay for server moderation. Even Valve is hesitant with their VAC 3 system, even though it has been a major upgrade, it still requires manual moderating.
The thing is, most devs have finally realized kernel level anticheat still isn't an effective solution, so they have been fine with the userspace anticheat on linux and opting for server side stuff. It's just these last few holdouts that refuse to budge because they don't value the linux market (yet).
Thank you for the insightful response! Its sad that the cheapest option is the only choice ever chosen, sounds like we could create jobs and foster better security choices simultaneously here (and probably end up with a better online experience to boot).