1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/* libcqcam - shared Color Quickcam routines
* Copyright (C) 1996-1998 by Patrick Reynolds
* Email: <no.email@noemail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
// I/O ports wrapper code
// This file might need tweaking if you're trying to port my code to other
// x86 Unix platforms. Code is already available for Linux, FreeBSD, and
// QNX; see the Makefile.
//
// QNX code by: Anders Arpteg <aa11ac@hik.se>
// FreeBSD code by: Patrick Reynolds <reynolds@cs.duke.edu> and Charles
// Henrich <henrich@msu.edu>
//#include "config.h"
#include <stdio.h>
#include <errno.h>
#ifdef LOCKING
#include <fcntl.h>
#include <sys/stat.h>
#endif /* LOCKING */
#ifdef __linux__
#if defined(arm) || defined(__hppa__) || defined(__sparc__) || defined(__ppc__) \
|| defined(__powerpc__) || defined(__s390__) || defined(__s390x__)\
|| defined(__mips__) || defined(__mc68000__) || defined(__sh__)
#define NO_SYSIO
#endif /* architechtures */
#endif /* __linux__ */
#ifdef __linux__
#if defined(NO_SYSIO)
#include <fcntl.h>
#else
#include <sys/io.h>
#endif /* NO_SYSIO */
#elif defined(QNX)
#include <conio.h>
#elif defined(__FreeBSD__)
#include <sys/types.h>
#include <machine/cpufunc.h>
#elif defined(BSDI)
#include <machine/inline.h>
#elif defined(OPENBSD)
#include <machine/pio.h>
#elif defined(LYNX)
#include "lynx-io.h"
#elif defined(SOLARIS)
#include "solaris-io.h"
#else
#error Please define a platform in the Makefile
#endif /* which OS */
#include "port.h"
port_t::port_t(int iport) {
port = -1;
#ifdef LOCKING
if (lock(iport) == -1) {
#ifdef DEBUG
fprintf(stderr, "port 0x%x already locked\n", iport);
#endif /* DEBUG */
return;
}
#endif /* LOCKING */
#ifdef LINUX
#ifdef NO_SYSIO
if ((devport = open("/dev/port", O_RDWR)) < 0) {
perror("open /dev/port");
return;
}
#else
if (ioperm(iport, 3, 1) == -1) {
perror("ioperm()");
return;
}
#endif /* NO_SYSIO */
#elif defined(FREEBSD)
if ((devio = fopen("/dev/io", "r+")) == NULL) {
perror("fopen /dev/io");
return;
}
#elif defined(OPENBSD)
if (i386_iopl(1) == -1) {
perror("i386_iopl");
return;
}
#elif defined(LYNX)
if (io_access() < 0) {
perror("io_access");
return;
}
#elif defined(SOLARIS)
if (openiop()) {
perror("openiop");
return;
}
#endif /* which OS */
port = iport;
port1 = port + 1;
port2 = port + 2;
control_reg = read_control();
}
port_t::~port_t(void) {
#ifdef LOCKING
unlock(port);
#endif /* LOCKING */
#ifdef LINUX
#ifdef NO_SYSIO
if (devport >= 0)
close(devport);
#else
if (port > 0 && geteuid() == 0)
if (ioperm(port, 3, 0) != 0) // drop port permissions -- still must
// be root
perror("ioperm()");
#endif /* NO_SYSIO */
#elif defined(FREEBSD)
if (devio != NULL)
fclose(devio);
#elif defined(SOLARIS)
close(iopfd);
#endif /* which OS */
}
#ifdef LOCKING
int port_t::lock(int portnum) {
char lockfile[80];
sprintf(lockfile, "/tmp/LOCK.qcam.0x%x", portnum);
while ((lock_fd = open(lockfile, O_WRONLY | O_CREAT | O_EXCL, 0600)) == -1) {
if (errno != EEXIST) {
perror(lockfile);
return -1;
}
struct stat stat_buf;
if (lstat(lockfile, &stat_buf) < 0) continue;
if (S_ISLNK(stat_buf.st_mode) || stat_buf.st_uid != 0) {
if (unlink(lockfile)) {
if (errno == ENOENT) continue;
if (errno != EISDIR || (rmdir(lockfile) && errno != ENOENT)) {
/* known problem: if lockfile exists and is a non-empty
directory, we give up instead of doing an rm-r of it */
perror(lockfile);
return -1;
}
}
continue;
}
lock_fd = open(lockfile, O_WRONLY, 0600);
if (lock_fd == -1) {
perror(lockfile);
return -1;
}
break;
}
static struct flock lock_info;
lock_info.l_type = F_WRLCK;
#ifdef LOCK_FAIL
if (fcntl(lock_fd, F_SETLK, &lock_info) != 0) {
#else
if (fcntl(lock_fd, F_SETLKW, &lock_info) != 0) {
#endif /* LOCK_FAIL */
if (errno != EAGAIN)
perror("fcntl");
return -1;
}
chown(lockfile, getuid(), getgid());
#ifdef DEBUG
fprintf(stderr, "Locked port 0x%x\n", portnum);
#endif /* DEBUG */
return 0;
}
void port_t::unlock(int portnum) {
if (portnum == -1)
return;
close(lock_fd); // this clears the lock
char lockfile[80];
sprintf(lockfile, "/tmp/LOCK.qcam.0x%x", portnum);
if (unlink(lockfile)) perror(lockfile);
#ifdef DEBUG
fprintf(stderr, "Unlocked port 0x%x\n", portnum);
#endif /* DEBUG */
}
#endif /* LOCKING */
|