blob: dbd3d5e1ff41ca726a53d92398e3de1a848a5e76 [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 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
Dave Chapman4b7e1e02006-12-13 09:02:18 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef __IPODIO_H
23#define __IPODIO_H
24
Dave Chapman31aa4522007-02-04 11:42:11 +000025#include <stdint.h>
Dave Chapmanb045a242007-02-16 20:45:00 +000026#include <unistd.h>
Dave Chapman31aa4522007-02-04 11:42:11 +000027
Dave Chapman4b7e1e02006-12-13 09:02:18 +000028#ifdef __WIN32__
29#include <windows.h>
30#else
31#define HANDLE int
32#define O_BINARY 0
33#endif
34
Dave Chapman31aa4522007-02-04 11:42:11 +000035/* The maximum number of images in a firmware partition - a guess... */
36#define MAX_IMAGES 10
37
38enum firmwaretype_t {
39 FTYPE_OSOS = 0,
40 FTYPE_RSRC,
41 FTYPE_AUPD,
42 FTYPE_HIBE
43};
44
45struct ipod_directory_t {
46 enum firmwaretype_t ftype;
47 int id;
48 uint32_t devOffset; /* Offset of image relative to one sector into bootpart*/
49 uint32_t len;
50 uint32_t addr;
51 uint32_t entryOffset;
52 uint32_t chksum;
53 uint32_t vers;
54 uint32_t loadAddr;
55};
56
Dave Chapman2cc80f52007-07-29 21:19:14 +000057/* A fake partition type - DOS partition tables can't include HFS partitions */
58#define PARTTYPE_HFS 0xffff
59
Dave Chapman31aa4522007-02-04 11:42:11 +000060struct partinfo_t {
Dave Chapman35735c662007-07-27 20:51:36 +000061 uint32_t start; /* first sector (LBA) */
62 uint32_t size; /* number of sectors */
63 uint32_t type;
Dave Chapman31aa4522007-02-04 11:42:11 +000064};
65
66struct ipod_t {
67 HANDLE dh;
68 char diskname[4096];
69 int sector_size;
Dave Chapman56780e32007-06-16 22:32:57 +000070 int sectors_per_track;
71 int num_heads;
Dave Chapman31aa4522007-02-04 11:42:11 +000072 struct ipod_directory_t ipod_directory[MAX_IMAGES];
73 int nimages;
74 off_t diroffset;
75 off_t start; /* Offset in bytes of firmware partition from start of disk */
76 off_t fwoffset; /* Offset in bytes of start of firmware images from start of disk */
77 struct partinfo_t pinfo[4];
78 int modelnum;
79 char* modelname;
80 char* modelstr;
Dave Chapmana6d68bd2007-02-10 20:09:23 +000081 char* targetname;
Dave Chapman6e641e82007-02-05 18:29:39 +000082 int macpod;
Dave Chapmanbdc27ff2007-02-08 18:05:50 +000083#ifdef WITH_BOOTOBJS
84 unsigned char* bootloader;
85 int bootloader_len;
86#endif
Dave Chapman31aa4522007-02-04 11:42:11 +000087};
88
Dave Chapman4b7e1e02006-12-13 09:02:18 +000089void print_error(char* msg);
Dave Chapman31aa4522007-02-04 11:42:11 +000090int ipod_open(struct ipod_t* ipod, int silent);
91int ipod_reopen_rw(struct ipod_t* ipod);
92int ipod_close(struct ipod_t* ipod);
93int ipod_seek(struct ipod_t* ipod, unsigned long pos);
Dave Chapman2cc80f52007-07-29 21:19:14 +000094ssize_t ipod_read(struct ipod_t* ipod, unsigned char* buf, int nbytes);
95ssize_t ipod_write(struct ipod_t* ipod, unsigned char* buf, int nbytes);
Dave Chapman4b7e1e02006-12-13 09:02:18 +000096int ipod_alloc_buffer(unsigned char** sectorbuf, int bufsize);
97
Dave Chapman56780e32007-06-16 22:32:57 +000098/* In fat32format.c */
99int format_partition(struct ipod_t* ipod, int partition);
100
Dave Chapman4b7e1e02006-12-13 09:02:18 +0000101#endif