Cgetargv

0.0.7

Swift bindings to libgetargv
getargv/getargv.swift

What's New

0.0.7

2024-01-14T05:48:17Z

getargv

Swift CI

libgetargv is a library that allows you to get the arguments that were passed to another running process on macOS. It is intended to provide roughly the same functionality as reading from /proc/<pid>/cmdline on Linux. On macOS this is done by parsing the output of the KERN_PROCARGS2 sysctl, which is very often implemented incorrectly, due to the overlooked possibility of leading empty arguments passed to the target process. This package is the Swift bindings for the libgetargv library.

Permissions

libgetargv can only see processes running as the same user by default, so be sure your process runs as the desired user (setuid, launchd.plist, sudo) or can elevate privileges; n.b. elevating privileges safely is extremely complicated, and will be a target of privilege escalation attacks on macOS so be extremely careful if you go this route, better to defer to the user to elevate privileges for you as needed.

System Requirements

macOS is required as this is a macOS specific sysctl, even BSD does not implement it. Your system must support sysctl and KERN_PROCARGS2, which probably means macOS 10.3 or later, though I haven't tested versions older than 10.7. You'll also need a non-ancient clang (c99 is required) or you'll have to override the compiler flags with CC, EXTRA_CPPFLAGS, and EXTRA_CFLAGS.

Building getargv.swift

To make getargv.swift:

  • Install libgetargv to your system (see below).
  • Clone this repo and run swift build or
  • Add an entry to the dependencies array in your Package in your Package.swift file: .package(url: "https://github.com/getargv/getargv.swift", from: "0.0.5") and an entry in the dependencies array of your target .product(name: "Cgetargv", package: "getargv.swift")

Installing libgetargv

To get access to libgetargv, sign up for an appropriate sponsorship tier.

Clone the libgetargv repo: git clone https://github.com/getargv/getargv.git.

Running make install_dylib, installs the library to the /usr/local/ prefix by default; you can change the install location with the PREFIX make variable: make PREFIX=/opt install_dylib.

I'm working on building binary artifacts to install without compilation, using pkg installers, however even once that's done, depending on your system, it may still be necessary to compile from source; eg. if you have built your own xnu kernel with a custom PID_MAX value.

Building libgetargv

I've built libgetargv on macOS 10.7-13, using only the CLT package, not the full Xcode install. If you need to override variables, do so inside the make command, eg: make EXTRA_CPPFLAGS=-DMACRO EXTRA_CFLAGS=-std=c17 dylib. Since swift did not exist when 10.6 was current, that should not be a concern for this project.

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

Last updated: Wed Mar 13 2024 00:38:11 GMT-0900 (Hawaii-Aleutian Daylight Time)