-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·146 lines (131 loc) · 7.91 KB
/
Copy pathindex.html
File metadata and controls
executable file
·146 lines (131 loc) · 7.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linux Protection Rings (Ring 0–3) – Kernel AI Visualization</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Kernel AI - Interactive Linux Architecture. Learn Linux kernel architecture, system calls, and process management through real-time visualizations.">
<meta name="keywords" content="Linux Architecture, protection ring, ring 0, Kernel AI, Linux kernel architecture, Linux system architecture, Linux architecture visualization, Linux kernel internals, Linux architecture learning, interactive Linux architecture, Linux kernel components, system calls visualization, Linux architecture diagram, Linux learning tool, kernel architecture study">
<meta name="author" content="Aleksei Fedorov">
<meta name="robots" content="index, follow">
<!-- Favicon / Icons -->
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" type="image/png" sizes="32x32" href="/static/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/images/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/static/images/apple-touch-icon.png">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://ring-0.sh/">
<meta property="og:title" content="Kernel AI - Linux Architecture Visualization">
<meta property="og:description" content="Kernel AI by Ring0 - Educational tool for learning Linux kernel architecture through interactive visualizations. Perfect for students studying Linux internals and system architecture.">
<meta property="og:image" content="https://ring-0.sh/static/images/009.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://ring-0.sh/">
<meta property="twitter:title" content="Kernel AI - Linux Architecture Visualization">
<meta property="twitter:description" content="Kernel AI by Ring0 - Educational tool for learning Linux kernel architecture through interactive visualizations. Perfect for students studying Linux internals and system architecture.">
<meta property="twitter:image" content="https://ring-0.sh/static/images/009.png">
<!-- External libraries -->
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="/static/css/main.css?v=21">
</head>
<body>
<!-- ================= SEO CONTENT (INDEXED BY GOOGLE) ================= -->
<h1 class="seo-only">
Linux Protection Rings – Ring 0 Kernel Architecture
</h1>
<section class="seo-only">
<h2>What is Ring 0 in Linux?</h2>
<p>
In Linux architecture, <strong>Ring 0</strong> is the most privileged CPU protection ring
where the Linux kernel executes. Ring 0 has unrestricted access to hardware,
memory management, and CPU instructions.
</p>
<h2>Linux Protection Rings Explained</h2>
<p>
<strong>Protection rings</strong> are CPU privilege levels used to isolate kernel space
from user space. Linux primarily uses Ring 0 for the kernel and Ring 3 for user applications.
Intermediate rings exist in hardware but are generally unused by Linux.
</p>
<h2>CPU Privilege Rings in Linux</h2>
<p>
CPU privilege rings define which code can execute sensitive instructions.
User programs run in Ring 3, while system calls trigger controlled transitions
into Ring 0, ensuring system security and stability.
</p>
<h2>Linux Kernel Ring 0 Visualization</h2>
<p>
Kernel AI provides an interactive visualization of Linux kernel internals,
illustrating how system calls, processes, and kernel subsystems operate
inside Ring 0 in real time.
</p>
</section>
<!-- ================= APPLICATION UI ================= -->
<div id="app">
<svg></svg>
</div>
<nav class="rooms-index" aria-label="Linux kernel rooms" style="position:fixed;left:12px;bottom:8px;z-index:4;display:flex;flex-wrap:wrap;gap:10px;font:11px 'Share Tech Mono',monospace;letter-spacing:0.4px;">
<a href="/linux-crypto-subsystem" style="color:#555;text-decoration:none;">Crypto</a>
<a href="/linux-security-subsystem" style="color:#555;text-decoration:none;">Security</a>
<a href="/linux-processes-subsystem" style="color:#555;text-decoration:none;">Processes</a>
<a href="/linux-memory-subsystem" style="color:#555;text-decoration:none;">Memory</a>
<a href="/linux-network-subsystem" style="color:#555;text-decoration:none;">Network</a>
<a href="/linux-filesystem-subsystem" style="color:#555;text-decoration:none;">Files</a>
<a href="/linux-devices-subsystem" style="color:#555;text-decoration:none;">Devices</a>
<a href="/kernel-dna" style="color:#555;text-decoration:none;">Kernel DNA</a>
</nav>
<!-- ================= SCRIPTS ================= -->
<script src="/static/js/safe-utils.js?v=2"></script>
<script src="/static/js/frontend-logger.js?v=2"></script>
<script src="/static/js/syscalls.js?v=16"></script>
<script src="/static/js/syscall-card.js?v=2"></script>
<script src="/static/js/runqueue-card.js?v=1"></script>
<script src="/static/js/wakeups-card.js?v=1"></script>
<script src="/static/js/subsystem-focus.js?v=6"></script>
<script src="/static/js/irq-ui.js?v=7"></script>
<script src="/static/js/irq-card.js?v=6"></script>
<script src="/static/js/irq-history-card.js?v=1"></script>
<script src="/static/js/threads-card.js?v=5"></script>
<script src="/static/js/memory-card.js?v=5"></script>
<script src="/static/js/waits-card.js?v=3"></script>
<script src="/static/js/sockets-card.js?v=1"></script>
<script src="/static/js/flow-card.js?v=15"></script>
<script src="/static/js/flow-history-card.js?v=1"></script>
<script src="/static/js/history-card.js?v=2"></script>
<script src="/static/js/ipc-ui.js?v=8"></script>
<script src="/static/js/flow-ui.js?v=8"></script>
<script src="/static/js/namespace-card.js?v=2"></script>
<script src="/static/js/isolation-ui.js?v=15"></script>
<script src="/static/js/process-files-ui.js?v=1"></script>
<script src="/static/js/ui-chrome.js?v=2"></script>
<script src="/static/js/active-connections.js?v=6"></script>
<script src="/static/js/nginx_files.js?v=6"></script>
<script src="/static/js/right-semicircle-menu.js?v=55"></script>
<script src="/static/js/kernel-dna.js?v=50"></script>
<script src="/static/js/ip-entry-card.js?v=1"></script>
<script src="/static/js/network-stack.js?v=67"></script>
<script src="/static/js/network-socket-body.js?v=3"></script>
<script src="/static/js/devices-belt.js?v=25"></script>
<script src="/static/js/aes-ref.js?v=3"></script>
<script src="/static/js/crypto-belt.js?v=61"></script>
<script src="/static/js/security-belt.js?v=13"></script>
<script src="/static/js/filesystem-map.js?v=19"></script>
<script src="/static/js/kernel-context-menu.js?v=29"></script>
<script>
// Debug: Check if classes are loaded
debugLog('🔍 RightSemicircleMenuManager class loaded:', typeof RightSemicircleMenuManager);
if (typeof RightSemicircleMenuManager !== 'undefined') {
debugLog('✅ RightSemicircleMenuManager class is available');
} else {
console.error('❌ RightSemicircleMenuManager class NOT loaded!');
}
</script>
<script src="/static/js/main.js?v=245"></script>
<script src="/static/js/kernel-tape.js?v=13"></script>
</body>
</html>