]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/proc.c
Corrected masking of hdr_type
[pciutils.git] / lib / proc.c
index f5ae88303791f0951d061f92ae3a751905fb7fbb..d46e5cba4aba1e4dd0bd3c43c85b3b29a3a86862 100644 (file)
@@ -1,9 +1,7 @@
 /*
 /*
- *     $Id: proc.c,v 1.1 1999/01/22 21:05:39 mj Exp $
- *
  *     The PCI Library -- Configuration Access via /proc/bus/pci
  *
  *     The PCI Library -- Configuration Access via /proc/bus/pci
  *
- *     Copyright (c) 1997--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
+ *     Copyright (c) 1997--2003 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
 
 #include "internal.h"
 
 
 #include "internal.h"
 
-#include <asm/unistd.h>
-#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 1
-#include <syscall-list.h>
-#endif
-
 /*
 /*
- * As libc doesn't support pread/pwrite yet, we have to call them directly
- * or use lseek/read/write instead.
+ *  We'd like to use pread/pwrite for configuration space accesses, but
+ *  unfortunately it isn't simple at all since all libc's until glibc 2.1
+ *  don't define it.
  */
  */
-#if !(defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ > 0)
 
 
-#if defined(__GLIBC__) && !(defined(__powerpc__) && __GLIBC__ == 2 && __GLIBC_MINOR__ == 0)
+#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ > 0
+/* glibc 2.1 or newer -> pread/pwrite supported automatically */
+
+#elif defined(i386) && defined(__GLIBC__)
+/* glibc 2.0 on i386 -> call syscalls directly */
+#include <asm/unistd.h>
+#include <syscall-list.h>
 #ifndef SYS_pread
 #ifndef SYS_pread
-#define SYS_pread __NR_pread
+#define SYS_pread 180
 #endif
 #endif
-static int
-pread(unsigned int fd, void *buf, size_t size, loff_t where)
-{
-  return syscall(SYS_pread, fd, buf, size, where);
-}
-
+static int pread(unsigned int fd, void *buf, size_t size, loff_t where)
+{ return syscall(SYS_pread, fd, buf, size, where); }
 #ifndef SYS_pwrite
 #ifndef SYS_pwrite
-#define SYS_pwrite __NR_pwrite
+#define SYS_pwrite 181
 #endif
 #endif
-static int
-pwrite(unsigned int fd, void *buf, size_t size, loff_t where)
-{
-  return syscall(SYS_pwrite, fd, buf, size, where);
-}
+static int pwrite(unsigned int fd, void *buf, size_t size, loff_t where)
+{ return syscall(SYS_pwrite, fd, buf, size, where); }
+
+#elif defined(i386)
+/* old libc on i386 -> call syscalls directly the old way */
+#include <asm/unistd.h>
+static _syscall5(int, pread, unsigned int, fd, void *, buf, size_t, size, u32, where_lo, u32, where_hi);
+static _syscall5(int, pwrite, unsigned int, fd, void *, buf, size_t, size, u32, where_lo, u32, where_hi);
+static int do_read(struct pci_dev *d UNUSED, int fd, void *buf, size_t size, int where) { return pread(fd, buf, size, where, 0); }
+static int do_write(struct pci_dev *d UNUSED, int fd, void *buf, size_t size, int where) { return pwrite(fd, buf, size, where, 0); }
+#define HAVE_DO_READ
+
 #else
 #else
-static _syscall4(int, pread, unsigned int, fd, void *, buf, size_t, size, loff_t, where);
-static _syscall4(int, pwrite, unsigned int, fd, void *, buf, size_t, size, loff_t, where);
+/* In all other cases we use lseek/read/write instead to be safe */
+#define make_rw_glue(op) \
+       static int do_##op(struct pci_dev *d, int fd, void *buf, size_t size, int where)        \
+       {                                                                                       \
+         struct pci_access *a = d->access;                                                     \
+         int r;                                                                                \
+         if (a->fd_pos != where && lseek(fd, where, SEEK_SET) < 0)                             \
+           return -1;                                                                          \
+         r = op(fd, buf, size);                                                                \
+         if (r < 0)                                                                            \
+           a->fd_pos = -1;                                                                     \
+         else                                                                                  \
+           a->fd_pos = where + r;                                                              \
+         return r;                                                                             \
+       }
+make_rw_glue(read)
+make_rw_glue(write)
+#define HAVE_DO_READ
 #endif
 
 #endif
 
+#ifndef HAVE_DO_READ
+#define do_read(d,f,b,l,p) pread(f,b,l,p)
+#define do_write(d,f,b,l,p) pwrite(f,b,l,p)
 #endif
 
 static void
 #endif
 
 static void
