Skip to main content

harn_modules/
package_snapshot.rs

1use std::fmt;
2use std::fs::{self, File, OpenOptions};
3use std::io;
4use std::path::{Component, Path, PathBuf};
5use std::sync::{Mutex, OnceLock};
6use std::time::Duration;
7
8use serde::{Deserialize, Serialize};
9use sha2::{Digest, Sha256};
10
11/// Counts the filesystem work package resolution performs, so tests can assert
12/// that work which is not needed does not happen.
13///
14/// Counters rather than behavioural assertions because there is nothing else to
15/// observe: acquiring a snapshot and discarding it changes no result, only wall
16/// time. That is exactly how a 5x regression shipped and stayed hidden for three
17/// releases (harn#4815) — the property under test is "this work does not
18/// happen", and only a probe can see that.
19///
20/// The two halves are counted separately because they cost very differently: a
21/// root walk is a handful of stats, while an acquire canonicalizes, takes two
22/// shared flocks, parses two TOML files, and re-reads plus SHA256s the lockfile.
23/// A caller resolving N files under one root should walk N times and acquire
24/// ONCE; a single total could not tell that apart from N acquires.
25#[cfg(test)]
26pub(crate) mod probe_counter {
27    use std::cell::Cell;
28
29    thread_local! {
30        static ACQUIRE_CALLS: Cell<usize> = const { Cell::new(0) };
31        static ROOT_WALK_CALLS: Cell<usize> = const { Cell::new(0) };
32    }
33
34    pub(crate) fn record_acquire() {
35        ACQUIRE_CALLS.with(|calls| calls.set(calls.get() + 1));
36    }
37
38    pub(crate) fn record_root_walk() {
39        ROOT_WALK_CALLS.with(|calls| calls.set(calls.get() + 1));
40    }
41
42    /// Run `body`, returning its value and how many times it probed the
43    /// filesystem for a package at all. Thread-local, so concurrent tests
44    /// cannot bleed into each other.
45    pub(crate) fn count_probes<T>(body: impl FnOnce() -> T) -> (T, usize) {
46        let (value, walks, _) = count_walks_and_acquires(body);
47        (value, walks)
48    }
49
50    pub(crate) fn count_walks_and_acquires<T>(body: impl FnOnce() -> T) -> (T, usize, usize) {
51        ROOT_WALK_CALLS.with(|calls| calls.set(0));
52        ACQUIRE_CALLS.with(|calls| calls.set(0));
53        let value = body();
54        (
55            value,
56            ROOT_WALK_CALLS.with(|calls| calls.get()),
57            ACQUIRE_CALLS.with(|calls| calls.get()),
58        )
59    }
60}
61
62pub const PACKAGE_STATE_DIR: &str = ".harn";
63pub const PACKAGE_CURRENT_FILE: &str = "package-current.toml";
64pub const PACKAGE_GENERATIONS_DIR: &str = "package-generations";
65pub const PACKAGE_PUBLICATION_LOCK_FILE: &str = "package-generation.lock";
66pub const PACKAGE_INSTALL_LOCK_FILE: &str = "package-install.lock";
67pub const GENERATION_MANIFEST_FILE: &str = "generation.toml";
68pub const GENERATION_LOCK_FILE: &str = "harn.lock";
69pub const GENERATION_LEASE_FILE: &str = "lease.lock";
70pub const GENERATION_PACKAGES_DIR: &str = "packages";
71pub const PACKAGE_GENERATION_SCHEMA_VERSION: u32 = 1;
72
73// Publishing includes bounded local garbage collection, while taking a
74// generation lease only spans pointer validation. These are deliberately
75// separate budgets because their critical sections have different ceilings.
76const PACKAGE_PUBLICATION_LOCK_TIMEOUT: Duration = Duration::from_mins(5);
77const PACKAGE_LEASE_LOCK_TIMEOUT: Duration = Duration::from_secs(30);
78
79#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
80#[serde(deny_unknown_fields)]
81pub struct PackageGenerationPointer {
82    pub schema_version: u32,
83    pub generation: String,
84}
85
86impl PackageGenerationPointer {
87    pub fn new(generation: impl Into<String>) -> Result<Self, PackageSnapshotError> {
88        let generation = generation.into();
89        validate_generation_id(&generation)?;
90        Ok(Self {
91            schema_version: PACKAGE_GENERATION_SCHEMA_VERSION,
92            generation,
93        })
94    }
95
96    pub fn validate(&self, path: &Path) -> Result<(), PackageSnapshotError> {
97        validate_schema_version(self.schema_version, path)?;
98        validate_generation_id(&self.generation)
99    }
100}
101
102#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
103#[serde(deny_unknown_fields)]
104pub struct PackageGenerationManifest {
105    pub schema_version: u32,
106    pub generation: String,
107    pub lock_digest: String,
108}
109
110impl PackageGenerationManifest {
111    pub fn new(
112        generation: impl Into<String>,
113        lock_digest: impl Into<String>,
114    ) -> Result<Self, PackageSnapshotError> {
115        let generation = generation.into();
116        validate_generation_id(&generation)?;
117        let lock_digest = lock_digest.into();
118        validate_lock_digest(&lock_digest)?;
119        Ok(Self {
120            schema_version: PACKAGE_GENERATION_SCHEMA_VERSION,
121            generation,
122            lock_digest,
123        })
124    }
125
126    pub fn validate(&self, path: &Path) -> Result<(), PackageSnapshotError> {
127        validate_schema_version(self.schema_version, path)?;
128        validate_generation_id(&self.generation)?;
129        validate_lock_digest(&self.lock_digest)
130    }
131}
132
133#[derive(Debug)]
134pub struct PackageSnapshot {
135    project_root: PathBuf,
136    generation: String,
137    generation_root: PathBuf,
138    packages_root: PathBuf,
139    lock_path: PathBuf,
140    lock_digest: String,
141    package_names: Vec<String>,
142    _lease: File,
143}
144
145/// Generation leases retained by lazy path resolution.
146///
147/// A bare `PathBuf` cannot carry the lease that makes a path beneath a package
148/// generation valid. Lazy resolution therefore promotes a selected snapshot
149/// to this process-lifetime registry before returning such a path. Harn CLI
150/// processes are command-scoped, so this is also the command lifetime; long-
151/// lived processes retain every generation whose paths they may have cached.
152static PROCESS_PACKAGE_SNAPSHOTS: OnceLock<Mutex<Vec<PackageSnapshot>>> = OnceLock::new();
153
154impl PackageSnapshot {
155    /// Retain this generation for the rest of the process.
156    ///
157    /// Repeated resolution against the same project generation reuses the
158    /// existing lease instead of consuming another file descriptor.
159    pub(crate) fn retain_for_process(self) {
160        let snapshots = PROCESS_PACKAGE_SNAPSHOTS.get_or_init(|| Mutex::new(Vec::new()));
161        let mut snapshots = snapshots
162            .lock()
163            .unwrap_or_else(std::sync::PoisonError::into_inner);
164        if snapshots.iter().any(|snapshot| {
165            snapshot.project_root == self.project_root && snapshot.generation == self.generation
166        }) {
167            return;
168        }
169        snapshots.push(self);
170    }
171
172    /// Duplicate this snapshot while retaining the same generation lease.
173    pub fn retained_clone(&self) -> Result<Self, PackageSnapshotError> {
174        Ok(Self {
175            project_root: self.project_root.clone(),
176            generation: self.generation.clone(),
177            generation_root: self.generation_root.clone(),
178            packages_root: self.packages_root.clone(),
179            lock_path: self.lock_path.clone(),
180            lock_digest: self.lock_digest.clone(),
181            package_names: self.package_names.clone(),
182            _lease: self._lease.try_clone().map_err(|error| {
183                PackageSnapshotError::io("clone lease", &self.generation_root, error)
184            })?,
185        })
186    }
187
188    /// Acquire the currently published package generation for `project_root`.
189    ///
190    /// The publication lock closes the pointer-to-lease race: GC cannot remove
191    /// the selected generation until this reader holds its shared lease.
192    pub fn acquire(project_root: &Path) -> Result<Option<Self>, PackageSnapshotError> {
193        #[cfg(test)]
194        probe_counter::record_acquire();
195        let project_root = project_root
196            .canonicalize()
197            .map_err(|error| PackageSnapshotError::io("canonicalize", project_root, error))?;
198        let state_path = project_root.join(PACKAGE_STATE_DIR);
199        if !state_path.is_dir() {
200            return Ok(None);
201        }
202        let state_dir = canonical_directory_within(&project_root, &state_path)?;
203        let pointer_path = state_dir.join(PACKAGE_CURRENT_FILE);
204        let publication_lock_path = state_dir.join(PACKAGE_PUBLICATION_LOCK_FILE);
205        if !publication_lock_path.exists() && !pointer_path.exists() {
206            return Ok(None);
207        }
208        require_regular_file(&publication_lock_path)?;
209        let publication_lock = open_existing_lock_file(&publication_lock_path)?;
210        harn_flock::lock_with_deadline(
211            &publication_lock,
212            &publication_lock_path,
213            harn_flock::LockMode::Shared,
214            PACKAGE_PUBLICATION_LOCK_TIMEOUT,
215        )
216        .map_err(|error| {
217            PackageSnapshotError::io("lock", &publication_lock_path, io::Error::other(error))
218        })?;
219
220        if !pointer_path.is_file() {
221            return Ok(None);
222        }
223        require_regular_file(&pointer_path)?;
224
225        let pointer = read_toml::<PackageGenerationPointer>(&pointer_path)?;
226        pointer.validate(&pointer_path)?;
227        let generations_dir =
228            canonical_directory_within(&state_dir, &state_dir.join(PACKAGE_GENERATIONS_DIR))?;
229        let generation_root = canonical_directory_within(
230            &generations_dir,
231            &generations_dir.join(&pointer.generation),
232        )?;
233        let lease_path = generation_root.join(GENERATION_LEASE_FILE);
234        require_regular_file(&lease_path)?;
235        let lease = open_existing_lock_file(&lease_path)?;
236        harn_flock::lock_with_deadline(
237            &lease,
238            &lease_path,
239            harn_flock::LockMode::Shared,
240            PACKAGE_LEASE_LOCK_TIMEOUT,
241        )
242        .map_err(|error| PackageSnapshotError::io("lock", &lease_path, io::Error::other(error)))?;
243
244        // The generation lease now protects every immutable artifact below the
245        // selected root, so GC no longer needs to be excluded.
246        publication_lock
247            .unlock()
248            .map_err(|error| PackageSnapshotError::io("unlock", &publication_lock_path, error))?;
249
250        let manifest_path = generation_root.join(GENERATION_MANIFEST_FILE);
251        require_regular_file(&manifest_path)?;
252        let manifest = read_toml::<PackageGenerationManifest>(&manifest_path)?;
253        manifest.validate(&manifest_path)?;
254        if manifest.generation != pointer.generation {
255            return Err(PackageSnapshotError::Invalid(format!(
256                "{} names generation {:?}, expected {:?}",
257                manifest_path.display(),
258                manifest.generation,
259                pointer.generation
260            )));
261        }
262        let packages_root = canonical_directory_within(
263            &generation_root,
264            &generation_root.join(GENERATION_PACKAGES_DIR),
265        )?;
266        let lock_path = generation_root.join(GENERATION_LOCK_FILE);
267        require_regular_file(&lock_path)?;
268        let lock_bytes = fs::read(&lock_path)
269            .map_err(|error| PackageSnapshotError::io("read", &lock_path, error))?;
270        let actual_lock_digest = package_lock_digest(&lock_bytes);
271        if actual_lock_digest != manifest.lock_digest {
272            return Err(PackageSnapshotError::Invalid(format!(
273                "{} digest mismatch: generation manifest records {}, actual {}",
274                lock_path.display(),
275                manifest.lock_digest,
276                actual_lock_digest
277            )));
278        }
279        let package_names = parse_package_names(&lock_path, &lock_bytes)?;
280
281        Ok(Some(Self {
282            project_root,
283            generation: pointer.generation,
284            generation_root,
285            packages_root,
286            lock_path,
287            lock_digest: manifest.lock_digest,
288            package_names,
289            _lease: lease,
290        }))
291    }
292
293    /// The nearest ancestor of `anchor` that publishes a package generation.
294    ///
295    /// Split out from `acquire_nearest` so a caller resolving many files can
296    /// find each one's root — a cheap stat-walk — and then acquire only once
297    /// per DISTINCT root. Acquiring is the expensive half (canonicalize, two
298    /// shared flocks, two TOML parses, and a re-read plus SHA256 of the
299    /// lockfile), so a caller that acquires per file and dedupes afterwards
300    /// pays it once per file and throws all but one result away.
301    pub fn nearest_project_root(anchor: &Path) -> Option<PathBuf> {
302        #[cfg(test)]
303        probe_counter::record_root_walk();
304        // Same upward walk as every other Harn frontend, parameterized on the
305        // package-state sentinel (`.harn/package-current.toml`) instead of
306        // `harn.toml`.
307        let sentinel = Path::new(PACKAGE_STATE_DIR).join(PACKAGE_CURRENT_FILE);
308        crate::manifest_walk::find_nearest_ancestor(anchor, sentinel).map(|found| found.dir)
309    }
310
311    pub fn acquire_nearest(anchor: &Path) -> Result<Option<Self>, PackageSnapshotError> {
312        match Self::nearest_project_root(anchor) {
313            Some(root) => Self::acquire(&root),
314            None => Ok(None),
315        }
316    }
317
318    pub fn project_root(&self) -> &Path {
319        &self.project_root
320    }
321
322    pub fn generation(&self) -> &str {
323        &self.generation
324    }
325
326    pub fn generation_root(&self) -> &Path {
327        &self.generation_root
328    }
329
330    pub fn packages_root(&self) -> &Path {
331        &self.packages_root
332    }
333
334    pub fn lock_path(&self) -> &Path {
335        &self.lock_path
336    }
337
338    pub fn lock_digest(&self) -> &str {
339        &self.lock_digest
340    }
341
342    pub fn package_names(&self) -> &[String] {
343        &self.package_names
344    }
345}
346
347#[derive(Debug)]
348pub enum PackageSnapshotError {
349    Io {
350        operation: &'static str,
351        path: PathBuf,
352        source: io::Error,
353    },
354    Invalid(String),
355}
356
357impl PackageSnapshotError {
358    fn io(operation: &'static str, path: &Path, source: io::Error) -> Self {
359        Self::Io {
360            operation,
361            path: path.to_path_buf(),
362            source,
363        }
364    }
365}
366
367impl fmt::Display for PackageSnapshotError {
368    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
369        match self {
370            Self::Io {
371                operation,
372                path,
373                source,
374            } => write!(
375                formatter,
376                "failed to {operation} {}: {source}",
377                path.display()
378            ),
379            Self::Invalid(message) => formatter.write_str(message),
380        }
381    }
382}
383
384impl std::error::Error for PackageSnapshotError {
385    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
386        match self {
387            Self::Io { source, .. } => Some(source),
388            Self::Invalid(_) => None,
389        }
390    }
391}
392
393pub fn package_state_dir(project_root: &Path) -> PathBuf {
394    project_root.join(PACKAGE_STATE_DIR)
395}
396
397pub fn package_generations_dir(project_root: &Path) -> PathBuf {
398    package_state_dir(project_root).join(PACKAGE_GENERATIONS_DIR)
399}
400
401pub fn package_publication_lock_path(project_root: &Path) -> PathBuf {
402    package_state_dir(project_root).join(PACKAGE_PUBLICATION_LOCK_FILE)
403}
404
405pub fn package_current_path(project_root: &Path) -> PathBuf {
406    package_state_dir(project_root).join(PACKAGE_CURRENT_FILE)
407}
408
409pub fn generation_root(project_root: &Path, generation: &str) -> PathBuf {
410    package_generations_dir(project_root).join(generation)
411}
412
413pub fn open_lock_file(path: &Path) -> Result<File, PackageSnapshotError> {
414    if let Some(parent) = path.parent() {
415        fs::create_dir_all(parent)
416            .map_err(|error| PackageSnapshotError::io("create", parent, error))?;
417    }
418    OpenOptions::new()
419        .read(true)
420        .write(true)
421        .create(true)
422        .truncate(false)
423        .open(path)
424        .map_err(|error| PackageSnapshotError::io("open", path, error))
425}
426
427fn open_existing_lock_file(path: &Path) -> Result<File, PackageSnapshotError> {
428    OpenOptions::new()
429        .read(true)
430        .write(true)
431        .open(path)
432        .map_err(|error| PackageSnapshotError::io("open", path, error))
433}
434
435fn read_toml<T>(path: &Path) -> Result<T, PackageSnapshotError>
436where
437    T: for<'de> Deserialize<'de>,
438{
439    let source =
440        fs::read_to_string(path).map_err(|error| PackageSnapshotError::io("read", path, error))?;
441    toml::from_str(&source).map_err(|error| {
442        PackageSnapshotError::Invalid(format!("failed to parse {}: {error}", path.display()))
443    })
444}
445
446fn validate_schema_version(version: u32, path: &Path) -> Result<(), PackageSnapshotError> {
447    if version == PACKAGE_GENERATION_SCHEMA_VERSION {
448        Ok(())
449    } else {
450        Err(PackageSnapshotError::Invalid(format!(
451            "unsupported {} schema version {} (expected {})",
452            path.display(),
453            version,
454            PACKAGE_GENERATION_SCHEMA_VERSION
455        )))
456    }
457}
458
459pub fn validate_generation_id(generation: &str) -> Result<(), PackageSnapshotError> {
460    let path = Path::new(generation);
461    let mut components = path.components();
462    let Some(Component::Normal(component)) = components.next() else {
463        return Err(invalid_generation_id(generation));
464    };
465    if components.next().is_some()
466        || component.to_str() != Some(generation)
467        || generation.starts_with('.')
468        || !generation
469            .bytes()
470            .all(|byte| byte.is_ascii_alphanumeric() || matches!(byte, b'-' | b'_'))
471    {
472        return Err(invalid_generation_id(generation));
473    }
474    Ok(())
475}
476
477fn invalid_generation_id(generation: &str) -> PackageSnapshotError {
478    PackageSnapshotError::Invalid(format!("invalid package generation id {generation:?}"))
479}
480
481fn validate_lock_digest(digest: &str) -> Result<(), PackageSnapshotError> {
482    let Some(hex) = digest.strip_prefix("sha256:") else {
483        return Err(PackageSnapshotError::Invalid(format!(
484            "invalid package lock digest {digest:?}"
485        )));
486    };
487    if hex.len() != 64 || !hex.bytes().all(|byte| byte.is_ascii_hexdigit()) {
488        return Err(PackageSnapshotError::Invalid(format!(
489            "invalid package lock digest {digest:?}"
490        )));
491    }
492    Ok(())
493}
494
495#[derive(Deserialize)]
496struct PublishedLock {
497    #[serde(default, rename = "package")]
498    packages: Vec<PublishedLockEntry>,
499}
500
501#[derive(Deserialize)]
502struct PublishedLockEntry {
503    name: String,
504}
505
506fn parse_package_names(path: &Path, bytes: &[u8]) -> Result<Vec<String>, PackageSnapshotError> {
507    let source = std::str::from_utf8(bytes).map_err(|error| {
508        PackageSnapshotError::Invalid(format!("{} is not UTF-8: {error}", path.display()))
509    })?;
510    let lock = toml::from_str::<PublishedLock>(source).map_err(|error| {
511        PackageSnapshotError::Invalid(format!("failed to parse {}: {error}", path.display()))
512    })?;
513    let mut names = std::collections::BTreeSet::new();
514    for entry in lock.packages {
515        if !is_valid_package_name(&entry.name) || !names.insert(entry.name.clone()) {
516            return Err(PackageSnapshotError::Invalid(format!(
517                "{} contains an invalid or duplicate package name {:?}",
518                path.display(),
519                entry.name
520            )));
521        }
522    }
523    Ok(names.into_iter().collect())
524}
525
526/// Return whether `name` is a safe single-component package import alias.
527pub fn is_valid_package_name(name: &str) -> bool {
528    !name.is_empty()
529        && name != "."
530        && name != ".."
531        && name
532            .bytes()
533            .all(|byte| byte.is_ascii_alphanumeric() || matches!(byte, b'_' | b'-' | b'.'))
534}
535
536fn encode_hex(bytes: &[u8]) -> String {
537    let mut encoded = String::with_capacity(bytes.len() * 2);
538    for byte in bytes {
539        use std::fmt::Write as _;
540        let _ = write!(encoded, "{byte:02x}");
541    }
542    encoded
543}
544
545pub fn package_lock_digest(bytes: &[u8]) -> String {
546    format!("sha256:{}", encode_hex(&Sha256::digest(bytes)))
547}
548
549fn canonical_directory_within(root: &Path, path: &Path) -> Result<PathBuf, PackageSnapshotError> {
550    let canonical = path
551        .canonicalize()
552        .map_err(|error| PackageSnapshotError::io("canonicalize", path, error))?;
553    if canonical == root || canonical.starts_with(root) {
554        Ok(canonical)
555    } else {
556        Err(PackageSnapshotError::Invalid(format!(
557            "package generation directory escapes {}: {}",
558            root.display(),
559            path.display()
560        )))
561    }
562}
563
564fn require_regular_file(path: &Path) -> Result<(), PackageSnapshotError> {
565    let metadata = fs::symlink_metadata(path)
566        .map_err(|error| PackageSnapshotError::io("stat", path, error))?;
567    if metadata.file_type().is_file() {
568        return Ok(());
569    }
570    Err(PackageSnapshotError::Invalid(format!(
571        "package generation file is not a regular file: {}",
572        path.display()
573    )))
574}
575
576#[cfg(test)]
577mod tests {
578    use super::*;
579    use std::sync::{Arc, Barrier};
580
581    fn publish_fixture(root: &Path, generation: &str, body: &str) {
582        let generation_root = generation_root(root, generation);
583        fs::create_dir_all(generation_root.join(GENERATION_PACKAGES_DIR)).unwrap();
584        fs::write(generation_root.join(GENERATION_LOCK_FILE), body).unwrap();
585        fs::write(generation_root.join(GENERATION_LEASE_FILE), []).unwrap();
586        let digest = package_lock_digest(body.as_bytes());
587        let manifest = PackageGenerationManifest::new(generation, digest).unwrap();
588        fs::write(
589            generation_root.join(GENERATION_MANIFEST_FILE),
590            toml::to_string_pretty(&manifest).unwrap(),
591        )
592        .unwrap();
593        let pointer = PackageGenerationPointer::new(generation).unwrap();
594        fs::create_dir_all(package_state_dir(root)).unwrap();
595        fs::write(
596            package_current_path(root),
597            toml::to_string_pretty(&pointer).unwrap(),
598        )
599        .unwrap();
600        File::create(package_publication_lock_path(root)).unwrap();
601    }
602
603    #[test]
604    fn snapshot_holds_generation_lease_until_drop() {
605        let temp = tempfile::tempdir().unwrap();
606        publish_fixture(temp.path(), "generation_a", "version = 4\n# lock a\n");
607
608        let snapshot = PackageSnapshot::acquire(temp.path()).unwrap().unwrap();
609        let lease =
610            open_existing_lock_file(&snapshot.generation_root().join(GENERATION_LEASE_FILE))
611                .unwrap();
612        assert!(lease.try_lock().is_err());
613
614        drop(snapshot);
615        lease.try_lock().unwrap();
616    }
617
618    #[test]
619    fn reader_selects_generation_published_before_publication_unlock() {
620        let temp = tempfile::tempdir().unwrap();
621        publish_fixture(temp.path(), "generation_a", "version = 4\n# lock a\n");
622        let root = temp.path().to_path_buf();
623        let publication = open_lock_file(&package_publication_lock_path(&root)).unwrap();
624        publication.lock().unwrap();
625
626        let started = Arc::new(Barrier::new(2));
627        let reader_started = Arc::clone(&started);
628        let reader_root = root.clone();
629        let reader = std::thread::spawn(move || {
630            reader_started.wait();
631            PackageSnapshot::acquire(&reader_root).unwrap().unwrap()
632        });
633        started.wait();
634
635        publish_fixture(&root, "generation_b", "version = 4\n# lock b\n");
636        publication.unlock().unwrap();
637
638        let snapshot = reader.join().unwrap();
639        assert_eq!(snapshot.generation(), "generation_b");
640        assert_eq!(
641            fs::read_to_string(snapshot.lock_path()).unwrap(),
642            "version = 4\n# lock b\n"
643        );
644    }
645
646    #[test]
647    fn malformed_pointer_cannot_escape_generation_root() {
648        let temp = tempfile::tempdir().unwrap();
649        fs::create_dir_all(package_state_dir(temp.path())).unwrap();
650        fs::write(
651            package_current_path(temp.path()),
652            "schema_version = 1\ngeneration = \"../outside\"\n",
653        )
654        .unwrap();
655        File::create(package_publication_lock_path(temp.path())).unwrap();
656
657        let error = PackageSnapshot::acquire(temp.path()).unwrap_err();
658        assert!(
659            error.to_string().contains("invalid package generation id"),
660            "unexpected error: {error}"
661        );
662    }
663
664    #[test]
665    fn lock_package_name_cannot_escape_packages_root() {
666        let temp = tempfile::tempdir().unwrap();
667        publish_fixture(
668            temp.path(),
669            "generation_a",
670            "version = 4\n\n[[package]]\nname = \"../outside\"\n",
671        );
672
673        let error = PackageSnapshot::acquire(temp.path()).unwrap_err();
674        assert!(
675            error
676                .to_string()
677                .contains("invalid or duplicate package name"),
678            "unexpected error: {error}"
679        );
680    }
681
682    #[cfg(unix)]
683    #[test]
684    fn symlinked_generation_root_cannot_escape_generations_directory() {
685        let temp = tempfile::tempdir().unwrap();
686        publish_fixture(temp.path(), "generation_a", "version = 4\n");
687        let generation = generation_root(temp.path(), "generation_a");
688        let outside = temp.path().join("outside-generation");
689        fs::rename(&generation, &outside).unwrap();
690        std::os::unix::fs::symlink(&outside, &generation).unwrap();
691
692        let error = PackageSnapshot::acquire(temp.path()).unwrap_err();
693        assert!(
694            error.to_string().contains("escapes"),
695            "unexpected error: {error}"
696        );
697    }
698}