1. 24 7月, 2013 8 次提交
  2. 23 7月, 2013 16 次提交
    • J
      Adjust 'ceph' authentication secret usage for rbd pool. · c2257d2e
      John Ferlan 提交于
      Update virStorageBackendRBDOpenRADOSConn() to use the internal API to the
      secret driver in order to get the secret value instead of the external
      virSecretGetValue() path. Without the flag VIR_SECRET_GET_VALUE_INTERNAL_CALL
      there is no way to get the value of private secret.
      
      This also requires ensuring there is a connection which wasn't true for
      for the refreshPool() path calls from storageDriverAutostart() prior to
      adding support for the connection to a qemu driver. It seems calls to
      virSecretLookupByUUIDString() and virSecretLookupByUsage() from the
      refreshPool() path would have failed with no way to find the secret - that is
      theoretically speaking since the 'conn' was NULL the failure would have been
      "failed to find the secret".
      c2257d2e
    • J
      storage: Support "chap" authentication for iscsi pool · 249409e7
      John Ferlan 提交于
      Although the XML for CHAP authentication with plain "password"
      was introduced long ago, the function was never implemented. This
      patch replaces the login/password mechanism by following the
      'ceph' (or RBD) model of using a 'username' with a 'secret' which
      has the authentication information.
      
      This patch performs the authentication during startPool() processing
      of pools with an authType of VIR_STORAGE_POOL_AUTH_CHAP specified
      for iSCSI pools.
      
      There are two types of CHAP configurations supported for iSCSI
      authentication:
      
        * Initiator Authentication
            Forward, one-way; The initiator is authenticated by the target.
      
        * Target Authentication
            Reverse, Bi-directional, mutual, two-way; The target is authenticated
            by the initiator; This method also requires Initiator Authentication
      
      This only supports the "Initiator Authentication". (I don't have any
      enterprise iSCSI env for testing, only have a iSCSI target setup with
      tgtd, which doesn't support "Target Authentication").
      
      "Discovery authentication" is not supported by tgt yet too. So this only
      setup the session authentication by executing 3 iscsiadm commands, E.g:
      
      % iscsiadm -m node --target "iqn.2013-05.test:iscsi.foo" --name \
        "node.session.auth.authmethod" -v "CHAP" --op update
      
      % iscsiadm -m node --target "iqn.2013-05.test:iscsi.foo" --name \
        "node.session.auth.username" -v "Jim" --op update
      
      % iscsiadm -m node --target "iqn.2013-05.test:iscsi.foo" --name \
        "node.session.auth.password" -v "Jimsecret" --op update
      249409e7
    • J
      qemu_common: Create qemuBuildVolumeString() to process storage pool · 200ed39d
      John Ferlan 提交于
      Split out into its own separate routine
      200ed39d
    • J
      qemu: Create a common qemuGetSecretString · 7fa4a88a
      John Ferlan 提交于
      Make the secret fetching code common for qemuBuildRBDString() and
      qemuBuildDriveURIString() using the virDomainDiskDef.
      7fa4a88a
    • J
      qemu: Add source pool auth info to virDomainDiskDef for iSCSI · b83556d8
      John Ferlan 提交于
      During qemuTranslateDiskSourcePool() execution, if the srcpool has been
      defined with authentication information, then for iSCSI pools copy the
      authentication and host information to virDomainDiskDef.
      b83556d8
    • P
      qemu: Take error path if acquiring of job fails in qemuDomainSaveInternal · 29c2208c
      Peter Krempa 提交于
      Due to a goto statement missed when refactoring in 2771f8b7
      when acquiring of a domain job failed the error path was not taken. This
      resulted into a crash afterwards as an extra reference was removed from a
      domain object leading to it being freed. An attempt to list the domains
      leaded to a crash of the daemon afterwards.
      
      https://bugzilla.redhat.com/show_bug.cgi?id=928672
      29c2208c
    • L
      build: fix make rpm failure · e4acc1e9
      Laine Stump 提交于
      util/virdbuspriv.h needed to be added to UTIL_SOURCES in the makefile.
      e4acc1e9
    • R
      bridge driver: use more general function names · 73cf5b96
      Roman Bogorodskiy 提交于
      Continue preparation for extracting platform-specific
      parts from bridge_driver: s/Iptables/Firewall/ for
      firewall related function names.
      73cf5b96
    • R
      Add virDBusMessage(Encode,Decode) stubs · ac26b2b0
      Roman Bogorodskiy 提交于
      Commit 834c9c94 introduced virDBusMessageEncode and
      virDBusMessageDecode functions, however corresponding stubs
      were not added to !WITH_DBUS section, therefore 'make check'
      started to fail when compiled w/out dbus support like that:
      
      Expected symbol virDBusMessageDecode is not in ELF library
      ac26b2b0
    • G
      virsh: fix change-media bug on disk block type · 7729a168
      Guannan Ren 提交于
      Resolves:https://bugzilla.redhat.com/show_bug.cgi?id=923053
      When cdrom is block type, the virsh change-media failed to insert
      source info because virsh uses "<source block='/dev/sdb'/>" while
      the correct name of the attribute for block disks is "dev".
      7729a168
    • O
      qemu: Translate the volume type disk source before cgroup setting · b6c162d3
      Osier Yang 提交于
      The translation must be done before both of cgroup and security
      setting, otherwise since the disk source is not translated yet,
      it might be skipped on cgroup and security setting.
      b6c162d3
    • O
      conf: Ignore the volume type disk if its mode is "direct" · 98584358
      Osier Yang 提交于
      virDomainDiskDefForeachPath is not only used by the security
      setting helpers, also used by cgroup setting helpers, so this
      is to ignore the volume type disk with mode="direct" for cgroup
      setting.
      98584358
    • J
      qemu: Translate the iscsi pool/volume disk source · 1b4eaa61
      John Ferlan 提交于
      The difference with already supported pool types (dir, fs, block)
      is: there are two modes for iscsi pool (or network pools in future),
      one can specify it either to use the volume target path (the path
      showed up on host) with mode='host', or to use the remote URI qemu
      supports (e.g. file=iscsi://example.org:6000/iqn.1992-01.com.example/1)
      with mode='direct'.
      
      For 'host' mode, it copies the volume target path into disk->src. For
      'direct' mode, the corresponding info in the *one* pool source host def
      is copied to disk->hosts[0].
      1b4eaa61
    • J
      conf: Introduce virDomainDiskSourceIsBlockType · 1f49b05a
      John Ferlan 提交于
      Introduce a new helper to check if the disk source is of block type
      1f49b05a
    • J
      conf: Introduce new XML tag "mode" for disk source · c00b2f0d
      John Ferlan 提交于
      There are two ways to use a iSCSI LUN as disk source for qemu.
      
       * The LUN's path as it shows up on host, e.g.
         /dev/disk/by-path/ip-$ip:3260-iscsi-$iqn-fc18:iscsi.iscsi0-lun-1
      
       * The libiscsi URI from the storage pool source element host attribute, e.g.
         iscsi://demo.org:6000/iqn.1992-01.com.example/1
      
      For a "volume" type disk, if the specified "pool" is of iscsi
      type, we should support to use the LUN in either of above 2 ways.
      That's why to introduce a new XML tag "mode" for the disk source
      (libvirt should support iscsi pool with libiscsi, but it's another
      new feature, which should be done later).
      
      The "mode" can be either of "host" or "direct". Use "host" to indicate
      use of the LUN with the path as it shows up on host. Use "direct" to
      indicate to use it with the source pool host URI (future patches may support
      to use network type libvirt storage too, e.g. Ceph)
      c00b2f0d
    • J
      storage_iscsi: Reflect the default target port · 5c62d5ea
      John Ferlan 提交于
      Make sure default iSCSI target is 3260.
      5c62d5ea
  3. 22 7月, 2013 16 次提交