15
|
1 title: GearsOSにおけるinodeを用いたFile systemの実装
|
|
2 author: 又吉 雄斗
|
|
3 profile: 並列信頼研
|
|
4
|
|
5
|
|
6 ## inodeを用いたgearsDirectoryの実装
|
|
7
|
|
8 - アプリケーションの信頼性を保証するために,アプリケーションが動作するOSの信頼性を高める必要がある
|
|
9 - 信頼性確保の方法として定理証明やモデル検査がある
|
|
10 - 当研究室では,信頼性の保証を目的としたGearsOSを開発している
|
|
11 - GearsOSで未実装の機能であるファイルシステムの実装を目指す
|
|
12 - <span style="color: red; ">今回はUnix likeにディレクトリシステムを実装した</span>
|
|
13 - GearsOSへUnixのFile systemの仕組みを取り入れるアプローチをとる
|
|
14 - GearsOSのディレクトリシステムであるgearsDirectoryについて説明する
|
|
15
|
|
16 ## Continuation based C
|
|
17
|
|
18 - Cの下位言語である
|
|
19 - プログラムはCodeGearと呼ばれる処理の単位で記述する
|
|
20 - データはDataGearと呼ばれる単位を用いる
|
|
21 - ノーマルレベルとメタレベルの処理を切り分けることが容易に可能である
|
|
22 - function callの継続の代わりにgotoによる継続を用いる
|
|
23 - 呼び出し履歴を持たないことから軽量継続と呼ぶ
|
|
24
|
|
25  
|
|
26
|
|
27 <div style="text-align: center;">
|
|
28 <img src="../paper/figs/dgcgdg.svg" width="1000">
|
|
29 </div>
|
|
30
|
|
31 ## GearsOS
|
|
32
|
|
33 - 当研究室にて,信頼性と拡張性の両立を目的として開発している
|
|
34 - CbCで記述されている
|
|
35 - Gearという概念があり,実行の単位をCodeGear,データの単位をDataGearと呼ぶ
|
|
36 - ノーマルレベルとメタレベルの処理を切り分けることが容易にできる
|
|
37
|
|
38 ## GearsOS
|
|
39
|
|
40 ### CodeGearとmetaCodeGearの関係
|
|
41
|
|
42 - ノーマルレベルとメタレベルの存在
|
|
43 - CodeGearがDataGearを受け取り,処理後にDataGearを次のCodeGearに渡すという動作をしているように見える
|
|
44 - 実際にはデータの整合性の確認や資源管理などのメタレベルの処理が存在し,それらの計算はMetaCodeGearで行われる
|
|
45
|
|
46 <div style="text-align: center;">
|
|
47 <img src="../paper/figs/meta_cg_dg.svg" width="1200">
|
|
48 </div>
|
|
49
|
|
50 ## GearsOS
|
|
51
|
|
52 ### Context
|
|
53
|
|
54 - GearsOS上全てのCodeGear,DataGearの参照を持つ
|
|
55 - OS上の処理の実行単位
|
|
56 - Gearの概念ではMetaDataGearに当たる
|
|
57 - ノーマルレベルから直接参照されず,必ずMetaDataGearとしてMetaCodeGearから参照される
|
|
58
|
|
59 <!--
|
|
60 ### Contextの種類
|
|
61
|
|
62 - OS全体のContextを管理するKernel Context
|
|
63 - ユーザープログラムごとに存在するUser Context
|
|
64 - CPUやGPUごとに存在するCPU Context
|
|
65
|
|
66 -->
|
|
67
|
|
68 ## GearsOS
|
|
69
|
|
70 ### CodeGear遷移の流れ
|
|
71
|
|
72 <div style="text-align: center;">
|
|
73 <img src="figs/context.svg" width="1200">
|
|
74 </div>
|
|
75
|
|
76 ## UnixのFile system
|
|
77
|
|
78 UnixのFile systemはBTreeを用いたinodeで構成されており,xv6もその仕組みを用いている
|
|
79
|
|
80 ### xv6
|
|
81
|
|
82 - MITで教育用の目的で開発されたOS
|
|
83 - Unixの基本的な構造を持つ
|
|
84 - 当研究室ではxv6のCbCでの書き換え,分析を行なっている
|
|
85 - File systemではinodeの仕組みが用いられている
|
|
86
|
|
87 ### inode
|
|
88
|
|
89 - ファイルの属性情報が書かれたデータである
|
|
90 - 識別番号としてinode numberを持つ
|
|
91 - inodeはファイルシステム始動時にinode領域をディスク上に確保する
|
|
92
|
|
93 ## GearsFileSystemにおけるdirectoryの構成
|
|
94
|
|
95 - 2つのRedBlackTreeを用いる
|
|
96 1. filenameとinode numberのペアを持つindex tree
|
|
97 1. inode numberとinodeのポインタのペアを持つinode tree
|
|
98 - カレントディレクトリはgearsDirectory-\>currentDirectoryに保存される
|
|
99
|
|
100 <div style="text-align: center;">
|
|
101 <img src="figs/inode.svg" width="1000">
|
|
102 </div>
|
|
103
|
|
104 ## Unix Like な interface
|
|
105
|
|
106 ### mkdir
|
|
107
|
|
108 ```c
|
|
109 __code mkdir(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
110 struct FTree* newDirectory = createFileSystemTree(context, gearsDirectory->currentDirectory);
|
|
111 Node* inode = new Node();
|
|
112 inode->key = gearsDirectory->INodeNumber;
|
|
113 inode->value = newDirectory;
|
|
114 struct FTree* cDirectory = new FTree();
|
|
115 cDirectory = gearsDirectory->iNodeTree;
|
|
116 goto cDirectory->put(inode, mkdir2);
|
|
117 }
|
|
118
|
|
119 __code mkdir2(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
120 Node* dir = new Node();
|
|
121 dir->key = name->value;
|
|
122 Integer* iNum = new Integer();
|
|
123 iNum->value = gearsDirectory->INodeNumber;
|
|
124 dir->value = iNum;
|
|
125 gearsDirectory->INodeNumber = gearsDirectory->INodeNumber + 1;
|
|
126 struct FTree* cDirectory = new FTree();
|
|
127 cDirectory = gearsDirectory->currentDirectory;
|
|
128 goto cDirectory->put(dir, next(...));
|
|
129 }
|
|
130 ```
|
|
131
|
|
132 ## Unix Like な interface
|
|
133
|
|
134 ### mkdir
|
|
135
|
|
136 <div style="text-align: center;">
|
|
137 <img src="figs/mkdir.svg" width="900">
|
|
138 </div>
|
|
139
|
|
140 <!--
|
|
141 ## Unix Like な interface
|
|
142
|
|
143 ### ls
|
|
144
|
|
145 ```c
|
|
146 __code ls(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
147 Node* dir = new Node();
|
|
148 dir->key = name->value;
|
|
149 struct FTree* cDirectory = new FTree();
|
|
150 cDirectory = gearsDirectory->currentDirectory;
|
|
151 goto cDirectory->get(dir, ls2);
|
|
152 }
|
|
153
|
|
154 __code ls2(struct GearsDirectoryImpl* gearsDirectory, struct Node* node, __code next(...)) {
|
|
155 printf("%d\n", node->key);
|
|
156 goto next(...);
|
|
157 }
|
|
158 ```
|
|
159
|
|
160 ## Unix Like な interface
|
|
161
|
|
162 ### ls
|
|
163
|
|
164 <div style="text-align: center;">
|
|
165 <img src="figs/ls.svg" width="1000">
|
|
166 </div>
|
|
167
|
|
168 ## Unix Like な interface
|
|
169
|
|
170 ### cd
|
|
171
|
|
172 ```c
|
|
173 __code cd2Child(struct GearsDirectoryImpl* gearsDirectory, struct Integer* name, __code next(...)) {
|
|
174 struct FTree* cDirectory = new FTree();
|
|
175 cDirectory = gearsDirectory->currentDirectory;
|
|
176 struct Node* node = new Node();
|
|
177 node->key = name->value;
|
|
178 goto cDirectory->get(node, cd2Child2);
|
|
179 }
|
|
180
|
|
181 __code cd2Child2(struct GearsDirectoryImpl* gearsDirectory, struct Node* node, __code next(...)) {
|
|
182 struct FTree* iNodeTree = new FTree();
|
|
183 iNodeTree = gearsDirectory->iNodeTree;
|
|
184 goto iNodeTree->get(node->value, cd2Child3);
|
|
185 }
|
|
186
|
|
187 __code cd2Child3(struct GearsDirectoryImpl* gearsDirectory, struct Node* node, __code next(...)) {
|
|
188 gearsDirectory->currentDirectory = node->value;
|
|
189 goto next(...);
|
|
190 }
|
|
191 ```
|
|
192
|
|
193 ## Unix Like な interface
|
|
194
|
|
195 ### cd
|
|
196
|
|
197 <div style="text-align: center;">
|
|
198 <img src="figs/cd.svg" width="1200">
|
|
199 </div>
|
|
200
|
|
201 -->
|
|
202
|
|
203 ## GearsDirectoryにおける非破壊編集ツリー
|
|
204
|
|
205 - GearsOSにおける永続データは非破壊的な編集を行う木構造を用いて保存する
|
|
206 - ディレクトリシステム自体にバックアップの機能を搭載することが可能と考える
|
|
207
|
|
208 <div style="text-align: center;">
|
|
209 <img src="../paper/figs/nondestructive_tree_modification.png" width="1200">
|
|
210 </div>
|
|
211
|
|
212 ## gearsDirectoryまとめ
|
|
213
|
|
214 - gearsDirectoryの実装について説明した
|
|
215 - RedBlackTreeを用いてinodeの仕組みを構築し,ls,cd,mkdirを作成するなどして,Unix Likeに構築することが出来た
|
|
216 - RedBlackTreeのシンプルなinterfaceにより比較的容易に実装を行うことができた
|
|
217 - 形式手法とファイルシステムの機能の両面で信頼性の向上が図れると考える
|
|
218
|
|
219 ## GearsFileSystemの今後
|
|
220
|
|
221 ### gearsDirectory path
|
|
222
|
|
223 - gearsDirectoryにはpathの機能が実装されていない
|
|
224 - full path指定のlsなどが実装できない状態である
|
|
225 - FileSystemTreeを拡張し,ノードをたどりpathを生成する様な機能を実装する必要がある
|
|
226
|
|
227 ### gearsDirectory filename
|
|
228
|
|
229 - 現状はgearsDirectoryのfilenameはIntegerの構造で管理されている
|
|
230 - filenameは一般的に文字列型であるためIntegerから文字列型に変更する必要がある
|
|
231
|
|
232 <!--
|
|
233 ## GearsFileSystemの今後
|
|
234
|
|
235 ### gearsDirectory on disk
|
|
236
|
|
237 - 現状はgearsDirectoryはon memoryで実装されている
|
|
238 - inodeをdisk上に構築する必要がある
|
|
239
|
|
240 ### GearsShell
|
|
241
|
|
242 - 現状のGearsOSはユーザーの入力を受け付けることが出来ず,言語フレームワークの様に機能している
|
|
243 - gearsFileSystemなどGearsOSの各機能と接続し,今回作成したcdやlsの様なコマンドを受け付けるGearsShellを作成したい
|
|
244
|
|
245 ### ファイルのバックアップ
|
|
246
|
|
247 - レコードのDataをファイルの差分履歴として保持し,日時情報を付け加えることでVersion Control Systemのような機能を持たせることが可能であると考えられる
|
|
248 -->
|