blob: f8af756dd7dc04935781479efcdc6f7b81f885c5 [file] [log] [blame]
Colin Crossc2470652011-01-26 16:39:46 -08001/*
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' Turnereb5fcc32014-06-12 20:54:50 +020020#if WIPE_IS_SUPPORTED
21
Colin Crossc2470652011-01-26 16:39:46 -080022#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 Sumrall3e620592011-02-11 18:36:42 -080035int wipe_block_device(int fd, s64 len)
Colin Crossc2470652011-01-26 16:39:46 -080036{
David Ferguson275ae8e2012-06-07 21:00:41 -040037#ifndef SUPPRESS_EMMC_WIPE
Colin Crossc2470652011-01-26 16:39:46 -080038 u64 range[2];
39 int ret;
40
David 'Digit' Turnereb5fcc32014-06-12 20:54:50 +020041 if (!is_block_device_fd(fd)) {
42 // Wiping only makes sense on a block device.
43 return 0;
44 }
45
Steve Kondikb9ed66e2013-11-16 07:36:33 -080046#ifndef NO_SECURE_DISCARD
Colin Crossc2470652011-01-26 16:39:46 -080047 range[0] = 0;
48 range[1] = len;
49 ret = ioctl(fd, BLKSECDISCARD, &range);
50 if (ret < 0) {
David Ferguson275ae8e2012-06-07 21:00:41 -040051#endif /* NO_SECURE_DISCARD */
Colin Crossc2470652011-01-26 16:39:46 -080052 range[0] = 0;
53 range[1] = len;
54 ret = ioctl(fd, BLKDISCARD, &range);
55 if (ret < 0) {
Ken Sumrall427c3a22011-03-22 20:18:02 -070056 warn("Discard failed\n");
Colin Crossc2470652011-01-26 16:39:46 -080057 return 1;
58 } else {
59 warn("Wipe via secure discard failed, used discard instead\n");
60 return 0;
61 }
Steve Kondikb9ed66e2013-11-16 07:36:33 -080062#ifndef NO_SECURE_DISCARD
Colin Crossc2470652011-01-26 16:39:46 -080063 }
David Ferguson275ae8e2012-06-07 21:00:41 -040064#endif /* NO_SECURE_DISCARD */
Colin Crossc2470652011-01-26 16:39:46 -080065 return 0;
David Ferguson275ae8e2012-06-07 21:00:41 -040066#else
67 warn("Wipe via secure discard suppressed due to bug in EMMC firmware\n");
68 return 1;
69#endif /* SUPPRESS_EMMC_WIPE */
Colin Crossc2470652011-01-26 16:39:46 -080070}
David 'Digit' Turnereb5fcc32014-06-12 20:54:50 +020071
72#else /* __linux__ */
73#error "Missing block device wiping implementation for this platform!"
Colin Crossc2470652011-01-26 16:39:46 -080074#endif
75
David 'Digit' Turnereb5fcc32014-06-12 20:54:50 +020076#else /* WIPE_IS_SUPPORTED */
77
78int 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 */