Remove .a files before running ar, to avoid problems with renamed files remaining...
[kugel-rb.git] / rbutil / sansapatcher / sansaio-posix.c
blob4c28afa1c20438ead2fad34cdffb26b70d01a840
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <fcntl.h>
25 #include <string.h>
26 #include <stdlib.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <sys/ioctl.h>
30 #include <errno.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__)
37 #include <sys/disk.h>
38 #define SANSA_SECTORSIZE_IOCTL DIOCGSECTORSIZE
39 #elif defined(__APPLE__) && defined(__MACH__)
40 #include <sys/disk.h>
41 #define SANSA_SECTORSIZE_IOCTL DKIOCGETBLOCKSIZE
42 #else
43 #error No sector-size detection implemented for this platform
44 #endif
46 #include "sansaio.h"
48 #if defined(__APPLE__) && defined(__MACH__)
49 static int sansa_unmount(struct sansa_t* sansa)
51 char cmd[4096];
52 int res;
54 sprintf(cmd, "/usr/sbin/diskutil unmount \"%ss1\"",sansa->diskname);
55 fprintf(stderr,"[INFO] ");
56 res = system(cmd);
58 if (res==0) {
59 return 0;
60 } else {
61 perror("Unmount failed");
62 return -1;
65 #endif
68 #ifndef RBUTIL
69 void print_error(char* msg)
71 perror(msg);
73 #endif
75 int sansa_open(struct sansa_t* sansa, int silent)
77 sansa->dh=open(sansa->diskname,O_RDONLY);
78 if (sansa->dh < 0) {
79 if (!silent) perror(sansa->diskname);
80 if(errno == EACCES) return -2;
81 else return -1;
84 if(ioctl(sansa->dh,SANSA_SECTORSIZE_IOCTL,&sansa->sector_size) < 0) {
85 sansa->sector_size=512;
86 if (!silent) {
87 fprintf(stderr,"[ERR] ioctl() call to get sector size failed, defaulting to %d\n"
88 ,sansa->sector_size);
91 return 0;
95 int sansa_reopen_rw(struct sansa_t* sansa)
97 #if defined(__APPLE__) && defined(__MACH__)
98 if (sansa_unmount(sansa) < 0)
99 return -1;
100 #endif
102 close(sansa->dh);
103 sansa->dh=open(sansa->diskname,O_RDWR);
104 if (sansa->dh < 0) {
105 perror(sansa->diskname);
106 return -1;
108 return 0;
111 int sansa_close(struct sansa_t* sansa)
113 close(sansa->dh);
114 return 0;
117 int sansa_alloc_buffer(unsigned char** sectorbuf, int bufsize)
119 *sectorbuf=malloc(bufsize);
120 if (*sectorbuf == NULL) {
121 return -1;
123 return 0;
126 int sansa_seek(struct sansa_t* sansa, loff_t pos)
128 off_t res;
130 res = lseek64(sansa->dh, pos, SEEK_SET);
132 if (res == -1) {
133 return -1;
135 return 0;
138 int sansa_read(struct sansa_t* sansa, unsigned char* buf, int nbytes)
140 return read(sansa->dh, buf, nbytes);
143 int sansa_write(struct sansa_t* sansa, unsigned char* buf, int nbytes)
145 return write(sansa->dh, buf, nbytes);