mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 9af2398977
			
		
	
	
		9af2398977
		
	
	
	
	
		
			
			In my "build everything" tree, a change to the types in qapi-schema.json triggers a recompile of about 4800 out of 5100 objects. The previous commit split up qmp-commands.h, qmp-event.h, qmp-visit.h, qapi-types.h. Each of these headers still includes all its shards. Reduce compile time by including just the shards we actually need. To illustrate the benefits: adding a type to qapi/migration.json now recompiles some 2300 instead of 4800 objects. The next commit will improve it further. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20180211093607.27351-24-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> [eblake: rebase to master] Signed-off-by: Eric Blake <eblake@redhat.com>
		
			
				
	
	
		
			193 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			193 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU Crypto hash algorithms
 | |
|  *
 | |
|  * Copyright (c) 2015 Red Hat, Inc.
 | |
|  *
 | |
|  * This library is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Lesser General Public
 | |
|  * License as published by the Free Software Foundation; either
 | |
|  * version 2 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * This library is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
|  * Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public
 | |
|  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef QCRYPTO_HASH_H
 | |
| #define QCRYPTO_HASH_H
 | |
| 
 | |
| #include "qapi/qapi-types-crypto.h"
 | |
| 
 | |
| /* See also "QCryptoHashAlgorithm" defined in qapi/crypto.json */
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_supports:
 | |
|  * @alg: the hash algorithm
 | |
|  *
 | |
|  * Determine if @alg hash algorithm is supported by the
 | |
|  * current configured build.
 | |
|  *
 | |
|  * Returns: true if the algorithm is supported, false otherwise
 | |
|  */
 | |
| gboolean qcrypto_hash_supports(QCryptoHashAlgorithm alg);
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_digest_len:
 | |
|  * @alg: the hash algorithm
 | |
|  *
 | |
|  * Determine the size of the hash digest in bytes
 | |
|  *
 | |
|  * Returns: the digest length in bytes
 | |
|  */
 | |
| size_t qcrypto_hash_digest_len(QCryptoHashAlgorithm alg);
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_bytesv:
 | |
|  * @alg: the hash algorithm
 | |
|  * @iov: the array of memory regions to hash
 | |
|  * @niov: the length of @iov
 | |
|  * @result: pointer to hold output hash
 | |
|  * @resultlen: pointer to hold length of @result
 | |
|  * @errp: pointer to a NULL-initialized error object
 | |
|  *
 | |
|  * Computes the hash across all the memory regions
 | |
|  * present in @iov. The @result pointer will be
 | |
|  * filled with raw bytes representing the computed
 | |
|  * hash, which will have length @resultlen. The
 | |
|  * memory pointer in @result must be released
 | |
|  * with a call to g_free() when no longer required.
 | |
|  *
 | |
|  * Returns: 0 on success, -1 on error
 | |
|  */
 | |
| int qcrypto_hash_bytesv(QCryptoHashAlgorithm alg,
 | |
|                         const struct iovec *iov,
 | |
|                         size_t niov,
 | |
|                         uint8_t **result,
 | |
|                         size_t *resultlen,
 | |
|                         Error **errp);
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_bytes:
 | |
|  * @alg: the hash algorithm
 | |
|  * @buf: the memory region to hash
 | |
|  * @len: the length of @buf
 | |
|  * @result: pointer to hold output hash
 | |
|  * @resultlen: pointer to hold length of @result
 | |
|  * @errp: pointer to a NULL-initialized error object
 | |
|  *
 | |
|  * Computes the hash across all the memory region
 | |
|  * @buf of length @len. The @result pointer will be
 | |
|  * filled with raw bytes representing the computed
 | |
|  * hash, which will have length @resultlen. The
 | |
|  * memory pointer in @result must be released
 | |
|  * with a call to g_free() when no longer required.
 | |
|  *
 | |
|  * Returns: 0 on success, -1 on error
 | |
|  */
 | |
| int qcrypto_hash_bytes(QCryptoHashAlgorithm alg,
 | |
|                        const char *buf,
 | |
|                        size_t len,
 | |
|                        uint8_t **result,
 | |
|                        size_t *resultlen,
 | |
|                        Error **errp);
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_digestv:
 | |
