mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 04:41:20 +00:00
11573f3ec1
Defines the extensions to the remote protocol for generic data streams. Adds a bunch of helper code to the libvirtd daemon for working with data streams. * daemon/Makefile.am: Add stream.c/stream.h to build * daemon/stream.c, qemud/stream.h: Generic helper functions for creating new streams, associating streams with clients, finding existing streams for a client and removing/deleting streams. * src/remote/remote_protocol.x: Add a new 'REMOTE_STREAM' constant for the 'enum remote_message_type' for encoding stream data in wire messages. Add a new 'REMOTE_CONTINUE' constant to 'enum remote_message_status' to indicate further data stream messsages are expected to follow. Document how the remote_message_header is used to encode data streams * src/remote/remote_protocol.h: Regenerate * daemon/dispatch.c: Remove assumption that a error message sent to client is always type=REMOTE_REPLY. It may now also be type=REMOTE_STREAM. Add convenient method for sending outgoing stream data packets. Log and ignore non-filtered incoming stream packets. Add a method for serializing a stream error message * daemon/dispatch.h: Add API for serializing stream errors and sending stream data packets * daemon/qemud.h: Add struct qemud_client_stream for tracking active data streams for clients. Tweak filter function operation so that it accepts a client object too. * daemon/qemud.c: Refactor code for free'ing message objects which have been fully transmitted into separate method. Release all active streams when client shuts down. Change filter function to be responsible for queueing the message
249 lines
6.4 KiB
Makefile
249 lines
6.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
DAEMON_SOURCES = \
|
|
event.c event.h \
|
|
libvirtd.c libvirtd.h \
|
|
remote.c remote.h \
|
|
dispatch.c dispatch.h \
|
|
stream.c stream.h \
|
|
remote_dispatch_prototypes.h \
|
|
remote_dispatch_table.h \
|
|
remote_dispatch_args.h \
|
|
remote_dispatch_ret.h \
|
|
../src/remote/remote_protocol.c
|
|
|
|
AVAHI_SOURCES = \
|
|
mdns.c mdns.h
|
|
|
|
DISTCLEANFILES =
|
|
EXTRA_DIST = \
|
|
remote_generate_stubs.pl \
|
|
libvirtd.conf \
|
|
libvirtd.init.in \
|
|
libvirtd.policy-0 \
|
|
libvirtd.policy-1 \
|
|
libvirtd.sasl \
|
|
libvirtd.sysconf \
|
|
libvirtd.aug \
|
|
libvirtd.logrotate.in \
|
|
test_libvirtd.aug \
|
|
$(AVAHI_SOURCES) \
|
|
$(DAEMON_SOURCES)
|
|
|
|
BUILT_SOURCES =
|
|
|
|
if WITH_LIBVIRTD
|
|
|
|
sbin_PROGRAMS = libvirtd
|
|
|
|
confdir = $(sysconfdir)/libvirt/
|
|
conf_DATA = libvirtd.conf
|
|
|
|
augeasdir = $(datadir)/augeas/lenses
|
|
augeas_DATA = libvirtd.aug
|
|
|
|
augeastestsdir = $(datadir)/augeas/lenses/tests
|
|
augeastests_DATA = test_libvirtd.aug
|
|
|
|
libvirtd_SOURCES = $(DAEMON_SOURCES)
|
|
|
|
#-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_POSIX_C_SOURCE=199506L
|
|
libvirtd_CFLAGS = \
|
|
-I$(top_srcdir)/gnulib/lib -I../gnulib/lib \
|
|
-I$(top_srcdir)/include -I$(top_builddir)/include \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/util \
|
|
-I$(top_srcdir)/src/conf \
|
|
-I$(top_srcdir)/src/remote \
|
|
$(LIBXML_CFLAGS) $(GNUTLS_CFLAGS) $(SASL_CFLAGS) \
|
|
$(POLKIT_CFLAGS) \
|
|
$(WARN_CFLAGS) -DLOCAL_STATE_DIR="\"$(localstatedir)\"" \
|
|
$(COVERAGE_CFLAGS) \
|
|
-DSYSCONF_DIR="\"$(sysconfdir)\"" \
|
|
-DQEMUD_PID_FILE="\"$(QEMUD_PID_FILE)\"" \
|
|
-DREMOTE_PID_FILE="\"$(REMOTE_PID_FILE)\"" \
|
|
-DGETTEXT_PACKAGE=\"$(PACKAGE)\"
|
|
|
|
libvirtd_LDFLAGS = \
|
|
$(WARN_CFLAGS) \
|
|
$(COVERAGE_LDFLAGS)
|
|
|
|
libvirtd_LDADD = \
|
|
$(LIBXML_LIBS) \
|
|
$(GNUTLS_LIBS) \
|
|
$(SASL_LIBS) \
|
|
$(POLKIT_LIBS)
|
|
|
|
libvirtd_LDADD += ../src/libvirt_util.la
|
|
|
|
if WITH_DRIVER_MODULES
|
|
libvirtd_LDADD += ../src/libvirt_driver.la
|
|
else
|
|
if WITH_QEMU
|
|
libvirtd_LDADD += ../src/libvirt_driver_qemu.la
|
|
endif
|
|
|
|
if WITH_LXC
|
|
libvirtd_LDADD += ../src/libvirt_driver_lxc.la
|
|
endif
|
|
|
|
if WITH_UML
|
|
libvirtd_LDADD += ../src/libvirt_driver_uml.la
|
|
endif
|
|
|
|
if WITH_ONE
|
|
libvirtd_LDADD += ../src/libvirt_driver_one.la
|
|
endif
|
|
|
|
if WITH_STORAGE_DIR
|
|
libvirtd_LDADD += ../src/libvirt_driver_storage.la
|
|
endif
|
|
|
|
if WITH_NETWORK
|
|
libvirtd_LDADD += ../src/libvirt_driver_network.la
|
|
endif
|
|
|
|
if WITH_NETCF
|
|
libvirtd_LDADD += ../src/libvirt_driver_interface.la
|
|
endif
|
|
|
|
if WITH_NODE_DEVICES
|
|
libvirtd_LDADD += ../src/libvirt_driver_nodedev.la
|
|
endif
|
|
endif
|
|
|
|
libvirtd_LDADD += ../src/libvirt.la
|
|
|
|
if HAVE_POLKIT
|
|
if HAVE_POLKIT0
|
|
policydir = $(datadir)/PolicyKit/policy
|
|
policyfile = libvirtd.policy-0
|
|
else
|
|
policydir = $(datadir)/polkit-1/actions
|
|
policyfile = libvirtd.policy-1
|
|
endif
|
|
endif
|
|
|
|
if HAVE_AVAHI
|
|
libvirtd_SOURCES += $(AVAHI_SOURCES)
|
|
libvirtd_CFLAGS += $(AVAHI_CFLAGS)
|
|
libvirtd_LDADD += $(AVAHI_LIBS)
|
|
endif
|
|
|
|
|
|
install-data-local: install-init install-data-sasl install-data-polkit \
|
|
install-logrotate
|
|
mkdir -p $(DESTDIR)$(localstatedir)/log/libvirt
|
|
mkdir -p $(DESTDIR)$(localstatedir)/run/libvirt
|
|
mkdir -p $(DESTDIR)$(localstatedir)/lib/libvirt
|
|
|
|
uninstall-local:: uninstall-init uninstall-data-sasl uninstall-data-polkit
|
|
rmdir $(DESTDIR)$(localstatedir)/log/libvirt || :
|
|
rmdir $(DESTDIR)$(localstatedir)/run/libvirt || :
|
|
rmdir $(DESTDIR)$(localstatedir)/lib/libvirt || :
|
|
|
|
if HAVE_POLKIT
|
|
install-data-polkit:: install-init
|
|
mkdir -p $(DESTDIR)$(policydir)
|
|
$(INSTALL_DATA) $(srcdir)/$(policyfile) $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
|
uninstall-data-polkit:: install-init
|
|
rm -f $(DESTDIR)$(policydir)/org.libvirt.unix.policy
|
|
else
|
|
install-data-polkit::
|
|
uninstall-data-polkit::
|
|
endif
|
|
|
|
|
|
remote.c: remote_dispatch_prototypes.h \
|
|
remote_dispatch_table.h \
|
|
remote_dispatch_args.h \
|
|
remote_dispatch_ret.h
|
|
|
|
REMOTE_PROTOCOL = $(top_srcdir)/src/remote/remote_protocol.x
|
|
|
|
remote_dispatch_prototypes.h: $(srcdir)/remote_generate_stubs.pl $(REMOTE_PROTOCOL)
|
|
perl -w $(srcdir)/remote_generate_stubs.pl -p $(REMOTE_PROTOCOL) > $@
|
|
|
|
remote_dispatch_table.h: $(srcdir)/remote_generate_stubs.pl $(REMOTE_PROTOCOL)
|
|
perl -w $(srcdir)/remote_generate_stubs.pl -t $(REMOTE_PROTOCOL) > $@
|
|
|
|
remote_dispatch_args.h: $(srcdir)/remote_generate_stubs.pl $(REMOTE_PROTOCOL)
|
|
perl -w $(srcdir)/remote_generate_stubs.pl -a $(REMOTE_PROTOCOL) > $@
|
|
|
|
remote_dispatch_ret.h: $(srcdir)/remote_generate_stubs.pl $(REMOTE_PROTOCOL)
|
|
perl -w $(srcdir)/remote_generate_stubs.pl -r $(REMOTE_PROTOCOL) > $@
|
|
|
|
BUILT_SOURCES += libvirtd.logrotate
|
|
|
|
libvirtd.logrotate: libvirtd.logrotate.in
|
|
sed \
|
|
-e s!\@localstatedir\@!@localstatedir@!g \
|
|
< $< > $@-t
|
|
mv $@-t $@
|
|
|
|
install-logrotate: libvirtd.logrotate
|
|
mkdir -p $(DESTDIR)$(localstatedir)/log/libvirt/qemu/
|
|
mkdir -p $(DESTDIR)$(sysconfdir)/logrotate.d/
|
|
$(INSTALL_DATA) $< $(DESTDIR)$(sysconfdir)/logrotate.d/libvirtd
|
|
|
|
if LIBVIRT_INIT_SCRIPTS_RED_HAT
|
|
install-init: libvirtd.init
|
|
mkdir -p $(DESTDIR)$(sysconfdir)/rc.d/init.d
|
|
$(INSTALL_SCRIPT) libvirtd.init \
|
|
$(DESTDIR)$(sysconfdir)/rc.d/init.d/libvirtd
|
|
mkdir -p $(DESTDIR)$(sysconfdir)/sysconfig
|
|
$(INSTALL_SCRIPT) $(srcdir)/libvirtd.sysconf \
|
|
$(DESTDIR)$(sysconfdir)/sysconfig/libvirtd
|
|
|
|
uninstall-init:
|
|
rm -f $(DESTDIR)$(sysconfdir)/rc.d/init.d/libvirtd \
|
|
$(DESTDIR)$(sysconfdir)/sysconfig/libvirtd
|
|
|
|
BUILT_SOURCES += libvirtd.init
|
|
|
|
libvirtd.init: libvirtd.init.in
|
|
sed \
|
|
-e s!\@localstatedir\@!@localstatedir@!g \
|
|
-e s!\@sbindir\@!@sbindir@!g \
|
|
-e s!\@sysconfdir\@!@sysconfdir@!g \
|
|
< $< > $@-t
|
|
chmod a+x $@-t
|
|
mv $@-t $@
|
|
|
|
check-local:
|
|
test -x '$(AUGPARSE)' \
|
|
&& '$(AUGPARSE)' -I $(srcdir) $(srcdir)/test_libvirtd.aug || :
|
|
|
|
else
|
|
|
|
install-init:
|
|
uninstall-init:
|
|
libvirtd.init:
|
|
|
|
endif # DBUS_INIT_SCRIPTS_RED_HAT
|
|
|
|
# This must be added last, since functions it provides/replaces
|
|
# are used by nearly every other library.
|
|
libvirtd_LDADD += ../gnulib/lib/libgnu.la $(LIBSOCKET)
|
|
|
|
else # WITH_LIBVIRTD
|
|
install-data-local: install-data-sasl
|
|
uninstall-local:: uninstall-data-sasl
|
|
endif # WITH_LIBVIRTD
|
|
|
|
# This is needed for clients too, so can't wrap in
|
|
# the WITH_LIBVIRTD conditional
|
|
if HAVE_SASL
|
|
install-data-sasl:
|
|
mkdir -p $(DESTDIR)$(sysconfdir)/sasl2/
|
|
$(INSTALL_DATA) $(srcdir)/libvirtd.sasl $(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
|
|
|
uninstall-data-sasl:
|
|
rm -f $(DESTDIR)$(sysconfdir)/sasl2/libvirt.conf
|
|
rmdir $(DESTDIR)$(sysconfdir)/sasl2/
|
|
endif
|
|
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
CLEANFILES += *.cov *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda
|