Skip to Content
Linuxカーネルプログラミング 第2版
book

Linuxカーネルプログラミング 第2版

by Kaiwan N. Billimoria, 武内 覚, 大岩 尚宏
July 2025
Intermediate to advanced
492 pages
8h 23m
Japanese
O'Reilly Japan, Inc.
Content preview from Linuxカーネルプログラミング 第2版

3章カーネルモジュールの作成

本章ではLinuxカーネル開発の基本であるローダブルカーネルモジュールサブシステムについて学びます。モジュールサブシステムのアーキテクチャの基本を説明するとともにサンプルモジュールを作成したりします。

後半ではモジュールサブシステムについてさらに詳しく説明します。説明の過程で、Makefileのテンプレート、カーネルAPI/ABI、ユーザ空間とカーネル空間の違い、モジュールの自動ロード、セキュリティの懸念事項と対策についても説明します。最後にカーネルドキュメントとメインラインカーネルへの貢献について触れます。

3.1 カーネルの構造を理解する

本節ではユーザ空間とカーネル空間、主なサブシステム、カーネルを構成するコンポーネントについての基礎を学びます。詳しくは「4章 プロセスとスレッド」で説明します。

3.1.1 ユーザ空間とカーネル空間

現代的なCPUには複数の特権レベルがあります。例えばx86ベースアーキテクチャの場合は4つの特権レベルがあります。特権レベルはリングとも呼びます。最も強い権限を持つのがリング0で、最も権限が弱いのがリング3です。ARM-32(AArch32)は7つの実行モードを持ち、そのうち6つは特権モードです。ARM64(AArch64)は例外レベル(EL0からEL3)という概念を持ちます。最も強い権限を持つのがEL3で、最も権限が弱いのがEL0です。ただし、すべての現代的なOSは2つの特権レベルしか使いません。それぞれをカーネルモード、ユーザモードと呼びます。

これらのレベルはセキュリティと安定性のためにあります。Linuxの場合は、強い特権レベルでカーネルのコードを実行している状態をカーネルモードと呼びます。弱い特権レベルでプロセスを動かしている状態をユーザモードと呼びます。モードだけではなくカーネルとプロセスでは仮想アドレス空間が分かれています。 ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Gitハンズオンラーニング ―手を動かして学ぶバージョン管理システムの基本

Gitハンズオンラーニング ―手を動かして学ぶバージョン管理システムの基本

Anna Skoulikari, 原 隆文
プロダクトマネージャーのしごと 第2版 ―1日目から使える実践ガイド

プロダクトマネージャーのしごと 第2版 ―1日目から使える実践ガイド

Matt LeMay, 永瀬 美穂, 吉羽 龍太郎, 原田 騎郎, 高橋 一貴
プログラミングRust 第2版

プログラミングRust 第2版

Jim Blandy, Jason Orendorff, Leonora F. S. Tindall, 中田 秀基

Publisher Resources

ISBN: 9784814401109Publisher Website