1*10d63b7dSRichard Lowe /* 2*10d63b7dSRichard Lowe * CDDL HEADER START 3*10d63b7dSRichard Lowe * 4*10d63b7dSRichard Lowe * The contents of this file are subject to the terms of the 5*10d63b7dSRichard Lowe * Common Development and Distribution License (the "License"). 6*10d63b7dSRichard Lowe * You may not use this file except in compliance with the License. 7*10d63b7dSRichard Lowe * 8*10d63b7dSRichard Lowe * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*10d63b7dSRichard Lowe * or http://www.opensolaris.org/os/licensing. 10*10d63b7dSRichard Lowe * See the License for the specific language governing permissions 11*10d63b7dSRichard Lowe * and limitations under the License. 12*10d63b7dSRichard Lowe * 13*10d63b7dSRichard Lowe * When distributing Covered Code, include this CDDL HEADER in each 14*10d63b7dSRichard Lowe * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*10d63b7dSRichard Lowe * If applicable, add the following below this CDDL HEADER, with the 16*10d63b7dSRichard Lowe * fields enclosed by brackets "[]" replaced with your own identifying 17*10d63b7dSRichard Lowe * information: Portions Copyright [yyyy] [name of copyright owner] 18*10d63b7dSRichard Lowe * 19*10d63b7dSRichard Lowe * CDDL HEADER END 20*10d63b7dSRichard Lowe */ 21*10d63b7dSRichard Lowe /* 22*10d63b7dSRichard Lowe * Copyright 1999 Sun Microsystems, Inc. All rights reserved. 23*10d63b7dSRichard Lowe * Use is subject to license terms. 24*10d63b7dSRichard Lowe */ 25*10d63b7dSRichard Lowe 26*10d63b7dSRichard Lowe 27*10d63b7dSRichard Lowe #ifndef _ARGS_H_ 28*10d63b7dSRichard Lowe #define _ARGS_H_ 29*10d63b7dSRichard Lowe 30*10d63b7dSRichard Lowe #include <sys/syscall.h> 31*10d63b7dSRichard Lowe #include <errno.h> 32*10d63b7dSRichard Lowe #include <sys/time.h> 33*10d63b7dSRichard Lowe #include <sys/param.h> 34*10d63b7dSRichard Lowe #include <stdio.h> 35*10d63b7dSRichard Lowe #include <fcntl.h> 36*10d63b7dSRichard Lowe #include <sys/types.h> 37*10d63b7dSRichard Lowe #include <sys/stat.h> 38*10d63b7dSRichard Lowe #include <sys/file.h> 39*10d63b7dSRichard Lowe 40*10d63b7dSRichard Lowe typedef enum { rw_read, rw_write} rwt, *rwpt; 41*10d63b7dSRichard Lowe 42*10d63b7dSRichard Lowe extern void translate_with_thunk(register char *filename, int (*thunk) (char *), pathpt path_vector, pathpt vroot_vector, rwt rw); 43*10d63b7dSRichard Lowe 44*10d63b7dSRichard Lowe union Args { 45*10d63b7dSRichard Lowe struct { int mode;} access; 46*10d63b7dSRichard Lowe struct { int mode;} chmod; 47*10d63b7dSRichard Lowe struct { int user; int group;} chown; 48*10d63b7dSRichard Lowe struct { int mode;} creat; 49*10d63b7dSRichard Lowe struct { char **argv; char **environ;} execve; 50*10d63b7dSRichard Lowe struct { struct stat *buffer;} lstat; 51*10d63b7dSRichard Lowe struct { int mode;} mkdir; 52*10d63b7dSRichard Lowe struct { char *name; int mode;} mount; 53*10d63b7dSRichard Lowe struct { int flags; int mode;} open; 54*10d63b7dSRichard Lowe struct { char *buffer; int buffer_size;} readlink; 55*10d63b7dSRichard Lowe struct { struct stat *buffer;} stat; 56*10d63b7dSRichard Lowe struct { int length;} truncate; 57*10d63b7dSRichard Lowe struct { struct timeval *time;} utimes; 58*10d63b7dSRichard Lowe }; 59*10d63b7dSRichard Lowe 60*10d63b7dSRichard Lowe extern union Args vroot_args; 61*10d63b7dSRichard Lowe extern int vroot_result; 62*10d63b7dSRichard Lowe 63*10d63b7dSRichard Lowe #endif 64