The threading model should be set from configure, not config.h.
[maemo-rb.git] / rbutil / ipodpatcher / ipodio-win32.c
blob27c1b24f0141fe0978a8aa353bbc24bbccdabfc0
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006-2007 Dave Chapman
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/
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.
23 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
24 * KIND, either express or implied.
26 ****************************************************************************/
28 #if defined(_WIN32)
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>
37 #include <windows.h>
38 #include <stddef.h>
39 #include <winioctl.h>
41 #include "ipodio.h"
43 static int lock_volume(HANDLE hDisk)
45 DWORD dummy;
47 return DeviceIoControl(hDisk, FSCTL_LOCK_VOLUME, NULL, 0, NULL, 0,
48 &dummy, NULL);
51 static int unlock_volume(HANDLE hDisk)
53 DWORD dummy;
55 return DeviceIoControl(hDisk, FSCTL_UNLOCK_VOLUME, NULL, 0, NULL, 0,
56 &dummy, NULL);
59 void ipod_print_error(char* msg)
61 LPSTR pMsgBuf = NULL;
63 printf(msg);
64 FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
65 FORMAT_MESSAGE_IGNORE_INSERTS, NULL, GetLastError(),
66 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), pMsgBuf,
67 0, NULL);
68 printf(pMsgBuf);
69 LocalFree(pMsgBuf);
72 int ipod_open(struct ipod_t* ipod, int silent)
74 DISK_GEOMETRY_EX diskgeometry_ex;
75 DISK_GEOMETRY diskgeometry;
76 unsigned long n;
78 ipod->dh = CreateFileA(ipod->diskname, GENERIC_READ,
79 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
80 FILE_FLAG_WRITE_THROUGH | FILE_FLAG_NO_BUFFERING, NULL);
82 if (ipod->dh == INVALID_HANDLE_VALUE) {
83 if (!silent) ipod_print_error(" Error opening disk: ");
84 if(GetLastError() == ERROR_ACCESS_DENIED)
85 return -2;
86 else
87 return -1;
90 if (!lock_volume(ipod->dh)) {
91 if (!silent) ipod_print_error(" Error locking disk: ");
92 return -1;
95 /* Defaults */
96 ipod->num_heads = 0;
97 ipod->sectors_per_track = 0;
99 if (!DeviceIoControl(ipod->dh,
100 IOCTL_DISK_GET_DRIVE_GEOMETRY_EX,
101 NULL,
103 &diskgeometry_ex,
104 sizeof(diskgeometry_ex),
106 NULL)) {
107 if (!DeviceIoControl(ipod->dh,
108 IOCTL_DISK_GET_DRIVE_GEOMETRY,
109 NULL,
111 &diskgeometry,
112 sizeof(diskgeometry),
114 NULL)) {
115 if (!silent) ipod_print_error(" Error reading disk geometry: ");
116 return -1;
117 } else {
118 ipod->sector_size = diskgeometry.BytesPerSector;
119 ipod->num_heads = diskgeometry.TracksPerCylinder;
120 ipod->sectors_per_track = diskgeometry.SectorsPerTrack;
122 } else {
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;
128 return 0;
131 int ipod_reopen_rw(struct ipod_t* ipod)
133 /* Close existing file and re-open for writing */
134 unlock_volume(ipod->dh);
135 CloseHandle(ipod->dh);
137 ipod->dh = CreateFileA(ipod->diskname, GENERIC_READ | GENERIC_WRITE,
138 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,
139 FILE_FLAG_WRITE_THROUGH | FILE_FLAG_NO_BUFFERING, NULL);
141 if (ipod->dh == INVALID_HANDLE_VALUE) {
142 ipod_print_error(" Error opening disk: ");
143 return -1;
146 if (!lock_volume(ipod->dh)) {
147 ipod_print_error(" Error locking disk: ");
148 return -1;
151 return 0;
154 int ipod_close(struct ipod_t* ipod)
156 unlock_volume(ipod->dh);
157 CloseHandle(ipod->dh);
158 return 0;
161 int ipod_alloc_buffer(unsigned char** sectorbuf, int bufsize)
163 /* The ReadFile function requires a memory buffer aligned to a multiple of
164 the disk sector size. */
165 *sectorbuf = (unsigned char*)VirtualAlloc(NULL, bufsize, MEM_COMMIT, PAGE_READWRITE);
166 if (*sectorbuf == NULL) {
167 ipod_print_error(" Error allocating a buffer: ");
168 return -1;
170 return 0;
173 int ipod_seek(struct ipod_t* ipod, unsigned long pos)
175 if (SetFilePointer(ipod->dh, pos, NULL, FILE_BEGIN)==0xffffffff) {
176 ipod_print_error(" Seek error ");
177 return -1;
179 return 0;
182 ssize_t ipod_read(struct ipod_t* ipod, unsigned char* buf, int nbytes)
184 unsigned long count;
186 if (!ReadFile(ipod->dh, buf, nbytes, &count, NULL)) {
187 ipod_print_error(" Error reading from disk: ");
188 return -1;
191 return count;
194 ssize_t ipod_write(struct ipod_t* ipod, unsigned char* buf, int nbytes)
196 unsigned long count;
198 if (!WriteFile(ipod->dh, buf, nbytes, &count, NULL)) {
199 ipod_print_error(" Error writing to disk: ");
200 return -1;
203 return count;
206 #endif