Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-13 | Merge pull request #2589 from keszybz/resolve-tool-2 | Lennart Poettering | |
Better support of OPENPGPKEY, CAA, TLSA packets and tests | |||
2016-02-12 | Merge pull request #2601 from poettering/systemd-analyze-dump-align | Zbigniew Jędrzejewski-Szmek | |
core: fix indenting in dump output | |||
2016-02-12 | resolve: always align flags to 8th column and print CAA flags | Zbigniew Jędrzejewski-Szmek | |
Left-over unknown flags are printed numerically. Otherwise, it wouldn't be known what bits are remaining without knowning what the known bits are. A test case is added to verify the flag printing code: ============== src/resolve/test-data/fake-caa.pkts ============== google.com. IN CAA 0 issue "symantec.com" google.com. IN CAA 128 issue "symantec.com" -- Flags: critical google.com. IN CAA 129 issue "symantec.com" -- Flags: critical 1 google.com. IN CAA 22 issue "symantec.com" -- Flags: 22 | |||
2016-02-12 | resolve: parse CAA records | Zbigniew Jędrzejewski-Szmek | |
2016-02-12 | Fix hashing of TLSA packets | Zbigniew Jędrzejewski-Szmek | |
Also add example files with TLSA and SSHFP records. | |||
2016-02-12 | test-dns-packet: allow running without arguments | Zbigniew Jędrzejewski-Szmek | |
2016-02-12 | test-dns-packet: add framework to read and dump packets | Zbigniew Jędrzejewski-Szmek | |
Packets are stored in a simple format: <size> <packet-wire-format> <size> <packet-wire-format> ... Packets for some example domains are dumped, to test rr code for various record types. Currently: A AAAA CAA DNSKEY LOC MX NS NSEC OPENPGPKEY SOA SPF TXT The hashing code is executed, but results are not checked. Also build other tests in src/resolve only with --enable-resolve. | |||
2016-02-12 | Merge pull request #2600 from poettering/s390-alarm-clock | Zbigniew Jędrzejewski-Szmek | |
time-util: map ALARM clockids to non-ALARM clockids in now() | |||
2016-02-12 | core: fix indenting in dump output | Lennart Poettering | |
Fixes: #2593 | |||
2016-02-12 | time-util: map ALARM clockids to non-ALARM clockids in now() | Lennart Poettering | |
Fixes: #2597 | |||
2016-02-12 | Merge pull request #2594 from keszybz/spelling | Martin Pitt | |
Spelling | |||
2016-02-11 | Merge pull request #2595 from l10n-tw/master | Zbigniew Jędrzejewski-Szmek | |
Update zh_TW translation. | |||
2016-02-12 | Update zh_TW translation. | Jeff Huang | |
2016-02-11 | Merge pull request #2590 from zonque/bus-endpoint-removal | Zbigniew Jędrzejewski-Szmek | |
Remove kdbus custom endpoint support | |||
2016-02-11 | Typo | Zbigniew Jędrzejewski-Szmek | |
2016-02-11 | NEWS: journal device support is limited to current boot, grammar | Zbigniew Jędrzejewski-Szmek | |
Reword some sentences for better flow. | |||
2016-02-11 | Merge pull request #2592 from mbiebl/typo-fixes | Zbigniew Jędrzejewski-Szmek | |
Typo fixes | |||
2016-02-12 | Typo fixes | Michael Biebl | |
2016-02-12 | Merge pull request #2591 from jwilk/spelling | Michael Biebl | |
man: fix typos | |||
2016-02-12 | man: fix typos | Jakub Wilk | |
2016-02-11 | Remove kdbus custom endpoint support | Daniel Mack | |
This feature will not be used anytime soon, so remove a bit of cruft. The BusPolicy= config directive will stay around as compat noop. | |||
2016-02-11 | Merge pull request #2587 from haraldh/tpmv3 | Lennart Poettering | |
sd-boot: put hashed kernel command line in a PCR of the TPM | |||
2016-02-11 | Merge pull request #2588 from phomes/core-enum-fix | Zbigniew Jędrzejewski-Szmek | |
core: use correct enum | |||
2016-02-11 | resolved: add cleanup function to rewind packets | Zbigniew Jędrzejewski-Szmek | |
This makes the behaviour more consistent. Before we would not rewind after some errors, but this seems to have been an unintentional omission. | |||
2016-02-11 | systemd-resolve: allow easy querying of openpgp keys | Zbigniew Jędrzejewski-Szmek | |
$ systemd-resolve --openpgp zbyszek@fedoraproject.org d08ee310438ca124a6149ea5cc21b6313b390dce485576eff96f8722._openpgpkey.fedoraproject.org. IN OPENPGPKEY mQINBFBHPMsBEACeInGYJCb+7TurKfb6wGyTottCDtiSJB310i37/6ZYoeIay/5soJjlM yfMFQ9T2XNT/0LM6gTa0MpC1st9LnzYTMsT6tzRly1D1UbVI6xw0g0vE5y2Cjk3xUwAyn ... | |||
2016-02-11 | Move initialize_libgcrypt to separate file | Zbigniew Jędrzejewski-Szmek | |
It's annoying to have the exact same function in three places. It's stored in src/shared, but it's not added to the library to avoid the dependency on libgcrypt. | |||
2016-02-11 | Add memcpy_safe | Zbigniew Jędrzejewski-Szmek | |
ISO/IEC 9899:1999 §7.21.1/2 says: Where an argument declared as size_t n specifies the length of the array for a function, n can have the value zero on a call to that function. Unless explicitly stated otherwise in the description of a particular function in this subclause, pointer arguments on such a call shall still have valid values, as described in 7.1.4. In base64_append_width memcpy was called as memcpy(x, NULL, 0). GCC 4.9 started making use of this and assumes This worked fine under -O0, but does something strange under -O3. This patch fixes a bug in base64_append_width(), fixes a possible bug in journal_file_append_entry_internal(), and makes use of the new function to simplify the code in other places. | |||
2016-02-11 | core: use correct enum | Thomas Hindoe Paaboel Andersen | |
from e903182e5b0daa941de47a9c08c824106cec7fe0 | |||
2016-02-11 | sd-boot: put hashed kernel command line in a PCR of the TPM | Harald Hoyer | |
The UEFI BIOS already hashes the contents of the loaded image, so the initrd and the command line of the binary are recorded. Because manually added LoadOptions are not taken into account, these should be recorded also. This patch logs and extends a TPM PCR register with the LoadOptions. This feature can be enabled with configure --enable-tpm The PCR register index can be specified with configure --with-tpm-pcrindex=<NUM> | |||
2016-02-11 | configure: bump version numbersystemd/v229 | Lennart Poettering | |
2016-02-11 | delta: minor coding style fixes | Lennart Poettering | |
no change in behaviour | |||
2016-02-11 | man: document that resolved cares about /etc/hosts | Lennart Poettering | |
2016-02-11 | Merge pull request #2581 from evverx/dev-mqueue-cond | Lennart Poettering | |
units: don't try to mount the mqueue fs if we lack the privileges for it | |||
2016-02-11 | Merge pull request #2576 from poettering/random-fixes | Martin Pitt | |
Random fixes | |||
2016-02-11 | build-sys: bump so version | Lennart Poettering | |
2016-02-11 | build-sys: run "make hwdb-update" | Lennart Poettering | |
2016-02-11 | fill in contributors list in NEWS | Lennart Poettering | |
2016-02-11 | core: don't choke if a unit another unit triggers vanishes during reload | Lennart Poettering | |
Fixes: #1981 | |||
2016-02-11 | Merge pull request #2579 from evverx/TEST-1981 | Daniel Mack | |
tests: add test for https://github.com/systemd/systemd/issues/1981 | |||
2016-02-11 | Merge pull request #2578 from keszybz/man-pages | Daniel Mack | |
man: follow up fixes for #2575 | |||
2016-02-11 | units: don't try to mount the mqueue fs if we lack the privileges for it | Evgeny Vereshchagin | |
See https://github.com/systemd/systemd/pull/2576#discussion-diff-52592680 | |||
2016-02-10 | man: follow up fixes for #2575 | Zbigniew Jędrzejewski-Szmek | |
2016-02-10 | Merge pull request #2575 from poettering/manfixes | Zbigniew Jędrzejewski-Szmek | |
A variety of man page fixes | |||
2016-02-10 | man: correct explanation of "systemctl is-enabled" output | Lennart Poettering | |
The "is-enabled" command doesn't care whether the symlinks are declared in the [Install] section of a unit file or not, when returning "enabled". Any alias, .wants/ or .requires/ symlinks suffice. Fixes: #975 | |||
2016-02-10 | man: document that ExecStartPost= is only run if ExecStart= succeeded | Lennart Poettering | |
Fixes: #846 | |||
2016-02-10 | man: document that "systemctl enable" supports abbreviated unit file names | Lennart Poettering | |
Fixes: #1502 | |||
2016-02-10 | man: document that nss-myhostname handles *.localhost and *.localdomain too | Lennart Poettering | |
(And similar for resolved) Fixes: #1630 | |||
2016-02-10 | man: document that [Install] has no effect in unit file .d/*.conf drop-ins | Lennart Poettering | |
Fixes: #1774 Fixes: #1090 | |||
2016-02-10 | man: document distinction between ConditionXYZ= and AssertXYZ= | Lennart Poettering | |
References: #2468 | |||
2016-02-10 | man: document rescue.target and emergency.target in more detail | Lennart Poettering | |
Fixes: #2523 |