91 lines
3.1 KiB
Diff
91 lines
3.1 KiB
Diff
From 899a3adeded6a120a9d8f1298af482247f4696fa Mon Sep 17 00:00:00 2001
|
|
Message-Id: <899a3adeded6a120a9d8f1298af482247f4696fa@dist-git>
|
|
From: Peter Krempa <pkrempa@redhat.com>
|
|
Date: Mon, 16 Mar 2020 22:12:03 +0100
|
|
Subject: [PATCH] qemuDomainSecretStorageSourcePrepare: Setup secret for http
|
|
cookies
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
QEMU's curl driver requires the cookies concatenated and allows themi to
|
|
be passed in via a secret. Prepare the value for the secret and encrypt
|
|
it.
|
|
|
|
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
(cherry picked from commit 877cd358873982d4d6a36b7e65a8605c663e5765)
|
|
|
|
Conflicts:
|
|
src/qemu/qemu_domain.c:
|
|
Refactor to virBufferTrim not backported.
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1804750
|
|
Message-Id: <e61490666a540093eac6c219c07a12c6b7d4c72a.1584391727.git.pkrempa@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
---
|
|
src/qemu/qemu_domain.c | 33 ++++++++++++++++++++++++++++++++-
|
|
1 file changed, 32 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
|
|
index 9391bc37e0..cc47e7a2f0 100644
|
|
--- a/src/qemu/qemu_domain.c
|
|
+++ b/src/qemu/qemu_domain.c
|
|
@@ -1740,6 +1740,30 @@ qemuDomainDiskHasEncryptionSecret(virStorageSourcePtr src)
|
|
}
|
|
|
|
|
|
+static qemuDomainSecretInfoPtr
|
|
+qemuDomainSecretStorageSourcePrepareCookies(qemuDomainObjPrivatePtr priv,
|
|
+ virStorageSourcePtr src,
|
|
+ const char *aliasprotocol)
|
|
+{
|
|
+ g_autofree char *secretalias = qemuAliasForSecret(aliasprotocol, "httpcookie");
|
|
+ g_autofree char *cookies = NULL;
|
|
+ g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
|
+ size_t i;
|
|
+
|
|
+ for (i = 0; i < src->ncookies; i++) {
|
|
+ virStorageNetCookieDefPtr cookie = src->cookies[i];
|
|
+
|
|
+ virBufferAsprintf(&buf, "%s=%s; ", cookie->name, cookie->value);
|
|
+ }
|
|
+
|
|
+ virBufferTrim(&buf, "; ", -1);
|
|
+ cookies = virBufferContentAndReset(&buf);
|
|
+
|
|
+ return qemuDomainSecretAESSetup(priv, secretalias, NULL,
|
|
+ (uint8_t *) cookies, strlen(cookies));
|
|
+}
|
|
+
|
|
+
|
|
/**
|
|
* qemuDomainSecretStorageSourcePrepare:
|
|
* @priv: domain private object
|
|
@@ -1765,7 +1789,7 @@ qemuDomainSecretStorageSourcePrepare(qemuDomainObjPrivatePtr priv,
|
|
bool hasAuth = qemuDomainStorageSourceHasAuth(src);
|
|
bool hasEnc = qemuDomainDiskHasEncryptionSecret(src);
|
|
|
|
- if (!hasAuth && !hasEnc)
|
|
+ if (!hasAuth && !hasEnc && src->ncookies == 0)
|
|
return 0;
|
|
|
|
if (!(src->privateData = qemuDomainStorageSourcePrivateNew()))
|
|
@@ -1805,6 +1829,13 @@ qemuDomainSecretStorageSourcePrepare(qemuDomainObjPrivatePtr priv,
|
|
return -1;
|
|
}
|
|
|
|
+ if (src->ncookies &&
|
|
+ virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_BLOCKDEV) &&
|
|
+ !(srcPriv->httpcookie = qemuDomainSecretStorageSourcePrepareCookies(priv,
|
|
+ src,
|
|
+ aliasprotocol)))
|
|
+ return -1;
|
|
+
|
|
return 0;
|
|
}
|
|
|
|
--
|
|
2.25.1
|
|
|