Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "ext4_utils.h" |
| 18 | #include "wipe.h" |
| 19 | |
David 'Digit' Turner | eb5fcc3 | 2014-06-12 20:54:50 +0200 | [diff] [blame] | 20 | #if WIPE_IS_SUPPORTED |
| 21 | |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 22 | #if defined(__linux__) |
| 23 | |
| 24 | #include <linux/fs.h> |
| 25 | #include <sys/ioctl.h> |
| 26 | |
| 27 | #ifndef BLKDISCARD |
| 28 | #define BLKDISCARD _IO(0x12,119) |
| 29 | #endif |
| 30 | |
| 31 | #ifndef BLKSECDISCARD |
| 32 | #define BLKSECDISCARD _IO(0x12,125) |
| 33 | #endif |
| 34 | |
Ken Sumrall | 3e62059 | 2011-02-11 18:36:42 -0800 | [diff] [blame] | 35 | int wipe_block_device(int fd, s64 len) |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 36 | { |
David Ferguson | 275ae8e | 2012-06-07 21:00:41 -0400 | [diff] [blame] | 37 | #ifndef SUPPRESS_EMMC_WIPE |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 38 | u64 range[2]; |
| 39 | int ret; |
| 40 | |
David 'Digit' Turner | eb5fcc3 | 2014-06-12 20:54:50 +0200 | [diff] [blame] | 41 | if (!is_block_device_fd(fd)) { |
| 42 | // Wiping only makes sense on a block device. |
| 43 | return 0; |
| 44 | } |
| 45 | |
Steve Kondik | b9ed66e | 2013-11-16 07:36:33 -0800 | [diff] [blame] | 46 | #ifndef NO_SECURE_DISCARD |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 47 | range[0] = 0; |
| 48 | range[1] = len; |
| 49 | ret = ioctl(fd, BLKSECDISCARD, &range); |
| 50 | if (ret < 0) { |
David Ferguson | 275ae8e | 2012-06-07 21:00:41 -0400 | [diff] [blame] | 51 | #endif /* NO_SECURE_DISCARD */ |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 52 | range[0] = 0; |
| 53 | range[1] = len; |
| 54 | ret = ioctl(fd, BLKDISCARD, &range); |
| 55 | if (ret < 0) { |
Ken Sumrall | 427c3a2 | 2011-03-22 20:18:02 -0700 | [diff] [blame] | 56 | warn("Discard failed\n"); |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 57 | return 1; |
| 58 | } else { |
| 59 | warn("Wipe via secure discard failed, used discard instead\n"); |
| 60 | return 0; |
| 61 | } |
Steve Kondik | b9ed66e | 2013-11-16 07:36:33 -0800 | [diff] [blame] | 62 | #ifndef NO_SECURE_DISCARD |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 63 | } |
David Ferguson | 275ae8e | 2012-06-07 21:00:41 -0400 | [diff] [blame] | 64 | #endif /* NO_SECURE_DISCARD */ |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 65 | return 0; |
David Ferguson | 275ae8e | 2012-06-07 21:00:41 -0400 | [diff] [blame] | 66 | #else |
| 67 | warn("Wipe via secure discard suppressed due to bug in EMMC firmware\n"); |
| 68 | return 1; |
| 69 | #endif /* SUPPRESS_EMMC_WIPE */ |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 70 | } |
David 'Digit' Turner | eb5fcc3 | 2014-06-12 20:54:50 +0200 | [diff] [blame] | 71 | |
| 72 | #else /* __linux__ */ |
| 73 | #error "Missing block device wiping implementation for this platform!" |
Colin Cross | c247065 | 2011-01-26 16:39:46 -0800 | [diff] [blame] | 74 | #endif |
| 75 | |
David 'Digit' Turner | eb5fcc3 | 2014-06-12 20:54:50 +0200 | [diff] [blame] | 76 | #else /* WIPE_IS_SUPPORTED */ |
| 77 | |
| 78 | int wipe_block_device(int fd, s64 len) |
| 79 | { |
| 80 | /* Wiping is not supported on this platform. */ |
| 81 | return 1; |
| 82 | } |
| 83 | |
| 84 | #endif /* WIPE_IS_SUPPORTED */ |