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