Commit Graph

1097 Commits (4df020827da16eaa70b0a036019afaf94a5cc37e)
 

Author SHA1 Message Date
David Wilson 1186b927f9 ansible: remove seemingly unused raw_params
Traced git log all the way back to beginning of time, and checked
Ansible versions starting Jan 2016. Zero clue where this came from, but
the convention suggests it came from Ansible at some point.
6 years ago
David Wilson f737ff5276 ansible: stop passing through remote_tmp variable
Ansiballz does not use remote_tmp so neither should we, per #239.
6 years ago
David Wilson f9e1905ec6 issue #199: ansible: stop writing temp files for new style modules
While adding support for non-new style module types, NewStyleRunner
began writing modules to a temporary file, and sys.argv was patched to
actually include the script filename. The argv change was never required
to fix any particular bug, and a search of the standard modules reveals
no argv users. Update argv[0] to be '', like an interactive interpreter
would have.

While fixing #210, new style runner began setting __file__ to the
temporary file path in order to allow apt.py to discover the Ansiballz
temporary directory. 5 out of 1,516 standard modules follow this
pattern, but in each case, none actually attempt to access __file__,
they just call dirname on it. Therefore do not write the contents of
file, simply set it to the path as it would exist, within a real
temporary directory.

Finally move temporary directory creation out of runner and into target.
Now a single directory exists for the duration of a run, and is emptied
by runner.py as necessary after each task invocation.

This could be further extended to stop rewriting non-new-style modules
in a with_items loop, but that's another step.

Finally the last bullet point in the documentation almost isn't a lie
again.
6 years ago
David Wilson 43e9e51ed6 docs: link signals into internals.rst. 6 years ago
David Wilson 1bc08323bf ansible: more compatible module script naming. 6 years ago
David Wilson 6109de51a0 tests: Ansible SSH timeout test
Also change Docker image to new 'mitogen' organization.
6 years ago
David Wilson 3058efc80f docs: more updates.
- accurate description of Ansible timeouts
- rough detach() sketch
6 years ago
David Wilson 7f1060f54a issue #186: initial version of subtree detachment. 6 years ago
David Wilson 8bd34e1e28 ansible: gracefully report connection timeouts as StreamError. 6 years ago
David Wilson c0e8b3d60a ssh: error wording was inaccurate. 6 years ago
David Wilson 8fc1eac6ae utils: combine MITOGEN_LOG_LEVEL and MITOGEN_LOG_IO.
Saves lots of readline fiddling.
6 years ago
David Wilson f5238fe791 docs: update copyright 6 years ago
David Wilson d3fe24a4f6 docs: update connection delegation example 6 years ago
David Wilson 2ee727f5c0 docs: typos and clarifications 6 years ago
dw 4f46d8a1e3
Merge pull request #242 from dw/dmw
su method, CTRL+C exception handler, real host key checking modes
6 years ago
David Wilson d4d4f46006 tests: update check_host_keys parameter style in testlib. 6 years ago
David Wilson e9990eb91c tests: Disable host key checking for debops. 6 years ago
David Wilson 4d1c6d2101 issue #127: ssh: reasonable solution to host key checking.
Ideally it would be possible to specify a callback function, but this is
not possible for proxied connections. So simply provide the 3 most
useful modes, defaulting to the most secure.

Closes #127. Closes #134.
6 years ago
David Wilson 92a2565507 issue #241: child main thread does not gracefully handle CTRL+C
In Ansible, depending on when CTRL+C is triggered, if it occurs after
the connection multiplexer process has forked, and after it has in turn
forked the "connection: local" context and its corresponding "clean fork
parent", since all the broker processes still belong to Ansible's
terminal foreground process group, they are all capable of receiving
SIGINT in response to CTRL+C being pressed on that terminal.

This papers over the problem. Really we want those KeyboardInterrupts to
be logged, to call setsid() frmo the connection multiplexer process to
isolate it from the terminal foreground process group. That way its only
indication of top-level process shutdown is using the graceful
disconnect mechanism that already exists in process.py::worker_main().
6 years ago
David Wilson 9cc8b21a07 ansible: missing mitogen_su module. 6 years ago
David Wilson b7fe0e09f4 tests: su integration test. 6 years ago
David Wilson 78c401ba4d ansible: support su become method. 6 years ago
David Wilson 3322eaef45 Basic "su" method. 6 years ago
David Wilson 79346d96db core: Allow dead messages to be delivered regardless of policy 6 years ago
dw 8702b7521f
Merge pull request #240 from dw/dmw
FileService optimizations, more compatible temp dir handling
6 years ago
David Wilson 3203846708 issue #239: ansible: ignore remote_tmp in new style runner. 6 years ago
David Wilson 94e048a2e5 ansible: ensure FileService uses exact CHUNK_SIZE multiple
9.8% throughput increase with sudo.
6 years ago
David Wilson 187e3a3fc1 ansible: support 2.3 too. 6 years ago
David Wilson dafe12b315 ansible: fix AnsibleUnicode crash when processing "~username". 6 years ago
David Wilson e1a3cea2f9 ansible: FileService: don't send empty last chunk 6 years ago
David Wilson 2a56c672ca ansible: FileService docstring updates. 6 years ago
dw 76102927c8
Merge pull request #237 from dw/dmw
connection delegation fixes & issue #212
6 years ago
David Wilson f5d22a3ca1 core: support deleting handlers, make Receiver.close() unregister 6 years ago
David Wilson 58eb9828b0 docs: remove limitation. 6 years ago
David Wilson 69e5902e61 issue #212: support explicit acknowledgements in FileService. 6 years ago
David Wilson 5e6e56f0c5 issue #212: service: make call_async kwargs optional. 6 years ago
David Wilson afe983d6c9 issue #212: service: support no_reply decorator. 6 years ago
David Wilson bf6c2fa97c issue #212: service: more concise repr 6 years ago
David Wilson ff7fb00569 parent: return latch to wait() caller to allow graceful timeout 6 years ago
David Wilson b0309b539c ansible: disable interpreter recycling for connections.
Must explicitly specify enable_lru=True in ContextService.get() to
trigger recycling.
6 years ago
dw be2954db6f
Merge pull request #235 from dw/dmw
docs: more ansible updates
6 years ago
David Wilson ec22fee7a7 docs: more ansible updates 6 years ago
dw bd9d9e3600
Merge pull request #234 from dw/dmw
Fix one Latch race, one huge leak around fork
6 years ago
David Wilson c0ced6d04a core: fix monster fork FD leak
_sockets only refers to the idle sockets list, it doesn't refer to every
socket currently in use by a Latch, for example, the 2*16 used by e.g.
Ansible's sleeping service pool.
6 years ago
David Wilson 7316c08237 core: fix _tls_init() race.
The GIL could be lost between the check for an empty list and popping a
socket off the list. Previously _tls_init (per its name) used per-thread
storage, hence the bug.
6 years ago
David Wilson 79fd35092b docs: more links 6 years ago
David Wilson fdac4ecce8 setns: typos 6 years ago
dw 617f84432d
Merge pull request #233 from dw/dmw
Dmw
6 years ago
David Wilson 65e6a44fe7 docs: add links. 6 years ago
David Wilson e93ac2f3a7 debug: implement some basic helpers to debugger. 6 years ago