https://git.schokokeks.org/derivepassphrase.git/tree/b88771770033d318a041c6ac0b0c380ae41c9f7d Recent commits to derivepassphrase.git (b88771770033d318a041c6ac0b0c380ae41c9f7d) 2025-12-25T14:13:42+01:00 tag:gitlist.org,2012:commit/b88771770033d318a041c6ac0b0c380ae41c9f7d Move the dependent SSH agent spawn handler table closer to the original one 2025-12-25T14:13:42+01:00 Marco Ricci software@the13thletter.info <pre>In the testing machinery, move the "SSH agent spawn handler params" table, closer to the "SSH agent spawn handlers" table. The former is used as a parametrization set for some pytest fixtures, and is further filtered by both environment variables as well as pytest marks. Keeping these two tables closer together makes it easier to debug the SSH agent spawning machinery. &lt;/pre&gt; tag:gitlist.org,2012:commit/e98ea65d9d67e231c885e7c7c77574e04701d58e Rename testing symbols in anticipation of The Annoying OS support 2025-12-25T12:34:37+01:00 Marco Ricci software@the13thletter.info <pre>Rename the `pageant` spawn handler to `unix-pageant`, the `ssh-agent` handler to `openssh`, and the `(system)` handler to `(system-agent)`. Similarly, rename the `Pageant` known SSH agent type to `UNIXPageant`, for the same reason. Since Pageant on The Annoying OS is the common configuration, and Pageant on UNIX is the exceptional configuration, Pageant on UNIX gets a decoration (the `unix-` or `UNIX` prefix). OpenSSH, on the other hand, has its default configuration on UNIX, and so gets no such decoration. Rename the `MANGLE_SSH_AUTH_SOCK` and `UNSET_SSH_AUTH_SOCK` socket address actions into `MANGLE_ADDRESS` and `UNSET_ADDRESS`, and add some minor additional documentation. Also subsume the `MANGLE_WINDOWS_NAMED_PIPE` and `UNSET_WINDOWS_NAMED_PIPE` actions, which are so far unused. The desire to mangle or unset the address for testing purposes is independent of the actual technology used to connect to the SSH agent, so it makes no sense to have separate symbols per connection technology. Rename the `SpawnFunc` type to `SSHAgentSpawnFunc`. A matching `SSHAgentInterfaceFunc` is soon to follow, which would have a very uninformative name if only named "Interface Func". &lt;/pre&gt; tag:gitlist.org,2012:commit/6340b5a541970c9d00ee653926102657028de309 Formalize SSH agent spawn handlers (in testing) as a real type 2025-12-25T12:32:59+01:00 Marco Ricci software@the13thletter.info <pre>Introduce a proper formal type for SSH agent spawn handlers in the test configuration (as a type-checked named tuple). This alone increases readability by removing the tuple indices (magic numbers) from the code. Also use this opportunity to introduce a real label and an explicit key for each entry, instead of (ab)using the executable name for these purposes. The executable name is no longer usable as a unique key if the SSH agent behaves differently (with respect to spawning) on different operating systems... as is the case for both PuTTY/Pageant and OpenSSH. &lt;/pre&gt; tag:gitlist.org,2012:commit/a05c6007808393daae10e75745c5007246cbde24 Rename all stubbed test agents in a consistent manner 2025-12-25T12:31:13+01:00 Marco Ricci software@the13thletter.info <pre>All stubbed agents should either be named `stub_agent` or start with `stub_agent_`. Also, the test suite spawns the "stubbed agent with address and with deterministic DSA support" as "the more complicated stub agent", and the "stubbed agent with extensions" as "the plain stubbed agent". The parametrization keys however suggest otherwise, that the choice is between the "stubbed agent with extensions" and the "base stubbed agent". Fix the keys, and the returned `RunningSSHAgentInfo` structure. (The stubbed agent with extensions is the first agent to support specifying the address to connect to, which the test suite realistically needs to manipulate. The base stubbed agent *is* tested directly, however, for all functionality tests of the family of stubbed agents.) &lt;/pre&gt; tag:gitlist.org,2012:commit/695ca1e5dab18a14c2fbe6d3218b571183f8b08e Fix some testing edge cases, formatting hiccups and missing debugging aids 2025-12-25T11:34:27+01:00 Marco Ricci software@the13thletter.info <pre>Fix some testing edge cases: - When re-registering existing SSH agent socket provider names, we now explicitly ensure that the set of (automatically determined) names is actually non-empty. - Using mangled `SSH_AUTH_SOCK` environment variables for test purposes requires `SSH_AUTH_SOCK` to actually be set. We supply a default name that is also invalid as a (non-directory) filename. Fix some unclear debugging aids: - Mangling `SSH_AUTH_SOCK` is (anecdotally) better at detecting faulty test setups, relative to the "unset `SSH_AUTH_SOCK`" entry (because failures in the latter tend to be silent). So, reorder the parametrizations to prioritize the former one over the latter one. - The SSH agent socket provider system was printing distribution names without checking for `None` distributions. - The `spawn_ssh_agent` fixture was printing exception messages directly, without the exception name, or the concrete parametrization. We now special-case `KeyError` instances (but not subclass instances). Fix other phrasings and formattings: - The skip message for SSH agents excluded via the `PERMITTED_AGENTS` environment variable was not a sentence, and just speaking of "agents", not "SSH agents". &lt;/pre&gt; tag:gitlist.org,2012:commit/8b57ef157052400d4642f2f878315ba1fde6f483 Fix some test names, import statements, and test formatting 2025-12-24T10:37:29+01:00 Marco Ricci software@the13thletter.info <pre>&lt;/pre&gt; tag:gitlist.org,2012:commit/d675b049fd32c5a652f73467f9462f45ddb1ec89 Implement Windows named pipes on The Annoying OS 2025-12-17T14:14:03+01:00 Marco Ricci software@the13thletter.info <pre>Using the `ctypes` module, call into The Annoying OS's system libraries and bind the functions necessary to create, read from/write to, and close handles to existing Windows named pipes. We also bind the functions necessary to compute the pipe name for PuTTY/Pageant, and provide convenience functions to connect to PuTTY/Pageant and to OpenSSH, the de facto main SSH implementations on The Annoying OS. One major design question remains: how to discover the (named pipe address for) the SSH agent to use? Tempting options are using `SSH_AUTH_SOCK` again (whether literally or with special notation), and listing the preferred agent addresses in the user configuration file. For certain "well-known" addresses such as PuTTY/Pageant or OpenSSH, we provide specific SSH agent socket provider registry entries that attempt to connect to the respective agent. Other applications could easily register a custom provider that respects their configuration if the final socket (address) depends on external configuration. It is thus not clear to me if the system needs to be more flexible than it currently is, e.g., if the SSH agent socket provider needs to accept arguments that further configure the address or the connection options to the socket or named pipe. This commit contains no specific test code for this functionality; we leave this to follow-up commits. We provide three SSH agent socket providers, two of which have hardcoded addresses (for PuTTY/Pageant and OpenSSH, respectively). For ease of integration with the existing test suite, *as a temporary measure*, the third provider attempts to use `SSH_AUTH_SOCK` directly as the named pipe's name (which will fail unless specifically prepared). Since many of the symbols are undefined on other operating systems, and because the `ctypes` library relies on dynamically generated attributes and is thus mostly invisible to static analysis tools, much of the code needs type checking exemptions and extraneous explicit (C) casts at the Python level. Additionally, because our stub functions use the same CamelCase naming as The Annoying OS's official documentation does, much of the code also needs linting exceptions for the naming policy. &lt;/pre&gt; tag:gitlist.org,2012:commit/2e65c0e60b06a7608aa1d9110eca09683f6cc46e Settle on the terminology "UNIX domain socket" and "Windows named pipe" 2025-12-17T14:04:14+01:00 Marco Ricci software@the13thletter.info <pre>The formal name for the named pipe facility on The Annoying OS is "Windows named pipe", and this is the name other developers will expect. Thus, for reasons of clarity, we now strictly refer to them as such, i.e., refer to them as "Windows named pipes" and not "The Annoying OS named pipes". Old names still using the "Annoying OS named pipe" moniker have been adapted accordingly; in particular, this includes the former `WarnMsgTemplate.NO_ANNOYING_OS_NAMED_PIPES` symbol. By a similar token, the machine-local network socket mechanism on POSIX systems is formally called "UNIX domain sockets". For reasons of clarity, we now refer to them as such, and not by their C constant name `AF_UNIX` (or "AfUnix", or similar). Old names have been adapted accordingly; in particular, this includes the former `WarnMsgTemplate.NO_AF_UNIX` symbol. &lt;/pre&gt; tag:gitlist.org,2012:commit/4880384a6daf204c5e36dc9467129602099de982 Merge topic branch 'fix-key_to_phrase-missing-callback' into master 2025-12-13T15:57:40+01:00 Marco Ricci software@the13thletter.info <pre>* fix-key_to_phrase-missing-callback: Add changelog entry for the `key_to_phrase` missing callback argument fix Add missing `warning_callback` argument to `key_to_phrase` call &lt;/pre&gt; tag:gitlist.org,2012:commit/eeaf964acf1c64649c26b0a1b46f422d90a7025d Add changelog entry for the `key_to_phrase` missing callback argument fix 2025-12-13T15:56:49+01:00 Marco Ricci software@the13thletter.info <pre>&lt;/pre&gt;