about summary refs log tree commit diff
path: root/tvix/store/src/fs/inode_tracker.rs
blob: daf6b4ee79c233d76e8fc0eea221d8a1c61cec3f (plain) (blame)
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
use std::{collections::HashMap, sync::Arc};

use super::inodes::{DirectoryInodeData, InodeData};
use tvix_castore::proto as castorepb;
use tvix_castore::B3Digest;

/// InodeTracker keeps track of inodes, stores data being these inodes and deals
/// with inode allocation.
pub struct InodeTracker {
    data: HashMap<u64, Arc<InodeData>>,

    // lookup table for blobs by their B3Digest
    blob_digest_to_inode: HashMap<B3Digest, u64>,

    // lookup table for symlinks by their target
    symlink_target_to_inode: HashMap<bytes::Bytes, u64>,

    // lookup table for directories by their B3Digest.
    // Note the corresponding directory may not be present in data yet.
    directory_digest_to_inode: HashMap<B3Digest, u64>,

    // the next inode to allocate
    next_inode: u64,
}

impl Default for InodeTracker {
    fn default() -> Self {
        Self {
            data: Default::default(),

            blob_digest_to_inode: Default::default(),
            symlink_target_to_inode: Default::default(),
            directory_digest_to_inode: Default::default(),

            next_inode: 2,
        }
    }
}

impl InodeTracker {
    // Retrieves data for a given inode, if it exists.
    pub fn get(&self, ino: u64) -> Option<Arc<InodeData>> {
        self.data.get(&ino).cloned()
    }

    // Stores data and returns the inode for it.
    // In case an inode has already been allocated for the same data, that inode
    // is returned, otherwise a new one is allocated.
    // In case data is a [InodeData::Directory], inodes for all items are looked
    // up
    pub fn put(&mut self, data: InodeData) -> u64 {
        match data {
            InodeData::Regular(ref digest, _, _) => {
                match self.blob_digest_to_inode.get(digest) {
                    Some(found_ino) => {
                        // We already have it, return the inode.
                        *found_ino
                    }
                    None => self.insert_and_increment(data),
                }
            }
            InodeData::Symlink(ref target) => {
                match self.symlink_target_to_inode.get(target) {
                    Some(found_ino) => {
                        // We already have it, return the inode.
                        *found_ino
                    }
                    None => self.insert_and_increment(data),
                }
            }
            InodeData::Directory(DirectoryInodeData::Sparse(ref digest, _size)) => {
                // check the lookup table if the B3Digest is known.
                match self.directory_digest_to_inode.get(digest) {
                    Some(found_ino) => {
                        // We already have it, return the inode.
                        *found_ino
                    }
                    None => {
                        // insert and return the inode
                        self.insert_and_increment(data)
                    }
                }
            }
            // Inserting [DirectoryInodeData::Populated] usually replaces an
            // existing [DirectoryInodeData::Sparse] one.
            InodeData::Directory(DirectoryInodeData::Populated(ref digest, ref children)) => {
                let dir_ino = self.directory_digest_to_inode.get(digest);
                if let Some(dir_ino) = dir_ino {
                    let dir_ino = *dir_ino;

                    // We know the data must exist, as we found it in [directory_digest_to_inode].
                    let needs_update = match **self.data.get(&dir_ino).unwrap() {
                        InodeData::Regular(..) | InodeData::Symlink(_) => {
                            panic!("unexpected type at inode {}", dir_ino);
                        }
                        // already populated, nothing to do
                        InodeData::Directory(DirectoryInodeData::Populated(..)) => false,
                        // in case the actual data is sparse, replace it with the populated one.
                        // this allocates inodes for new children in the process.
                        InodeData::Directory(DirectoryInodeData::Sparse(
                            ref old_digest,
                            ref _old_size,
                        )) => {
                            // sanity checking to ensure we update the right node
                            debug_assert_eq!(old_digest, digest);

                            true
                        }
                    };

                    if needs_update {
                        // populate inode fields in children
                        let children = self.allocate_inodes_for_children(children.to_vec());

                        // update sparse data with populated data
                        self.data.insert(
                            dir_ino,
                            Arc::new(InodeData::Directory(DirectoryInodeData::Populated(
                                digest.clone(),
                                children,
                            ))),
                        );
                    }

                    dir_ino
                } else {
                    // populate inode fields in children
                    let children = self.allocate_inodes_for_children(children.to_vec());
                    // insert and return InodeData
                    self.insert_and_increment(InodeData::Directory(DirectoryInodeData::Populated(
                        digest.clone(),
                        children,
                    )))
                }
            }
        }
    }

