Code Monkey home page Code Monkey logo

Comments (3)

fvalasiad avatar fvalasiad commented on May 29, 2024

After some research, it seems we've landed ourselves the most notoriously evil bug in the history of manual memory management, memory corruption.

Apparently, somewhere, something illegally writes on memory it shouldn't. Memory which belongs to the mighty one, malloc(3) itself. Little do i know about solving these sort of bugs besides reverse engineering them so i call upon the knowledge of the ancients for guidance. For thee are the only ones capable of taming this beast.

We've also sinned before, with multiple memory leaks throughout the code which i will address in a future pull request in an attempt to redeem my soul and achieve enlightenment. May thy forgive us.

from build-recorder.

fvalasiad avatar fvalasiad commented on May 29, 2024

Through some gdb magic I've discovered that the bug lies in record.c:get_cmdline(3) and am now working on it.

from build-recorder.

fvalasiad avatar fvalasiad commented on May 29, 2024

Aaaaaahhhhh, get_cmdline was allocating a buffer ret and then instantly started strcat(3)ing into it, without ever emptying the string first, which caused undefined behavior(that is, we couldn't possibly know where strcat(3) would start writing from or if it would even ever write at all).

Even worse strcat(3) ended up overwriting past-the-end of the allocated buffer, resulting in the malloc(3) failures that we witnessed. Such a trivial bug brought forth so much pain, makes you think.

from build-recorder.

Related Issues (20)

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.