19
|
1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6 <!DOCTYPE html>
|
|
7 <html>
|
|
8 <head>
|
|
9 <meta http-equiv="content-type" content="text/html;charset=utf-8">
|
|
10 <title>GearsOSにおけるinodeを用いたFileSystemの設計</title>
|
|
11
|
|
12 <meta name="generator" content="Slide Show (S9) v4.1.0 on Ruby 3.0.3 (2021-11-24) [arm64-darwin21]">
|
|
13 <meta name="author" content="又吉 雄斗" >
|
|
14
|
|
15 <!-- style sheet links -->
|
|
16 <link rel="stylesheet" href="s6/themes/screen.css" media="screen">
|
|
17 <link rel="stylesheet" href="s6/themes/print.css" media="print">
|
|
18 <link rel="stylesheet" href="s6/themes/blank.css" media="screen,projection">
|
|
19
|
|
20 <!-- JS -->
|
|
21 <script src="s6/js/jquery-1.11.3.min.js"></script>
|
|
22 <script src="s6/js/jquery.slideshow.js"></script>
|
|
23 <script src="s6/js/jquery.slideshow.counter.js"></script>
|
|
24 <script src="s6/js/jquery.slideshow.controls.js"></script>
|
|
25 <script src="s6/js/jquery.slideshow.footer.js"></script>
|
|
26 <script src="s6/js/jquery.slideshow.autoplay.js"></script>
|
|
27
|
|
28 <!-- prettify -->
|
|
29 <link rel="stylesheet" href="scripts/prettify.css">
|
|
30 <script src="scripts/prettify.js"></script>
|
|
31
|
|
32 <style>
|
|
33 .slide {page-break-after: always;}
|
|
34 </style>
|
|
35
|
|
36
|
|
37
|
|
38
|
|
39 </head>
|
|
40 <body>
|
|
41
|
|
42 <div class="layout">
|
|
43 <div id="header"></div>
|
|
44 <div id="footer">
|
|
45 <div align="right">
|
|
46 <img src="s6/images/logo.svg" width="200px">
|
|
47 </div>
|
|
48 </div>
|
|
49 </div>
|
|
50
|
|
51 <div class="presentation">
|
|
52
|
|
53 <div class='slide cover'>
|
|
54 <table width="90%" height="90%" border="0" align="center">
|
|
55 <tr>
|
|
56 <td>
|
|
57 <div align="center">
|
|
58 <h1><font color="#808db5">GearsOSにおけるinodeを用いたFileSystemの設計</font></h1>
|
|
59 </div>
|
|
60 </td>
|
|
61 </tr>
|
|
62 <tr>
|
|
63 <td>
|
|
64 <div align="left">
|
|
65 又吉 雄斗
|
36
|
66 河野研
|
19
|
67 <hr style="color:#ffcc00;background-color:#ffcc00;text-align:left;border:none;width:100%;height:0.2em;">
|
|
68 </div>
|
|
69 </td>
|
|
70 </tr>
|
|
71 </table>
|
|
72 </div>
|
|
73
|
|
74
|
|
75 <div class='slide'>
|
|
76
|
|
77 <!-- _S9SLIDE_ -->
|
35
|
78 <h2 id="inodeを用いたgearsdirectoryの実装">inodeを用いたgearsDirectoryの実装</h2>
|
|
79
|
|
80 <ul>
|
40
|
81 <li>アプリケーションの信頼性を保証するために,アプリケーションが動作するOSの信頼性を高める必要がある
|
|
82 <ul>
|
|
83 <li>信頼性確保の方法として定理証明やモデル検査がある</li>
|
|
84 </ul>
|
|
85 </li>
|
|
86 <li>当研究室では,信頼性の保証を目的としたGearsOSを開発している</li>
|
|
87 <li>GearsOSで未実装の機能であるファイルシステムの実装を目指す</li>
|
35
|
88 <li>今回はディレクトリシステムを実装した</li>
|
40
|
89 <li>Unix likeな実装</li>
|
35
|
90 <li>GearsOSへUnixのFile systemの仕組みを取り入れるアプローチをとる</li>
|
|
91 <li>Unixのinodeの仕組みを取り入れる</li>
|
|
92 <li>GearsOSのディレクトリシステムであるgearsDirectoryについて説明する</li>
|
|
93 </ul>
|
|
94
|
|
95
|
|
96
|
|
97 </div>
|
|
98
|
|
99 <div class='slide'>
|
|
100 <!-- _S9SLIDE_ -->
|
|
101 <h2 id="continuation-based-c">Continuation based C</h2>
|
|
102
|
|
103 <ul>
|
|
104 <li>Cの下位言語である</li>
|
|
105 <li>function callの代わりにgotoによる継続を用いる</li>
|
|
106 <li>プログラムはCodeGearと呼ばれる処理の単位で記述</li>
|
|
107 <li>ノーマルレベルとメタレベルの処理を切り分けることが可能である</li>
|
|
108 </ul>
|
|
109
|
|
110 <div style="text-align: center;">
|
|
111 <img src="../paper/figs/dgcgdg.svg" width="1000" />
|
|
112 </div>
|
|
113
|
|
114
|
|
115
|
|
116 </div>
|
|
117
|
|
118 <div class='slide'>
|
|
119 <!-- _S9SLIDE_ -->
|
|
120 <h2 id="gearsos">GearsOS</h2>
|
19
|
121
|
|
122 <ul>
|
35
|
123 <li>信頼性と拡張性の両立を目的として開発されている</li>
|
|
124 <li>Gearという概念があり,実行の単位をCodeGear,データの単位をDataGearと呼ぶ</li>
|
|
125 <li>軽量継続を基本とし,stackを持たない代わりに全てをContext経由で実行する</li>
|
|
126 <li>ノーマルレベルとメタレベルの処理を切り分けることができる</li>
|
|
127 <li>同様にGearの概念を持つCbC(Continuation based C)で記述されている.</li>
|
|
128 <li>OSとして動作するために今後実装しなければならない機能がいくつか残っている.</li>
|
|
129 </ul>
|
|
130
|
|
131
|
|
132
|
|
133 </div>
|
|
134
|
|
135 <div class='slide'>
|
|
136 <!-- _S9SLIDE_ -->
|
|
137 <h2 id="gearsos-1">GearsOS</h2>
|
|
138
|
|
139 <h3 id="codegearとmetacodegearの関係">CodeGearとmetaCodeGearの関係</h3>
|
|
140
|
|
141 <div style="text-align: center;">
|
|
142 <img src="../paper/figs/meta_cg_dg.svg" width="1200" />
|
|
143 </div>
|
|
144
|
|
145
|
|
146
|
|
147 </div>
|
|
148
|
|
149 <div class='slide'>
|
|
150 <!-- _S9SLIDE_ -->
|
|
151 <h2 id="gearsos-2">GearsOS</h2>
|
|
152
|
|
153 <h3 id="contextを参照する流れ">Contextを参照する流れ</h3>
|
|
154
|
|
155 <div style="text-align: center;">
|
|
156 <img src="../paper/figs/context.svg" width="1200" />
|
|
157 </div>
|
|
158
|
|
159
|
|
160
|
|
161 </div>
|
|
162
|
|
163 <div class='slide'>
|
|
164 <!-- _S9SLIDE_ -->
|
|
165 <h2 id="unixのfile-system">UnixのFile system</h2>
|
|
166
|
|
167 <h3 id="xv6">xv6</h3>
|
|
168
|
|
169 <ul>
|
|
170 <li>MITで教育用の目的で開発されたOS</li>
|
|
171 <li>Unixの基本的な構造を持つ</li>
|
|
172 <li>当研究室ではxv6のCbCでの書き換え,分析を行なっている</li>
|
|
173 <li>File systemではinodeの仕組みが用いられている</li>
|
|
174 </ul>
|
|
175
|
|
176 <h3 id="inode">inode</h3>
|
|
177
|
|
178 <ul>
|
|
179 <li>ファイルの属性情報が書かれたデータである</li>
|
|
180 <li>識別番号としてinode numberを持つ</li>
|
|
181 <li>inodeはファイルシステム始動時にinode領域をディスク上に確保する</li>
|
19
|
182 </ul>
|
|
183
|
|
184
|
|
185
|
|
186 </div>
|
|
187
|
|
188 <div class='slide'>
|
|
189 <!-- _S9SLIDE_ -->
|
35
|
190 <h2 id="gearsfilesystemにおけるdirectoryの構成">GearsFileSystemにおけるdirectoryの構成</h2>
|
|
191
|
|
192 <div style="text-align: center;">
|
|
193 <img src="../paper/figs/inode.svg" width="1000" />
|
|
194 </div>
|
|
195
|
|
196
|
|
197
|
|
198 </div>
|
|
199
|
|
200 <div class='slide'>
|
|
201 <!-- _S9SLIDE_ -->
|
|
202 <h2 id="unix-like-な-interface">Unix Like な interface</h2>
|
|
203
|
|
204 <h3 id="mkdir">mkdir</h3>
|
|
205
|
|
206 <pre><code class="language-c">__code mkdir(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
207 struct FTree* newDirectory = createFileSystemTree(context, gearsDirectory->currentDirectory);
|
|
208 Node* inode = new Node();
|
|
209 inode->key = gearsDirectory->INodeNumber;
|
|
210 inode->value = newDirectory;
|
|
211 struct FTree* cDirectory = new FTree();
|
|
212 cDirectory = gearsDirectory->iNodeTree;
|
|
213 goto cDirectory->put(inode, mkdir2);
|
|
214 }
|
19
|
215
|
35
|
216 __code mkdir2(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
217 Node* dir = new Node();
|
|
218 dir->key = name->value;
|
|
219 Integer* iNum = new Integer();
|
|
220 iNum->value = gearsDirectory->INodeNumber;
|
|
221 dir->value = iNum;
|
|
222 gearsDirectory->INodeNumber = gearsDirectory->INodeNumber + 1;
|
|
223 struct FTree* cDirectory = new FTree();
|
|
224 cDirectory = gearsDirectory->currentDirectory;
|
|
225 goto cDirectory->put(dir, next(...));
|
|
226 }
|
|
227 </code></pre>
|
|
228
|
|
229
|
|
230
|
|
231 </div>
|
|
232
|
|
233 <div class='slide'>
|
|
234 <!-- _S9SLIDE_ -->
|
|
235 <h2 id="unix-like-な-interface-1">Unix Like な interface</h2>
|
|
236
|
|
237 <h3 id="ls">ls</h3>
|
|
238
|
|
239 <pre><code class="language-c">__code ls(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
240 Node* dir = new Node();
|
|
241 dir->key = name->value;
|
|
242 struct FTree* cDirectory = new FTree();
|
|
243 cDirectory = gearsDirectory->currentDirectory;
|
|
244 goto cDirectory->get(dir, ls2);
|
|
245 }
|
|
246
|
|
247 __code ls2(struct GearsDirectoryImpl* gearsDirectory, struct Node* node, __code next(...)) {
|
|
248 printf("%d\n", node->key);
|
|
249 goto next(...);
|
|
250 }
|
|
251 </code></pre>
|
19
|
252
|
|
253
|
|
254
|
|
255 </div>
|
|
256
|
|
257 <div class='slide'>
|
|
258 <!-- _S9SLIDE_ -->
|
35
|
259 <h2 id="unix-like-な-interface-2">Unix Like な interface</h2>
|
|
260
|
|
261 <h3 id="cd">cd</h3>
|
|
262
|
|
263 <pre><code class="language-c">__code cd2Child(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
264 struct FTree* cDirectory = new FTree();
|
|
265 cDirectory = gearsDirectory->currentDirectory;
|
|
266 struct Node* node = new Node();
|
|
267 node->key = name->value;
|
|
268 goto cDirectory->get(node, cd2Child2);
|
|
269 }
|
|
270
|
|
271 __code cd2Child2(struct GearsDirectoryImpl* gearsDirectory, struct Node* node, __code next(...)) {
|
|
272 struct FTree* iNodeTree = new FTree();
|
|
273 iNodeTree = gearsDirectory->iNodeTree;
|
|
274 goto iNodeTree->get(node->value, cd2Child3);
|
|
275 }
|
|
276
|
|
277 __code cd2Child3(struct GearsDirectoryImpl* gearsDirectory, struct Node* node, __code next(...)) {
|
|
278 gearsDirectory->currentDirectory = node->value;
|
|
279 goto next(...);
|
|
280 }
|
|
281 </code></pre>
|
|
282
|
|
283
|
|
284
|
|
285 </div>
|
|
286
|
|
287 <div class='slide'>
|
|
288 <!-- _S9SLIDE_ -->
|
|
289 <h2 id="gearsdirectoryの非破壊的編集によるバックアップ">GearsDirectoryの非破壊的編集によるバックアップ</h2>
|
|
290
|
|
291 <ul>
|
|
292 <li>GearsOSにおける永続データは非破壊的な編集を行う木構造を用いて保存する</li>
|
|
293 <li>ディレクトリシステム自体にバックアップの機能を搭載することが可能と考える</li>
|
|
294 </ul>
|
|
295
|
|
296 <div style="text-align: center;">
|
|
297 <img src="../paper/figs/nondestructive_tree_modification.png" width="1200" />
|
|
298 </div>
|
|
299
|
|
300
|
|
301
|
|
302 </div>
|
|
303
|
|
304 <div class='slide'>
|
|
305 <!-- _S9SLIDE_ -->
|
|
306 <h2 id="gearsfilesystemの今後">GearsFileSystemの今後</h2>
|
19
|
307
|
35
|
308 <h3 id="gearsshell">GearsShell</h3>
|
|
309
|
|
310 <ul>
|
|
311 <li>現状のGearsOSはユーザーの入力を受け付けることが出来ず,プログラミングインターフェースの様に機能している.</li>
|
|
312 <li>gearsFileSystemなどGearsOSの各機能と接続し,今回作成したcdやlsの様なコマンドを受け付けるGearsShellを作成したい.</li>
|
|
313 </ul>
|
|
314
|
|
315 <h3 id="gearsdirectory-filename">gearsDirectory filename</h3>
|
|
316
|
|
317 <ul>
|
|
318 <li>現状はgearsDirectoryのfilenameはIntegerの構造で管理されている</li>
|
|
319 <li>filenameは一般的に文字列型であるためIntegerから文字列型に変更する必要がある</li>
|
|
320 </ul>
|
|
321
|
|
322
|
|
323
|
|
324 </div>
|
|
325
|
|
326 <div class='slide'>
|
|
327 <!-- _S9SLIDE_ -->
|
|
328 <h2 id="gearsfilesystemの今後-1">GearsFileSystemの今後</h2>
|
|
329
|
|
330 <h3 id="gearsdirectory-path">gearsDirectory path</h3>
|
|
331
|
|
332 <ul>
|
|
333 <li>gearsDirectoryにはpathの機能が実装されていない</li>
|
|
334 <li>full path指定のlsなどが実装できない状態である</li>
|
|
335 <li>FileSystemTreeを拡張し,ノードをたどりpathを生成する様な機能を実装する必要がある</li>
|
|
336 </ul>
|
|
337
|
|
338 <h3 id="ファイルのバックアップ">ファイルのバックアップ</h3>
|
|
339
|
|
340 <ul>
|
|
341 <li>レコードのDataをファイルの差分履歴として保持し,日時情報を付け加えることでVersion Control Systemのような機能を持たせることが可能であると考えられる</li>
|
|
342 </ul>
|
|
343
|
|
344
|
|
345
|
|
346 </div>
|
|
347
|
|
348 <div class='slide'>
|
|
349 <!-- _S9SLIDE_ -->
|
|
350 <h2 id="まとめ">まとめ</h2>
|
|
351
|
|
352 <ul>
|
|
353 <li>gearsDirectoryの実装について説明した</li>
|
|
354 <li>RedBlackTreeのシンプルなinterfaceにより比較的容易に実装を行うことができた</li>
|
|
355 <li>形式手法とファイルシステムの機能の両面で信頼性の向上が図れると考える</li>
|
|
356 <li>RedBlackTreeを用いてinodeの仕組みを構築し,ls,cd,mkdirを作成するなどして,
|
|
357 Unix Likeに構築することが出来た.</li>
|
|
358 </ul>
|
19
|
359
|
|
360 </div>
|
|
361
|
|
362
|
|
363 </div><!-- presentation -->
|
|
364 </body>
|
|
365 </html>
|