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/ptrace.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <asm/errno.h> |
| 32 | #include <asm/uaccess.h> |
| 33 | |
| 34 | int hpux_execve(struct pt_regs *regs) |
| 35 | { |
Linus Torvalds | c4ad8f9 | 2014-02-05 12:54:53 -0800 | [diff] [blame^] | 36 | return do_execve(getname((const char __user *) regs->gr[26]), |
David Howells | d762746 | 2010-08-17 23:52:56 +0100 | [diff] [blame] | 37 | (const char __user *const __user *) regs->gr[25], |
Geert Uytterhoeven | 6c700d7 | 2012-12-28 21:28:09 +0100 | [diff] [blame] | 38 | (const char __user *const __user *) regs->gr[24]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | struct hpux_dirent { |
| 42 | loff_t d_off; |
| 43 | ino_t d_ino; |
| 44 | short d_reclen; |
| 45 | short d_namlen; |
| 46 | char d_name[1]; |
| 47 | }; |
| 48 | |
| 49 | struct getdents_callback { |
Al Viro | 5c0ba4e | 2013-05-15 13:52:59 -0400 | [diff] [blame] | 50 | struct dir_context ctx; |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 51 | struct hpux_dirent __user *current_dir; |
| 52 | struct hpux_dirent __user *previous; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | int count; |
| 54 | int error; |
| 55 | }; |
| 56 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 57 | #define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | 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] | 60 | u64 ino, unsigned d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 62 | struct hpux_dirent __user * dirent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | struct getdents_callback * buf = (struct getdents_callback *) __buf; |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 64 | ino_t d_ino; |
Milind Arun Choudhary | ea74342 | 2007-04-01 13:06:46 +0530 | [diff] [blame] | 65 | int reclen = ALIGN(NAME_OFFSET(dirent) + namlen + 1, sizeof(long)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | buf->error = -EINVAL; /* only used if we fail.. */ |
| 68 | if (reclen > buf->count) |
| 69 | return -EINVAL; |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 70 | d_ino = ino; |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 71 | if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) { |
| 72 | buf->error = -EOVERFLOW; |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 73 | return -EOVERFLOW; |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 74 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | dirent = buf->previous; |
| 76 | if (dirent) |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 77 | if (put_user(offset, &dirent->d_off)) |
| 78 | goto Efault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | dirent = buf->current_dir; |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 80 | if (put_user(d_ino, &dirent->d_ino) || |
| 81 | put_user(reclen, &dirent->d_reclen) || |
| 82 | put_user(namlen, &dirent->d_namlen) || |
| 83 | copy_to_user(dirent->d_name, name, namlen) || |
| 84 | put_user(0, dirent->d_name + namlen)) |
| 85 | goto Efault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | buf->previous = dirent; |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 87 | buf->current_dir = (void __user *)dirent + reclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | buf->count -= reclen; |
| 89 | return 0; |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 90 | Efault: |
Stephen Rothwell | 2ecbf81 | 2008-09-02 03:43:27 +1000 | [diff] [blame] | 91 | buf->error = -EFAULT; |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 92 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | #undef NAME_OFFSET |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 97 | 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] | 98 | { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 99 | struct fd arg; |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 100 | struct hpux_dirent __user * lastdirent; |
Al Viro | ac6614b | 2013-05-22 22:22:04 -0400 | [diff] [blame] | 101 | struct getdents_callback buf = { |
| 102 | .ctx.actor = filldir, |
| 103 | .current_dir = dirent, |
| 104 | .count = count |
| 105 | }; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 106 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 108 | arg = fdget(fd); |
| 109 | if (!arg.file) |
| 110 | return -EBADF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Al Viro | 5c0ba4e | 2013-05-15 13:52:59 -0400 | [diff] [blame] | 112 | error = iterate_dir(arg.file, &buf.ctx); |
Al Viro | 53c9c5c | 2008-08-24 07:29:52 -0400 | [diff] [blame] | 113 | if (error >= 0) |
| 114 | error = buf.error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | lastdirent = buf.previous; |
| 116 | if (lastdirent) { |
Al Viro | bb6f619 | 2013-05-15 18:49:12 -0400 | [diff] [blame] | 117 | if (put_user(buf.ctx.pos, &lastdirent->d_off)) |
Al Viro | da57498 | 2008-08-12 00:04:22 -0400 | [diff] [blame] | 118 | error = -EFAULT; |
| 119 | else |
| 120 | error = count - buf.count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 123 | fdput(arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | return error; |
| 125 | } |
| 126 | |
| 127 | int hpux_mount(const char *fs, const char *path, int mflag, |
| 128 | const char *fstype, const char *dataptr, int datalen) |
| 129 | { |
| 130 | return -ENOSYS; |
| 131 | } |
| 132 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 133 | 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] | 134 | { |
| 135 | struct hpux_stat64 tmp; |
| 136 | |
| 137 | /* we probably want a different split here - is hpux 12:20? */ |
| 138 | |
| 139 | if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev)) |
| 140 | return -EOVERFLOW; |
| 141 | |
| 142 | memset(&tmp, 0, sizeof(tmp)); |
| 143 | tmp.st_dev = new_encode_dev(stat->dev); |
| 144 | tmp.st_ino = stat->ino; |
| 145 | tmp.st_mode = stat->mode; |
| 146 | tmp.st_nlink = stat->nlink; |
Eric W. Biederman | a7c1938 | 2012-02-09 09:10:30 -0800 | [diff] [blame] | 147 | tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid); |
| 148 | tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | tmp.st_rdev = new_encode_dev(stat->rdev); |
| 150 | tmp.st_size = stat->size; |
| 151 | tmp.st_atime = stat->atime.tv_sec; |
| 152 | tmp.st_mtime = stat->mtime.tv_sec; |
| 153 | tmp.st_ctime = stat->ctime.tv_sec; |
| 154 | tmp.st_blocks = stat->blocks; |
| 155 | tmp.st_blksize = stat->blksize; |
| 156 | return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0; |
| 157 | } |
| 158 | |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 159 | long hpux_stat64(const char __user *filename, struct hpux_stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
| 161 | struct kstat stat; |
| 162 | int error = vfs_stat(filename, &stat); |
| 163 | |
| 164 | if (!error) |
| 165 | error = cp_hpux_stat(&stat, statbuf); |
| 166 | |
| 167 | return error; |
| 168 | } |
| 169 | |
Matthew Wilcox | e51ec24 | 2006-11-05 15:24:48 -0700 | [diff] [blame] | 170 | long hpux_fstat64(unsigned int fd, struct hpux_stat64 __user *statbuf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
| 172 | struct kstat stat; |
| 173 | int error = vfs_fstat(fd, &stat); |
| 174 | |
| 175 | if (!error) |
| 176 | error = cp_hpux_stat(&stat, statbuf); |
| 177 | |
| 178 | return error; |
| 179 | } |
| 180 | |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 181 | long hpux_lstat64(const char __user *filename, |
| 182 | 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_lstat(filename, &stat); |
| 186 | |
| 187 | if (!error) |
| 188 | error = cp_hpux_stat(&stat, statbuf); |
| 189 | |
| 190 | return error; |
| 191 | } |