Giter Club home page Giter Club logo

scratchpad's People

Contributors

okready avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

isgasho

scratchpad's Issues

panic safety: double drop may happen in two functions

Hello,
we (Rust group @sslab-gatech) found a memory-safety/soundness issue in this crate while scanning Rust code on crates.io for potential vulnerabilities.

Issue Description

Two functions allow double-drop of an object upon panic: <T as traits::SliceMoveSource<[<T as traits::Array>::Item]>>::move_elements(), <std::boxed::Box<T> as traits::SliceMoveSource<T>>::move_elements(). Both functions take user-provided closure as parameter, and a double drop of an object happens upon panic inside the user-provided closure.

Reproduction

Below is an example program that exhibits undefined behavior using safe APIs of scratchpad.

Show Detail

struct Foo is dropped twice upon panic in user-provided closure.

#![forbid(unsafe_code)]
use scratchpad::SliceLike;
use scratchpad::SliceMoveSource;

#[derive(Clone, Debug)]
struct Foo(i32);

impl Drop for Foo {
    fn drop(&mut self) {
        // This message is printed twice, indicating double-free.
        println!("I'm dropping {}", self.0);
    }
}

fn main() {
    let mut mybox = [Foo(1234); 1];

    mybox.move_elements(|s| {
        panic!("Unexpected panic");
        dbg!(s);
    });
}

Output:

thread 'main' panicked at 'Unexpected panic', src/main.rs:33:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
I'm dropping 1234
I'm dropping 1234

Return code 101

Tested Environment

  • Crate: scratchpad
  • Version: 1.3.0
  • OS: Ubuntu 18.04.5 LTS
  • Rustc version: rustc 1.50.0 (cb75ad5db 2021-02-10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.