1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006-2007 Dave Chapman
12 * 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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
27 #include <sys/types.h>
29 #include <sys/ioctl.h>
32 #if defined(linux) || defined (__linux)
33 #include <sys/mount.h>
34 #define SANSA_SECTORSIZE_IOCTL BLKSSZGET
35 #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) \
36 || defined(__bsdi__) || defined(__DragonFly__)
38 #define SANSA_SECTORSIZE_IOCTL DIOCGSECTORSIZE
39 #elif defined(__APPLE__) && defined(__MACH__)
41 #define SANSA_SECTORSIZE_IOCTL DKIOCGETBLOCKSIZE
43 #error No sector-size detection implemented for this platform
48 #if defined(__APPLE__) && defined(__MACH__)
49 static int sansa_unmount(struct sansa_t
* sansa
)
54 sprintf(cmd
, "/usr/sbin/diskutil unmount \"%ss1\"",sansa
->diskname
);
55 fprintf(stderr
,"[INFO] ");
61 perror("Unmount failed");
68 void sansa_print_error(char* msg
)
73 int sansa_open(struct sansa_t
* sansa
, int silent
)
75 sansa
->dh
=open(sansa
->diskname
,O_RDONLY
);
77 if (!silent
) perror(sansa
->diskname
);
78 if(errno
== EACCES
) return -2;
82 if(ioctl(sansa
->dh
,SANSA_SECTORSIZE_IOCTL
,&sansa
->sector_size
) < 0) {
83 sansa
->sector_size
=512;
85 fprintf(stderr
,"[ERR] ioctl() call to get sector size failed, defaulting to %d\n"
93 int sansa_reopen_rw(struct sansa_t
* sansa
)
95 #if defined(__APPLE__) && defined(__MACH__)
96 if (sansa_unmount(sansa
) < 0)
101 sansa
->dh
=open(sansa
->diskname
,O_RDWR
);
103 perror(sansa
->diskname
);
109 int sansa_close(struct sansa_t
* sansa
)
115 int sansa_alloc_buffer(unsigned char** sectorbuf
, int bufsize
)
117 *sectorbuf
=malloc(bufsize
);
118 if (*sectorbuf
== NULL
) {
124 int sansa_seek(struct sansa_t
* sansa
, loff_t pos
)
128 res
= lseek64(sansa
->dh
, pos
, SEEK_SET
);
136 int sansa_read(struct sansa_t
* sansa
, unsigned char* buf
, int nbytes
)
138 return read(sansa
->dh
, buf
, nbytes
);
141 int sansa_write(struct sansa_t
* sansa
, unsigned char* buf
, int nbytes
)
143 return write(sansa
->dh
, buf
, nbytes
);