summaryrefslogtreecommitdiff
path: root/systemd
Commit message (Collapse)AuthorAgeFilesLines
* Fix test failureHEADmainEric T. Johnson2023-03-261-1/+1
| | | One usage of `connection_error` got missed when dropping Python 2 support.
* treewide: remove python 2 support and assume we have python 3.3+Joerg Behrmann2023-02-119-211/+10
|
* tests: check for errnos that sd_id128_get_machine actually returnsZbigniew Jędrzejewski-Szmek2022-08-172-5/+12
| | | | Fixes #118.
* tests: simplify importsZbigniew Jędrzejewski-Szmek2022-08-161-2/+2
| | | | | 'import foo as _foo' is useful in exported modules to avoid 'foo' being present in the public API. No need to play that game in test code.
* tests: python2-compat in another placeZbigniew Jędrzejewski-Szmek2022-08-161-1/+1
|
* journal: fix compatibility with python2Zbigniew Jędrzejewski-Szmek2022-08-162-5/+18
| | | | | | | | | | | | This is a lazy workaround: 4c9a241949067fc8d55f3ea12170ad364bd8b18d is amended to do nothing on python2, so we have the same issue that was present before. This allows the code to execute, and hopefully almost nobody is using python2 code anyway. f868a56b935b6152d611b22f7a5538f14dafb194 is amended in the same way. For python2 code we have the same lack of timezone-awareness as before. This allows the tests to pass under python 2.7.
* Merge pull request #92 from chrismullins/support-realtime-cutoffZbigniew Jędrzejewski-Szmek2022-08-162-0/+52
|\ | | | | Support realtime cutoff access
| * Pass NULL for unnecessary timestampsChris Mullins2021-01-031-4/+4
| |
| * Add support for sd_journal_get_cutoff_realtime_usec wrapperChris Mullins2021-01-032-0/+52
| |
* | Update constants for systemd 251Zbigniew Jędrzejewski-Szmek2022-08-152-0/+28
| |
* | Adding timezone information to datetimes from systemd-journalSamuel BF2022-08-132-3/+15
| |
* | reader: Fix use of potentially uninitialized valueAndrew Stone2022-08-131-1/+1
|/
* journal: remove ChainMapmasterGlandos2020-11-121-11/+3
| | | | | | | "after some quick testing, the execution time got halved (32-ish seconds to 16-ish seconds) when going through all journal entries." Closes #63.
* journal: add namespace supportAlexander Olekhnovich2020-11-122-19/+41
| | | | Add log namespace support which is added since systemd v245
* journal: allow JournalHandler constructor to be called with args in a ↵Tamaki Nishino2020-11-122-0/+28
| | | | | | | | | | | | | | | positional param This change enables to add extra fields to JournalHandler in a configuration file loaded by `logging.config.fileConfig`, which only allows positional parameters: class=systemd.journal.JournalHandler args={'level': INFO, 'SYSLOG_IDENTIFIER': 'my-cool-app'} [zj: originally the patch added a new positional parameter to __init__(), but that is not backwards compatible. So I added a new classmethod to allow the positional parameters to be passed.]
* test: make sure $NOTIFY_SOCKET is unset in testZbigniew Jędrzejewski-Szmek2020-11-121-0/+2
| | | | | | When running the tests in Fedora's mock, the test would fail because NOTIFY_SOCKET is set to /run/systemd/nspawn/notify, and we get a permission error.
* reader: make PY_SSIZE_T_CLEANZbigniew Jędrzejewski-Szmek2020-11-121-2/+13
|
* journal: avoid warning about deprecated constantZbigniew Jędrzejewski-Szmek2020-11-121-1/+1
|
* Fix seek_realtime to work with timezone aware dateLéonard Gérard2020-11-121-1/+1
| | | | | `strftime("%s")` is not in the official python documentation but in my system (ubuntu 18.04 python 3.6.9) it is not aware of the object timezone and will return the wrong value if the timezone is specified and is not the system local one. There are multiple ways to ensure a python `datetime.datetime` is in local timezone, the easiest (with python 3.3+) is to call `.astimezone()` If one wants to support earlier versions of python an extra dependency might be needed like `dateutil.tz.tzlocal()`.
* include endian.h for htobe16 definitionKhem Raj2020-11-111-0/+1
|
* docs: mention .process() in docstring of .fileno()Zbigniew Jędrzejewski-Szmek2019-06-161-2/+5
| | | | | Together with the previous commit, this makes it much easier to find the right docs. Fixes #48.
* docs: use :manpage: role to provide links to systemd man pagesZbigniew Jędrzejewski-Szmek2019-06-162-25/+25
| | | | | See https://github.com/sphinx-doc/sphinx/pull/4235 for the :manpage: role.
* Use #if instead of #ifdef for compatibility checksZbigniew Jędrzejewski-Szmek2019-06-162-33/+23
| | | | | This has the advantage that it is slightly less verbose, and also any potential typos in the macro names are immediately detected.
* id128: update constants for systmed-243Zbigniew Jędrzejewski-Szmek2019-06-162-0/+14
|
* tests: add tests for all id128 funcs, including get_machine_app_specific()Zbigniew Jędrzejewski-Szmek2019-06-161-0/+46
|
* id128: conditionalize get_machine_app_specific on libsystemd versionZbigniew Jędrzejewski-Szmek2019-06-161-6/+14
|
* id128: do not copy the id128 buffer bytesZbigniew Jędrzejewski-Szmek2019-06-161-8/+5
| | | | | | There doesn't seem to be any particular need to do this. Also remove unused uuid variable.
* Add id128.get_machine_app_specific functionTomasz Meresiński2019-06-161-0/+39
|
* Modernize C syntaxZbigniew Jędrzejewski-Szmek2019-06-165-41/+40
|
* _listen_fd_with_names documentation now modeled after is_socket_sockaddrMarcel Waldvogel2019-06-161-2/+5
|
* Added support for listen_fds_with_names()Marcel Waldvogel2019-06-163-3/+142
|
* tests: add the reproducer from #51Zbigniew Jędrzejewski-Szmek2019-06-161-0/+13
| | | | | | The example relies on implementation details, but I don't see why it wouldn't work everywhere. Let's pull it in, and if it breaks somewhere, we can remove it.
* Merge pull request #51 from feedstock/fix_notify_fs_leakZbigniew Jędrzejewski-Szmek2019-06-161-2/+2
|\ | | | | Fix notify fs leak
| * Fix malloc retval checkMarco Paolini2017-09-121-1/+1
| |
| * Avoid ref leak in notifyMarco Paolini2017-09-121-1/+1
| |
* | Adapt to systemd 230 tool renaming, bump versionMarcel Waldvogel2019-06-161-1/+1
|/
* Update to constants from systemd-233Zbigniew Jędrzejewski-Szmek2017-03-252-37/+41
| | | | | | | In systemd-233 the format of the constants file changed to use SD_ID128_MAKE_STR macro and long lines are broken with '\'. Doing this in sed is too anyoing — add a simple python script to do the processing.
* journal: fix repr of JournalHandler to match python3.6Zbigniew Jędrzejewski-Szmek2017-03-251-1/+1
| | | | | | We get <systemd.journal.JournalHandler object at ...> in older versions, and <JournalHandler (NOTSET)> in since Python 3.6. https://github.com/python/cpython/commit/c0752011472790e34d171b89f4b862cc3fd8ad08
* journal: do not convert extra args to string in JournalHandlerZbigniew Jędrzejewski-Szmek2017-03-192-6/+6
| | | | | | send() already does conversions in a type-specific way, and doing it in journal handler would defeat those conversions. In particular, UUIDs would be converted to early and have dashes.
* test_journal: add tests for MESSAGE_ID passingZbigniew Jędrzejewski-Szmek2017-03-191-1/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MESSAGE_ID passing was broken before previous commit: TypeError: send() got multiple values for keyword argument 'MESSAGE_ID' With the previous commit it's broken differently: ______________________________ test_journalhandler_message_id_on_handler _______________________________ def test_journalhandler_message_id_on_handler(): record = logging.LogRecord('test-logger', logging.INFO, 'testpath', 1, 'test', None, None) sender = MockSender() handler = journal.JournalHandler(logging.INFO, sender_function=sender.send, MESSAGE_ID=TEST_MID) handler.emit(record) assert len(sender.buf) == 1 > assert 'MESSAGE_ID=' + TEST_MID.hex in sender.buf[0] E assert ('MESSAGE_ID=' + '8441372f8dca4ca98694a6091fd8519f') in ['MESSAGE=test', 'MESSAGE_ID=8441372f-8dca-4ca9-8694-a6091fd8519f', 'CODE_FILE=testpath', 'CODE_LINE=1', 'name=test-logger', 'exc_info=None', ...] E + where '8441372f8dca4ca98694a6091fd8519f' = UUID('8441372f-8dca-4ca9-8694-a6091fd8519f').hex systemd/test/test_journal.py:116: AssertionError ______________________________ test_journalhandler_message_id_on_message _______________________________ def test_journalhandler_message_id_on_message(): record = logging.LogRecord('test-logger', logging.INFO, 'testpath', 1, 'test', None, None) record.__dict__['MESSAGE_ID'] = TEST_MID2 sender = MockSender() handler = journal.JournalHandler(logging.INFO, sender_function=sender.send, MESSAGE_ID=TEST_MID) handler.emit(record) assert len(sender.buf) == 1 > assert 'MESSAGE_ID=' + TEST_MID2.hex in sender.buf[0] E assert ('MESSAGE_ID=' + '8441370000000000000000001fd85000') in ['MESSAGE=test', 'MESSAGE_ID=84413700-0000-0000-0000-00001fd85000', 'CODE_FILE=testpath', 'CODE_LINE=1', 'name=test-logger', 'exc_info=None', ...] E + where '8441370000000000000000001fd85000' = UUID('84413700-0000-0000-0000-00001fd85000').hex systemd/test/test_journal.py:135: AssertionError ============================ 2 failed, 53 passed, 6 skipped in 0.16 seconds ============================
* Remove mid from JournalHandlerWesley Bowman2017-03-191-2/+0
| | | | | | Removed mid variable from JournalHandler since the MESSAGE_ID is already in the extras variable. MESSAGE_ID was being set to None, but this won't appear in the logs.
* journal: rename SENDER_FUNCTION to sender_functionZbigniew Jędrzejewski-Szmek2017-03-192-3/+6
| | | | | | | Let's not try to make it look like a journal field. It should be a normal parameter. Followup for dce0a855c3281e7051b1cbe0f73386d1c90ef320.
* daemon: properly skip sd_is_socket_sockaddr calls if not availableZbigniew Jędrzejewski-Szmek2017-03-192-19/+38
| | | | | As with other functions, the wrapper is always present, but returns OSError: [Errno 38] Function not implemented.
* Fix styling to match PEP8 in most places (#45)Wesley Bowman2017-03-142-7/+20
| | | | Backwards compatibility for mapPriority is retained.
* journal: improve docstring formatting a bitZbigniew Jędrzejewski-Szmek2017-03-121-4/+4
|
* Adjust import order, spacing, operators as recommended by pylintZbigniew Jędrzejewski-Szmek2017-03-124-19/+21
|
* tests: move login tests from doctest to separate fileZbigniew Jędrzejewski-Szmek2017-03-121-0/+48
| | | | | | | | | This way we can skip ENOENT (which happens in containers). While at it, let's extend the tests a bit, so that we at least call all functions and check the type of the return value. Also, drop '.nspawn' from the machine name, nspawn doesn't use that suffix any more.
* Prevent non-str values from being concatenated with + (#40)Jimmy Cao2017-03-121-3/+3
| | | | Make _make_line concatenate only strings directly.
* Merge pull request #31 from keszybz/is_socket_sockaddrZbigniew Jędrzejewski-Szmek2017-03-118-27/+364
|\ | | | | daemon: add basic support for sd_is_socket_sockaddr
| * Fix handling of addresses without port and add testsZbigniew Jędrzejewski-Szmek2016-12-152-47/+62
| |