Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Choudhary | ea74342 | 2007-04-01 13:06:46 +0530 | [diff] [blame] | 24 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/mm.h> |
Alexey Dobriyan | 4e950f6 | 2007-07-30 02:36:13 +0400 | [diff] [blame] | 26 | #include <linux/fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/sched.h> |
| 28 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/slab.h> |
| 30 | #include <linux/ptrace.h> |
| 31 | #include <asm/errno.h> |
| 32 | #include <asm/uaccess.h> |
| 33 | |
| 34 | int hpux_execve(struct pt_regs *regs) |
| 35 | { |
| 36 | int error; |
| 37 | char *filename; |
| 38 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 39 | filename = getname((char __user *) regs->gr[26]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | error = PTR_ERR(filename); |
| 41 | if (IS_ERR(filename)) |
| 42 | goto out; |
| 43 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 44 | error = do_execve(filename, (char __user * __user *) regs->gr[25], |
| 45 | (char __user * __user *) regs->gr[24], regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | if (error == 0) { |
| 48 | task_lock(current); |
| 49 | current->ptrace &= ~PT_DTRACE; |
| 50 | task_unlock(current); |
| 51 | } |
| 52 | putname(filename); |
| 53 | |
| 54 | out: |
| 55 | return error; |
| 56 | } |
| 57 | |
| 58 | struct 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 | |
| 66 | struct getdents_callback { |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 67 | struct hpux_dirent __user *current_dir; |
| 68 | struct hpux_dirent __user *previous; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | int count; |
| 70 | int error; |
| 71 | }; |
| 72 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 73 | #define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | static int filldir(void * __buf, const char * name, int namlen, loff_t offset, |
Matthew Wilcox | 15c130c | 2006-10-04 13:18:25 -0600 | [diff] [blame] | 76 | u64 ino, unsigned d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 78 | struct hpux_dirent __user * dirent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | struct getdents_callback * buf = (struct getdents_callback *) __buf; |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 80 | ino_t d_ino; |
Milind Arun Choudhary | ea74342 | 2007-04-01 13:06:46 +0530 | [diff] [blame] | 81 | int reclen = ALIGN(NAME_OFFSET(dirent) + namlen + 1, sizeof(long)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
| 83 | buf->error = -EINVAL; /* only used if we fail.. */ |
| 84 | if (reclen > buf->count) |
| 85 | return -EINVAL; |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 86 | d_ino = ino; |
| 87 | if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) |
| 88 | return -EOVERFLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | dirent = buf->previous; |
| 90 | if (dirent) |
| 91 | put_user(offset, &dirent->d_off); |
| 92 | dirent = buf->current_dir; |
| 93 | buf->previous = dirent; |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 94 | put_user(d_ino, &dirent->d_ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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); |
Matthew Wilcox | 32f4681 | 2006-09-19 16:44:38 -0600 | [diff] [blame] | 99 | dirent = (void __user *)dirent + reclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | buf->current_dir = dirent; |
| 101 | buf->count -= reclen; |
| 102 | return 0; |
| 103 | } |
| 104 | |
| 105 | #undef NAME_OFFSET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 107 | int hpux_getdents(unsigned int fd, struct hpux_dirent __user *dirent, unsigned int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
| 109 | struct file * file; |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 110 | struct hpux_dirent __user * lastdirent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | struct getdents_callback buf; |
| 112 | int error = -EBADF; |
| 113 | |
| 114 | file = fget(fd); |
| 115 | if (!file) |
| 116 | goto out; |
| 117 | |
| 118 | buf.current_dir = dirent; |
| 119 | buf.previous = NULL; |
| 120 | buf.count = count; |
| 121 | buf.error = 0; |
| 122 | |
| 123 | error = vfs_readdir(file, filldir, &buf); |
| 124 | if (error < 0) |
| 125 | goto out_putf; |
| 126 | error = buf.error; |
| 127 | lastdirent = buf.previous; |
| 128 | if (lastdirent) { |
| 129 | put_user(file->f_pos, &lastdirent->d_off); |
| 130 | error = count - buf.count; |
| 131 | } |
| 132 | |
| 133 | out_putf: |
| 134 | fput(file); |
| 135 | out: |
| 136 | return error; |
| 137 | } |
| 138 | |
| 139 | int hpux_mount(const char *fs, const char *path, int mflag, |
| 140 | const char *fstype, const char *dataptr, int datalen) |
| 141 | { |
| 142 | return -ENOSYS; |
| 143 | } |
| 144 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 145 | static int cp_hpux_stat(struct kstat *stat, struct hpux_stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
| 147 | struct hpux_stat64 tmp; |
| 148 | |
| 149 | /* we probably want a different split here - is hpux 12:20? */ |
| 150 | |
| 151 | if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev)) |
| 152 | return -EOVERFLOW; |
| 153 | |
| 154 | memset(&tmp, 0, sizeof(tmp)); |
| 155 | tmp.st_dev = new_encode_dev(stat->dev); |
| 156 | tmp.st_ino = stat->ino; |
| 157 | tmp.st_mode = stat->mode; |
| 158 | tmp.st_nlink = stat->nlink; |
| 159 | tmp.st_uid = stat->uid; |
| 160 | tmp.st_gid = stat->gid; |
| 161 | tmp.st_rdev = new_encode_dev(stat->rdev); |
| 162 | tmp.st_size = stat->size; |
| 163 | tmp.st_atime = stat->atime.tv_sec; |
| 164 | tmp.st_mtime = stat->mtime.tv_sec; |
| 165 | tmp.st_ctime = stat->ctime.tv_sec; |
| 166 | tmp.st_blocks = stat->blocks; |
| 167 | tmp.st_blksize = stat->blksize; |
| 168 | return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; |
| 169 | } |
| 170 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 171 | long hpux_stat64(char __user *filename, struct hpux_stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | { |
| 173 | struct kstat stat; |
| 174 | int error = vfs_stat(filename, &stat); |
| 175 | |
| 176 | if (!error) |
| 177 | error = cp_hpux_stat(&stat, statbuf); |
| 178 | |
| 179 | return error; |
| 180 | } |
| 181 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 182 | long hpux_fstat64(unsigned int fd, struct hpux_stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
| 184 | struct kstat stat; |
| 185 | int error = vfs_fstat(fd, &stat); |
| 186 | |
| 187 | if (!error) |
| 188 | error = cp_hpux_stat(&stat, statbuf); |
| 189 | |
| 190 | return error; |
| 191 | } |
| 192 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 193 | long hpux_lstat64(char __user *filename, struct hpux_stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | { |
| 195 | struct kstat stat; |
| 196 | int error = vfs_lstat(filename, &stat); |
| 197 | |
| 198 | if (!error) |
| 199 | error = cp_hpux_stat(&stat, statbuf); |
| 200 | |
| 201 | return error; |
| 202 | } |