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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
use crate::chunking;
use crate::objgv::*;
use anyhow::{anyhow, bail, ensure, Context, Result};
use camino::{Utf8Path, Utf8PathBuf};
use fn_error_context::context;
use gio::glib;
use gio::prelude::*;
use gvariant::aligned_bytes::TryAsAligned;
use gvariant::{Marker, Structure};
use ostree::gio;
use std::borrow::Borrow;
use std::borrow::Cow;
use std::collections::HashSet;
use std::io::BufReader;
use std::ops::RangeInclusive;
pub const BARE_SPLIT_XATTRS_MODE: &str = "bare-split-xattrs";
pub const FORMAT_VERSIONS: RangeInclusive<u32> = 1..=1;
const SYSROOT: &str = "sysroot";
const OSTREEDIR: &str = "sysroot/ostree";
#[allow(dead_code)]
const OSTREEREF: &str = "encapsulated";
const TAR_PATH_PREFIX_V0: &str = "./";
const REPO_CONFIG: &str = r#"[core]
repo_version=1
mode=bare-split-xattrs
"#;
const BUF_CAPACITY: usize = 131072;
fn map_path(p: &Utf8Path) -> std::borrow::Cow<Utf8Path> {
match p.strip_prefix("./usr/etc") {
Ok(r) => Cow::Owned(Utf8Path::new("./etc").join(r)),
_ => Cow::Borrowed(p),
}
}
fn map_path_v1(p: &Utf8Path) -> &Utf8Path {
debug_assert!(!p.starts_with("/") && !p.starts_with("."));
if p.starts_with("usr/etc") {
p.strip_prefix("usr/").unwrap()
} else {
p
}
}
struct OstreeTarWriter<'a, W: std::io::Write> {
repo: &'a ostree::Repo,
commit_checksum: &'a str,
commit_object: glib::Variant,
out: &'a mut tar::Builder<W>,
options: ExportOptions,
wrote_initdirs: bool,
structure_only: bool,
wrote_vartmp: bool, wrote_dirtree: HashSet<String>,
wrote_dirmeta: HashSet<String>,
wrote_content: HashSet<String>,
wrote_xattrs: HashSet<String>,
}
pub(crate) fn object_path(objtype: ostree::ObjectType, checksum: &str) -> Utf8PathBuf {
let suffix = match objtype {
ostree::ObjectType::Commit => "commit",
ostree::ObjectType::CommitMeta => "commitmeta",
ostree::ObjectType::DirTree => "dirtree",
ostree::ObjectType::DirMeta => "dirmeta",
ostree::ObjectType::File => "file",
o => panic!("Unexpected object type: {:?}", o),
};
let (first, rest) = checksum.split_at(2);
format!("{}/repo/objects/{}/{}.{}", OSTREEDIR, first, rest, suffix).into()
}
fn v1_xattrs_object_path(checksum: &str) -> Utf8PathBuf {
let (first, rest) = checksum.split_at(2);
format!("{}/repo/objects/{}/{}.file-xattrs", OSTREEDIR, first, rest).into()
}
fn v1_xattrs_link_object_path(checksum: &str) -> Utf8PathBuf {
let (first, rest) = checksum.split_at(2);
format!(
"{}/repo/objects/{}/{}.file-xattrs-link",
OSTREEDIR, first, rest
)
.into()
}
fn symlink_is_denormal(target: &str) -> bool {
target.contains("//")
}
pub(crate) fn tar_append_default_data(
out: &mut tar::Builder<impl std::io::Write>,
path: &Utf8Path,
buf: &[u8],
) -> Result<()> {
let mut h = tar::Header::new_gnu();
h.set_entry_type(tar::EntryType::Regular);
h.set_uid(0);
h.set_gid(0);
h.set_mode(0o644);
h.set_size(buf.len() as u64);
out.append_data(&mut h, path, buf).map_err(Into::into)
}
impl<'a, W: std::io::Write> OstreeTarWriter<'a, W> {
fn new(
repo: &'a ostree::Repo,
commit_checksum: &'a str,
out: &'a mut tar::Builder<W>,
options: ExportOptions,
) -> Result<Self> {
anyhow::ensure!(FORMAT_VERSIONS.contains(&options.format_version));
let commit_object = repo.load_commit(commit_checksum)?.0;
let r = Self {
repo,
commit_checksum,
commit_object,
out,
options,
wrote_initdirs: false,
structure_only: false,
wrote_vartmp: false,
wrote_dirmeta: HashSet::new(),
wrote_dirtree: HashSet::new(),
wrote_content: HashSet::new(),
wrote_xattrs: HashSet::new(),
};
Ok(r)
}
fn filter_mode(&self, mode: u32) -> u32 {
mode & !libc::S_IFMT
}
fn append_default_dir(&mut self, path: &Utf8Path) -> Result<()> {
let mut h = tar::Header::new_gnu();
h.set_entry_type(tar::EntryType::Directory);
h.set_uid(0);
h.set_gid(0);
h.set_mode(0o755);
h.set_size(0);
self.out.append_data(&mut h, &path, &mut std::io::empty())?;
Ok(())
}
fn append_default_data(&mut self, path: &Utf8Path, buf: &[u8]) -> Result<()> {
tar_append_default_data(self.out, path, buf)
}
fn append_default_hardlink(&mut self, path: &Utf8Path, link_target: &Utf8Path) -> Result<()> {
let mut h = tar::Header::new_gnu();
h.set_entry_type(tar::EntryType::Link);
h.set_uid(0);
h.set_gid(0);
h.set_mode(0o644);
h.set_size(0);
self.out.append_link(&mut h, &path, &link_target)?;
Ok(())
}
fn write_repo_structure(&mut self) -> Result<()> {
if self.wrote_initdirs {
return Ok(());
}
let objdir: Utf8PathBuf = format!("{}/repo/objects", OSTREEDIR).into();
let parent_dirs = {
let mut parts: Vec<_> = objdir.ancestors().collect();
parts.reverse();
parts
};
for path in parent_dirs {
match path.as_str() {
"/" | "" => continue,
_ => {}
}
self.append_default_dir(path)?;
}
for d in 0..=0xFF {
let path: Utf8PathBuf = format!("{}/{:02x}", objdir, d).into();
self.append_default_dir(&path)?;
}
let subdirs = [
"extensions",
"refs",
"refs/heads",
"refs/mirrors",
"refs/remotes",
"state",
"tmp",
"tmp/cache",
];
for d in subdirs {
let path: Utf8PathBuf = format!("{}/repo/{}", OSTREEDIR, d).into();
self.append_default_dir(&path)?;
}
{
let path = match self.options.format_version {
1 => format!("{}/repo/config", OSTREEDIR),
n => anyhow::bail!("Unsupported ostree tar format version {}", n),
};
self.append_default_data(Utf8Path::new(&path), REPO_CONFIG.as_bytes())?;
}
self.wrote_initdirs = true;
Ok(())
}
fn write_commit(&mut self) -> Result<()> {
let cancellable = gio::Cancellable::NONE;
let commit_bytes = self.commit_object.data_as_bytes();
let commit_bytes = commit_bytes.try_as_aligned()?;
let commit = gv_commit!().cast(commit_bytes);
let commit = commit.to_tuple();
let contents = hex::encode(commit.6);
let metadata_checksum = &hex::encode(commit.7);
let metadata_v = self
.repo
.load_variant(ostree::ObjectType::DirMeta, metadata_checksum)?;
let metadata = &ostree::DirMetaParsed::from_variant(&metadata_v).unwrap();
let rootpath = Utf8Path::new(TAR_PATH_PREFIX_V0);
self.append_dir(rootpath, metadata)?;
self.write_repo_structure()?;
self.append_commit_object()?;
self.append(ostree::ObjectType::DirMeta, metadata_checksum, &metadata_v)?;
self.append_dirtree(
Utf8Path::new(TAR_PATH_PREFIX_V0),
contents,
true,
cancellable,
)?;
self.append_standard_var(cancellable)?;
Ok(())
}
fn append_commit_object(&mut self) -> Result<()> {
self.append(
ostree::ObjectType::Commit,
self.commit_checksum,
&self.commit_object.clone(),
)?;
if let Some(commitmeta) = self
.repo
.read_commit_detached_metadata(self.commit_checksum, gio::Cancellable::NONE)?
{
self.append(
ostree::ObjectType::CommitMeta,
self.commit_checksum,
&commitmeta,
)?;
}
Ok(())
}
fn append(
&mut self,
objtype: ostree::ObjectType,
checksum: &str,
v: &glib::Variant,
) -> Result<()> {
let set = match objtype {
ostree::ObjectType::Commit | ostree::ObjectType::CommitMeta => None,
ostree::ObjectType::DirTree => Some(&mut self.wrote_dirtree),
ostree::ObjectType::DirMeta => Some(&mut self.wrote_dirmeta),
o => panic!("Unexpected object type: {:?}", o),
};
if let Some(set) = set {
if set.contains(checksum) {
return Ok(());
}
let inserted = set.insert(checksum.to_string());
debug_assert!(inserted);
}
let data = v.data_as_bytes();
let data = data.as_ref();
self.append_default_data(&object_path(objtype, checksum), data)
.with_context(|| format!("Writing object {checksum}"))?;
Ok(())
}
#[context("Writing xattrs")]
fn append_xattrs(&mut self, checksum: &str, xattrs: &glib::Variant) -> Result<bool> {
let xattrs_data = xattrs.data_as_bytes();
let xattrs_data = xattrs_data.as_ref();
let xattrs_checksum = {
let digest = openssl::hash::hash(openssl::hash::MessageDigest::sha256(), xattrs_data)?;
hex::encode(digest)
};
if self.options.format_version == 1 {
let path = v1_xattrs_object_path(&xattrs_checksum);
if !self.wrote_xattrs.contains(&xattrs_checksum) {
let inserted = self.wrote_xattrs.insert(xattrs_checksum);
debug_assert!(inserted);
self.append_default_data(&path, xattrs_data)?;
}
{
let link_obj_path = v1_xattrs_link_object_path(checksum);
self.append_default_hardlink(&link_obj_path, &path)?;
}
} else {
bail!("Unknown format version '{}'", self.options.format_version);
}
Ok(true)
}
fn append_content(&mut self, checksum: &str) -> Result<(Utf8PathBuf, tar::Header)> {
let path = object_path(ostree::ObjectType::File, checksum);
let (instream, meta, xattrs) = self.repo.load_file(checksum, gio::Cancellable::NONE)?;
let mut h = tar::Header::new_gnu();
h.set_uid(meta.attribute_uint32("unix::uid") as u64);
h.set_gid(meta.attribute_uint32("unix::gid") as u64);
let mode = meta.attribute_uint32("unix::mode");
h.set_mode(self.filter_mode(mode));
if instream.is_some() {
h.set_size(meta.size() as u64);
}
if !self.wrote_content.contains(checksum) {
let inserted = self.wrote_content.insert(checksum.to_string());
debug_assert!(inserted);
self.append_xattrs(checksum, &xattrs)?;
if let Some(instream) = instream {
ensure!(meta.file_type() == gio::FileType::Regular);
h.set_entry_type(tar::EntryType::Regular);
h.set_size(meta.size() as u64);
let mut instream = BufReader::with_capacity(BUF_CAPACITY, instream.into_read());
self.out
.append_data(&mut h, &path, &mut instream)
.with_context(|| format!("Writing regfile {}", checksum))?;
} else {
ensure!(meta.file_type() == gio::FileType::SymbolicLink);
let target = meta
.symlink_target()
.ok_or_else(|| anyhow!("Missing symlink target"))?;
let context = || format!("Writing content symlink: {}", checksum);
h.set_entry_type(tar::EntryType::Symlink);
h.set_size(0);
if symlink_is_denormal(&target) {
h.set_link_name_literal(meta.symlink_target().unwrap().as_str())
.with_context(context)?;
self.out
.append_data(&mut h, &path, &mut std::io::empty())
.with_context(context)?;
} else {
self.out
.append_link(&mut h, &path, target.as_str())
.with_context(context)?;
}
}
}
Ok((path, h))
}
fn append_dir(&mut self, dirpath: &Utf8Path, meta: &ostree::DirMetaParsed) -> Result<()> {
let mut header = tar::Header::new_gnu();
header.set_entry_type(tar::EntryType::Directory);
header.set_size(0);
header.set_uid(meta.uid as u64);
header.set_gid(meta.gid as u64);
header.set_mode(self.filter_mode(meta.mode));
self.out
.append_data(&mut header, dirpath, std::io::empty())?;
Ok(())
}
fn append_content_hardlink(
&mut self,
srcpath: &Utf8Path,
mut h: tar::Header,
dest: &Utf8Path,
) -> Result<()> {
let size = h.size().context("Querying size for hardlink append")?;
h.set_size(0);
if h.entry_type() == tar::EntryType::Regular && size == 0 {
self.out.append_data(&mut h, dest, &mut std::io::empty())?;
} else {
h.set_entry_type(tar::EntryType::Link);
h.set_link_name(srcpath)?;
self.out.append_data(&mut h, dest, &mut std::io::empty())?;
}
Ok(())
}
fn append_dirtree<C: IsA<gio::Cancellable>>(
&mut self,
dirpath: &Utf8Path,
checksum: String,
is_root: bool,
cancellable: Option<&C>,
) -> Result<()> {
let v = &self
.repo
.load_variant(ostree::ObjectType::DirTree, &checksum)?;
self.append(ostree::ObjectType::DirTree, &checksum, v)?;
drop(checksum);
let v = v.data_as_bytes();
let v = v.try_as_aligned()?;
let v = gv_dirtree!().cast(v);
let (files, dirs) = v.to_tuple();
if let Some(c) = cancellable {
c.set_error_if_cancelled()?;
}
if !self.structure_only {
for file in files {
let (name, csum) = file.to_tuple();
let name = name.to_str();
let checksum = &hex::encode(csum);
let (objpath, h) = self.append_content(checksum)?;
let subpath = &dirpath.join(name);
let subpath = map_path(subpath);
self.append_content_hardlink(&objpath, h, &*subpath)?;
}
}
if dirpath == "var/tmp" {
self.wrote_vartmp = true;
}
for item in dirs {
let (name, contents_csum, meta_csum) = item.to_tuple();
let name = name.to_str();
let metadata = {
let meta_csum = &hex::encode(meta_csum);
let meta_v = &self
.repo
.load_variant(ostree::ObjectType::DirMeta, meta_csum)?;
self.append(ostree::ObjectType::DirMeta, meta_csum, meta_v)?;
ostree::DirMetaParsed::from_variant(meta_v).unwrap()
};
if is_root && name == SYSROOT {
continue;
}
let dirtree_csum = hex::encode(contents_csum);
let subpath = &dirpath.join(name);
let subpath = map_path(subpath);
self.append_dir(&*subpath, &metadata)?;
self.append_dirtree(&*subpath, dirtree_csum, false, cancellable)?;
}
Ok(())
}
fn append_standard_var(&mut self, cancellable: Option<&gio::Cancellable>) -> Result<()> {
if self.wrote_vartmp {
return Ok(());
}
if let Some(c) = cancellable {
c.set_error_if_cancelled()?;
}
let mut header = tar::Header::new_gnu();
header.set_entry_type(tar::EntryType::Directory);
header.set_size(0);
header.set_uid(0);
header.set_gid(0);
header.set_mode(self.filter_mode(libc::S_IFDIR | 0o1777));
self.out
.append_data(&mut header, "var/tmp", std::io::empty())?;
Ok(())
}
}
fn impl_export<W: std::io::Write>(
repo: &ostree::Repo,
commit_checksum: &str,
out: &mut tar::Builder<W>,
options: ExportOptions,
) -> Result<()> {
let writer = &mut OstreeTarWriter::new(repo, commit_checksum, out, options)?;
writer.write_commit()?;
Ok(())
}
#[derive(Debug, PartialEq, Eq)]
pub struct ExportOptions {
pub format_version: u32,
}
impl Default for ExportOptions {
fn default() -> Self {
Self { format_version: 1 }
}
}
#[context("Exporting commit")]
pub fn export_commit(
repo: &ostree::Repo,
rev: &str,
out: impl std::io::Write,
options: Option<ExportOptions>,
) -> Result<()> {
let commit = repo.require_rev(rev)?;
let mut tar = tar::Builder::new(out);
let options = options.unwrap_or_default();
impl_export(repo, commit.as_str(), &mut tar, options)?;
tar.finish()?;
Ok(())
}
fn path_for_tar_v1(p: &Utf8Path) -> &Utf8Path {
debug_assert!(!p.starts_with("."));
map_path_v1(p.strip_prefix("/").unwrap_or(p))
}
fn write_chunk<W: std::io::Write>(
writer: &mut OstreeTarWriter<W>,
chunk: chunking::ChunkMapping,
) -> Result<()> {
for (checksum, (_size, paths)) in chunk.into_iter() {
let (objpath, h) = writer.append_content(checksum.borrow())?;
for path in paths.iter() {
let path = path_for_tar_v1(path);
let h = h.clone();
writer.append_content_hardlink(&objpath, h, path)?;
}
}
Ok(())
}
pub(crate) fn export_chunk<W: std::io::Write>(
repo: &ostree::Repo,
commit: &str,
chunk: chunking::ChunkMapping,
out: &mut tar::Builder<W>,
) -> Result<()> {
#[allow(clippy::needless_update)]
let opts = ExportOptions {
format_version: 1,
..Default::default()
};
let writer = &mut OstreeTarWriter::new(repo, commit, out, opts)?;
writer.write_repo_structure()?;
write_chunk(writer, chunk)
}
#[context("Exporting final chunk")]
pub(crate) fn export_final_chunk<W: std::io::Write>(
repo: &ostree::Repo,
commit_checksum: &str,
remainder: chunking::Chunk,
out: &mut tar::Builder<W>,
) -> Result<()> {
#[allow(clippy::needless_update)]
let options = ExportOptions {
format_version: 1,
..Default::default()
};
let writer = &mut OstreeTarWriter::new(repo, commit_checksum, out, options)?;
writer.structure_only = true;
writer.write_commit()?;
writer.structure_only = false;
write_chunk(writer, remainder.content)
}
#[allow(clippy::while_let_on_iterator)]
#[context("Replacing detached metadata")]
pub(crate) fn reinject_detached_metadata<C: IsA<gio::Cancellable>>(
src: &mut tar::Archive<impl std::io::Read>,
dest: &mut tar::Builder<impl std::io::Write>,
detached_buf: Option<&[u8]>,
cancellable: Option<&C>,
) -> Result<()> {
let mut entries = src.entries()?;
let mut commit_ent = None;
while let Some(entry) = entries.next() {
if let Some(c) = cancellable {
c.set_error_if_cancelled()?;
}
let entry = entry?;
let header = entry.header();
let path = entry.path()?;
let path: &Utf8Path = (&*path).try_into()?;
if !(header.entry_type() == tar::EntryType::Regular && path.as_str().ends_with(".commit")) {
crate::tar::write::copy_entry(entry, dest, None)?;
} else {
commit_ent = Some(entry);
break;
}
}
let commit_ent = commit_ent.ok_or_else(|| anyhow!("Missing commit object"))?;
let commit_path = commit_ent.path()?;
let commit_path = Utf8Path::from_path(&*commit_path)
.ok_or_else(|| anyhow!("Invalid non-utf8 path {:?}", commit_path))?;
let (checksum, objtype) = crate::tar::import::Importer::parse_metadata_entry(commit_path)?;
assert_eq!(objtype, ostree::ObjectType::Commit); crate::tar::write::copy_entry(commit_ent, dest, None)?;
if let Some(detached_buf) = detached_buf {
let detached_path = object_path(ostree::ObjectType::CommitMeta, &checksum);
tar_append_default_data(dest, &detached_path, detached_buf)?;
}
let next_ent = entries
.next()
.ok_or_else(|| anyhow!("Expected metadata object after commit"))??;
let next_ent_path = next_ent.path()?;
let next_ent_path: &Utf8Path = (&*next_ent_path).try_into()?;
let objtype = crate::tar::import::Importer::parse_metadata_entry(next_ent_path)?.1;
if objtype != ostree::ObjectType::CommitMeta {
crate::tar::write::copy_entry(next_ent, dest, None)?;
}
while let Some(entry) = entries.next() {
if let Some(c) = cancellable {
c.set_error_if_cancelled()?;
}
crate::tar::write::copy_entry(entry?, dest, None)?;
}
Ok(())
}
pub fn update_detached_metadata<D: std::io::Write, C: IsA<gio::Cancellable>>(
src: impl std::io::Read,
dest: D,
detached_buf: Option<&[u8]>,
cancellable: Option<&C>,
) -> Result<D> {
let mut src = tar::Archive::new(src);
let mut dest = tar::Builder::new(dest);
reinject_detached_metadata(&mut src, &mut dest, detached_buf, cancellable)?;
dest.into_inner().map_err(Into::into)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_map_path() {
assert_eq!(map_path("/".into()), Utf8Path::new("/"));
assert_eq!(
map_path("./usr/etc/blah".into()),
Utf8Path::new("./etc/blah")
);
for unchanged in ["boot", "usr/bin", "usr/lib/foo"].iter().map(Utf8Path::new) {
assert_eq!(unchanged, map_path_v1(unchanged));
}
assert_eq!(Utf8Path::new("etc"), map_path_v1(Utf8Path::new("usr/etc")));
assert_eq!(
Utf8Path::new("etc/foo"),
map_path_v1(Utf8Path::new("usr/etc/foo"))
);
}
#[test]
fn test_denormal_symlink() {
let normal = ["/", "/usr", "../usr/bin/blah"];
let denormal = ["../../usr/sbin//chkconfig", "foo//bar/baz"];
for path in normal {
assert!(!symlink_is_denormal(path));
}
for path in denormal {
assert!(symlink_is_denormal(path));
}
}
#[test]
fn test_v1_xattrs_object_path() {
let checksum = "b8627e3ef0f255a322d2bd9610cfaaacc8f122b7f8d17c0e7e3caafa160f9fc7";
let expected = "sysroot/ostree/repo/objects/b8/627e3ef0f255a322d2bd9610cfaaacc8f122b7f8d17c0e7e3caafa160f9fc7.file-xattrs";
let output = v1_xattrs_object_path(checksum);
assert_eq!(&output, expected);
}
#[test]
fn test_v1_xattrs_link_object_path() {
let checksum = "b8627e3ef0f255a322d2bd9610cfaaacc8f122b7f8d17c0e7e3caafa160f9fc7";
let expected = "sysroot/ostree/repo/objects/b8/627e3ef0f255a322d2bd9610cfaaacc8f122b7f8d17c0e7e3caafa160f9fc7.file-xattrs-link";
let output = v1_xattrs_link_object_path(checksum);
assert_eq!(&output, expected);
}
}