    // Consume a list of children with zeroed inodes, and allocate (or fetch existing) inodes.
    fn allocate_inodes_for_children(
        &mut self,
        children: Vec<(u64, castorepb::node::Node)>,
    ) -> Vec<(u64, castorepb::node::Node)> {
        // allocate new inodes for all children
        let mut children_new: Vec<(u64, castorepb::node::Node)> = Vec::new();

        for (child_ino, ref child_node) in children {
            debug_assert_eq!(0, child_ino, "expected child inode to be 0");
            let child_ino = match child_node {
                castorepb::node::Node::Directory(directory_node) => {
                    // Try putting the sparse data in. If we already have a
                    // populated version, it'll not update it.
                    self.put(directory_node.into())
                }
                castorepb::node::Node::File(file_node) => self.put(file_node.into()),
                castorepb::node::Node::Symlink(symlink_node) => self.put(symlink_node.into()),
            };

            children_new.push((child_ino, child_node.clone()))
        }
        children_new
    }

    // Inserts the data and returns the inode it was stored at, while
    // incrementing next_inode.
    fn insert_and_increment(&mut self, data: InodeData) -> u64 {
        let ino = self.next_inode;
        // insert into lookup tables
        match data {
            InodeData::Regular(ref digest, _, _) => {
                self.blob_digest_to_inode.insert(digest.clone(), ino);
            }
            InodeData::Symlink(ref target) => {
                self.symlink_target_to_inode.insert(target.clone(), ino);
            }
            InodeData::Directory(DirectoryInodeData::Sparse(ref digest, _size)) => {
                self.directory_digest_to_inode.insert(digest.clone(), ino);
            }
            // This is currently not used outside test fixtures.
            // Usually a [DirectoryInodeData::Sparse] is inserted and later
            // "upgraded" with more data.
            // However, as a future optimization, a lookup for a PathInfo could trigger a
            // [DirectoryService::get_recursive()] request that "forks into
            // background" and prepopulates all Directories in a closure.
            InodeData::Directory(DirectoryInodeData::Populated(ref digest, _)) => {
                self.directory_digest_to_inode.insert(digest.clone(), ino);
            }
        }
        // Insert data
        self.data.insert(ino, Arc::new(data));

        // increment inode counter and return old inode.
        self.next_inode += 1;
        ino
    }
}

#[cfg(test)]
mod tests {
    use crate::fs::inodes::DirectoryInodeData;
    use crate::tests::fixtures;
    use tvix_castore::proto as castorepb;

    use super::InodeData;
    use super::InodeTracker;

    /// Getting something non-existent should be none
    #[test]
    fn get_nonexistent() {
        let inode_tracker = InodeTracker::default();
        assert!(inode_tracker.get(1).is_none());
    }

    /// Put of a regular file should allocate a uid, which should be the same when inserting again.
    #[test]
    fn put_regular() {
        let mut inode_tracker = InodeTracker::default();
        let f = InodeData::Regular(
            fixtures::BLOB_A_DIGEST.clone(),
            fixtures::BLOB_A.len() as u32,
            false,
        );

        // put it in
        let ino = inode_tracker.put(f.clone());

        // a get should return the right data
        let data = inode_tracker.get(ino).expect("must be some");
        match *data {
            InodeData::Regular(ref digest, _, _) => {
                assert_eq!(&fixtures::BLOB_A_DIGEST.clone(), digest);
            }
            InodeData::Symlink(_) | InodeData::Directory(..) => panic!("wrong type"),
        }

        // another put should return the same ino
        assert_eq!(ino, inode_tracker.put(f));

        // inserting another file should return a different ino
        assert_ne!(
            ino,
            inode_tracker.put(InodeData::Regular(
                fixtures::BLOB_B_DIGEST.clone(),
                fixtures::BLOB_B.len() as u32,
                false,
            ))
        );
    }

