summaryrefslogtreecommitdiff
path: root/systemd
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
| * daemon: add wrapper for sd_is_socket_sockaddr and testsZbigniew Jędrzejewski-Szmek2016-12-152-5/+54
| | | | | | | | Specifying the address without does not work.
| * _daemon: allow specifying flowinfoZbigniew Jędrzejewski-Szmek2016-12-151-4/+15
| | | | | | | | Not particularly useful, but let's have it for completeness.
| * util: add compatibility for old glibcZbigniew Jędrzejewski-Szmek2016-12-151-0/+4
| | | | | | | | Oh, Ubuntu!
| * daemon: add basic support for sd_is_socket_sockaddrZbigniew Jędrzejewski-Szmek2016-12-153-5/+252
| | | | | | | | Later on a proper wrapper in daemon.py should be added.
| * _daemon,_reader: return ENOSYS instead of NotImplementedZbigniew Jędrzejewski-Szmek2016-12-152-5/+5
| | | | | | | | | | | | | | | | | | In _reader we were raising OSError(errno=ENOSYS), but in _dameon we were raising NotImplementedError. Let's always use ENOSYS. Also, make the messages in _reader more specific. Fixes #33.
| * tests: skip journal.stream tests on ENOENT errorZbigniew Jędrzejewski-Szmek2016-12-152-12/+23
| | | | | | | | | | | | | | | | When running in a chroot, doctests that called journal.stream would fail with ENOENT. Move the tests to test_journal, where we can skip tests properly (without uglyfying the documentation). Fixes #32.
* | replace dict.iteritems() with dict.items() to support py3 (#39)Jeongsoo, Park2017-03-112-12/+50
| | | | | | py3 doesn't have dict.iteritems() anymore.
* | test_daemon: xfail test_notify_with_socket if bind() fails (#42)Mike Gilbert2017-03-111-1/+4
| | | | | | | | | | This bind() call may fail if TMPDIR is too long. Bug: https://bugs.gentoo.org/610368
* | Python 3.6 invalid escape sequence deprecation fixes (#43)Ville Skyttä2017-03-111-2/+2
|/ | | https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
* Include all fields from record (#30)Oleksii Shevchuk2016-10-271-1/+16
| | | | This approach allows to use LoggerAdapter+extra or .info(.., extra={}) to transparently add extra fields to journal.
* id128: add SD_MESSAGE_TRUNCATED_CORE from upcoming systemd-232Zbigniew Jędrzejewski-Szmek2016-10-172-0/+2
|
* journal: allow stream() to be used without any argumentsZbigniew Jędrzejewski-Szmek2016-10-171-3/+12
| | | | | | | | | It's fairly easy to provide a reasonable default for the first argument. Let's do that. Also, the documentation was misleading, suggesting that the function itself can be passed as file parameter to print(). Use a different name for the temporary variable to clarify that.
* journal: bump default log level for stream() to INFOZbigniew Jędrzejewski-Szmek2016-10-171-1/+1
| | | | | By default debug messages are ignored, and INFO should be used for "normal" messages.
* _reader: use proper ifdef guard for sd_j_open_files_fdZbigniew Jędrzejewski-Szmek2016-09-221-3/+7
|
* tests: add workaround for pre-232 system returning EINVAL on some flagsZbigniew Jędrzejewski-Szmek2016-09-221-5/+15
|
* docs: fix sphinx format warningZbigniew Jędrzejewski-Szmek2016-09-221-3/+3
| | | | build/lib.linux-x86_64-3.5/systemd/journal.py:docstring of systemd.journal.stream:15: WARNING: Literal block expected; none found.
* tests: skip fdstore tests if not implementedZbigniew Jędrzejewski-Szmek2016-09-221-3/+15
| | | | Should fix #12.
* Store id128-constants.h in the repositoryZbigniew Jędrzejewski-Szmek2016-09-214-2/+92
| | | | | | | | | | | | | | Instead of generating the list of message ids anew during every build, the file is generated manually and committed into the repository. Also, the list of defines is stored in id128-defines.h, also kept in the repository. Both files should only grow. This should make build easier. But it also fixes a problem with systemd, which occasionally drops message definitions. We will keep them forever, so it should be safe to rely on the presence of message definitions which systemd does not use anymore. Fixes #23.
* journal: convert seek_realtime argument to microsecondsZbigniew Jędrzejewski-Szmek2016-09-212-7/+32
| | | | | | | | | | | | | This somewhat breaks backwards compatibility, but not for the previously documented arguments: floats are now interpreted differently, but ints and datetime.datetime objects are interpreted the same as before. But the documentation clearly stated that only ints and datetime.datetime objects were allowed. This makes seek_realtime match seek_monotonic and other functions which take time and follows the principle of least surprise. Fixes #21.
* tests: use a context manager, skip new functions if missingZbigniew Jędrzejewski-Szmek2016-09-211-21/+16
|
* reader: add SD_JOURNAL_OS_ROOT and rework flag passingZbigniew Jędrzejewski-Szmek2016-09-213-24/+50
| | | | | | | | | | | | | | | | | Let's pass any flags through to the journal functions without checking validity. Those functions do their own checking, so there's no need to second-guess. The semantics for _Reader(flags=0) are a bit changed: before, this would be transformed into sd_journal_open(SD_J_LOCAL_ONLY). Now, this results in sd_journal_open(0). Previous behaviour should be achieved by not specifying the flags at all. This change is necessary, because previously it was not possible to pass flags=0 to sd_journal_open(0), i.e. it was not possible to "merge" journals through the Python interface. Similarly, Reader(flags=0) now means to open all journals, and Reader(flags=None) is the same as Reader(flags=LOCAL_ONLY).
* journal: add support for sd_journal_open_files_fdZbigniew Jędrzejewski-Szmek2016-09-211-15/+81
|
* journal: make sd_journal_enumerate return text stringsZbigniew Jędrzejewski-Szmek2016-09-211-1/+1
| | | | | Those are field names and they should always be ASCII, and converting them to str automatically makes the answer more useful.
* journal: allow sd_journal_open_directory_fd to be usedZbigniew Jędrzejewski-Szmek2016-09-213-53/+125
|
* Reformat documentation to be more PEP257-compliantZbigniew Jędrzejewski-Szmek2016-09-202-125/+137
| | | | | | | | | | Wrapping the sources to ~80 columns means that the formatted output is annoying to read. Rewrap to ~74 columns in the output. Also remove some obsolete descritions of journal permissions and refer to journalctl(1) instead. Add some missing docstrings.
* tests: check enumerate_fields, has_runtime_fiels, has_persistent_filesZbigniew Jędrzejewski-Szmek2016-09-201-0/+47
|
* journal: add wrappers for sd_has_*_filesZbigniew Jędrzejewski-Szmek2016-09-201-31/+77
|