Skip to main content

Low-level bindings to libproc.dylib

Project description

===================================
Low-level bindings to libproc.dylib
===================================

Introduction
============

This module contains descriptions and wrappers around interesting parts of the
libproc.dylib shared library. This library exposes internal kernel data about
processes of OS X. It was developed and tested on OS X 10.7.5, using i386
architecture.

Many aspects were traced manually from xnu source code as this library is
severely undocumented.

Low-level API
=============

The entire action of this library revolves around the function
``__proc_info()`` which is a simple wrapper around a system call. The signature
of the function is as follows (Internal private prototype taken from
``libproc.c``)::

int
__proc_info(
int callnum, // One of _PROC_CALLNUM_xxx constants below.
int pid, // Varies per callnum, see below.
int flavor, // Ditto.
uint64_t arg, // Ditto, sometimes unused.
void *buffer, // Output buffer.
int buffersize // Size of output buffer.
);

The only low level API is ``__proc_info()`` itself.

The behavior of this function depends on the first argument, *callnum*, which
is typical of many kernel interfaces. Unfortunately distinct values of
*callnum* do not have any official names (in the source code they are simply
hard-coded constants. I have used a convention *_PROC_CALLNUM_xxx* where *xxx*
is derived from the name of the kernel function multiplexed by that value.

The values I have made are::

PROC_CALLNUM_LISTPIDS = 1
PROC_CALLNUM_PIDINFO = 2
PROC_CALLNUM_PIDFDINFO = 3
PROC_CALLNUM_KERNMSGBUF = 4
PROC_CALLNUM_SETCONTROL = 5
PROC_CALLNUM_PIDFILEPORTINFO = 6

You can verify them by looking at ``proc_info_internal()`` in the xnu source
code: ``xnu/bsd/kern/proc_info.c``.

Whenever this function is called with NULL value for *buffer*, it will compute
and return the correct size of the buffer to pass. Looking at the source code
of the system call it makes some conservative estimates but I suspect it is
still racy (a fork bomb might make the value invalid between the first and
second calls).

Callnum 1
---------

.. note::
This *callnum* has a liproc-only alias of *PROC_CALLNUM_LISTPIDS*

When *callnum* is :data:`~libproc.PROC_CALLNUM_LISTPIDS` then the function
obtains a list of process identifiers that match some criteria.

The remaining arguments have the following meaning:

*pid*:
Contains the type of process list to obtain. The possible values are one of
*PROC_xxx* constants listed below.

:data:`~libproc.PROC_ALL_PIDS`:
Return the full process table.
:data:`~libproc.PROC_PGRP_ONLY`:
Return a list of processes that have a given process group ID
:data:`~libproc.PROC_TTY_ONLY`:
Return a list of processes that are attached to a given TTY
:data:`~libproc.PROC_UID_ONLY`:
Return a list of processes that have a given user ID.
:data:`~libproc.PROC_RUID_ONLY`:
Return a list of processes that have a given real user ID.
:data:`~libproc.PROC_PPID_ONLY`:
Return a list of processes that are children of a given process.

*flavor*:
Contains the optional filtering argument for the processes that are
returned. The value passed here is compared against the desired property of
each process. The only exception is *PROC_ALL_PIDS* where no filtering
takes place.

*arg*:
This parameter is unused.

*buffer*:
This parameter is the pointer to the output buffer. The buffer is an
array of :class:`python:ctypes.c_int` of appropriate size (as determined
by the size of the process table).

As a convention, you can pass a None value (which maps to a *NULL* pointer)
to ask the kernel for the size of the buffer. Correct buffer size in bytes
is then returned by the call.

*buf_size*:
Size of the buffer, in bytes.

The return value is either the number of bytes needed or the number of bytes
written to the buffer (see the discussion of *buffer* argument above).

Callnum 2
---------

.. note::
This *callnum* has a liproc-only alias of *PROC_CALLNUM_PIDINFO*

This *callnum* is currently undocumented.

Callnum 3
---------

.. note::
This *callnum* has a liproc-only alias of *PROC_CALLNUM_PIDFDINFO*

This *callnum* is currently undocumented.

Callnum 4
---------

.. note::
This *callnum* has a liproc-only alias of *PROC_CALLNUM_KERNMSGBUF*

This *callnum* is currently undocumented.

Callnum 5
---------

.. note::
This *callnum* has a liproc-only alias of *PROC_CALLNUM_SETCONTROL*

This *callnum* is currently undocumented.

Callnum 6
---------

.. note::
This *callnum* has a liproc-only alias of *PROC_CALLNUM_PIDFILEPORTINFO*

This *callnum* is currently undocumented.

Higher-level APIs
=================

This library contains a number of higher-level functions that call
``__proc_info()`` with appropriate arguments, handle buffer allocation and
return friendly pythonic values.

You can find them below:

Callnum 1
---------

The following wrappers exist for this *callnum*:

- :func:`~libproc.get_all_pids()`.
- :func:`~libproc.get_pids_for_uid()`.
- :func:`~libproc.get_pids_for_ruid()`.
- :func:`~libproc.get_pids_for_ppid()`.
- :func:`~libproc.get_pids_for_pgrp()`.
- :func:`~libproc.get_pids_for_tty()`.





History
=======

0.2 (2015-09-20)
----------------

* Initial version exposing just *callnum* 1
(:data:`~libproc.PROC_CALLNUM_LISTPIDS`) along with pythonic wrappers and
comprehensive demonstration tool (``exampes/listpids.py``)

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

libproc-0.2.tar.gz (28.0 kB view details)

Uploaded Source

Built Distribution

libproc-0.2-py2.py3-none-any.whl (24.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file libproc-0.2.tar.gz.

File metadata

  • Download URL: libproc-0.2.tar.gz
  • Upload date:
  • Size: 28.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for libproc-0.2.tar.gz
Algorithm Hash digest
SHA256 b7cce4b89a8dc23405cb61421a66f391aaf1b69cd10daa6f965f1e3324add0e9
MD5 b337201220ace772cfc569dc256eb390
BLAKE2b-256 b65a8beaebefc6a612a095bc4f4d9fef2708a7f0b89dd67b739e994feef76d0d

See more details on using hashes here.

File details

Details for the file libproc-0.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for libproc-0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ea3fb61c8d6975c4d671c3ecd4237680bd4958379e1146d6d22bf073be8d3db7
MD5 d93292e7c6f6a6e6d176f15b0bcd58ea
BLAKE2b-256 7eeea5951a8ab38a2faffda15d9a58d8df772fb00210e103a5b704099340e172

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page