Skip to main content

Inpection manhole for python applications. Connection is done via unix domain sockets.

Project description

Build Status Coverage Status PYPI Package

Manhole is in-process service that will accept unix domain socket connections and present the stacktraces for all threads and an interactive prompt. It can either work as a python daemon thread waiting for connections at all times or a signal handler (stopping your application and waiting for a connection).

Access to the socket is restricted to the application’s effective user id or root.

This is just like Twisted’s manhole. It’s simpler (no dependencies), it only runs on Unix domain sockets (in contrast to Twisted’s manhole which can run on telnet or ssh) and it integrates well with various types of applications.

Usage

Install it:

pip install manhole

You can put this in your django settings, wsgi app file, some module that’s always imported early etc:

import manhole
manhole.install() # this will start the daemon thread

# and now you start your app, eg: server.serve_forever()

Now in a shell you can do either of these:

netcat -U /tmp/manhole-1234
socat - unix-connect:/tmp/manhole-1234
socat readline unix-connect:/tmp/manhole-1234

Socat with readline is best (history, editing etc).

Sample output:

$ nc -U /tmp/manhole-1234

Python 2.7.3 (default, Apr 10 2013, 06:20:15)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> dir()
['__builtins__', 'dump_stacktraces', 'os', 'socket', 'sys', 'traceback']
>>> print 'foobar'
foobar

Features

  • Uses unix domain sockets, only root or same effective user can connect.

  • Can run the connection in a thread or in a signal handler (see oneshot_on option).

  • Can start the thread listening for connections from a singla handler (see activate_on option)

  • Compatible with apps that fork, reinstalls the Manhole thread after fork - had to monkeypatch os.fork/os.forkpty for this.

  • Compatible with gevent and eventlet with some limitations - you need to either:

    • Use oneshot_on, or

    • Disable thread monkeypatching (eg: gevent.monkey.patch_all(thread=False), eventlet.monkey_patch(thread=False)

  • The thread is compatible with apps that use signalfd (will mask all signals for the Manhole threads).

Options

manhole.install(verbose=True, patch_fork=True, activate_on=None, sigmask=manhole.ALL_SIGNALS, oneshot_on=None)

  • verbose - set it to False to squelch the stderr ouput

  • patch_fork - set it to False if you don’t want your os.fork and os.forkpy monkeypatched

  • activate_on - set to "USR1", "USR2" or some other signal name, or a number if you want the Manhole thread to start when this signal is sent. This is desireable in case you don’t want the thread active all the time.

  • oneshot_on - set to "USR1", "USR2" or some other signal name, or a number if you want the Manhole to listen for connection in the signal handler. This is desireable in case you don’t want threads at all.

  • sigmask - will set the signal mask to the given list (using signalfd.sigprocmask). No action is done if signalfd is not importable. NOTE: This is done so that the Manhole thread doesn’t steal any signals; Normally that is fine cause Python will force all the signal handling to be run in the main thread but signalfd doesn’t.

What happens when you actually connect to the socket

  1. Credentials are checked (if it’s same user or root)

  2. sys.__std*__/sys.std* are be redirected to the UDS

  3. Stacktraces for each thread are written to the UDS

  4. REPL is started so you can fiddle with the process

Whishlist

  • More configurable (chose what sys.__std*__/sys.std* to patch on connect time)

  • Support windows ?!

Requirements

Python 2.6, 2.7, 3.2, 3.3 and PyPy are supported.

Similar projects

Bitdeli badge

Project details


Download files

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

Source Distribution

manhole-0.6.0.tar.gz (12.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

manhole-0.6.0-py2.py3-none-any.whl (10.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file manhole-0.6.0.tar.gz.

File metadata

  • Download URL: manhole-0.6.0.tar.gz
  • Upload date:
  • Size: 12.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for manhole-0.6.0.tar.gz
Algorithm Hash digest
SHA256 66ed78dee2f299c06a4adef13c80fb260adbf07823bdf85ddfc0a14ce7333752
MD5 b25186744e5a8ffda5f0b7e126ec5777
BLAKE2b-256 b6cbc0f31f45e6d47919c54ca66e57829d4c841b46a1a453bd3399411af5f7c3

See more details on using hashes here.

File details

Details for the file manhole-0.6.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for manhole-0.6.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d8907326246d3257e6b53ed014b9be6afa4c0061e3feed90cbdf7955708d5cdb
MD5 4e9e23fc2b2685511e66996c533b94aa
BLAKE2b-256 b793dc027e1b53d36798ac9855aee2e490cc790455ff8d84f7f187c121e77521

See more details on using hashes here.

Supported by

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