@@ -95,7 +116,7 @@ static void
 proc_scan(struct pci_access *a)
 {
   FILE *f;
 proc_scan(struct pci_access *a)
 {
   FILE *f;
-  char buf[256];
+  char buf[512];
 
   if (snprintf(buf, sizeof(buf), "%s/devices", a->method_params[PCI_ACCESS_PROC_BUS_PCI]) == sizeof(buf))
     a->error("File name too long");
 
   if (snprintf(buf, sizeof(buf), "%s/devices", a->method_params[PCI_ACCESS_PROC_BUS_PCI]) == sizeof(buf))
     a->error("File name too long");
@@ -105,9 +126,10 @@ proc_scan(struct pci_access *a)
   while (fgets(buf, sizeof(buf)-1, f))
     {
       struct pci_dev *d = pci_alloc_dev(a);
   while (fgets(buf, sizeof(buf)-1, f))
     {
       struct pci_dev *d = pci_alloc_dev(a);
-      unsigned int dfn, vend;
+      unsigned int dfn, vend, cnt, known;
 
 
-      sscanf(buf, "%x %x %x %lx %lx %lx %lx %lx %lx %lx",
+#define F " " PCIADDR_T_FMT
+      cnt = sscanf(buf, "%x %x %x" F F F F F F F F F F F F F F,
             &dfn,
             &vend,
             &d->irq,
             &dfn,
             &vend,
             &d->irq,
@@ -117,14 +139,33 @@ proc_scan(struct pci_access *a)
             &d->base_addr[3],
             &d->base_addr[4],
             &d->base_addr[5],
             &d->base_addr[3],
             &d->base_addr[4],
             &d->base_addr[5],
-            &d->rom_base_addr);
+            &d->rom_base_addr,
+            &d->size[0],
+            &d->size[1],
+            &d->size[2],
+            &d->size[3],
+            &d->size[4],
+            &d->size[5],
+            &d->rom_size);
+#undef F
+      if (cnt != 9 && cnt != 10 && cnt != 17)
+       a->error("proc: parse error (read only %d items)", cnt);
       d->bus = dfn >> 8U;
       d->dev = PCI_SLOT(dfn & 0xff);
       d->func = PCI_FUNC(dfn & 0xff);
       d->vendor_id = vend >> 16U;
       d->device_id = vend & 0xffff;
       d->bus = dfn >> 8U;
       d->dev = PCI_SLOT(dfn & 0xff);
       d->func = PCI_FUNC(dfn & 0xff);
       d->vendor_id = vend >> 16U;
       d->device_id = vend & 0xffff;
-      d->known_fields = a->buscentric ? PCI_FILL_IDENT
-                                     : (PCI_FILL_IDENT | PCI_FILL_IRQ | PCI_FILL_BASES | PCI_FILL_ROM_BASE);
+      d->hdrtype = pci_read_byte(d, PCI_HEADER_TYPE) & 0x7f;
+      known = PCI_FILL_IDENT;
+      if (!a->buscentric)
+       {
+         known |= PCI_FILL_IRQ | PCI_FILL_BASES;
+         if (cnt >= 10)
+           known |= PCI_FILL_ROM_BASE;
+         if (cnt >= 17)
+           known |= PCI_FILL_SIZES;
+       }
+      d->known_fields = known;
       pci_link_dev(a, d);
     }
   fclose(f);
       pci_link_dev(a, d);
     }
   fclose(f);
@@ -148,6 +189,7 @@ proc_setup(struct pci_dev *d, int rw)
       if (a->fd < 0)
        a->warning("Cannot open %s", buf);
       a->cached_dev = d;
       if (a->fd < 0)
        a->warning("Cannot open %s", buf);
       a->cached_dev = d;
+      a->fd_pos = 0;
     }
   return a->fd;
 }
     }
   return a->fd;
 }
@@ -160,7 +202,7 @@ proc_read(struct pci_dev *d, int pos, byte *buf, int len)
 
   if (fd < 0)
     return 0;
 
   if (fd < 0)
     return 0;
-  res = pread(fd, buf, len, pos);
+  res = do_read(d, fd, buf, len, pos);
   if (res < 0)
     {
       d->access->warning("proc_read: read failed: %s", strerror(errno));
   if (res < 0)
     {
       d->access->warning("proc_read: read failed: %s", strerror(errno));
@@ -182,7 +224,7 @@ proc_write(struct pci_dev *d, int pos, byte *buf, int len)
 
   if (fd < 0)
     return 0;
 
   if (fd < 0)
     return 0;
-  res = pwrite(fd, buf, len, pos);
+  res = do_write(d, fd, buf, len, pos);
   if (res < 0)
     {
       d->access->warning("proc_write: write failed: %s", strerror(errno));
   if (res < 0)
     {
       d->access->warning("proc_write: write failed: %s", strerror(errno));