1. 24 11月, 2014 2 次提交
    • P
      qemu: process: Refresh virtio channel guest state when connecting to mon · 21c676c2
      Peter Krempa 提交于
      Use data provided by "query-chardev" to refresh the guest frontend state
      of virtio channels.
      21c676c2
    • P
      qemu: chardev: Extract more information about character devices · 4d7eb903
      Peter Krempa 提交于
      Improve the monitor function to also retrieve the guest state of
      character device (if provided) so that we can refresh the state of
      virtio-serial channels and perhaps react to changes in the state in
      future patches.
      
      This patch changes the returned data from qemuMonitorGetChardevInfo to
      return a structure containing the pty path and the state for all the
      character devices.
      
      The change to the testsuite makes sure that the data is parsed
      correctly.
      4d7eb903
  2. 22 11月, 2014 5 次提交
    • J
      libxl: destroy domain in migration finish phase on failure · 42874fa4
      Jim Fehlig 提交于
      This patch contains three domain cleanup improvements in the migration
      finish phase, ensuring a domain is properly disposed when a failure is
      detected or the migration is cancelled.
      
      The check for virDomainObjIsActive is moved to libxlDomainMigrationFinish,
      where cleanup can occur if migration failed and the domain is inactive.
      
      The 'cleanup' label was missplaced in libxlDomainMigrationFinish, causing
      a migrated domain to remain in the event of an error or cancelled migration.
      
      In cleanup, the domain was not removed from the driver's list of domains.
      Signed-off-by: NJim Fehlig <jfehlig@suse.com>
      42874fa4
    • J
      libxl: start domain paused on migration dst · 60386825
      Jim Fehlig 提交于
      During the perform phase of migration, the domain is started on
      the dst host in a running state if VIR_MIGRATE_PAUSED flag is not
      specified.  In the finish phase, the domain is also unpaused if
      VIR_MIGRATE_PAUSED flag is unset.  I've noticed this second unpause
      fails if the domain was already unpaused following the perform phase.
      
      This patch changes the perform phase to always start the domain
      paused, and defers unpausing, if requested, to the finish phase.
      Unpausing should occur in the finish phase anyhow, where the domain
      can be properly destroyed if the perform phase fails and migration
      is cancelled.
      Signed-off-by: NJim Fehlig <jfehlig@suse.com>
      60386825
    • J
      libxl: acquire job in migration finish phase · a1f38951
      Jim Fehlig 提交于
      Moving data reception of the perform phase of migration to a
      thread introduces a race with the finish phase, where checking
      if the domain is active races with the thread finishing the
      perform phase.  The race is easily solved by acquiring a job in
      the finish phase, which must wait for the perform phase job to
      complete.
      
      While wrapping the finish phase in a job, noticed the virDomainObj
      was being unlocked in a callee - libxlDomainMigrationFinish.  Move
      the unlocking to libxlDomainMigrateFinish3Params, where the lock
      is acquired.
      Signed-off-by: NJim Fehlig <jfehlig@suse.com>
      a1f38951
    • J
      libxl: Receive migration data in a thread · cb88d433
      Jim Fehlig 提交于
      The libxl driver receives migration data within an IO callback invoked
      by the event loop, effectively disabling the event loop while migration
      occurs.
      
      This patch moves receving of the migration data to a thread.  The
      incoming connection is still accepted in the IO callback, but control
      is immediately returned to the event loop after spawning the thread.
      Signed-off-by: NJim Fehlig <jfehlig@suse.com>
      cb88d433
    • I
      libxl: Allow libxl to find pygrub binary. · d70a51d5
      Ian Campbell 提交于
      Specifying an explicit path to pygrub (e.g. BINDIR "/pygrub") only works if
      Xen and libvirt happen to be installed to the same prefix. A more flexible
      approach is to simply specify "pygrub" which will cause libxl to use the
      correct path which it knows (since it is built with the same prefix as pygrub).
      
      This is particular problematic in the Debian packaging, since the Debian Xen
      package relocates pygrub into a libexec dir, however I think this change makes
      sense upstream.
      Signed-off-by: NIan Campbell <ian.campbell@citrix.com>
      Signed-off-by: NJim Fehlig <jfehlig@suse.com>
      d70a51d5
  3. 21 11月, 2014 21 次提交
  4. 20 11月, 2014 12 次提交
    • E
      build: fix build when not using dbus · be90aa00
      Eric Blake 提交于
      Commit c0e70221 breaks on a machine that lacks dbus headers:
      
      In file included from util/virdbus.c:24:0:
      util/virdbuspriv.h:31:3: error: unknown type name 'dbus_int16_t'
      
      * src/util/virdbuspriv.h (DBusBasicValue): Only provide fallback
      when dbus is compiled.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      be90aa00
    • E
      build: avoid 32-bit failure on older gcc · 0d516839
      Eric Blake 提交于
      On 32-bit platforms with old gcc (hello RHEL 5 gcc 4.1.2), the
      build fails with:
      virsh-domain.c: In function 'cmdBlockCopy':
      virsh-domain.c:2172: warning: comparison is always false due to limited range of data type
      
      Adjust the code to silence the warning.
      
      * tools/virsh-domain.c (cmdBlockCopy): Pacify RHEL 5 gcc.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      0d516839
    • J
      storage: Add thread to refresh for createVport · 512b8747
      John Ferlan 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1152382
      
      When libvirt create's the vport (VPORT_CREATE) for the vHBA, there isn't
      enough "time" between the creation and the running of the following
      backend->refreshPool after a backend->startPool in order to find the LU's.
      Population of LU's happens asynchronously when udevEventHandleCallback
      discovers the "new" vHBA port.  Creation of the infrastructure by udev
      is an iterative process creating and discovering actual storage devices and
      adjusting the environment.
      
      Because of the time it takes to discover and set things up, the backend
      refreshPool call done after the startPool call will generally fail to
      find any devices. This leaves the newly started pool appear empty when
      querying via 'vol-list' after startup. The "workaround" has always been
      to run pool-refresh after startup (or any time thereafter) in order to
      find the LU's. Depending on how quickly run after startup, this too may
      not find any LUs in the pool. Eventually though given enough time and
      retries it will find something if LU's exist for the vHBA.
      
      This patch adds a thread to be executed after the VPORT_CREATE which will
      attempt to find the LU's without requiring the external run of refresh-pool.
      It does this by waiting for 5 seconds and searching for the LU's. If any
      are found, then the thread completes; otherwise, it will retry once more
      in another 5 seconds.  If none are found in that second pass, the thread
      gives up.
      
      Things learned while investigating this... No need to try and fill the
      pool too quickly or too many times. Over the course of creation, the udev
      code may 'add', 'change', and 'delete' the same device. So if the refresh
      code runs and finds something, it may display it only to have a subsequent
      refresh appear to "lose" the device. The udev processing doesn't seem to
      have a way to indicate that it's all done with the creation processing of a
      newly found vHBA. Only the Lone Ranger has silver bullets to fix everything.
      512b8747
    • J
      storage: Fix issue finding LU's when block doesn't exist · 20870417
      John Ferlan 提交于
      Fix a problem in the getBlockDevice and processLU where retval initialized
      to zero causing some failures to erroneously continue through to the
      virStorageBackendSCSINewLun with an attempt to find a path for "/dev/(null)".
      This would fail approximately 10 seconds later with debug message:
      
      virStorageBackendSCSINewLun:203 :
           No stable path found for '/dev/(null)' in '/dev/disk/by-path'
      
      The root cause of the issue is for many /sys/bus/scsi/devices/<lun path>
      there is no "block*" device found for the vHBA's, where "<lun path>" are
      the various paths created for the vHBA, such as "17:0:0:0", "17:0:1:0",
      "17:0:2:0", "17:0:3:0", etc.  If the block device isn't found, then the
      directory should just be ignored rather than attempting to process it.
      
      The bug was that in getBlockDevice the assumption was "block" would exist
      and either getNewStyleBlockDevice or getOldStyleBlockDevice would fill in
      @block_device. However, if 'block*' doesn't exist, then the code returned
      NULL for block_device *and* a good (zero) retval value.  This caused the
      processLU code to attempt the virStorageBackendSCSINewLun which failed
      "at some point in time" in the future.
      
      After this change - on test system the refresh-pool didn't have a noticable
      pause of about 20 seconds - it completed within a second since no longer
      was there an attempt/need to find "/dev/(null)".
      
      Additionally, the virStorageBackendSCSIFindLU's shouldn't be declaring
      found unless the processLU actually returns success. This will be
      important in the followup patch which relies on whether a LU was found.
      20870417
    • N
      docs: Remove references to unused libvirt-libvirt.html · 0798efcc
      Nehal J Wani 提交于
      The libvirt-libvirt.html file is no longer generated so
      should not be referenced by the Makefile.am
      0798efcc
    • E
      build: fix build with older dbus headers · c0e70221
      Eric Blake 提交于
      Compilation on a RHEL 5 host failed, due to the older dbus headers
      present on that machine, and triggered by commit 2aa167ca:
      
      util/virdbus.c: In function 'virDBusMessageIterDecode':
      util/virdbus.c:952: error: 'DBusBasicValue' undeclared (first use in this function)
      
      * m4/virt-dbus.m4 (LIBVIRT_CHECK_DBUS): Check for DBusBasicValue.
      * src/util/virdbuspriv.h (DBusBasicValue): Provide fallback.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      c0e70221
    • G
      rpc: do not fail if the pid of the connecting process is not set · 225f4833
      Giuseppe Scrivano 提交于
      getsockopt(sock->fd, SOL_SOCKET, SO_PEERCRED, ...) sets the pid to 0
      when the process that opens the connection is in another container.
      Signed-off-by: NGiuseppe Scrivano <gscrivan@redhat.com>
      225f4833
    • E
      util: don't log failure when older iptables lacks -w · 5bc033e2
      Eric Blake 提交于
      Commit dc33e6e4 caused older platforms like Fedora 20 to emit
      scary log messages at startup:
      
      2014-11-19 23:12:58.800+0000: 28906: error : virCommandWait:2532 : internal error: Child process (/usr/sbin/iptables -w -L -n) unexpected exit status 2: iptables v1.4.19.1: unknown option "-w"
      Try `iptables -h' or 'iptables --help' for more information.
      
      Since we are probing and expect to handle the case where -w is not
      supported, we should not let virCommand log it as an error.
      
      * src/util/virfirewall.c (virFirewallCheckUpdateLock): Handle
      non-zero status ourselves.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      5bc033e2
    • J
      qemu: Really fix crash in tunnelled migration · 800454e4
      Jiri Denemark 提交于
      Oops, I forgot to squash one more instance of the same check in the
      previous commit (v1.2.10-144-g52691f99).
      
      https://bugzilla.redhat.com/show_bug.cgi?id=1147331Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      800454e4
    • E
      virsh: Fix msg: blockjob is aborted from another client · 8312d44d
      Erik Skultety 提交于
      When a block{pull, copy, commit} is aborted via keyboard interrupt,
      the job is properly canceled followed by proper error message.
      However, when the job receives an abort from another client connected
      to the same domain, the error message incorrectly indicates that
      a blockjob has been finished successfully, though the abort request
      took effect. This patch introduces a new blockjob abort handler, which
      is registered when the client calls block{copy,commit,pull} routine,
      providing its caller the status of the finished blockjob.
      
      Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1135442
      8312d44d
    • J
      qemu: Fix crash in tunnelled migration · 52691f99
      Jiri Denemark 提交于
      Any attempt to start a tunnelled migration with libvirtd that supports
      RDMA migration (specifically commit v1.2.8-226-ged22a474) crashes
      libvirtd on the destination host.
      
      The crash is inevitable because qemuMigrationPrepareAny is always called
      with NULL protocol in case of tunnelled migration.
      
      https://bugzilla.redhat.com/show_bug.cgi?id=1147331Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      52691f99
    • E
      maint: use portable shell · aca0ae1f
      Eric Blake 提交于
      Reported in https://bugzilla.redhat.com/show_bug.cgi?id=1165827;
      dash complains:
      
      checking for pkcheck... /usr/bin/pkcheck
      checking whether pkcheck supports uid value... yes
      ./configure: 63906: test: xno: unexpected operator
      checking for dtrace... no
      
      * configure.ac: Use '=' not '==' in test.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      aca0ae1f