    // Put of a symlink should allocate a uid, which should be the same when inserting again
    #[test]
    fn put_symlink() {
        let mut inode_tracker = InodeTracker::default();
        let f = InodeData::Symlink("target".into());

        // put it in
        let ino = inode_tracker.put(f.clone());

        // a get should return the right data
        let data = inode_tracker.get(ino).expect("must be some");
        match *data {
            InodeData::Symlink(ref target) => {
                assert_eq!(b"target".to_vec(), *target);
            }
            InodeData::Regular(..) | InodeData::Directory(..) => panic!("wrong type"),
        }

        // another put should return the same ino
        assert_eq!(ino, inode_tracker.put(f));

        // inserting another file should return a different ino
        assert_ne!(ino, inode_tracker.put(InodeData::Symlink("target2".into())));
    }

    // TODO: put sparse directory

    /// Put a directory into the inode tracker, which refers to a file not seen yet.
    #[test]
    fn put_directory_leaf() {
        let mut inode_tracker = InodeTracker::default();

        // this is a directory with a single item, a ".keep" file pointing to a 0 bytes blob.
        let dir: InodeData = fixtures::DIRECTORY_WITH_KEEP.clone().into();

        // put it in
        let dir_ino = inode_tracker.put(dir);

        // a get should return the right data
        let data = inode_tracker.get(dir_ino).expect("must be some");
        match *data {
            InodeData::Directory(super::DirectoryInodeData::Sparse(..)) => {
                panic!("wrong type");
            }
            InodeData::Directory(super::DirectoryInodeData::Populated(
                ref directory_digest,
                ref children,
            )) => {
                // ensure the directory digest matches
                assert_eq!(&fixtures::DIRECTORY_WITH_KEEP.digest(), directory_digest);

                // ensure the child is populated, with a different inode than
                // the parent, and the data matches expectations.
                assert_eq!(1, children.len());
                let (child_ino, child_node) = children.first().unwrap();
                assert_ne!(dir_ino, *child_ino);
                assert_eq!(
                    &castorepb::node::Node::File(
                        fixtures::DIRECTORY_WITH_KEEP.files.first().unwrap().clone()
                    ),
                    child_node
                );

                // ensure looking up that inode directly returns the data
                let child_data = inode_tracker.get(*child_ino).expect("must exist");
                match *child_data {
                    InodeData::Regular(ref digest, size, executable) => {
                        assert_eq!(&fixtures::EMPTY_BLOB_DIGEST.clone(), digest);
                        assert_eq!(0, size);
                        assert!(!executable);
                    }
                    InodeData::Symlink(_) | InodeData::Directory(..) => panic!("wrong type"),
                }
            }
            InodeData::Symlink(_) | InodeData::Regular(..) => panic!("wrong type"),
        }
    }