|  * @alg: the hash algorithm
 | |
|  * @iov: the array of memory regions to hash
 | |
|  * @niov: the length of @iov
 | |
|  * @digest: pointer to hold output hash
 | |
|  * @errp: pointer to a NULL-initialized error object
 | |
|  *
 | |
|  * Computes the hash across all the memory regions
 | |
|  * present in @iov. The @digest pointer will be
 | |
|  * filled with the printable hex digest of the computed
 | |
|  * hash, which will be terminated by '\0'. The
 | |
|  * memory pointer in @digest must be released
 | |
|  * with a call to g_free() when no longer required.
 | |
|  *
 | |
|  * Returns: 0 on success, -1 on error
 | |
|  */
 | |
| int qcrypto_hash_digestv(QCryptoHashAlgorithm alg,
 | |
|                          const struct iovec *iov,
 | |
|                          size_t niov,
 | |
|                          char **digest,
 | |
|                          Error **errp);
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_digest:
 | |
|  * @alg: the hash algorithm
 | |
|  * @buf: the memory region to hash
 | |
|  * @len: the length of @buf
 | |
|  * @digest: pointer to hold output hash
 | |
|  * @errp: pointer to a NULL-initialized error object
 | |
|  *
 | |
|  * Computes the hash across all the memory region
 | |
|  * @buf of length @len. The @digest pointer will be
 | |
|  * filled with the printable hex digest of the computed
 | |
|  * hash, which will be terminated by '\0'. The
 | |
|  * memory pointer in @digest must be released
 | |
|  * with a call to g_free() when no longer required.
 | |
|  *
 | |
|  * Returns: 0 on success, -1 on error
 | |
|  */
 | |
| int qcrypto_hash_digest(QCryptoHashAlgorithm alg,
 | |
|                         const char *buf,
 | |
|                         size_t len,
 | |
|                         char **digest,
 | |
|                         Error **errp);
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_base64v:
 | |
|  * @alg: the hash algorithm
 | |
|  * @iov: the array of memory regions to hash
 | |
|  * @niov: the length of @iov
 | |
|  * @base64: pointer to hold output hash
 | |
|  * @errp: pointer to a NULL-initialized error object
 | |
|  *
 | |
|  * Computes the hash across all the memory regions
 | |
|  * present in @iov. The @base64 pointer will be
 | |
|  * filled with the base64 encoding of the computed
 | |
|  * hash, which will be terminated by '\0'. The
 | |
|  * memory pointer in @base64 must be released
 | |
|  * with a call to g_free() when no longer required.
 | |
|  *
 | |
|  * Returns: 0 on success, -1 on error
 | |
|  */
 | |
| int qcrypto_hash_base64v(QCryptoHashAlgorithm alg,
 | |
|                          const struct iovec *iov,
 | |
|                          size_t niov,
 | |
|                          char **base64,
 | |
|                          Error **errp);
 | |
| 
 | |
| /**
 | |
|  * qcrypto_hash_base64:
 | |
|  * @alg: the hash algorithm
 | |
|  * @buf: the memory region to hash
 | |
|  * @len: the length of @buf
 | |
|  * @base64: pointer to hold output hash
 | |
|  * @errp: pointer to a NULL-initialized error object
 | |
|  *
 | |
|  * Computes the hash across all the memory region
 | |
|  * @buf of length @len. The @base64 pointer will be
 | |
|  * filled with the base64 encoding of the computed
 | |
|  * hash, which will be terminated by '\0'. The
 | |
|  * memory pointer in @base64 must be released
 | |
|  * with a call to g_free() when no longer required.
 | |
|  *
 | |
|  * Returns: 0 on success, -1 on error
 | |
|  */
 | |
| int qcrypto_hash_base64(QCryptoHashAlgorithm alg,
 | |
|                         const char *buf,
 | |
|                         size_t len,
 | |
|                         char **base64,
 | |
|                         Error **errp);
 | |
| 
 | |
| #endif /* QCRYPTO_HASH_H */
 |