Yu Watanabe [Wed, 2 Dec 2020 10:26:41 +0000 (19:26 +0900)]
network: fix verification for broadcast address
Fixes a bug caused by
fe841414ef157f7f01d339c5d5730126e7b5fe0a.
Yu Watanabe [Wed, 2 Dec 2020 10:19:06 +0000 (19:19 +0900)]
network: do not set broadcast if prefixlen is 31 or 32
After
fe841414ef157f7f01d339c5d5730126e7b5fe0a, broadcast address is
also compared with existing one to determine whether the address is
foregin or not. So, the address object should not contain unnecessary
information.
Fixes #17803.
Lennart Poettering [Thu, 5 Nov 2020 14:51:12 +0000 (15:51 +0100)]
stub: don't ever respond to datagrams coming in on non-localhost addreses, on the stub
Lennart Poettering [Tue, 10 Nov 2020 22:30:25 +0000 (23:30 +0100)]
resolved: beef up logic for suppressing "localhost" entry in /etc/hosts
Either suppress the entry entirely, or not at all. But do not suppress
the "localhost" names we recognize, leaving the ones we do not in place.
On Fedora, where "localhost4.localdomain4" is among those listed in
/etc/hosts for 127.0.0.1 we'd thus otherwise drop the "localhost" but
keep the "localhost4.localdomain4" and then on reverse lookups only
return that, which is highly confusing.
Lennart Poettering [Fri, 6 Nov 2020 13:56:16 +0000 (14:56 +0100)]
resolved: use stat_inode_unmodified() to detect /etc/hosts changes
Lennart Poettering [Wed, 11 Nov 2020 16:38:21 +0000 (17:38 +0100)]
resolved: never allow _gateway lookups to go to the network
Make them rather fail than go to the network.
Previously we'd filter them on LLMNR (explicitly) and MDNS (implicitly,
because it doesn't have .local suffix), but not on DNS.
In order to make _gateway truly reliable, let's not allow it to go to
DNS either, and keep it local.
This is particular relevant, as clients can now request lookups without
local RR synthesis, where we'd rather have NXDOMAIN returned for
_gateway than have it hit the network.
Lennart Poettering [Thu, 12 Nov 2020 16:52:09 +0000 (17:52 +0100)]
resolved: lower SERVFAIL cache timeout from 30s to 10s
Apparently 30s is a bit too long for some cases, see #5552. But not
caching SERVFAIL at all also breaks stuff, see explanation in
201d99584ed7af8078bb243ce2587e5455074713.
Let's try to find some middle ground, by lowering the cache timeout to
10s. This should be ample for the problem
201d99584ed7af8078bb243ce2587e5455074713 attackes, but not as long as
half a miute, as #5552 complains.
Fixes: #5552
Yu Watanabe [Wed, 2 Dec 2020 23:50:43 +0000 (08:50 +0900)]
Merge pull request #17807 from poettering/bindtodevice
use SO_BINDTOIFINDEX while connect()
Lennart Poettering [Wed, 11 Nov 2020 20:20:15 +0000 (21:20 +0100)]
resolved: insert large dgram size into EDNS0 only when in LARGE UDP mode
Specifically, in TLS-DO there's no reason to set the exotic dgram size.
Lennart Poettering [Mon, 9 Nov 2020 22:10:43 +0000 (23:10 +0100)]
dns-domain: try IDN2003 rules if IDN2008 doesn't work
This follows more closely what web browsers do, and makes sure emojis in
domains work.
Fixes: #14483
Steve Ramage [Wed, 2 Dec 2020 23:47:24 +0000 (15:47 -0800)]
Adds missing documentation for Assertions (#17825)
Yu Watanabe [Wed, 2 Dec 2020 22:36:43 +0000 (07:36 +0900)]
Merge pull request #17810 from systemd/meson-allows-fuzzer-building
meson: always allow fuzzers to be built
Lennart Poettering [Thu, 5 Nov 2020 13:17:37 +0000 (14:17 +0100)]
resolved: automatically flush caches on clock change
DNSSEC validation takes the system clock into account to validate
signatures. This means if we had incorrect time and the time is then
changed to the correct one we should flush out everything and
re-validate taking the new time into account.
(This logic will also trigger after system suspend, which is not bad
either, given that quite possibly we are connected to a different
network, and thus would get different DNS data, without us noticing
otherwise via link beat).
Christopher Obbard [Wed, 2 Dec 2020 14:20:39 +0000 (14:20 +0000)]
virt: Properly detect nested UML inside another hypervisor
UML runs as a user-process so it can quite easily be ran inside of
another hypervisor, for instance inside a KVM instance. UML passes
through the CPUID from the host machine so in this case detect_vm
incorrectly identifies as running under KVM. So check we are running
a UML kernel first, before we check any other hypervisors.
Resolves: #17754
Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
Lennart Poettering [Thu, 5 Nov 2020 17:45:46 +0000 (18:45 +0100)]
resolved: log when a bus client changes per-link DNS info
Fixes: #16298
Zbigniew Jędrzejewski-Szmek [Wed, 2 Dec 2020 15:56:52 +0000 (16:56 +0100)]
Merge pull request #17804 from poettering/write-resolve-conf-less
write resolv.conf less often
Lennart Poettering [Tue, 17 Nov 2020 17:31:53 +0000 (18:31 +0100)]
resolved: properly check per-link NTA list
We need to check for parent domains too. We did this correctly for the
system-wide NTA list, but not for the per-link one. Let's fix that.
Lennart Poettering [Thu, 5 Nov 2020 17:22:38 +0000 (18:22 +0100)]
resolved: bind socket to interface during connect()
Apparently, IF_UNICAST_IF does not influence the routing decisions done
during connect(). But SO_BINDTODEVICE/SO_BINDTOINDEX does, which however
brings a lot of other semantics with it, we are not so interested in
(i.e. it doesn't not allow packets from any other iface to us, even if
routing otherwise allows it).
Hence, let's bind to the ifindex immediately before the connect() and
unbind right after again, so that we get the semantics we want, but not
the ones we don't.
Fixes: #11935
Replaces: #12004
Lennart Poettering [Wed, 18 Nov 2020 09:25:27 +0000 (10:25 +0100)]
socket-util: add sockaddr_in_addr() helper
This extracts the IP address (as union in_addr_union) from a socket
address (i.e. a struct sockaddr).
Zbigniew Jędrzejewski-Szmek [Wed, 2 Dec 2020 14:10:34 +0000 (15:10 +0100)]
Merge pull request #17707 from yuwata/network-fix-reconfigure
network: fix race in reconfiguring link
Zbigniew Jędrzejewski-Szmek [Wed, 2 Dec 2020 13:59:33 +0000 (14:59 +0100)]
Merge pull request #17798 from yuwata/ipv4ll-follow-ups
network: improve debug logs and add tests for IPv4LL
walbit-de [Wed, 2 Dec 2020 13:58:02 +0000 (14:58 +0100)]
network: add Protocol= to vlan netdev (#17794)
Zbigniew Jędrzejewski-Szmek [Wed, 2 Dec 2020 12:49:24 +0000 (13:49 +0100)]
meson: allow fuzzers to be built even if fuzz testing is disabled
This makes commands like 'ninja -C build fuzz-journal-remote' or
'ninja -C build fuzzers' work, even if we have -Dfuzz-tests=false.
Two advantages: correctness of the meson declarations is verified even
if fuzzers are not built, and it easier to do a one-off build to check for
regressions or such.
Follow-up for
1763ef1d49cc1263b40f157060a61cdd6e91d3a4.
Yu Watanabe [Tue, 24 Nov 2020 06:47:13 +0000 (15:47 +0900)]
network: stop to assign UUID when reconfiguring link
This fixes the following race in reconfiguring link:
1. an interface requests UUID.
2. the interface is reconfigured and link_configure() is called.
3. sd-lldp client is started on the interface (it is enabled by default).
4. networkd acquires UUID, and get_product_uuid_handler() calls
link_configure() for the link again.
5. link_lldp_rx_configure() fails to set ifindex for already running
sd-lldp client.
6. the link enters failed state.
Yu Watanabe [Tue, 24 Nov 2020 06:58:04 +0000 (15:58 +0900)]
network: use bus_error_message()
Yu Watanabe [Wed, 2 Dec 2020 09:05:06 +0000 (18:05 +0900)]
meson: use '_' as separator in fuzz test names
Follow-up for
d448888924c1d4815cb97bcd5d94419812c053b9 and
ca121e20c42219e3bc4e5cb63dcc96cc5eae2879.
Fixes #17568.
Yu Watanabe [Wed, 2 Dec 2020 08:53:32 +0000 (17:53 +0900)]
tree-wide: fix typos
Yu Watanabe [Wed, 2 Dec 2020 07:20:52 +0000 (16:20 +0900)]
network: add debug log about requesting DHCP address
This addresses
https://github.com/systemd/systemd/pull/17474#discussion_r515996491.
Yu Watanabe [Wed, 2 Dec 2020 07:12:18 +0000 (16:12 +0900)]
test-network: confirm that IPv4ll address is dropped after DHCPv4 lease is acquired
Yu Watanabe [Wed, 2 Dec 2020 06:31:30 +0000 (15:31 +0900)]
sd-ipv4acd: logs current state
Yu Watanabe [Wed, 2 Dec 2020 06:21:35 +0000 (15:21 +0900)]
sd-ipv4acd,sd-ipv4ll: include interface name in the debug logs
Yu Watanabe [Wed, 2 Dec 2020 06:15:50 +0000 (15:15 +0900)]
log-link: introduce log_interface_full_errno() macro
Yu Watanabe [Wed, 2 Dec 2020 06:00:06 +0000 (15:00 +0900)]
sd-ipv4acd,sd-ipv4ll: introduce _get_ifindex() and _get_ifname()
They will be used in later commits.
This also makes sd_ipv4acd_set_ifindex() check the existence of the interface.
Lennart Poettering [Wed, 18 Nov 2020 14:12:44 +0000 (15:12 +0100)]
resolved: don't update resolv.conf snippets unnecessarily
Fixes: #17577
Lennart Poettering [Wed, 18 Nov 2020 14:11:43 +0000 (15:11 +0100)]
fs-util: add conservative_rename() that suppresses unnecessary renames
if the source and destination file match in contents and basic file
attributes, don#t rename, but just remove source.
This is a simple way to suppress inotify events + mtime changes when
atomically updating files.
Lennart Poettering [Wed, 18 Nov 2020 14:10:52 +0000 (15:10 +0100)]
copy: teach copy_file() that a mode=-1 call means "take mode from original file"
Zbigniew Jędrzejewski-Szmek [Mon, 30 Nov 2020 09:19:52 +0000 (10:19 +0100)]
pager: stop disabling urlification under a pager
Less 568 properly shows urlified strings.
Putative NEWS entry:
* Urlification is now enabled by default even when a pager is used.
Previously it was disabled, because less would not show such markup
properly. This has been fixed in less 568.
Please either upgrade less, or use SYSTEMD_URLIFY=0 to disable the
feature.
Zbigniew Jędrzejewski-Szmek [Tue, 1 Dec 2020 20:59:30 +0000 (21:59 +0100)]
Merge pull request #17692 from yuwata/ipv4ll
network: fold ipv4ll fallback modes into normal ipv4ll addressing
Zbigniew Jędrzejewski-Szmek [Tue, 1 Dec 2020 20:47:43 +0000 (21:47 +0100)]
Merge pull request #17703 from poettering/event-ratelimit
sd-event: add a concept of ratelimiting
Zbigniew Jędrzejewski-Szmek [Tue, 1 Dec 2020 20:38:52 +0000 (21:38 +0100)]
Merge pull request #17524 from poettering/fileio-offset
cryptsetup: if keyfile is specified as AF_UNIX socket in the fs, connect to it, and read key data from it
Lennart Poettering [Mon, 23 Nov 2020 21:30:09 +0000 (22:30 +0100)]
man: document new ratelimiting APIs
Michal Sekletár [Thu, 9 Jul 2020 16:16:44 +0000 (18:16 +0200)]
core: prevent excessive /proc/self/mountinfo parsing
Michal Sekletár [Mon, 23 Nov 2020 17:04:57 +0000 (18:04 +0100)]
test: add ratelimiting test
(Taken from Michal's #17274 by Lennart, and slightly adjusted)
Lennart Poettering [Mon, 23 Nov 2020 17:02:40 +0000 (18:02 +0100)]
sd-event: add ability to ratelimit event sources
Let's a concept of "rate limiting" to event sources: if specific event
sources fire too often in some time interval temporarily take them
offline, and take them back online once the interval passed.
This is a simple scheme of avoiding starvation of event sources if some
event source fires too often.
This introduces the new conceptual states of "offline" and "online" for
event sources: an event source is "online" only when enabled *and* not
ratelimited, and offline in all other cases. An event source that is
online hence has its fds registered in the epoll, its signals in the
signalfd and so on.
Lennart Poettering [Mon, 23 Nov 2020 16:49:27 +0000 (17:49 +0100)]
sd-event: remove earliest_index/latest_index into common part of event source objects
So far we used these fields to organize the earliest/latest timer event
priority queue. In a follow-up commit we want to introduce ratelimiting
to event sources, at which point we want any kind of event source to be
able to trigger time wakeups, and hence they all need to be included in
the earliest/latest prioqs. Thus, in preparation let's make this
generic.
No change in behaviour, just some shifting around of struct members from
the type-specific to the generic part.
Lennart Poettering [Mon, 23 Nov 2020 16:47:16 +0000 (17:47 +0100)]
sd-event: follow coding style with naming return parameter
Lennart Poettering [Mon, 23 Nov 2020 14:38:00 +0000 (15:38 +0100)]
sd-event: ref event loop while in sd_event_prepare() ot sd_event_run()
sd_event_prepare() invokes callbacks that might drop the last user ref
on our event loop. Let's make sure we keep an explicit ref around it, so
that we won't end up with an invalid pointer. Similar in sd_event_run().
Basically, any function that is publically callable that might end up
invoking callbacks should ref the relevant objects to be protected
against callbacks destroying these objects while we still want to access
them. We did this correctly in sd_event_dispatch() and sd_event_loop(),
but these are not the only ones which are callable from the outside.
Lennart Poettering [Mon, 23 Nov 2020 14:33:50 +0000 (15:33 +0100)]
sd-event: let's suffix last_run/last_log with "_usec"
Otherwise it's a bit confusing what this is about: two timestamps.
Lennart Poettering [Mon, 23 Nov 2020 14:25:35 +0000 (15:25 +0100)]
sd-event: split out code to add/remove timer event sources to earliest/latest prioq
Just some refactoring that makes code prettier, and will come handy
later, because we can reuse these functions at more places.
Lennart Poettering [Mon, 23 Nov 2020 10:40:24 +0000 (11:40 +0100)]
sd-event: split clock data allocation out of sd_event_add_time()
Just some simple refactoring, that will make things easier for us later.
But it looks better this way even without the later function reuse.
Lennart Poettering [Mon, 23 Nov 2020 10:39:40 +0000 (11:39 +0100)]
sd-event: mention that two debug logged events are ignored
Lennart Poettering [Wed, 4 Nov 2020 17:43:12 +0000 (18:43 +0100)]
update TODO
Lennart Poettering [Tue, 1 Dec 2020 13:23:38 +0000 (14:23 +0100)]
man: drop comment about ECC vs. RSA and Yubikey
The comment is pointless, ECC systematically doesn't allow
encryption/decryption directly, only RSA does that. If you want to use
ECC for asymmetric encryption/decryption you have to combine it with key
exchange scheme and symmetric scheme. This all is not a limitation of
the Yubikey, hence don't claim so. It's just how ECC is.
Lennart Poettering [Wed, 4 Nov 2020 19:20:41 +0000 (20:20 +0100)]
man: document how cryptsetup keys may be acquired via AF_UNIX sockets
Lennart Poettering [Wed, 4 Nov 2020 17:15:42 +0000 (18:15 +0100)]
cryptsetup: modify keyfile search logic to use read_file_full() too
Let's move the 3rd way how cryptsetup acquires key files to
read_file_full() too.
Since load_key_file()'s raison d'etre now is just the search path logic,
let's rename the function to find_key_file().
Lennart Poettering [Wed, 4 Nov 2020 16:24:53 +0000 (17:24 +0100)]
cryptsetup: port cryptsetup's main key file logic over to read_full_file_full()
Previously, we'd load the file with libcryptsetup's calls. Let's do that
in our own, so that we can make use of READ_FULL_FILE_CONNECT_SOCKET,
i.e. read in keys via AF_UNIX sockets, so that people can plug key
providers into our logic.
This provides functionality similar to Debian's keyscript= crypttab
option (see → #3007), as it allows key scripts to be run as socket
activated services, that have stdout connected to the activated socket.
In contrast to traditional keyscript= support this logic runs stuff out
of process however, which is beneficial, since it allows sandboxing and
similar.
Lennart Poettering [Wed, 4 Nov 2020 16:22:39 +0000 (17:22 +0100)]
cryptsetup: port PKCS#11 code to read key file with read_full_file()
Now that we can read from offsets/with size, let's port the cryptsetup
PKCS#11 key file logic over to read_full_file_full().
Lennart Poettering [Wed, 4 Nov 2020 19:25:06 +0000 (20:25 +0100)]
fileio: teach read_full_file_full() to read from offset/with maximum size
Lennart Poettering [Wed, 4 Nov 2020 19:24:57 +0000 (20:24 +0100)]
journal-remote: suffix cmdline option that expects arg with =
Lennart Poettering [Wed, 4 Nov 2020 15:23:11 +0000 (16:23 +0100)]
man: mention that --key= is about *secret* keys
Lennart Poettering [Wed, 4 Nov 2020 15:21:26 +0000 (16:21 +0100)]
journal-remote: use READ_FULL_FILE_SECURE|READ_FULL_FILE_WARN_WORLD_READABLE when reading PEM secret key
It's secret data, hence use the appropriate flags.
Lennart Poettering [Wed, 4 Nov 2020 15:19:49 +0000 (16:19 +0100)]
repart: warn about world writable key files
We have easy support for this, hence use it for privileged key data.
Lennart Poettering [Wed, 4 Nov 2020 15:17:26 +0000 (16:17 +0100)]
dissect-image: use simple version of read_full_file() where we can
Lennart Poettering [Wed, 4 Nov 2020 15:13:09 +0000 (16:13 +0100)]
journal-remote: erase secret PEM key from memory after use
Zbigniew Jędrzejewski-Szmek [Mon, 30 Nov 2020 10:09:37 +0000 (11:09 +0100)]
meson: add missing "S" to SYSTEMD_CGROUPS_AGENT_PATH
Other similar variables use the binary name underscorified and upppercased
(with "_BINARY" appended in some cases to avoid ambiguity). Add "S" to follow
the same pattern for systemd-cgroups-agent.
Based on the discussion in #16715.
Franck Bui [Mon, 30 Nov 2020 14:26:15 +0000 (15:26 +0100)]
scope: on unified, make sure to unwatch all PIDs once they've been moved to the cgroup scope
Commit
428a9f6f1d0396b9eacde2b38d667cbe3f15eb55 freed u->pids which is
problematic since the references to this unit in m->watch_pids were no more
removed when the unit was freed.
This patch makes sure to clean all this refs up before freeing u->pids by
calling unit_unwatch_all_pids().
Vito Caputo [Tue, 1 Dec 2020 08:26:54 +0000 (00:26 -0800)]
sd-event: fix delays assert brain-o (#17790)
s/sizeof/ELEMENTSOF/
Bug introduced in
34b87517749caa4142b19eb3c63bdf349fafbc49.
Pavel Sapezhko [Mon, 9 Nov 2020 19:40:14 +0000 (22:40 +0300)]
mkosi: make ubuntu image bootable by default
igo95862 [Fri, 27 Nov 2020 13:51:18 +0000 (16:51 +0300)]
man: Speicfy exact return values of sd_bus_message_enter_container
Piotr Drąg [Sat, 28 Nov 2020 12:43:52 +0000 (13:43 +0100)]
po: add units/systemd-journald.service.in to POTFILES.skip
Michał Kopeć [Sun, 29 Nov 2020 20:13:07 +0000 (21:13 +0100)]
hwdb: add axis range corrections for Lenovo ThinkPad T14 Gen1
Yu Watanabe [Mon, 23 Nov 2020 13:34:43 +0000 (22:34 +0900)]
network: use IN_SET() macro
Follow-up for
1d370b2c182505ff8033fccbebcc56621d305220.
Yu Watanabe [Mon, 23 Nov 2020 04:42:22 +0000 (13:42 +0900)]
network: treat IPv4LL is one of dynamic addressing protocol
This makes an IPv4LL address optional when multiple dynamic
addressing protocols are enabled.
Yu Watanabe [Mon, 23 Nov 2020 04:44:29 +0000 (13:44 +0900)]
network: simplify the condition about ipv4ll is enabled or not
Yu Watanabe [Mon, 23 Nov 2020 04:55:26 +0000 (13:55 +0900)]
network: shorten link_check_ready() a bit
Yu Watanabe [Mon, 23 Nov 2020 04:28:47 +0000 (13:28 +0900)]
network: stop IPv4LL engine when DHCPv4 address is successfully acquired
Zbigniew Jędrzejewski-Szmek [Thu, 8 Oct 2020 18:14:51 +0000 (20:14 +0200)]
networkd: start ipv4ll when dhcp has trouble getting a lease
Fixes #13316.
Zbigniew Jędrzejewski-Szmek [Thu, 8 Oct 2020 14:51:25 +0000 (16:51 +0200)]
sd-dhcp-client: report transient DHCP failure to the caller
So far we only reported major state transitions like failure to acquire
the message. Let's report the initial failure after a few timeouts in
a new event type.
The number of timeouts is hardcoded as 3, since Windows seems to be using
that. I don't think we need to make this configurable out of the box. A
reasonable default may be enough.
Zbigniew Jędrzejewski-Szmek [Thu, 8 Oct 2020 14:59:26 +0000 (16:59 +0200)]
networkd: merge ll addressing fallback modes into normal "boolean" values
They are not really boolean, because we have both ipv4 and ipv6, but
for each protocol we have either unset, no, and yes.
From https://github.com/systemd/systemd/issues/13316#issuecomment-
582906817:
LinkLocalAddressing must be a boolean option, at least for ipv4:
- LinkLocalAddressing=no => no LL at all.
- LinkLocalAddressing=yes + Static Address => invalid configuration, warn and
interpret as LinkLocalAddressing=no, no LL at all.
(we check that during parsing and reject)
- LinkLocalAddressing=yes + DHCP => LL process should be subordinated to the
DHCP one, an LL address must be acquired at start or after a short N
unsuccessful DHCP attemps, and must not stop DHCP to keeping trying. When a
DHCP address is acquired, drop the LL address. If the DHCP address is lost,
re-adquire a new LL address.
(next patch will move in this direction)
- LinkLocalAddressing=fallback has no reason to exist, because LL address must
always be allocated as a fallback option when using DHCP. Having both DHCP
and LL address at the same time is an RFC violation, so
LinkLocalAdressing=yes correctly implemented is already the "fallback"
behavior. The fallback option must be deprecated and if present in older
configs must be interpreted as LinkLocalAddressing=yes.
(removed)
- And for IPv6, the LinkLocalAddress option has any sense at all? IPv6-LL
address aren't required to be always set for every IPv6 enabled interface (in
this case, coexisting with static or dynamic address if any)? Shouldn't be
always =yes?
(good question)
This effectively reverts
29e81083bd2fcb2dbf83f67ef358c7d25adf7e9d. There is no
special "fallback" mode now, so the check doesn't make sense anymore.
Zbigniew Jędrzejewski-Szmek [Wed, 7 Oct 2020 12:14:09 +0000 (14:14 +0200)]
sd-dhcp-client: minor simplification
Zbigniew Jędrzejewski-Szmek [Wed, 7 Oct 2020 12:13:39 +0000 (14:13 +0200)]
man: adjust description of MaxAttempts
The code was changed in
715cedfbf03a2eb1d4dca5d1b2b876e52a3b652d to allow more than
six attempts and the old description stopped making sense.
Yu Watanabe [Sat, 28 Nov 2020 20:32:33 +0000 (05:32 +0900)]
Merge pull request #17761 from keszybz/documentation-followups
Two tiny fixlets
nihilix-melix [Fri, 27 Nov 2020 10:21:22 +0000 (11:21 +0100)]
Update logind-button.c
Zbigniew Jędrzejewski-Szmek [Sat, 28 Nov 2020 10:27:31 +0000 (11:27 +0100)]
test-networkd-conf: add missing assert_se
Coverity CID#
1437351. Fixup for
f706340979a.
Frantisek Sumsal [Fri, 27 Nov 2020 20:01:32 +0000 (21:01 +0100)]
semaphore: temporarily disable the timedated test suite
All otherwise passing Semaphore CI builds are now getting stuck on the
timedated test suite. Let's temporarily skip it until the issue is
resolved.
See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=975010
Konomi [Fri, 27 Nov 2020 07:52:44 +0000 (18:52 +1100)]
hwdb: 60-keyboard: Add Dell Inspiron 11 3168 Fn+Home/End/PageUp/PageDown key mappings
On the Dell Inspiron 11 3168 the Fn and Arrow Keys control the Home, End, Page Up and Page Down keys. This commit allows those keys to work correctly.
Zbigniew Jędrzejewski-Szmek [Fri, 27 Nov 2020 12:12:23 +0000 (13:12 +0100)]
Merge pull request #17734 from yuwata/parse-hwdb
hwdb: add missing Group()
Zbigniew Jędrzejewski-Szmek [Fri, 27 Nov 2020 11:55:37 +0000 (12:55 +0100)]
Merge pull request #17732 from yuwata/core-use-synthetic_errno
core,network: use SYNTHETIC_ERRNO() macro
Zbigniew Jędrzejewski-Szmek [Fri, 27 Nov 2020 11:51:48 +0000 (12:51 +0100)]
NEWS: really fix kernel version number reference
Fixes #17736.
Yu Watanabe [Thu, 26 Nov 2020 23:47:26 +0000 (08:47 +0900)]
coccinelle: ignore specific cases to use SYNTHETIC_ERRNO() macro
Yu Watanabe [Thu, 26 Nov 2020 23:39:24 +0000 (08:39 +0900)]
cryptsetup: drop unnecessary bracket
Yu Watanabe [Thu, 26 Nov 2020 23:38:12 +0000 (08:38 +0900)]
test: use for(;;) instead of while(true)
Yu Watanabe [Thu, 26 Nov 2020 23:36:09 +0000 (08:36 +0900)]
core/scope: use set_ensure_put()
Yu Watanabe [Thu, 26 Nov 2020 23:34:51 +0000 (08:34 +0900)]
mount-util: use mfree()
Yu Watanabe [Thu, 26 Nov 2020 23:29:20 +0000 (08:29 +0900)]
oom: use CMP() macro
Yu Watanabe [Thu, 26 Nov 2020 08:54:39 +0000 (17:54 +0900)]
core: fix typo
Yu Watanabe [Thu, 26 Nov 2020 05:41:00 +0000 (14:41 +0900)]
coccinelle: add rules for log_unit_error_errno() or friends
Yu Watanabe [Thu, 26 Nov 2020 23:18:32 +0000 (08:18 +0900)]
network: fix return values
Yu Watanabe [Thu, 26 Nov 2020 23:18:18 +0000 (08:18 +0900)]
network: use SYNTHETIC_ERRNO() macro
Yu Watanabe [Thu, 26 Nov 2020 00:27:21 +0000 (09:27 +0900)]
core: use SYNTHETIC_ERRNO() macro