Access to the secretDriver in a storage backend?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I'm working on a storage backend for libvirt which needs credentials to access the storage pool. I want to use the build in secret manager from libvirt, but it seems I do not have access to the secretDriver in a storage backend?

static int virStorageBackendRBDRefreshPool(virConnectPtr conn ATTRIBUTE_UNUSED, virStoragePoolObjPtr pool) {

	if (pool->def->source.auth.cephx.secret != NULL) {
		virSecretPtr secret;
secret = conn->secretDriver->lookupByUUID(conn, pool->def->source.auth.cephx.secret);
		virSecretFree(secret);
	}
	
	return 0;
}

It goes wrong at this point:
conn->secretDriver->lookupByUUID(conn,pool->def->source.auth.cephx.secret);

"error: dereferencing pointer to incomplete type"

Is the secretDriver available in a storage backend? In storage_backend.c I see that it should be available, correct?

I might be missing something here, so that's why I'm asking it here.

Thank you,

Wido

--
libvir-list mailing list
libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list


[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]