Fix support for LUKS header created by cryptsetup-1.0.0
[platform/upstream/cryptsetup.git] / lib / volumekey.c
index 5dec0bf..f533ad3 100644 (file)
@@ -2,7 +2,7 @@
  * cryptsetup volume key implementation
  *
  * Copyright (C) 2004-2006, Clemens Fruhwirth <clemens@endorphin.org>
- * Copyright (C) 2010 Red Hat, Inc. All rights reserved.
+ * Copyright (C) 2010-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
@@ -15,7 +15,7 @@
  *
  * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #include <string.h>
@@ -23,8 +23,6 @@
 
 #include "internal.h"
 
-int getRandom(char *buf, size_t len);
-
 struct volume_key *crypt_alloc_volume_key(unsigned keylength, const char *key)
 {
        struct volume_key *vk = malloc(sizeof(*vk) + keylength);
@@ -35,6 +33,8 @@ struct volume_key *crypt_alloc_volume_key(unsigned keylength, const char *key)
        vk->keylength = keylength;
        if (key)
                memcpy(&vk->key, key, keylength);
+       else
+               memset(&vk->key, 0, keylength);
 
        return vk;
 }
@@ -48,7 +48,7 @@ void crypt_free_volume_key(struct volume_key *vk)
        }
 }
 
-struct volume_key *crypt_generate_volume_key(unsigned keylength)
+struct volume_key *crypt_generate_volume_key(struct crypt_device *cd, unsigned keylength)
 {
        int r;
        struct volume_key *vk;
@@ -57,11 +57,10 @@ struct volume_key *crypt_generate_volume_key(unsigned keylength)
        if (!vk)
                return NULL;
 
-       r = getRandom(vk->key, keylength);
+       r = crypt_random_get(cd, vk->key, keylength, CRYPT_RND_KEY);
        if(r < 0) {
                crypt_free_volume_key(vk);
                return NULL;
        }
        return vk;
 }
-