2025-02-19

Greg Kroah-Hartman Makes A Compelling Case For New Linux Kernel Drivers To Be Written In Rust

Linux kernel maintainer Greg Kroah-Hartman advocates for writing new kernel drivers in Rust, highlighting how it eliminates common C-related memory bugs. The debate over Rust in the Linux kernel continues, with Linus Torvalds supporting its inclusion despite some maintainers' opposition. Kroah-Hartman emphasizes that while existing C code won't disappear, Rust offers better memory safety and API design opportunities.

Original archive.is archive.ph web.archive.org

Log in to get one-click access to archived versions of this article.

read comments on news aggregators:

Related articles

Delta Chat: Delta Chat, decentralized secure messenger

Delta Chat offers secure, decentralized messaging with multi-profile support and interactive web apps, built on Internet Standards. The application combines instant messaging features with email server compatibility and end-to-end encryption. Users can access the platform across mobile and desktop devices while enjoying gaming and collaboration features.

Tailscale is pretty useful

Tailscale creates a virtual private network enabling secure remote access to devices and file sharing without traditional port forwarding. The service offers features like device-to-device connectivity, Taildrop for easy file transfers, and VPN capabilities through Mullvad integration.

Get unstuck

A simple listing page showcasing various coding project prompts and chat functionalities in a development environment. The interface allows users to start new conversations, import chats/folders, and access coding tutorials for different technologies like React, Astro, and JavaScript.

Solving SICP

A detailed analysis of solving the SICP problem set reveals it requires 729 hours over 8 months, involving 6 programming languages and 9 software tools, tracking time spent per exercise and difficulty distribution. The analysis provides valuable data on course workload estimation, student motivation tracking, and curriculum design improvements.

Mox - modern, secure, all-in-one email server

Mox is a modern, open-source email server written in Go that combines all essential email protocols in a single, easy-to-maintain application. The server offers comprehensive features including IMAP4, SMTP, security protocols, and can be set up within 10 minutes through a quickstart command, addressing the growing centralization of email services.

Block Breakers

A hands-on educational resource focused on block cipher cryptanalysis, with a particular emphasis on attacking AES. The course provides guided exercises and practical implementations rather than theoretical knowledge, making complex cryptography concepts more approachable.

Effective Rust

A comprehensive guide presenting 35 specific methods to enhance Rust programming practices, covering essential topics from type systems to FFI boundaries. The guide is structured into six main sections, focusing on types, traits, concepts, dependencies, tooling, and advanced Rust features. Each item provides detailed insights for writing more effective and maintainable Rust code.

Yoke is really cool

Yoke enables infrastructure management through actual code rather than configuration files, allowing developers to write infrastructure definitions in Go or Rust and compile them to WebAssembly. Its Air Traffic Control feature offers powerful Kubernetes operator capabilities through CustomResourceDefinitions, while maintaining security through WebAssembly sandboxing and limited system access.

Smart Pointers Can't Solve Use-After-Free

Smart pointers in C++ cannot fully prevent use-after-free vulnerabilities due to internal raw pointers in types beyond user control. Examples with std::vector, std::span, and std::lock_guard demonstrate how iterator invalidation and pointer mismanagement can still lead to memory safety issues regardless of smart pointer usage.