    /// Put a directory into the inode tracker, referring to files, directories
    /// and symlinks not seen yet.
    #[test]
    fn put_directory_complicated() {
        let mut inode_tracker = InodeTracker::default();

        // this is a directory with a single item, a ".keep" file pointing to a 0 bytes blob.
        let dir_complicated: InodeData = fixtures::DIRECTORY_COMPLICATED.clone().into();

        // put it in
        let dir_complicated_ino = inode_tracker.put(dir_complicated);

        // a get should return the right data
        let dir_data = inode_tracker
            .get(dir_complicated_ino)
            .expect("must be some");

        let child_dir_ino = match *dir_data {
            InodeData::Directory(DirectoryInodeData::Sparse(..)) => {
                panic!("wrong type");
            }
            InodeData::Directory(DirectoryInodeData::Populated(
                ref directory_digest,
                ref children,
            )) => {
                // assert the directory digest matches
                assert_eq!(&fixtures::DIRECTORY_COMPLICATED.digest(), directory_digest);

                // ensure there's three children, all with different inodes
                assert_eq!(3, children.len());
                let mut seen_inodes = Vec::from([dir_complicated_ino]);

                // check the first child (.keep)
                {
                    let (child_ino, child_node) = &children[0];
                    assert!(!seen_inodes.contains(child_ino));
                    assert_eq!(
                        &castorepb::node::Node::File(
                            fixtures::DIRECTORY_COMPLICATED.files[0].clone()
                        ),
                        child_node
                    );
                    seen_inodes.push(*child_ino);
                }

                // check the second child (aa)
                {
                    let (child_ino, child_node) = &children[1];
                    assert!(!seen_inodes.contains(child_ino));
                    assert_eq!(
                        &castorepb::node::Node::Symlink(
                            fixtures::DIRECTORY_COMPLICATED.symlinks[0].clone()
                        ),
                        child_node
                    );
                    seen_inodes.push(*child_ino);
                }

                // check the third child (keep)
                {
                    let (child_ino, child_node) = &children[2];
                    assert!(!seen_inodes.contains(child_ino));
                    assert_eq!(
                        &castorepb::node::Node::Directory(
                            fixtures::DIRECTORY_COMPLICATED.directories[0].clone()
                        ),
                        child_node
                    );
                    seen_inodes.push(*child_ino);

                    // return the child_ino
                    *child_ino
                }
            }
            InodeData::Regular(..) | InodeData::Symlink(_) => panic!("wrong type"),
        };

        // get of the inode for child_ino
        let child_dir_data = inode_tracker.get(child_dir_ino).expect("must be some");
        // it should be a sparse InodeData::Directory with the right digest.
        match *child_dir_data {
            InodeData::Directory(DirectoryInodeData::Sparse(
                ref child_dir_digest,
                child_dir_size,
            )) => {
                assert_eq!(&fixtures::DIRECTORY_WITH_KEEP.digest(), child_dir_digest);
                assert_eq!(fixtures::DIRECTORY_WITH_KEEP.size(), child_dir_size);
            }
            InodeData::Directory(DirectoryInodeData::Populated(..))
            | InodeData::Regular(..)
            | InodeData::Symlink(_) => {
                panic!("wrong type")
            }
        }

        // put DIRECTORY_WITH_KEEP, which should return the same ino as [child_dir_ino],
        // but update the sparse object to a populated one at the same time.
        let child_dir_ino2 = inode_tracker.put(fixtures::DIRECTORY_WITH_KEEP.clone().into());
        assert_eq!(child_dir_ino, child_dir_ino2);

        // get the data
        match *inode_tracker.get(child_dir_ino).expect("must be some") {
            // it should be a populated InodeData::Directory with the right digest!
            InodeData::Directory(DirectoryInodeData::Populated(
                ref directory_digest,
                ref children,
            )) => {
                // ensure the directory digest matches
                assert_eq!(&fixtures::DIRECTORY_WITH_KEEP.digest(), directory_digest);

                // ensure the child is populated, with a different inode than
                // the parent, and the data matches expectations.
                assert_eq!(1, children.len());
                let (child_node_inode, child_node) = children.first().unwrap();
                assert_ne!(dir_complicated_ino, *child_node_inode);
                assert_eq!(
                    &castorepb::node::Node::File(
                        fixtures::DIRECTORY_WITH_KEEP.files.first().unwrap().clone()
                    ),
                    child_node
                );
            }
            InodeData::Directory(DirectoryInodeData::Sparse(..))
            | InodeData::Regular(..)
            | InodeData::Symlink(_) => panic!("wrong type"),
        }
    }
}

// TODO: add test inserting a populated one first, then ensure an update doesn't degrade it back to sparse.