blob: 12c04c5e558be01c1a219214721bfbd1901c1b4e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Implements HPUX syscalls.
3 *
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
8 *
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.
13 *
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.
18 *
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
22 */
23
Milind Arun Choudharyea743422007-04-01 13:06:46 +053024#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040026#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/sched.h>
28#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/slab.h>
30#include <linux/ptrace.h>
31#include <asm/errno.h>
32#include <asm/uaccess.h>
33
34int hpux_execve(struct pt_regs *regs)
35{
36 int error;
37 char *filename;
38
Matthew Wilcoxe51ec242006-11-05 15:24:48 -070039 filename = getname((char __user *) regs->gr[26]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 error = PTR_ERR(filename);
41 if (IS_ERR(filename))
42 goto out;
43
Matthew Wilcoxe51ec242006-11-05 15:24:48 -070044 error = do_execve(filename, (char __user * __user *) regs->gr[25],
45 (char __user * __user *) regs->gr[24], regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 if (error == 0) {
48 task_lock(current);
49 current->ptrace &= ~PT_DTRACE;
50 task_unlock(current);
51 }
52 putname(filename);
53
54out:
55 return error;
56}
57
58struct hpux_dirent {
59 loff_t d_off;
60 ino_t d_ino;
61 short d_reclen;
62 short d_namlen;
63 char d_name[1];
64};
65
66struct getdents_callback {
Matthew Wilcoxe51ec242006-11-05 15:24:48 -070067 struct hpux_dirent __user *current_dir;
68 struct hpux_dirent __user *previous;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 int count;
70 int error;
71};
72
Matthew Wilcoxe51ec242006-11-05 15:24:48 -070073#define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
Matthew Wilcox15c130c2006-10-04 13:18:25 -060076 u64 ino, unsigned d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Matthew Wilcoxe51ec242006-11-05 15:24:48 -070078 struct hpux_dirent __user * dirent;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct getdents_callback * buf = (struct getdents_callback *) __buf;
David Howellsafefdbb2006-10-03 01:13:46 -070080 ino_t d_ino;
Milind Arun Choudharyea743422007-04-01 13:06:46 +053081 int reclen = ALIGN(NAME_OFFSET(dirent) + namlen + 1, sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 buf->error = -EINVAL; /* only used if we fail.. */
84 if (reclen > buf->count)
85 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -070086 d_ino = ino;
Al Viroda574982008-08-12 00:04:22 -040087 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
88 buf->error = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -070089 return -EOVERFLOW;
Al Viroda574982008-08-12 00:04:22 -040090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 dirent = buf->previous;
92 if (dirent)
Al Viroda574982008-08-12 00:04:22 -040093 if (put_user(offset, &dirent->d_off))
94 goto Efault;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 dirent = buf->current_dir;
Al Viroda574982008-08-12 00:04:22 -040096 if (put_user(d_ino, &dirent->d_ino) ||
97 put_user(reclen, &dirent->d_reclen) ||
98 put_user(namlen, &dirent->d_namlen) ||
99 copy_to_user(dirent->d_name, name, namlen) ||
100 put_user(0, dirent->d_name + namlen))
101 goto Efault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 buf->previous = dirent;
Al Viroda574982008-08-12 00:04:22 -0400103 buf->current_dir = (void __user *)dirent + reclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 buf->count -= reclen;
105 return 0;
Al Viroda574982008-08-12 00:04:22 -0400106Efault:
Stephen Rothwell2ecbf812008-09-02 03:43:27 +1000107 buf->error = -EFAULT;
Al Viroda574982008-08-12 00:04:22 -0400108 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
111#undef NAME_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Matthew Wilcoxe51ec242006-11-05 15:24:48 -0700113int hpux_getdents(unsigned int fd, struct hpux_dirent __user *dirent, unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 struct file * file;
Matthew Wilcoxe51ec242006-11-05 15:24:48 -0700116 struct hpux_dirent __user * lastdirent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct getdents_callback buf;
118 int error = -EBADF;
119
120 file = fget(fd);
121 if (!file)
122 goto out;
123
124 buf.current_dir = dirent;
125 buf.previous = NULL;
126 buf.count = count;
127 buf.error = 0;
128
129 error = vfs_readdir(file, filldir, &buf);
130 if (error < 0)
131 goto out_putf;
132 error = buf.error;
133 lastdirent = buf.previous;
134 if (lastdirent) {
Al Viroda574982008-08-12 00:04:22 -0400135 if (put_user(file->f_pos, &lastdirent->d_off))
136 error = -EFAULT;
137 else
138 error = count - buf.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
141out_putf:
142 fput(file);
143out:
144 return error;
145}
146
147int hpux_mount(const char *fs, const char *path, int mflag,
148 const char *fstype, const char *dataptr, int datalen)
149{
150 return -ENOSYS;
151}
152
Matthew Wilcoxe51ec242006-11-05 15:24:48 -0700153static int cp_hpux_stat(struct kstat *stat, struct hpux_stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct hpux_stat64 tmp;
156
157 /* we probably want a different split here - is hpux 12:20? */
158
159 if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
160 return -EOVERFLOW;
161
162 memset(&tmp, 0, sizeof(tmp));
163 tmp.st_dev = new_encode_dev(stat->dev);
164 tmp.st_ino = stat->ino;
165 tmp.st_mode = stat->mode;
166 tmp.st_nlink = stat->nlink;
167 tmp.st_uid = stat->uid;
168 tmp.st_gid = stat->gid;
169 tmp.st_rdev = new_encode_dev(stat->rdev);
170 tmp.st_size = stat->size;
171 tmp.st_atime = stat->atime.tv_sec;
172 tmp.st_mtime = stat->mtime.tv_sec;
173 tmp.st_ctime = stat->ctime.tv_sec;
174 tmp.st_blocks = stat->blocks;
175 tmp.st_blksize = stat->blksize;
176 return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
177}
178
Matthew Wilcoxe51ec242006-11-05 15:24:48 -0700179long hpux_stat64(char __user *filename, struct hpux_stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct kstat stat;
182 int error = vfs_stat(filename, &stat);
183
184 if (!error)
185 error = cp_hpux_stat(&stat, statbuf);
186
187 return error;
188}
189
Matthew Wilcoxe51ec242006-11-05 15:24:48 -0700190long hpux_fstat64(unsigned int fd, struct hpux_stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct kstat stat;
193 int error = vfs_fstat(fd, &stat);
194
195 if (!error)
196 error = cp_hpux_stat(&stat, statbuf);
197
198 return error;
199}
200
Matthew Wilcoxe51ec242006-11-05 15:24:48 -0700201long hpux_lstat64(char __user *filename, struct hpux_stat64 __user *statbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 struct kstat stat;
204 int error = vfs_lstat(filename, &stat);
205
206 if (!error)
207 error = cp_hpux_stat(&stat, statbuf);
208
209 return error;
210}