2 * Implements HPUX syscalls.
4 * Copyright (C) 1999 Matthew Wilcox <willy with parisc-linux.org>
5 * Copyright (C) 2000 Michael Ang <mang with subcarrier.org>
6 * Copyright (C) 2000 John Marvin <jsm with parisc-linux.org>
7 * Copyright (C) 2000 Philipp Rumpf
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/sched.h>
26 #include <linux/file.h>
27 #include <linux/smp_lock.h>
28 #include <linux/slab.h>
29 #include <linux/ptrace.h>
30 #include <asm/errno.h>
31 #include <asm/uaccess.h>
33 int hpux_execve(struct pt_regs
*regs
)
38 filename
= getname((char __user
*) regs
->gr
[26]);
39 error
= PTR_ERR(filename
);
43 error
= do_execve(filename
, (char __user
* __user
*) regs
->gr
[25],
44 (char __user
* __user
*) regs
->gr
[24], regs
);
48 current
->ptrace
&= ~PT_DTRACE
;
65 struct getdents_callback
{
66 struct hpux_dirent __user
*current_dir
;
67 struct hpux_dirent __user
*previous
;
72 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
73 #define ROUND_UP(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1))
75 static int filldir(void * __buf
, const char * name
, int namlen
, loff_t offset
,
76 u64 ino
, unsigned d_type
)
78 struct hpux_dirent __user
* dirent
;
79 struct getdents_callback
* buf
= (struct getdents_callback
*) __buf
;
81 int reclen
= ROUND_UP(NAME_OFFSET(dirent
) + namlen
+ 1);
83 buf
->error
= -EINVAL
; /* only used if we fail.. */
84 if (reclen
> buf
->count
)
87 if (sizeof(d_ino
) < sizeof(ino
) && d_ino
!= ino
)
89 dirent
= buf
->previous
;
91 put_user(offset
, &dirent
->d_off
);
92 dirent
= buf
->current_dir
;
93 buf
->previous
= dirent
;
94 put_user(d_ino
, &dirent
->d_ino
);
95 put_user(reclen
, &dirent
->d_reclen
);
96 put_user(namlen
, &dirent
->d_namlen
);
97 copy_to_user(dirent
->d_name
, name
, namlen
);
98 put_user(0, dirent
->d_name
+ namlen
);
99 dirent
= (void __user
*)dirent
+ reclen
;
100 buf
->current_dir
= dirent
;
101 buf
->count
-= reclen
;
108 int hpux_getdents(unsigned int fd
, struct hpux_dirent __user
*dirent
, unsigned int count
)
111 struct hpux_dirent __user
* lastdirent
;
112 struct getdents_callback buf
;
119 buf
.current_dir
= dirent
;
124 error
= vfs_readdir(file
, filldir
, &buf
);
128 lastdirent
= buf
.previous
;
130 put_user(file
->f_pos
, &lastdirent
->d_off
);
131 error
= count
- buf
.count
;
140 int hpux_mount(const char *fs
, const char *path
, int mflag
,
141 const char *fstype
, const char *dataptr
, int datalen
)
146 static int cp_hpux_stat(struct kstat
*stat
, struct hpux_stat64 __user
*statbuf
)
148 struct hpux_stat64 tmp
;
150 /* we probably want a different split here - is hpux 12:20? */
152 if (!new_valid_dev(stat
->dev
) || !new_valid_dev(stat
->rdev
))
155 memset(&tmp
, 0, sizeof(tmp
));
156 tmp
.st_dev
= new_encode_dev(stat
->dev
);
157 tmp
.st_ino
= stat
->ino
;
158 tmp
.st_mode
= stat
->mode
;
159 tmp
.st_nlink
= stat
->nlink
;
160 tmp
.st_uid
= stat
->uid
;
161 tmp
.st_gid
= stat
->gid
;
162 tmp
.st_rdev
= new_encode_dev(stat
->rdev
);
163 tmp
.st_size
= stat
->size
;
164 tmp
.st_atime
= stat
->atime
.tv_sec
;
165 tmp
.st_mtime
= stat
->mtime
.tv_sec
;
166 tmp
.st_ctime
= stat
->ctime
.tv_sec
;
167 tmp
.st_blocks
= stat
->blocks
;
168 tmp
.st_blksize
= stat
->blksize
;
169 return copy_to_user(statbuf
,&tmp
,sizeof(tmp
)) ? -EFAULT
: 0;
172 long hpux_stat64(char __user
*filename
, struct hpux_stat64 __user
*statbuf
)
175 int error
= vfs_stat(filename
, &stat
);
178 error
= cp_hpux_stat(&stat
, statbuf
);
183 long hpux_fstat64(unsigned int fd
, struct hpux_stat64 __user
*statbuf
)
186 int error
= vfs_fstat(fd
, &stat
);
189 error
= cp_hpux_stat(&stat
, statbuf
);
194 long hpux_lstat64(char __user
*filename
, struct hpux_stat64 __user
*statbuf
)
197 int error
= vfs_lstat(filename
, &stat
);
200 error
= cp_hpux_stat(&stat
, statbuf
);