b647874efe
- mark more subpackages as !bootstrap for systemd-mini usage. - spec : remove --with-firmware-path, firmware loader was removed in v217 - spec: remove --disable-multi-seat-x, gone.(fixed in xorg) - spec: Do not enable systemd-readahead-collect.service and systemd-readahead-replay.service as these do not exist anymore. - spec: drop timedate-add-support-for-openSUSE-version-of-etc-sysconfig.patch Yast was fixed to write all timezone changes exactly how timedated expects things to be done. - spec: remove handle-etc-HOSTNAME.patch, since late 2014 the netcfg package handles the migration from /etc/HOSTNAME to /etc/hostname and owns both files. -spec: remove boot.udev and systemd-journald.init as they currently serve no purpose. - suse-sysv-bootd-support.diff: Remove HAVE_SYSVINIT conditions, we are in sysvcompat-only codepath, also remove the code targetting other distributions, never compiled as the TARGET_$DISTRO macros are never defined. - systemd-powerd-initctl-support.patch guard with HAVE_SYSV_COMPAT - set-and-use-default-logconsole.patch: fix HAVE_SYSV_COMPAT guards - insserv-generator.patch: Only build when sysvcompat is enabled - vhangup-on-all-consoles.patch add a comment indicating this is a workaround for a kernel bug. - spec: Add option to allow disabling sysvinit compat at build time. - spec: Add option to enable resolved at build time. - spec: Remove all %ifs for !factory products, current systemd releases can neither be built nor installed in older products without upgrading several components of the base system. (removed: 1008-add-msft-compability-rules.patch was only for =< 13.1) - spec: remove all dummy "aliases" to /etc/init.d, that made sense only when those init scripts still existed. (dummy localfs.service source: gone) OBS-URL: https://build.opensuse.org/request/show/286653 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=215
154 lines
5.5 KiB
Diff
154 lines
5.5 KiB
Diff
---
|
|
src/core/manager.c | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
src/core/manager.h | 5 ++
|
|
2 files changed, 98 insertions(+)
|
|
|
|
Index: systemd-218/src/core/manager.c
|
|
===================================================================
|
|
--- systemd-218.orig/src/core/manager.c
|
|
+++ systemd-218/src/core/manager.c
|
|
@@ -37,6 +37,7 @@
|
|
#include <sys/stat.h>
|
|
#include <dirent.h>
|
|
#include <sys/timerfd.h>
|
|
+#include <resolv.h>
|
|
|
|
#ifdef HAVE_AUDIT
|
|
#include <libaudit.h>
|
|
@@ -302,6 +303,91 @@ static int manager_check_ask_password(Ma
|
|
return m->have_ask_password;
|
|
}
|
|
|
|
+static int manager_setup_resolv_conf_change(Manager *);
|
|
+
|
|
+static int manager_dispatch_resolv_conf_fd(sd_event_source *source,
|
|
+ int fd, uint32_t revents, void *userdata) {
|
|
+ Manager *m = userdata;
|
|
+
|
|
+ assert(m);
|
|
+ assert(m->resolv_conf_inotify_fd == fd);
|
|
+
|
|
+ if (revents != EPOLLIN) {
|
|
+ log_warning("Got unexpected poll event for notify fd.");
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
+ if (fd >= 0)
|
|
+ flush_fd(fd);
|
|
+
|
|
+ m->resolv_conf_event_source = sd_event_source_unref(m->resolv_conf_event_source);
|
|
+ m->resolv_conf_inotify_fd = safe_close(m->resolv_conf_inotify_fd);
|
|
+ manager_setup_resolv_conf_change(m);
|
|
+ return m->resolv_conf_noent ? 0 : res_init();
|
|
+}
|
|
+
|
|
+static int manager_setup_resolv_conf_change(Manager *m) {
|
|
+ int r;
|
|
+
|
|
+ assert(m);
|
|
+ assert(m->resolv_conf_inotify_fd < 0);
|
|
+
|
|
+ m->resolv_conf_inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
|
|
+ if (m->resolv_conf_inotify_fd < 0) {
|
|
+ log_error("inotify_init1() failed: %m");
|
|
+ r = -errno;
|
|
+ goto fail;
|
|
+ }
|
|
+ if (inotify_add_watch(m->resolv_conf_inotify_fd, "/etc/resolv.conf",
|
|
+ IN_CLOSE_WRITE|IN_MODIFY|IN_ATTRIB|IN_DELETE_SELF) < 0) {
|
|
+ if (errno == ENOENT) {
|
|
+ m->resolv_conf_noent = true;
|
|
+ if (inotify_add_watch(m->resolv_conf_inotify_fd, "/etc", IN_CREATE|IN_MOVED_TO) < 0) {
|
|
+ log_error("Failed to add watch on /etc: %m");
|
|
+ r = -errno;
|
|
+ goto fail;
|
|
+ }
|
|
+ } else {
|
|
+ log_error("Failed to add watch on /etc/resolv.conf: %m");
|
|
+ r = -errno;
|
|
+ goto fail;
|
|
+ }
|
|
+ }
|
|
+ if (inotify_add_watch(m->resolv_conf_inotify_fd, "/etc/host.conf",
|
|
+ IN_CLOSE_WRITE|IN_MODIFY|IN_ATTRIB|IN_DELETE_SELF) < 0 && errno != ENOENT) {
|
|
+ log_error("Failed to add watch on /etc/host.conf: %m");
|
|
+ r = -errno;
|
|
+ goto fail;
|
|
+ }
|
|
+
|
|
+ r = sd_event_add_io(m->event, &m->resolv_conf_event_source,
|
|
+ m->resolv_conf_inotify_fd, EPOLLIN,
|
|
+ manager_dispatch_resolv_conf_fd, m);
|
|
+ if (r < 0) {
|
|
+ log_error("Failed to add event source for resolver: %s", strerror(-r));
|
|
+ goto fail;
|
|
+ }
|
|
+
|
|
+ r = sd_event_source_set_priority(m->resolv_conf_event_source, -10);
|
|
+ if (r < 0) {
|
|
+ log_error("Failed to add event source for resolver: %s", strerror(-r));
|
|
+ m->resolv_conf_event_source = sd_event_source_unref(m->resolv_conf_event_source);
|
|
+ goto fail;
|
|
+ }
|
|
+
|
|
+ return 0;
|
|
+fail:
|
|
+ m->resolv_conf_inotify_fd = safe_close(m->resolv_conf_inotify_fd);
|
|
+ return 0; /* Ignore error here */
|
|
+}
|
|
+
|
|
+static void manager_shutdown_resolv_conf_change(Manager *m) {
|
|
+ assert(m);
|
|
+
|
|
+ m->resolv_conf_event_source = sd_event_source_unref(m->resolv_conf_event_source);
|
|
+ m->resolv_conf_inotify_fd = safe_close(m->resolv_conf_inotify_fd);
|
|
+}
|
|
+
|
|
static int manager_watch_idle_pipe(Manager *m) {
|
|
int r;
|
|
|
|
@@ -557,6 +643,7 @@ int manager_new(SystemdRunningAs running
|
|
m->pin_cgroupfs_fd = m->notify_fd = m->signal_fd = m->time_change_fd = m->dev_autofs_fd = m->private_listen_fd = m->kdbus_fd = m->utab_inotify_fd = -1;
|
|
m->current_job_id = 1; /* start as id #1, so that we can leave #0 around as "null-like" value */
|
|
|
|
+ m->resolv_conf_inotify_fd = -1;
|
|
m->ask_password_inotify_fd = -1;
|
|
m->have_ask_password = -EINVAL; /* we don't know */
|
|
|
|
@@ -618,6 +705,10 @@ int manager_new(SystemdRunningAs running
|
|
if (r < 0)
|
|
goto fail;
|
|
|
|
+ r = manager_setup_resolv_conf_change(m);
|
|
+ if (r < 0)
|
|
+ goto fail;
|
|
+
|
|
m->udev = udev_new();
|
|
if (!m->udev) {
|
|
r = -ENOMEM;
|
|
@@ -896,6 +987,8 @@ Manager* manager_free(Manager *m) {
|
|
if (!m)
|
|
return NULL;
|
|
|
|
+ manager_shutdown_resolv_conf_change(m);
|
|
+
|
|
manager_clear_jobs_and_units(m);
|
|
|
|
for (c = 0; c < _UNIT_TYPE_MAX; c++)
|
|
Index: systemd-218/src/core/manager.h
|
|
===================================================================
|
|
--- systemd-218.orig/src/core/manager.h
|
|
+++ systemd-218/src/core/manager.h
|
|
@@ -185,6 +185,11 @@ struct Manager {
|
|
int utab_inotify_fd;
|
|
sd_event_source *mount_utab_event_source;
|
|
|
|
+ /* Watch out any change of /etc/resolv.conf */
|
|
+ int resolv_conf_inotify_fd;
|
|
+ sd_event_source *resolv_conf_event_source;
|
|
+ bool resolv_conf_noent;
|
|
+
|
|
/* Data specific to the swap filesystem */
|
|
FILE *proc_swaps;
|
|
sd_event_source *swap_event_source;
|