2 * utils_wipe - wipe a device
4 * Copyright (C) 2004-2007, Clemens Fruhwirth <clemens@endorphin.org>
5 * Copyright (C) 2011-2012, Red Hat, Inc. All rights reserved.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <sys/types.h>
27 #include <sys/types.h>
29 #include <sys/ioctl.h>
32 #include "libcryptsetup.h"
35 #define MAXIMUM_WIPE_BYTES 1024 * 1024 * 32 /* 32 MiB */
37 static ssize_t _crypt_wipe_zero(int fd, char *buffer, uint64_t offset, uint64_t size)
39 memset(buffer, 0, size);
40 return write_lseek_blockwise(fd, buffer, size, offset);
44 * Wipe using Peter Gutmann method described in
45 * http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html
47 static void wipeSpecial(char *buffer, size_t buffer_size, unsigned int turn)
51 unsigned char write_modes[][3] = {
52 {"\x55\x55\x55"}, {"\xaa\xaa\xaa"}, {"\x92\x49\x24"},
53 {"\x49\x24\x92"}, {"\x24\x92\x49"}, {"\x00\x00\x00"},
54 {"\x11\x11\x11"}, {"\x22\x22\x22"}, {"\x33\x33\x33"},
55 {"\x44\x44\x44"}, {"\x55\x55\x55"}, {"\x66\x66\x66"},
56 {"\x77\x77\x77"}, {"\x88\x88\x88"}, {"\x99\x99\x99"},
57 {"\xaa\xaa\xaa"}, {"\xbb\xbb\xbb"}, {"\xcc\xcc\xcc"},
58 {"\xdd\xdd\xdd"}, {"\xee\xee\xee"}, {"\xff\xff\xff"},
59 {"\x92\x49\x24"}, {"\x49\x24\x92"}, {"\x24\x92\x49"},
60 {"\x6d\xb6\xdb"}, {"\xb6\xdb\x6d"}, {"\xdb\x6d\xb6"}
63 for(i = 0; i < buffer_size / 3; ++i) {
64 memcpy(buffer, write_modes[turn], 3);
69 static ssize_t _crypt_wipe_disk(int fd, char *buffer, uint64_t offset, uint64_t size)
74 for(i = 0; i < 39; ++i) {
75 if (i < 5) crypt_random_get(NULL, buffer, size, CRYPT_RND_NORMAL);
76 else if(i >= 5 && i < 32) wipeSpecial(buffer, size, i - 5);
77 else if(i >= 32 && i < 38) crypt_random_get(NULL, buffer, size, CRYPT_RND_NORMAL);
78 else if(i >= 38 && i < 39) memset(buffer, 0xFF, size);
80 written = write_lseek_blockwise(fd, buffer, size, offset);
81 if (written < 0 || written != (ssize_t)size)
88 static ssize_t _crypt_wipe_random(int fd, char *buffer, uint64_t offset, uint64_t size)
90 crypt_random_get(NULL, buffer, size, CRYPT_RND_NORMAL);
91 return write_lseek_blockwise(fd, buffer, size, offset);
94 static ssize_t _crypt_wipe_ssd(int fd, char *buffer, uint64_t offset, uint64_t size)
96 // FIXME: for now just rewrite it by random
97 return _crypt_wipe_random(fd, buffer, offset, size);
100 int crypt_wipe(const char *device,
103 crypt_wipe_type type,
108 int devfd, flags, rotational;
111 if (!size || size % SECTOR_SIZE || (size > MAXIMUM_WIPE_BYTES)) {
112 log_dbg("Unsuported wipe size for device %s: %ld.",
113 device, (unsigned long)size);
117 if (stat(device, &st) < 0) {
118 log_dbg("Device %s not found.", device);
122 if (type == CRYPT_WIPE_DISK) {
123 if (!crypt_sysfs_get_rotational(major(st.st_rdev),
127 log_dbg("Rotational flag is %d.", rotational);
129 type = CRYPT_WIPE_SSD;
132 buffer = malloc(size);
136 flags = O_WRONLY | O_DIRECT | O_SYNC;
138 /* use O_EXCL only for block devices */
139 if (exclusive && S_ISBLK(st.st_mode))
142 devfd = open(device, flags);
145 return errno == EBUSY ? -EBUSY : -EINVAL;
148 // FIXME: use fixed block size and loop here
150 case CRYPT_WIPE_ZERO:
151 written = _crypt_wipe_zero(devfd, buffer, offset, size);
153 case CRYPT_WIPE_DISK:
154 written = _crypt_wipe_disk(devfd, buffer, offset, size);
156 written = _crypt_wipe_ssd(devfd, buffer, offset, size);
158 case CRYPT_WIPE_RANDOM:
159 written = _crypt_wipe_random(devfd, buffer, offset, size);
161 log_dbg("Unsuported wipe type requested: (%d)", type);
168 if (written != (ssize_t)size || written < 0)