111 lines
3.3 KiB
C
111 lines
3.3 KiB
C
/* $NetBSD: svr4_util.c,v 1.1 1994/10/24 17:37:58 deraadt Exp $ */
|
|
/*
|
|
* Copyright (c) 1994 Christos Zoulas
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by the University of
|
|
* California, Berkeley and its contributors.
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/namei.h>
|
|
#include <sys/proc.h>
|
|
#include <sys/file.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/filedesc.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/malloc.h>
|
|
|
|
#include <compat/svr4/svr4_util.h>
|
|
|
|
/* For stackgap allocation */
|
|
caddr_t svr4_edata;
|
|
|
|
const char svr4_emul_path[] = "/emul/svr4";
|
|
|
|
int
|
|
svr4_emul_find(p, loc, prefix, path, pbuf)
|
|
struct proc *p;
|
|
int loc;
|
|
const char *prefix;
|
|
char *path;
|
|
char **pbuf;
|
|
{
|
|
struct nameidata nd;
|
|
int error;
|
|
char buf[MAXPATHLEN];
|
|
char *ptr;
|
|
size_t sz;
|
|
size_t len;
|
|
|
|
*pbuf = path;
|
|
|
|
for (ptr = buf; (*ptr = *prefix) != '\0'; ptr++, prefix++)
|
|
continue;
|
|
|
|
sz = sizeof(buf) - (ptr - buf);
|
|
|
|
if (loc == UIO_SYSSPACE)
|
|
error = copystr(path, ptr, sz, &len);
|
|
else
|
|
error = copyinstr(path, ptr, sz, &len);
|
|
|
|
DPRINTF(("looking for %s [%d, %d]: ", buf, sz, len));
|
|
|
|
if (*ptr != '/') {
|
|
DPRINTF(("no slash\n"));
|
|
return EINVAL;
|
|
}
|
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, buf, p);
|
|
|
|
if ((error = namei(&nd)) != 0) {
|
|
DPRINTF(("not found\n"));
|
|
return error;
|
|
}
|
|
|
|
sz = &ptr[len] - buf;
|
|
|
|
if (loc == UIO_SYSSPACE) {
|
|
*pbuf = malloc(sz + 1, M_TEMP, M_WAITOK);
|
|
error = copystr(buf, *pbuf, sz, &len);
|
|
}
|
|
else {
|
|
*pbuf = stackgap_alloc(sz + 1);
|
|
error = copyoutstr(buf, *pbuf, sz, &len);
|
|
}
|
|
|
|
DPRINTF((error ? "copy failed\n" : "ok\n"));
|
|
|
|
vrele(nd.ni_vp);
|
|
return error;
|
|
}
|