Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
Dave Chapman | e332f4c | 2007-02-05 01:20:20 +0000 | [diff] [blame] | 10 | * Copyright (C) 2006-2007 Dave Chapman |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 11 | * |
| 12 | * error(), lock_volume() and unlock_volume() functions and inspiration taken |
| 13 | * from: |
| 14 | * RawDisk - Direct Disk Read/Write Access for NT/2000/XP |
| 15 | * Copyright (c) 2003 Jan Kiszka |
| 16 | * http://www.stud.uni-hannover.de/user/73174/RawDisk/ |
| 17 | * |
Daniel Stenberg | 2acc0ac | 2008-06-28 18:10:04 +0000 | [diff] [blame] | 18 | * This program is free software; you can redistribute it and/or |
| 19 | * modify it under the terms of the GNU General Public License |
| 20 | * as published by the Free Software Foundation; either version 2 |
| 21 | * of the License, or (at your option) any later version. |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 22 | * |
| 23 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 24 | * KIND, either express or implied. |
| 25 | * |
| 26 | ****************************************************************************/ |
| 27 | |
Dominik Riebeling | e23adb5 | 2011-12-07 20:06:48 +0000 | [diff] [blame] | 28 | #if defined(_WIN32) |
| 29 | |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 30 | #include <stdio.h> |
| 31 | #include <unistd.h> |
| 32 | #include <fcntl.h> |
| 33 | #include <string.h> |
| 34 | #include <stdlib.h> |
| 35 | #include <sys/types.h> |
| 36 | #include <sys/stat.h> |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 37 | #include <windows.h> |
Dave Chapman | 1eca02d | 2009-08-04 20:32:30 +0000 | [diff] [blame] | 38 | #include <stddef.h> |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 39 | #include <winioctl.h> |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 40 | |
| 41 | #include "ipodio.h" |
| 42 | |
| 43 | static int lock_volume(HANDLE hDisk) |
| 44 | { |
| 45 | DWORD dummy; |
| 46 | |
| 47 | return DeviceIoControl(hDisk, FSCTL_LOCK_VOLUME, NULL, 0, NULL, 0, |
| 48 | &dummy, NULL); |
| 49 | } |
| 50 | |
| 51 | static int unlock_volume(HANDLE hDisk) |
| 52 | { |
| 53 | DWORD dummy; |
| 54 | |
| 55 | return DeviceIoControl(hDisk, FSCTL_UNLOCK_VOLUME, NULL, 0, NULL, 0, |
| 56 | &dummy, NULL); |
| 57 | } |
| 58 | |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 59 | void ipod_print_error(char* msg) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 60 | { |
Dominik Riebeling | 8b32a2d | 2009-09-20 17:03:58 +0000 | [diff] [blame] | 61 | LPSTR pMsgBuf = NULL; |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 62 | |
| 63 | printf(msg); |
Dominik Riebeling | 8b32a2d | 2009-09-20 17:03:58 +0000 | [diff] [blame] | 64 | FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 65 | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, GetLastError(), |
Dominik Riebeling | 8b32a2d | 2009-09-20 17:03:58 +0000 | [diff] [blame] | 66 | MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), pMsgBuf, |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 67 | 0, NULL); |
| 68 | printf(pMsgBuf); |
| 69 | LocalFree(pMsgBuf); |
| 70 | } |
| 71 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 72 | int ipod_open(struct ipod_t* ipod, int silent) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 73 | { |
| 74 | DISK_GEOMETRY_EX diskgeometry_ex; |
| 75 | DISK_GEOMETRY diskgeometry; |
| 76 | unsigned long n; |
| 77 | |
Magnus Holmgren | 8a7c0ee | 2007-11-06 19:28:14 +0000 | [diff] [blame] | 78 | ipod->dh = CreateFileA(ipod->diskname, GENERIC_READ, |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 79 | FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, |
| 80 | FILE_FLAG_WRITE_THROUGH | FILE_FLAG_NO_BUFFERING, NULL); |
| 81 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 82 | if (ipod->dh == INVALID_HANDLE_VALUE) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 83 | if (!silent) ipod_print_error(" Error opening disk: "); |
Dominik Riebeling | 194b2ca | 2008-05-04 11:59:04 +0000 | [diff] [blame] | 84 | if(GetLastError() == ERROR_ACCESS_DENIED) |
| 85 | return -2; |
| 86 | else |
| 87 | return -1; |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 90 | if (!lock_volume(ipod->dh)) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 91 | if (!silent) ipod_print_error(" Error locking disk: "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 92 | return -1; |
| 93 | } |
| 94 | |
Dave Chapman | 56780e3 | 2007-06-16 22:32:57 +0000 | [diff] [blame] | 95 | /* Defaults */ |
| 96 | ipod->num_heads = 0; |
| 97 | ipod->sectors_per_track = 0; |
| 98 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 99 | if (!DeviceIoControl(ipod->dh, |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 100 | IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, |
| 101 | NULL, |
| 102 | 0, |
| 103 | &diskgeometry_ex, |
| 104 | sizeof(diskgeometry_ex), |
| 105 | &n, |
| 106 | NULL)) { |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 107 | if (!DeviceIoControl(ipod->dh, |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 108 | IOCTL_DISK_GET_DRIVE_GEOMETRY, |
| 109 | NULL, |
| 110 | 0, |
| 111 | &diskgeometry, |
| 112 | sizeof(diskgeometry), |
| 113 | &n, |
| 114 | NULL)) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 115 | if (!silent) ipod_print_error(" Error reading disk geometry: "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 116 | return -1; |
| 117 | } else { |
Dave Chapman | 56780e3 | 2007-06-16 22:32:57 +0000 | [diff] [blame] | 118 | ipod->sector_size = diskgeometry.BytesPerSector; |
| 119 | ipod->num_heads = diskgeometry.TracksPerCylinder; |
| 120 | ipod->sectors_per_track = diskgeometry.SectorsPerTrack; |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 121 | } |
| 122 | } else { |
Dave Chapman | 56780e3 | 2007-06-16 22:32:57 +0000 | [diff] [blame] | 123 | ipod->sector_size = diskgeometry_ex.Geometry.BytesPerSector; |
| 124 | ipod->num_heads = diskgeometry_ex.Geometry.TracksPerCylinder; |
| 125 | ipod->sectors_per_track = diskgeometry_ex.Geometry.SectorsPerTrack; |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | return 0; |
| 129 | } |
| 130 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 131 | int ipod_reopen_rw(struct ipod_t* ipod) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 132 | { |
| 133 | /* Close existing file and re-open for writing */ |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 134 | unlock_volume(ipod->dh); |
| 135 | CloseHandle(ipod->dh); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 136 | |
Magnus Holmgren | 8a7c0ee | 2007-11-06 19:28:14 +0000 | [diff] [blame] | 137 | ipod->dh = CreateFileA(ipod->diskname, GENERIC_READ | GENERIC_WRITE, |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 138 | FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, |
| 139 | FILE_FLAG_WRITE_THROUGH | FILE_FLAG_NO_BUFFERING, NULL); |
| 140 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 141 | if (ipod->dh == INVALID_HANDLE_VALUE) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 142 | ipod_print_error(" Error opening disk: "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 143 | return -1; |
| 144 | } |
| 145 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 146 | if (!lock_volume(ipod->dh)) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 147 | ipod_print_error(" Error locking disk: "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 148 | return -1; |
| 149 | } |
| 150 | |
| 151 | return 0; |
| 152 | } |
| 153 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 154 | int ipod_close(struct ipod_t* ipod) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 155 | { |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 156 | unlock_volume(ipod->dh); |
| 157 | CloseHandle(ipod->dh); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 158 | return 0; |
| 159 | } |
| 160 | |
Dominik Riebeling | 24e37dd | 2012-12-23 23:30:57 +0100 | [diff] [blame] | 161 | int ipod_alloc_buffer(struct ipod_t* ipod, int bufsize) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 162 | { |
| 163 | /* The ReadFile function requires a memory buffer aligned to a multiple of |
| 164 | the disk sector size. */ |
Dominik Riebeling | 24e37dd | 2012-12-23 23:30:57 +0100 | [diff] [blame] | 165 | ipod->sectorbuf = (unsigned char*)VirtualAlloc(NULL, bufsize, MEM_COMMIT, PAGE_READWRITE); |
| 166 | if (ipod->sectorbuf== NULL) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 167 | ipod_print_error(" Error allocating a buffer: "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 168 | return -1; |
| 169 | } |
| 170 | return 0; |
| 171 | } |
| 172 | |
Dominik Riebeling | b63d429 | 2013-01-01 11:04:21 +0100 | [diff] [blame] | 173 | int ipod_dealloc_buffer(struct ipod_t* ipod) |
| 174 | { |
| 175 | if (ipod->sectorbuf == NULL) { |
| 176 | return -1; |
| 177 | } |
| 178 | if(!VirtualFree(ipod->sectorbuf, 0, MEM_RELEASE)) { |
| 179 | ipod_print_error(" Error releasing buffer "); |
| 180 | return -1; |
| 181 | } |
| 182 | ipod->sectorbuf = NULL; |
| 183 | return 0; |
| 184 | } |
| 185 | |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 186 | int ipod_seek(struct ipod_t* ipod, unsigned long pos) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 187 | { |
Dave Chapman | 31aa452 | 2007-02-04 11:42:11 +0000 | [diff] [blame] | 188 | if (SetFilePointer(ipod->dh, pos, NULL, FILE_BEGIN)==0xffffffff) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 189 | ipod_print_error(" Seek error "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 190 | return -1; |
| 191 | } |
| 192 | return 0; |
| 193 | } |
| 194 | |
Dominik Riebeling | 24e37dd | 2012-12-23 23:30:57 +0100 | [diff] [blame] | 195 | ssize_t ipod_read(struct ipod_t* ipod, int nbytes) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 196 | { |
| 197 | unsigned long count; |
| 198 | |
Dominik Riebeling | 24e37dd | 2012-12-23 23:30:57 +0100 | [diff] [blame] | 199 | if(ipod->sectorbuf == NULL) { |
| 200 | return -1; |
| 201 | } |
| 202 | if (!ReadFile(ipod->dh, ipod->sectorbuf, nbytes, &count, NULL)) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 203 | ipod_print_error(" Error reading from disk: "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 204 | return -1; |
| 205 | } |
| 206 | |
| 207 | return count; |
| 208 | } |
| 209 | |
Dominik Riebeling | 24e37dd | 2012-12-23 23:30:57 +0100 | [diff] [blame] | 210 | ssize_t ipod_write(struct ipod_t* ipod, int nbytes) |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 211 | { |
| 212 | unsigned long count; |
| 213 | |
Dominik Riebeling | 24e37dd | 2012-12-23 23:30:57 +0100 | [diff] [blame] | 214 | if(ipod->sectorbuf == NULL) { |
| 215 | return -1; |
| 216 | } |
| 217 | if (!WriteFile(ipod->dh, ipod->sectorbuf, nbytes, &count, NULL)) { |
Dominik Riebeling | 3e489c1 | 2009-11-08 13:38:10 +0000 | [diff] [blame] | 218 | ipod_print_error(" Error writing to disk: "); |
Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame] | 219 | return -1; |
| 220 | } |
| 221 | |
| 222 | return count; |
| 223 | } |
Dave Chapman | 1eca02d | 2009-08-04 20:32:30 +0000 | [diff] [blame] | 224 | |
Dominik Riebeling | e23adb5 | 2011-12-07 20:06:48 +0000 | [diff] [blame] | 225 | #endif |
| 226 | |