Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Invalid cross-device link" when running cargo lambda new blah on Manjaro #70

Closed
sdd opened this issue Apr 17, 2022 · 8 comments · Fixed by #71 or #72
Closed

"Invalid cross-device link" when running cargo lambda new blah on Manjaro #70

sdd opened this issue Apr 17, 2022 · 8 comments · Fixed by #71 or #72
Labels
bug Something isn't working

Comments

@sdd
Copy link
Contributor

sdd commented Apr 17, 2022

   ~/projects  cargo lambda new sa-solver-sns-result-ws-dispatcher
? Is this function an HTTP function? No
? AWS Event type that this function receives sns::SnsEvent
Error:
× failed to move package: from "/tmp/.tmpX6qXqg" to "sa-solver-sns-result-ws-dispatcher"
╰─▶ Invalid cross-device link (os error 18)

~/projects  cargo lambda new sa-solver-sns-result-ws-dispatcher
? Is this function an HTTP function? No
? AWS Event type that this function receives sns::SnsEvent
Error:
× failed to move package: from "/tmp/.tmpX6qXqg" to "sa-solver-sns-result-ws-dispatcher"
╰─▶ Invalid cross-device link (os error 18)

   ~/projects  uname -a  1 ✘  18s   base 
Linux gauss 5.10.105-1-MANJARO #1 SMP PREEMPT Fri Mar 11 14:12:33 UTC 2022 x86_64 GNU/Linux
   ~/projects  cargo --version  ✔  base 
cargo 1.62.0-nightly (dba5baf 2022-04-13)

@calavera calavera added the bug Something isn't working label Apr 17, 2022
@calavera
Copy link
Collaborator

Thanks for opening this issue!

It looks like Rust file:rename can fail in some Linux kernels, according to a similar issues in rustup: rust-lang/rustup#1239

The solution seems to be to capture the error and do a Copy+Delete in those cases.

@sdd
Copy link
Contributor Author

sdd commented Apr 17, 2022

Aah, interesting. I'd expect that having /tmp on a different device would be not uncommon on *nix systems.

Rustup's fix involved them implementing some util functions themselves to fall back to copy+delete on a failed move/rename, but this seems like the kind of thing that should be in an existing library though rather than copy/pasting code from there.

fs_extra's move_dir seems like a candidate but I'm not sure if fs_extra is still maintained.

@sdd
Copy link
Contributor Author

sdd commented Apr 17, 2022

Ha, just seen your PR after writing the above, thanks for the quick turnaround!

@calavera
Copy link
Collaborator

@sdd I'll probably release a new version in the next couple of days. Meanwhile you can install it by cloning the repo:

git clone https://github.com/cargo-lambda/cargo-lambda
cd cargo-lambda
cargo install --force --path crates/cargo-lambda-cli

@sdd
Copy link
Contributor Author

sdd commented Apr 17, 2022

Will give it a go tomorrow, thanks!

@sdd
Copy link
Contributor Author

sdd commented Apr 18, 2022

Hi @calavera - unfortunately that change didn't fix the problem. If I change rename to the below then it works - but it requires the unstable #![feature(io_error_more)]:

pub fn rename<P, Q>(from: P, to: Q) -> io::Result<()>
where
    P: AsRef<Path>,
    Q: AsRef<Path>,
{
    match fs::rename(&from, &to) {
        Ok(ok) => Ok(ok),
        Err(e) => match e.kind() {
            io::ErrorKind::CrossesDevices => {
                match copy_and_delete(from, to) {
                    Ok(()) => Ok(()),
                    Err(_) => Err(e),
                }
            },
            _ => Err(e),
        },
    }
}

@sdd
Copy link
Contributor Author

sdd commented Apr 18, 2022

Sounds like ErrorKind::Other does not get returned anymore: rust-lang/rust#85746

I think we can check against the error code directly for now until this is io_error_more is stabilized: rust-lang/rust#86442 (comment)

@sdd
Copy link
Contributor Author

sdd commented Apr 18, 2022

Aah, this works, without needing io_error_more:

pub fn rename<P, Q>(from: P, to: Q) -> io::Result<()>
where
    P: AsRef<Path>,
    Q: AsRef<Path>,
{
    match fs::rename(&from, &to) {
        Ok(ok) => Ok(ok),
        Err(e) if Some(libc::EXDEV) == e.raw_os_error() => {
            match copy_and_delete(from, to) {
                Ok(()) => Ok(()),
                Err(_) => Err(e),
            }
        },
        Err(e) => Err(e),
    }
}

sdd added a commit to sdd/cargo-lambda that referenced this issue Apr 18, 2022
io::ErrorKind::Other no longer gets returned by std as of rust-lang/rust#85746
In lieu of requiring the io_error_more feature, match against the raw_os_error directly

Fixes cargo-lambda#70
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 16, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
2 participants