1997-02-09 22:50:16 +00:00
|
|
|
/*
|
1997-11-16 04:52:19 +00:00
|
|
|
* Copyright (C) 1993-1997 by Darren Reed.
|
1997-02-09 22:50:16 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this notice is preserved and due credit is given
|
|
|
|
* to the original author and the contributors.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* kmemcpy() - copies n bytes from kernel memory into user buffer.
|
|
|
|
* returns 0 on success, -1 on error.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/file.h>
|
1997-04-03 10:22:02 +00:00
|
|
|
#include "kmem.h"
|
1997-02-09 22:50:16 +00:00
|
|
|
|
1997-11-16 04:52:19 +00:00
|
|
|
#if !defined(lint)
|
|
|
|
static const char sccsid[] = "@(#)kmem.c 1.4 1/12/96 (C) 1992 Darren Reed";
|
|
|
|
static const char rcsid[] = "@(#)$Id: kmem.c,v 2.0.2.5 1997/10/23 14:50:53 darrenr Exp $";
|
1997-02-09 22:50:16 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static int kmemfd = -1;
|
|
|
|
|
|
|
|
int openkmem()
|
|
|
|
{
|
|
|
|
if ((kmemfd = open(KMEM,O_RDONLY)) == -1)
|
|
|
|
{
|
|
|
|
perror("kmeminit:open");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return kmemfd;
|
|
|
|
}
|
|
|
|
|
|
|
|
int kmemcpy(buf, pos, n)
|
|
|
|
register char *buf;
|
|
|
|
long pos;
|
|
|
|
register int n;
|
|
|
|
{
|
|
|
|
register int r;
|
|
|
|
|
|
|
|
if (!n)
|
|
|
|
return 0;
|
|
|
|
if (kmemfd == -1)
|
|
|
|
if (openkmem() == -1)
|
|
|
|
return -1;
|
|
|
|
if (lseek(kmemfd, pos, 0) == -1)
|
|
|
|
{
|
|
|
|
perror("kmemcpy:lseek");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
while ((r = read(kmemfd, buf, n)) < n)
|
|
|
|
if (r <= 0)
|
|
|
|
{
|
|
|
|
perror("kmemcpy:read");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buf += r;
|
|
|
|
n -= r;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|