1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006-2007 Dave Chapman
12 * error(), lock_volume() and unlock_volume() functions and inspiration taken
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/
18 * All files in this archive are subject to the GNU General Public License.
19 * See the file COPYING in the source tree root for full license agreement.
21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 * KIND, either express or implied.
24 ****************************************************************************/
31 #include <sys/types.h>
40 static int lock_volume(HANDLE hDisk
)
44 return DeviceIoControl(hDisk
, FSCTL_LOCK_VOLUME
, NULL
, 0, NULL
, 0,
48 static int unlock_volume(HANDLE hDisk
)
52 return DeviceIoControl(hDisk
, FSCTL_UNLOCK_VOLUME
, NULL
, 0, NULL
, 0,
56 void print_error(char* msg
)
61 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
| FORMAT_MESSAGE_FROM_SYSTEM
|
62 FORMAT_MESSAGE_IGNORE_INSERTS
, NULL
, GetLastError(),
63 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
), (LPTSTR
)&pMsgBuf
,
69 int ipod_open(struct ipod_t
* ipod
, int silent
)
71 DISK_GEOMETRY_EX diskgeometry_ex
;
72 DISK_GEOMETRY diskgeometry
;
75 ipod
->dh
= CreateFileA(ipod
->diskname
, GENERIC_READ
,
76 FILE_SHARE_READ
| FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
77 FILE_FLAG_WRITE_THROUGH
| FILE_FLAG_NO_BUFFERING
, NULL
);
79 if (ipod
->dh
== INVALID_HANDLE_VALUE
) {
80 if (!silent
) print_error(" Error opening disk: ");
84 if (!lock_volume(ipod
->dh
)) {
85 if (!silent
) print_error(" Error locking disk: ");
91 ipod
->sectors_per_track
= 0;
93 if (!DeviceIoControl(ipod
->dh
,
94 IOCTL_DISK_GET_DRIVE_GEOMETRY_EX
,
98 sizeof(diskgeometry_ex
),
101 if (!DeviceIoControl(ipod
->dh
,
102 IOCTL_DISK_GET_DRIVE_GEOMETRY
,
106 sizeof(diskgeometry
),
109 if (!silent
) print_error(" Error reading disk geometry: ");
112 ipod
->sector_size
= diskgeometry
.BytesPerSector
;
113 ipod
->num_heads
= diskgeometry
.TracksPerCylinder
;
114 ipod
->sectors_per_track
= diskgeometry
.SectorsPerTrack
;
117 ipod
->sector_size
= diskgeometry_ex
.Geometry
.BytesPerSector
;
118 ipod
->num_heads
= diskgeometry_ex
.Geometry
.TracksPerCylinder
;
119 ipod
->sectors_per_track
= diskgeometry_ex
.Geometry
.SectorsPerTrack
;
125 int ipod_reopen_rw(struct ipod_t
* ipod
)
127 /* Close existing file and re-open for writing */
128 unlock_volume(ipod
->dh
);
129 CloseHandle(ipod
->dh
);
131 ipod
->dh
= CreateFileA(ipod
->diskname
, GENERIC_READ
| GENERIC_WRITE
,
132 FILE_SHARE_READ
| FILE_SHARE_WRITE
, NULL
, OPEN_EXISTING
,
133 FILE_FLAG_WRITE_THROUGH
| FILE_FLAG_NO_BUFFERING
, NULL
);
135 if (ipod
->dh
== INVALID_HANDLE_VALUE
) {
136 print_error(" Error opening disk: ");
140 if (!lock_volume(ipod
->dh
)) {
141 print_error(" Error locking disk: ");
148 int ipod_close(struct ipod_t
* ipod
)
150 unlock_volume(ipod
->dh
);
151 CloseHandle(ipod
->dh
);
155 int ipod_alloc_buffer(unsigned char** sectorbuf
, int bufsize
)
157 /* The ReadFile function requires a memory buffer aligned to a multiple of
158 the disk sector size. */
159 *sectorbuf
= (unsigned char*)VirtualAlloc(NULL
, bufsize
, MEM_COMMIT
, PAGE_READWRITE
);
160 if (*sectorbuf
== NULL
) {
161 print_error(" Error allocating a buffer: ");
167 int ipod_seek(struct ipod_t
* ipod
, unsigned long pos
)
169 if (SetFilePointer(ipod
->dh
, pos
, NULL
, FILE_BEGIN
)==0xffffffff) {
170 print_error(" Seek error ");
176 ssize_t
ipod_read(struct ipod_t
* ipod
, unsigned char* buf
, int nbytes
)
180 if (!ReadFile(ipod
->dh
, buf
, nbytes
, &count
, NULL
)) {
181 print_error(" Error reading from disk: ");
188 ssize_t
ipod_write(struct ipod_t
* ipod
, unsigned char* buf
, int nbytes
)
192 if (!WriteFile(ipod
->dh
, buf
, nbytes
, &count
, NULL
)) {
193 print_error(" Error writing to disk: ");