Code Monkey home page Code Monkey logo

Comments (2)

fvalasiad avatar fvalasiad commented on May 29, 2024

@zvr another issue worth noting is that cmdline size is hardcoded to be that of PAGE_SIZE. Which means if a command is bigger than that it will be truncated. In my system currently running getconf PAGE_SIZE yields 4096.

from build-recorder.

fvalasiad avatar fvalasiad commented on May 29, 2024

@zvr Perhaps a mixed solution would be:

  1. Use cmdline to get only the executable's path
  2. read the arguments from the syscall's parameters

This sounds good because PATH_MAX in my system is also 4096(and i suspect the same applies to most systems) which means that it's sufficient to hold any executable's path. Why do we care? Why not just read the executable from the syscall's parameters as well?

Well that's because that's more complicated, since there are 2 variants execve(2) and execveat(2), we will need to once again examine file descriptors and flags to be able to figure out the path, something which isn't the case for the command arguments since they are all supplied as a string.

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.