blob: 55f0187263da163e2d50bf809ad31cd2543ce88d [file] [log] [blame]
Dave Chapman4b7e1e02006-12-13 09:02:18 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
Dave Chapmane332f4c2007-02-05 01:20:20 +000010 * Copyright (C) 2006-2007 Dave Chapman
Dave Chapman4b7e1e02006-12-13 09:02:18 +000011 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#include <stdio.h>
21#include <unistd.h>
22#include <fcntl.h>
23#include <string.h>
24#include <stdlib.h>
25#include <sys/types.h>
26#include <sys/stat.h>
Dave Chapman8280c8c2006-12-13 20:26:44 +000027#include <sys/ioctl.h>
Dave Chapman8280c8c2006-12-13 20:26:44 +000028
Dave Chapman56780e32007-06-16 22:32:57 +000029#include "ipodio.h"
30
Dave Chapman8280c8c2006-12-13 20:26:44 +000031#if defined(linux) || defined (__linux)
Dave Chapman49e016c2006-12-15 00:09:48 +000032#include <sys/mount.h>
Dave Chapman56780e32007-06-16 22:32:57 +000033#include <linux/hdreg.h>
Dave Chapman49e016c2006-12-15 00:09:48 +000034#define IPOD_SECTORSIZE_IOCTL BLKSSZGET
Dave Chapman56780e32007-06-16 22:32:57 +000035
36static void get_geometry(struct ipod_t* ipod)
37{
38 struct hd_geometry geometry;
39
40 if (!ioctl(ipod->dh, HDIO_GETGEO, &geometry)) {
41 /* never use geometry.cylinders - it is truncated */
42 ipod->num_heads = geometry.heads;
43 ipod->sectors_per_track = geometry.sectors;
44 } else {
45 ipod->num_heads = 0;
46 ipod->sectors_per_track = 0;
47 }
48}
49
Dave Chapman8280c8c2006-12-13 20:26:44 +000050#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) \
51 || defined(__bsdi__) || defined(__DragonFly__)
Dave Chapman49e016c2006-12-15 00:09:48 +000052#include <sys/disk.h>
53#define IPOD_SECTORSIZE_IOCTL DIOCGSECTORSIZE
Dave Chapman56780e32007-06-16 22:32:57 +000054
55/* TODO: Implement this function for BSD */
56static void get_geometry(struct ipod_t* ipod)
57{
58 /* Are these universal for all ipods? */
59 ipod->num_heads = 255;
60 ipod->sectors_per_track = 63;
61}
62
Dave Chapman8280c8c2006-12-13 20:26:44 +000063#elif defined(__APPLE__) && defined(__MACH__)
Dave Chapman49e016c2006-12-15 00:09:48 +000064#include <sys/disk.h>
65#define IPOD_SECTORSIZE_IOCTL DKIOCGETBLOCKSIZE
Dave Chapman56780e32007-06-16 22:32:57 +000066
67/* TODO: Implement this function for Mac OS X */
68static void get_geometry(struct ipod_t* ipod)
69{
70 /* Are these universal for all ipods? */
71 ipod->num_heads = 255;
72 ipod->sectors_per_track = 63;
73}
74
Dave Chapman8280c8c2006-12-13 20:26:44 +000075#else
76 #error No sector-size detection implemented for this platform
77#endif
Dave Chapman4b7e1e02006-12-13 09:02:18 +000078
Dave Chapmanf225f042007-09-01 22:55:37 +000079#if defined(__APPLE__) && defined(__MACH__)
80static int ipod_unmount(struct ipod_t* ipod)
81{
82 char cmd[4096];
83 int res;
84
85 sprintf(cmd, "/usr/sbin/diskutil unmount \"%ss2\"",ipod->diskname);
86 fprintf(stderr,"[INFO] ");
87 res = system(cmd);
88
89 if (res==0) {
90 return 0;
91 } else {
92 perror("Unmount failed");
93 return -1;
94 }
95}
96#endif
97
Dave Chapman4b7e1e02006-12-13 09:02:18 +000098void print_error(char* msg)
99{
100 perror(msg);
101}
102
Dave Chapman31aa4522007-02-04 11:42:11 +0000103int ipod_open(struct ipod_t* ipod, int silent)
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000104{
Dave Chapman31aa4522007-02-04 11:42:11 +0000105 ipod->dh=open(ipod->diskname,O_RDONLY);
106 if (ipod->dh < 0) {
107 if (!silent) perror(ipod->diskname);
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000108 return -1;
109 }
110
Dave Chapman56780e32007-06-16 22:32:57 +0000111 /* Read information about the disk */
112
Dave Chapman31aa4522007-02-04 11:42:11 +0000113 if(ioctl(ipod->dh,IPOD_SECTORSIZE_IOCTL,&ipod->sector_size) < 0) {
114 ipod->sector_size=512;
115 if (!silent) {
116 fprintf(stderr,"[ERR] ioctl() call to get sector size failed, defaulting to %d\n"
117 ,ipod->sector_size);
118 }
Dave Chapman8280c8c2006-12-13 20:26:44 +0000119 }
Dave Chapman56780e32007-06-16 22:32:57 +0000120
121 get_geometry(ipod);
122
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000123 return 0;
124}
125
126
Dave Chapman31aa4522007-02-04 11:42:11 +0000127int ipod_reopen_rw(struct ipod_t* ipod)
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000128{
Dave Chapmanf225f042007-09-01 22:55:37 +0000129#if defined(__APPLE__) && defined(__MACH__)
130 if (ipod_unmount(ipod) < 0)
131 return -1;
132#endif
133
Dave Chapman31aa4522007-02-04 11:42:11 +0000134 close(ipod->dh);
135 ipod->dh=open(ipod->diskname,O_RDWR);
136 if (ipod->dh < 0) {
137 perror(ipod->diskname);
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000138 return -1;
139 }
140 return 0;
141}
142
Dave Chapman31aa4522007-02-04 11:42:11 +0000143int ipod_close(struct ipod_t* ipod)
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000144{
Dave Chapman31aa4522007-02-04 11:42:11 +0000145 close(ipod->dh);
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000146 return 0;
147}
148
149int ipod_alloc_buffer(unsigned char** sectorbuf, int bufsize)
150{
151 *sectorbuf=malloc(bufsize);
152 if (*sectorbuf == NULL) {
153 return -1;
154 }
155 return 0;
156}
157
Dave Chapman31aa4522007-02-04 11:42:11 +0000158int ipod_seek(struct ipod_t* ipod, unsigned long pos)
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000159{
160 off_t res;
161
Dave Chapman31aa4522007-02-04 11:42:11 +0000162 res = lseek(ipod->dh, pos, SEEK_SET);
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000163
164 if (res == -1) {
165 return -1;
166 }
167 return 0;
168}
169
Dave Chapman2cc80f52007-07-29 21:19:14 +0000170ssize_t ipod_read(struct ipod_t* ipod, unsigned char* buf, int nbytes)
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000171{
Dave Chapman31aa4522007-02-04 11:42:11 +0000172 return read(ipod->dh, buf, nbytes);
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000173}
174
Dave Chapman2cc80f52007-07-29 21:19:14 +0000175ssize_t ipod_write(struct ipod_t* ipod, unsigned char* buf, int nbytes)
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000176{
Dave Chapman31aa4522007-02-04 11:42:11 +0000177 return write(ipod->dh, buf, nbytes);
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000178}