Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU crypto TLS credential support |
| 3 | * |
| 4 | * Copyright (c) 2015 Red Hat, Inc. |
| 5 | * |
| 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 |
Thomas Huth | b7cbb87 | 2019-02-13 16:54:59 +0100 | [diff] [blame] | 9 | * version 2.1 of the License, or (at your option) any later version. |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 10 | * |
| 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. |
| 15 | * |
| 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/>. |
| 18 | * |
| 19 | */ |
| 20 | |
Markus Armbruster | 121d071 | 2016-06-29 10:12:57 +0200 | [diff] [blame] | 21 | #ifndef QCRYPTO_TLSCREDS_H |
| 22 | #define QCRYPTO_TLSCREDS_H |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 23 | |
Markus Armbruster | 9af2398 | 2018-02-11 10:36:01 +0100 | [diff] [blame] | 24 | #include "qapi/qapi-types-crypto.h" |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 25 | #include "qom/object.h" |
| 26 | |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 27 | #define TYPE_QCRYPTO_TLS_CREDS "tls-creds" |
Eduardo Habkost | db1015e | 2020-09-03 16:43:22 -0400 | [diff] [blame] | 28 | typedef struct QCryptoTLSCreds QCryptoTLSCreds; |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 29 | typedef struct QCryptoTLSCredsClass QCryptoTLSCredsClass; |
Zihao Chang | a29acc9 | 2021-03-16 15:58:43 +0800 | [diff] [blame] | 30 | DECLARE_OBJ_CHECKERS(QCryptoTLSCreds, QCryptoTLSCredsClass, QCRYPTO_TLS_CREDS, |
| 31 | TYPE_QCRYPTO_TLS_CREDS) |
| 32 | |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 33 | |
| 34 | #define QCRYPTO_TLS_CREDS_DH_PARAMS "dh-params.pem" |
| 35 | |
| 36 | |
Zihao Chang | a29acc9 | 2021-03-16 15:58:43 +0800 | [diff] [blame] | 37 | typedef bool (*CryptoTLSCredsReload)(QCryptoTLSCreds *, Error **); |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 38 | /** |
| 39 | * QCryptoTLSCreds: |
| 40 | * |
| 41 | * The QCryptoTLSCreds object is an abstract base for different |
| 42 | * types of TLS handshake credentials. Most commonly the |
| 43 | * QCryptoTLSCredsX509 subclass will be used to provide x509 |
| 44 | * certificate credentials. |
| 45 | */ |
| 46 | |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 47 | struct QCryptoTLSCredsClass { |
| 48 | ObjectClass parent_class; |
Zihao Chang | a29acc9 | 2021-03-16 15:58:43 +0800 | [diff] [blame] | 49 | CryptoTLSCredsReload reload; |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
Philippe Mathieu-Daudé | e9ac680 | 2021-06-28 18:09:08 +0200 | [diff] [blame] | 52 | /** |
| 53 | * qcrypto_tls_creds_check_endpoint: |
| 54 | * @creds: pointer to a TLS credentials object |
| 55 | * @endpoint: type of network endpoint that will be using the credentials |
| 56 | * @errp: pointer to a NULL-initialized error object |
| 57 | * |
| 58 | * Check whether the credentials is setup according to |
| 59 | * the type of @endpoint argument. |
| 60 | * |
| 61 | * Returns true if the credentials is setup for the endpoint, false otherwise |
| 62 | */ |
| 63 | bool qcrypto_tls_creds_check_endpoint(QCryptoTLSCreds *creds, |
| 64 | QCryptoTLSCredsEndpoint endpoint, |
| 65 | Error **errp); |
Daniel P. Berrange | a090187 | 2015-03-13 17:39:26 +0000 | [diff] [blame] | 66 | |
Markus Armbruster | 121d071 | 2016-06-29 10:12:57 +0200 | [diff] [blame] | 67 | #endif /* QCRYPTO_TLSCREDS_H */ |