2 * QEMU crypto secret support
4 * Copyright (c) 2015 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "crypto/secret.h"
23 #include "qapi/error.h"
24 #include "qom/object_interfaces.h"
25 #include "qemu/module.h"
30 qcrypto_secret_load_data(QCryptoSecretCommon *sec_common,
39 QCryptoSecret *secret = QCRYPTO_SECRET(sec_common);
47 "'file' and 'data' are mutually exclusive");
50 if (!g_file_get_contents(secret->file, &data, &length, &gerr)) {
52 "Unable to read %s: %s",
53 secret->file, gerr->message);
57 *output = (uint8_t *)data;
59 } else if (secret->data) {
60 *outputlen = strlen(secret->data);
61 *output = (uint8_t *)g_strdup(secret->data);
63 error_setg(errp, "Either 'file' or 'data' must be provided");
69 qcrypto_secret_prop_set_data(Object *obj,
73 QCryptoSecret *secret = QCRYPTO_SECRET(obj);
76 secret->data = g_strdup(value);
81 qcrypto_secret_prop_get_data(Object *obj,
84 QCryptoSecret *secret = QCRYPTO_SECRET(obj);
85 return g_strdup(secret->data);
90 qcrypto_secret_prop_set_file(Object *obj,
94 QCryptoSecret *secret = QCRYPTO_SECRET(obj);
97 secret->file = g_strdup(value);
102 qcrypto_secret_prop_get_file(Object *obj,
105 QCryptoSecret *secret = QCRYPTO_SECRET(obj);
106 return g_strdup(secret->file);
111 qcrypto_secret_finalize(Object *obj)
113 QCryptoSecret *secret = QCRYPTO_SECRET(obj);
115 g_free(secret->file);
116 g_free(secret->data);
120 qcrypto_secret_class_init(ObjectClass *oc, void *data)
122 QCryptoSecretCommonClass *sic = QCRYPTO_SECRET_COMMON_CLASS(oc);
123 sic->load_data = qcrypto_secret_load_data;
125 object_class_property_add_str(oc, "data",
126 qcrypto_secret_prop_get_data,
127 qcrypto_secret_prop_set_data);
128 object_class_property_add_str(oc, "file",
129 qcrypto_secret_prop_get_file,
130 qcrypto_secret_prop_set_file);
134 static const TypeInfo qcrypto_secret_info = {
135 .parent = TYPE_QCRYPTO_SECRET_COMMON,
136 .name = TYPE_QCRYPTO_SECRET,
137 .instance_size = sizeof(QCryptoSecret),
138 .instance_finalize = qcrypto_secret_finalize,
139 .class_size = sizeof(QCryptoSecretClass),
140 .class_init = qcrypto_secret_class_init,
145 qcrypto_secret_register_types(void)
147 type_register_static(&qcrypto_secret_info);
151 type_init(qcrypto_secret_register_types);