New device access backend.
[platform/upstream/cryptsetup.git] / lib / libcryptsetup.h
index f73c849..7d956a8 100644 (file)
@@ -1,3 +1,24 @@
+/*
+ * libcryptsetup - cryptsetup library
+ *
+ * Copyright (C) 2004, Christophe Saout <christophe@saout.de>
+ * Copyright (C) 2004-2007, Clemens Fruhwirth <clemens@endorphin.org>
+ * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 as published by the Free Software Foundation.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 /**
  * @file libcryptsetup.h
  * @brief Public cryptsetup API
@@ -12,6 +33,7 @@
 extern "C" {
 #endif
 
+#include <stddef.h>
 #include <stdint.h>
 
 struct crypt_device; /* crypt device handle */
@@ -204,14 +226,13 @@ void crypt_set_iterarion_time(struct crypt_device *cd, uint64_t iteration_time_m
 void crypt_set_password_verify(struct crypt_device *cd, int password_verify);
 
 /**
- * Set data device (encrypted payload area device) if LUKS header is separated
+ * Set data device
+ * For LUKS it is encrypted data device when LUKS header is separated.
+ * For VERITY it is data device when hash device is separated.
  *
  * @param cd crypt device handle
  * @param device path to device
  *
- * @pre context is of LUKS type
- * @pre unlike @ref crypt_init, in this function param @e device
- *     has to be block device (at least 512B large)
  */
 int crypt_set_data_device(struct crypt_device *cd, const char *device);
 
@@ -273,12 +294,14 @@ int crypt_memory_lock(struct crypt_device *cd, int lock);
  * @{
  */
 
-/** regular crypt device, no on-disk header */
+/** plain crypt device, no on-disk header */
 #define CRYPT_PLAIN "PLAIN"
 /** LUKS version 1 header on-disk */
 #define CRYPT_LUKS1 "LUKS1"
 /** loop-AES compatibility mode */
 #define CRYPT_LOOPAES "LOOPAES"
+/** dm-verity mode */
+#define CRYPT_VERITY "VERITY"
 
 /**
  * Get device type
@@ -329,6 +352,34 @@ struct crypt_params_loopaes {
        uint64_t skip;    /**< IV offset / initialization sector */
 };
 
+/**
+ *
+ * Structure used as parameter for dm-verity device type
+ *
+ * @see crypt_format, crypt_load
+ *
+ */
+/** No on-disk header (only hashes) */
+#define CRYPT_VERITY_NO_HEADER   (1 << 0)
+/** Verity hash in userspace before activation */
+#define CRYPT_VERITY_CHECK_HASH  (1 << 1)
+/** Create hash - format hash device */
+#define CRYPT_VERITY_CREATE_HASH (1 << 2)
+
+struct crypt_params_verity {
+       const char *hash_name;     /**< hash function */
+       const char *data_device;   /**< data_device (CRYPT_VERITY_CREATE_HASH) */
+       const char *hash_device;   /**< hash_device (output only) */
+       const char *salt;          /**< salt */
+       uint32_t salt_size;        /**< salt size (in bytes) */
+       uint32_t hash_type;        /**< in-kernel hashing type */
+       uint32_t data_block_size;  /**< data block size (in bytes) */
+       uint32_t hash_block_size;  /**< hash block size (in bytes) */
+       uint64_t data_size;        /**< data area size (in data blocks) */
+       uint64_t hash_area_offset; /**< hash/header offset (in bytes) */
+       uint32_t flags;            /**< CRYPT_VERITY* flags */
+};
+
 /** @} */
 
 /**
@@ -347,8 +398,10 @@ struct crypt_params_loopaes {
  *
  * @returns @e 0 on success or negative errno value otherwise.
  *
- * @note Note that crypt_format does not enable any keyslot (in case of work with LUKS device), but it stores volume key internally
- *      and subsequent crypt_keyslot_add_* calls can be used.
+ * @note Note that crypt_format does not enable any keyslot (in case of work with LUKS device),
+ *     but it stores volume key internally and subsequent crypt_keyslot_add_* calls can be used.
+ * @note For VERITY @link crypt_type @endlink, only uuid parameter is used, others paramaters
+ *     are ignored and verity specific attributes are set through mandatory params option.
  */
 int crypt_format(struct crypt_device *cd,
        const char *type,
@@ -376,7 +429,7 @@ int crypt_set_uuid(struct crypt_device *cd,
  * Load crypt device parameters from on-disk header
  *
  * @param cd crypt device handle
- * @param requested_type - use @e NULL for all known
+ * @param requested_type @link crypt_type @endlink or @e NULL for all known
  * @param params crypt type specific parameters (see @link crypt_type @endlink)
  *
  * @returns 0 on success or negative errno value otherwise.
@@ -384,7 +437,7 @@ int crypt_set_uuid(struct crypt_device *cd,
  * @post In case LUKS header is read successfully but payload device is too small
  * error is returned and device type in context is set to @e NULL
  *
- * @note Note that in current version load works only for LUKS device type
+ * @note Note that in current version load works only for LUKS and VERITY device type.
  *
  */
 int crypt_load(struct crypt_device *cd,
@@ -395,7 +448,7 @@ int crypt_load(struct crypt_device *cd,
  * Try to repair crypt device on-disk header if invalid
  *
  * @param cd crypt device handle
- * @param requested_type - use @e NULL for all known
+ * @param requested_type @link crypt_type @endlink or @e NULL for all known
  * @param params crypt type specific parameters (see @link crypt_type @endlink)
  *
  * @returns 0 on success or negative errno value otherwise.
@@ -403,7 +456,7 @@ int crypt_load(struct crypt_device *cd,
  */
 int crypt_repair(struct crypt_device *cd,
                 const char *requested_type,
-                void *params __attribute__((unused)));
+                void *params);
 
 /**
  * Resize crypt device
@@ -615,10 +668,14 @@ int crypt_keyslot_destroy(struct crypt_device *cd, int keyslot);
 #define CRYPT_ACTIVATE_READONLY (1 << 0)
 /** only reported for device without uuid */
 #define CRYPT_ACTIVATE_NO_UUID  (1 << 1)
-/** activate more non-overlapping mapping to the same device */
+/** activate even if cannot grant exclusive access (DANGEROUS) */
 #define CRYPT_ACTIVATE_SHARED   (1 << 2)
 /** enable discards aka TRIM */
 #define CRYPT_ACTIVATE_ALLOW_DISCARDS (1 << 3)
+/** skip global udev rules in activation ("private device"), input only */
+#define CRYPT_ACTIVATE_PRIVATE (1 << 4)
+/** corruption detected (verity), output only */
+#define CRYPT_ACTIVATE_CORRUPTED (1 << 5)
 
 /**
  * Active device runtime attributes
@@ -710,6 +767,9 @@ int crypt_activate_by_keyfile(struct crypt_device *cd,
  * @note If @e NULL is used for volume_key, device has to be initialized
  *      by previous operation (like @ref crypt_format
  *      or @ref crypt_init_by_name)
+ * @note For VERITY the volume key means root hash required for activation.
+ *      Because kernel dm-verity is always read only, you have to provide
+ *      CRYPT_ACTIVATE_READONLY flag always.
  */
 int crypt_activate_by_volume_key(struct crypt_device *cd,
        const char *name,
@@ -763,9 +823,8 @@ int crypt_volume_key_verify(struct crypt_device *cd,
        const char *volume_key,
        size_t volume_key_size);
 
-
-/*
- * @defgroup devstat "dmcrypt device status"
+/**
+ * @defgroup devstat "Crypt and Verity device status"
  * @addtogroup devstat
  * @{
  */
@@ -792,7 +851,7 @@ typedef enum {
 crypt_status_info crypt_status(struct crypt_device *cd, const char *name);
 
 /**
- * Dump text-formatted information about crypt device to log output
+ * Dump text-formatted information about crypt or verity device to log output
  *
  * @param cd crypt device handle
  *
@@ -871,6 +930,19 @@ uint64_t crypt_get_iv_offset(struct crypt_device *cd);
 int crypt_get_volume_key_size(struct crypt_device *cd);
 
 /**
+ * Get device parameters for VERITY device
+ *
+ * @param cd crypt device handle
+ * @param vp verity device info
+ *
+ * @e 0 on success or negative errno value otherwise.
+ *
+ */
+int crypt_get_verity_info(struct crypt_device *cd,
+       struct crypt_params_verity *vp);
+/** @} */
+
+/**
  * @addtogroup keyslot
  * @{
  *
@@ -904,7 +976,7 @@ crypt_keyslot_info crypt_keyslot_status(struct crypt_device *cd, int keyslot);
  * Backup header and keyslots to file
  *
  * @param cd crypt device handle
- * @param requested_type type of header to backup
+ * @param requested_type @link crypt_type @endlink or @e NULL for all known
  * @param backup_file file to backup header to
  *
  * @return @e 0 on success or negative errno value otherwise.
@@ -919,7 +991,7 @@ int crypt_header_backup(struct crypt_device *cd,
  *
  *
  * @param cd crypt device handle
- * @param requested_type type of header to restore
+ * @param requested_type @link crypt_type @endlink or @e NULL for all known
  * @param backup_file file to restore header from
  *
  * @return @e 0 on success or negative errno value otherwise.