SystemVM agent fails TLS to management server
Personne n'a encore pris cette issue.
Évaluation
- Difficulté
- 4/5
- Temps estimé
- 3-5 jours
- Accessibilité débutants
- 65/100
- Type d'issue
- Bug
- Clarté
- Clairement spécifiée
- Activité
- Active
- Stack technique
- bash, java
- Domaine
- backend, cloud, infrastructure
Piste de recherche
Commencez par SetupCertificateCommand.java et CAManagerImpl.java pour retracer le payload du certificat, puis examinez la branche SetupCertificateCommand dans VmwareResource.java ainsi que scripts/util/keystore-cert-import. Reproduisez ou testez le dispatch SSH de VMware et vérifiez que les arguments CA parviennent au script, qu'une entrée CA manquante échoue avec un code de sortie différent de zéro ou utilise le fallback disque documenté, et que cloud.jks acquiert une trustedCertEntry.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Description
SystemVM agent fails TLS to management server — keystore-cert-import silently exits 0, leaving cloud.jks without trustedCertEntry (VMware, 4.22)
problem
After a fresh system VM (ConsoleProxy / SecondaryStorageVm) boots, its agent cannot complete the TLS handshake with the management server on port 8250. The console proxy never binds its public HTTP/HTTPS listener (browser gets ERR_CONNECTION_REFUSED on the public IP), the SSVM never registers as a host, and ACS keeps destroying and re-creating the system VMs — each replacement exhibits the same failure.
Root cause: on the VMware SSH dispatch path, SetupCertificateCommand invokes scripts/util/keystore-cert-import without positional arguments $7 (CACERT_FILE path) and $8 (CACERT content). The script then falls through to the elif [ ! -f "$CACERT_FILE" ] branch and calls a bare exit — which returns exit code 0. The management server receives SetupCertificateAnswer: result=true and believes the push succeeded. In reality the awk ... "$CACERT_FILE" and the subsequent keytool -import -trustcacerts -alias cloudca calls never run, so the CA certificate is never added to cloud.jks as a trustedCertEntry.
Evidence observed on the affected deployment.
Management-server log, every ~10s while the system VM is Running:
ERROR [c.c.u.n.Link] (AgentManager-SSLHandshakeHandler-1:[])
SSL error caught during unwrap data: (certificate_unknown)
Received fatal alert: certificate_unknown,
for local address=/<MS>:8250, remote address=/<SYSVM>:xxxxx.
The client may have invalid ca-certificates.
System VM /var/log/cloud.log, reciprocally:
ERROR [utils.nio.Link] SSL error caught during wrap data:
No trusted certificate found, for local address=/<SYSVM>:xxxxx,
remote address=/<MS>:8250.
Keystore inspection inside the VM (using the passphrase stored in agent.properties):
$ keytool -list -keystore /usr/local/cloud/systemvm/conf/cloud.jks \
-storepass "$(sed -n 's/^keystore.passphrase=//p' /usr/local/cloud/systemvm/conf/agent.properties)"
Your keystore contains 1 entry
cloud, <date>, PrivateKeyEntry, ...
Only the leaf PrivateKeyEntry is present — no trustedCertEntry for the root CA. The file /usr/local/cloud/systemvm/conf/cloud.ca.crt is correctly written on disk (byte-for-byte identical to the live MS root CA), but Java does not read loose PEM files on disk; it only trusts entries inside cloud.jks.
The relevant piece of scripts/util/keystore-cert-import in 4.22.0.0:
CACERT_FILE="$7"
CACERT=$(echo "$8" | tr '^' '\n' | tr '~' ' ')
...
# Import ca certs
if [ ! -z "${CACERT// }" ]; then
echo "$CACERT" > "$CACERT_FILE"
elif [ ! -f "$CACERT_FILE" ]; then
echo "Cannot find ca certificate file: $CACERT_FILE, exiting!"
exit # <-- bare exit -> exit 0 -> MS sees success
fi
awk '/-----BEGIN CERTIFICATE-----?/{n++}{print > "cloudca." n }' "$CACERT_FILE"
for caChain in $(ls cloudca.*); do
keytool -delete -noprompt -alias "$caChain" -keystore "$KS_FILE" -storepass "$KS_PASS" > /dev/null 2>&1 || true
keytool -import -noprompt -storepass "$KS_PASS" -trustcacerts -alias "$caChain" -file "$caChain" -keystore "$KS_FILE" > /dev/null 2>&1
done
Example arguments actually logged by MS for a v-26-VM SetupCertificateCommand dispatch (6 positional args, not 10):
Run command on VR: <SYSVM_IP>, script: keystore-cert-import with args:
/usr/local/cloud/systemvm/conf/agent.properties <KS_PASS>
/usr/local/cloud/systemvm/conf/cloud.jks
ssh
/usr/local/cloud/systemvm/conf/cloud.crt
"-----BEGIN~CERTIFICATE-----^...leaf cert content..."
$7 (CACERT_FILE) and $8 (CACERT content) are absent.
versions
- Apache CloudStack: 4.22.0.0 (package
cloudstack-management-4.22.0.0-shapeblue0, ShapeBlue RPM build) - Management server host OS: Rocky Linux 10.0
- Management server JDK: OpenJDK 21.0.10 (for
cloudstack-management.service) - SystemVM template:
systemvmtemplate-4.22.0-x86_64-vmware.ova(official 4.22.0 vSphere OVA, built Tue Oct 14 11:01:03 UTC 2025) - SystemVM guest OS: Debian 12 (bookworm), OpenJDK 17.0.16 (
keytoolas shipped in the image) - Hypervisor: VMware vSphere (ESXi cluster, 6 hosts)
- Primary storage: VMFS
- Secondary storage: NFS
- Network: VMware DVS, shared Public VLAN for system VMs, Basic zone networking
- CA framework:
ca.framework.provider.plugin=root,ca.plugin.root.auth.strictness=false
The steps to reproduce the bug
- Install Apache CloudStack 4.22.0.0 management server on a clean host (e.g. Rocky 10).
- Register a VMware zone and upload the official
systemvmtemplate-4.22.0-x86_64-vmware.ovaas the SystemVM template (typeSYSTEM). - Let ACS auto-provision the ConsoleProxy and SecondaryStorageVm for that zone.
- Wait ~1 minute after both system VMs reach
state=Running,power_state=PowerOn. - Observe in
management-server.logthatSetupCertificateCommandis dispatched via the VMware SSH path and returnsSetupCertificateAnswer: result=true. - Despite that "success",
management-server.logkeeps emittingSSL error caught during unwrap data: (certificate_unknown) Received fatal alert: certificate_unknown, ... remote address=/<SYSVM>:xxxxxevery ~10 s. - SSH into the system VM on port 3922 using the MS key (
/var/cloudstack/management/.ssh/id_rsa) and run:
Expected (buggy) output: the keystore contains exactly 1 entry (PASS=$(sed -n 's/^keystore.passphrase=//p' /usr/local/cloud/systemvm/conf/agent.properties) keytool -list -keystore /usr/local/cloud/systemvm/conf/cloud.jks -storepass "$PASS"cloud,PrivateKeyEntry) — notrustedCertEntry. - Verify
/usr/local/cloud/systemvm/conf/cloud.ca.crtexists on disk and matches the MS root CA (same serial asca.plugin.root.ca.certificatein theconfigurationtable), but it was never imported into the keystore. - Result: the agent never completes TLS, the host never reaches
Up, and the console proxy never opens its public HTTP listener — browser hitsERR_CONNECTION_REFUSEDon the system VM public IP.
What to do about it?
Two fixes, ideally both.
A. Primary — ensure the VMware SSH dispatch of SetupCertificateCommand passes the CA args.
The dispatch path that invokes scripts/util/keystore-cert-import needs to also pass positional arguments $7 (/usr/local/cloud/systemvm/conf/cloud.ca.crt) and $8 (CA certificate content, same ^/~-encoded form used for the leaf cert in $6). The CA material is already available in the Certificate object used by CAManagerImpl (see server/src/main/java/org/apache/cloudstack/ca/CAManagerImpl.java around the SetupCertificateCommand cmd = new SetupCertificateCommand(certificate) call) and in ca.plugin.root.ca.certificate in the configuration table — it just isn't being carried into the script invocation on the VMware SSH path.
Relevant files:
core/src/main/java/org/apache/cloudstack/ca/SetupCertificateCommand.java— command payload; may need to explicitly carry the CA certificate to the VR path.server/src/main/java/org/apache/cloudstack/ca/CAManagerImpl.java— where the command is built; has theCertificateobject with CA material.plugins/hypervisors/vmware/src/main/java/com/cloud/hypervisor/vmware/resource/VmwareResource.java— VMwareexecuteInVRdispatch; check the branch that handlesSetupCertificateCommandand routes it tokeystore-cert-import.
B. Secondary — make scripts/util/keystore-cert-import fail loud, with a safe disk fallback.
Current (buggy) behaviour:
elif [ ! -f "$CACERT_FILE" ]; then
echo "Cannot find ca certificate file: $CACERT_FILE, exiting!"
exit
fi
Suggested patch:
- elif [ ! -f "$CACERT_FILE" ]; then
- echo "Cannot find ca certificate file: $CACERT_FILE, exiting!"
- exit
- fi
+ elif [ ! -f "$CACERT_FILE" ]; then
+ # Fall back to the CA cert that cloud-early-config placed on disk.
+ if [ -f /usr/local/cloud/systemvm/conf/cloud.ca.crt ]; then
+ CACERT_FILE=/usr/local/cloud/systemvm/conf/cloud.ca.crt
+ else
+ echo "Cannot find ca certificate file; neither arg \$7 nor /usr/local/cloud/systemvm/conf/cloud.ca.crt available, aborting!" >&2
+ exit 1
+ fi
+ fi
A non-zero exit lets the management server see the failure (today, SetupCertificateAnswer.result=true completely masks it). The disk fallback is defense-in-depth against future dispatch-side regressions of this same shape.
Workaround currently in use on the affected deployment (for anyone hitting this before a fix is merged):
For each system VM, extract the existing leaf key+cert with openssl pkcs12, rebuild the PKCS12 with openssl pkcs12 -export ... -certfile cloud.ca.crt, then keytool -import -noprompt -trustcacerts -alias cloudca -file cloud.ca.crt -keystore cloud.jks -storepass <agent.properties passphrase>, then systemctl restart cloud. Note: the keytool shipped in the 4.22 systemvm template (OpenJDK 17.0.16, Debian 12) rejected -import of both PEM and DER forms of the CA with CertificateParsingException: signed overrun, bytes = 115, so the rebuilt keystore had to be generated on the management server (OpenJDK 21) and copied back. That broken keytool -import behaviour on the systemvm image may deserve a separate issue.
- Langage dominant
- Java
- Étoiles
- 3.1k
- Forks
- 1.4k
- Merge moyen
- 6 j 20 h
- PR mergées (30 j)
- 27
Guide de contribution
Ouvrir le guide de contribution
Par où commencer
- Lisez l'issue en entier, puis le guide de contribution du projet.
- Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
- Forkez le dépôt et travaillez sur une branche.
- Ouvrez une pull request qui référence le numéro de l'issue.
Autres issues de apache/cloudstack
-
bug
Difficulté 1/5 Moins d'une heure Accessibilité débutants 90/100
apache/cloudstack#14222 ·
-
create-kubernetes-binaries-iso.sh builds the ISO without setting a volume ID on EL8 based os's Ouvertebug component:kubernetes
Difficulté 1/5 Moins d'une heure Accessibilité débutants 88/100
apache/cloudstack#14180 ·
-
bug component:projects component:UI
Difficulté 1/5 Moins d'une heure Accessibilité débutants 88/100
apache/cloudstack#14070 · 5 commentaires ·
-
component:backup
Difficulté 2/5 1-3 heures Accessibilité débutants 76/100
apache/cloudstack#14013 ·
-
KVM agent fails to connect to Ceph RBD storage pool after upgrading Ceph client to Tentacle 20.2.4 Ouvertebug component:ceph
Difficulté 2/5 1-3 heures Accessibilité débutants 78/100
apache/cloudstack#13989 · 3 commentaires ·
Toutes les issues de apache/cloudstack
Issues similaires
-
Difficulté 2/5 1-3 heures Accessibilité débutants 65/100
-
Difficulté 1/5 Moins d'une heure Accessibilité débutants 88/100
checkstyle/test-configs#263 ·
-
[BUG]茶杯方块在取茶时会引发崩溃 Ouverte
Difficulté 2/5 1-3 heures Accessibilité débutants 88/100
-
Cannot differ own consent and managed consents in My Consents view and detailed consent view. Ouverte1.0.0-alpha2 Type/Improvement
Difficulté 2/5 1-3 heures Accessibilité débutants 68/100
wso2/dpdp-accelerator#272 ·
-
bug
Difficulté 2/5 1-3 heures Accessibilité débutants 88/100
apache/rocketmq-dashboard#4860 · 1 commentaire ·