1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006-2007 Dave Chapman
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
25 #include <sys/types.h>
27 #include <sys/ioctl.h>
29 #if defined(linux) || defined (__linux)
30 #include <sys/mount.h>
31 #define SANSA_SECTORSIZE_IOCTL BLKSSZGET
32 #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) \
33 || defined(__bsdi__) || defined(__DragonFly__)
35 #define SANSA_SECTORSIZE_IOCTL DIOCGSECTORSIZE
36 #elif defined(__APPLE__) && defined(__MACH__)
38 #define SANSA_SECTORSIZE_IOCTL DKIOCGETBLOCKSIZE
40 #error No sector-size detection implemented for this platform
45 #if defined(__APPLE__) && defined(__MACH__)
46 static int sansa_unmount(struct sansa_t
* sansa
)
51 sprintf(cmd
, "/usr/sbin/diskutil unmount \"%ss1\"",sansa
->diskname
);
52 fprintf(stderr
,"[INFO] ");
58 perror("Unmount failed");
66 void print_error(char* msg
)
72 int sansa_open(struct sansa_t
* sansa
, int silent
)
74 sansa
->dh
=open(sansa
->diskname
,O_RDONLY
);
76 if (!silent
) perror(sansa
->diskname
);
80 if(ioctl(sansa
->dh
,SANSA_SECTORSIZE_IOCTL
,&sansa
->sector_size
) < 0) {
81 sansa
->sector_size
=512;
83 fprintf(stderr
,"[ERR] ioctl() call to get sector size failed, defaulting to %d\n"
91 int sansa_reopen_rw(struct sansa_t
* sansa
)
93 #if defined(__APPLE__) && defined(__MACH__)
94 if (sansa_unmount(sansa
) < 0)
99 sansa
->dh
=open(sansa
->diskname
,O_RDWR
);
101 perror(sansa
->diskname
);
107 int sansa_close(struct sansa_t
* sansa
)
113 int sansa_alloc_buffer(unsigned char** sectorbuf
, int bufsize
)
115 *sectorbuf
=malloc(bufsize
);
116 if (*sectorbuf
== NULL
) {
122 int sansa_seek(struct sansa_t
* sansa
, loff_t pos
)
126 res
= lseek64(sansa
->dh
, pos
, SEEK_SET
);
134 int sansa_read(struct sansa_t
* sansa
, unsigned char* buf
, int nbytes
)
136 return read(sansa
->dh
, buf
, nbytes
);
139 int sansa_write(struct sansa_t
* sansa
, unsigned char* buf
, int nbytes
)
141 return write(sansa
->dh
, buf
, nbytes
);