blob: 9ec56dc973749555019f5f0087727cc1bb97881a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/alpha/kernel/osf_sys.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 */
6
7/*
8 * This file handles some of the stranger OSF/1 system call interfaces.
9 * Some of the system calls expect a non-C calling standard, others have
10 * special parameter blocks..
11 */
12
13#include <linux/errno.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010014#include <linux/sched/signal.h>
Ingo Molnar01042602017-02-08 18:51:31 +010015#include <linux/sched/mm.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010016#include <linux/sched/task_stack.h>
Ingo Molnar32ef5512017-02-05 11:48:36 +010017#include <linux/sched/cputime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/mm.h>
20#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/stddef.h>
22#include <linux/syscalls.h>
23#include <linux/unistd.h>
24#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/utsname.h>
27#include <linux/time.h>
28#include <linux/timex.h>
29#include <linux/major.h>
30#include <linux/stat.h>
31#include <linux/mman.h>
32#include <linux/shm.h>
33#include <linux/poll.h>
34#include <linux/file.h>
35#include <linux/types.h>
36#include <linux/ipc.h>
37#include <linux/namei.h>
38#include <linux/uio.h>
39#include <linux/vfs.h>
Dipankar Sarma4fb3a532005-09-16 19:28:13 -070040#include <linux/rcupdate.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/fpu.h>
44#include <asm/io.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080045#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/sysinfo.h>
Sergei Trofimovich2df7a7d2011-08-25 15:59:02 -070047#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/hwrpb.h>
49#include <asm/processor.h>
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*
52 * Brk needs to return an error. Still support Linux's brk(0) query idiom,
53 * which OSF programs just shouldn't be doing. We're still not quite
54 * identical to OSF as we don't return 0 on success, but doing otherwise
55 * would require changes to libc. Hopefully this is good enough.
56 */
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -080057SYSCALL_DEFINE1(osf_brk, unsigned long, brk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 unsigned long retval = sys_brk(brk);
60 if (brk && brk != retval)
61 retval = -ENOMEM;
62 return retval;
63}
64
65/*
66 * This is pure guess-work..
67 */
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -080068SYSCALL_DEFINE4(osf_set_program_attributes, unsigned long, text_start,
69 unsigned long, text_len, unsigned long, bss_start,
70 unsigned long, bss_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 struct mm_struct *mm;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 mm = current->mm;
75 mm->end_code = bss_start + bss_len;
Ivan Kokshaysky2444e562008-04-24 16:54:50 +040076 mm->start_brk = bss_start + bss_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 mm->brk = bss_start + bss_len;
78#if 0
79 printk("set_program_attributes(%lx %lx %lx %lx)\n",
80 text_start, text_len, bss_start, bss_len);
81#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return 0;
83}
84
85/*
86 * OSF/1 directory handling functions...
87 *
88 * The "getdents()" interface is much more sane: the "basep" stuff is
89 * braindamage (it can't really handle filesystems where the directory
90 * offset differences aren't the same as "d_reclen").
91 */
92#define NAME_OFFSET offsetof (struct osf_dirent, d_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94struct osf_dirent {
95 unsigned int d_ino;
96 unsigned short d_reclen;
97 unsigned short d_namlen;
98 char d_name[1];
99};
100
101struct osf_dirent_callback {
Al Viro5c0ba4e2013-05-15 13:52:59 -0400102 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 struct osf_dirent __user *dirent;
104 long __user *basep;
105 unsigned int count;
106 int error;
107};
108
109static int
Miklos Szerediac7576f2014-10-30 17:37:34 +0100110osf_filldir(struct dir_context *ctx, const char *name, int namlen,
111 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 struct osf_dirent __user *dirent;
Miklos Szerediac7576f2014-10-30 17:37:34 +0100114 struct osf_dirent_callback *buf =
115 container_of(ctx, struct osf_dirent_callback, ctx);
Milind Arun Choudhary180e53a2007-05-06 14:50:36 -0700116 unsigned int reclen = ALIGN(NAME_OFFSET + namlen + 1, sizeof(u32));
David Howellsafefdbb2006-10-03 01:13:46 -0700117 unsigned int d_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 buf->error = -EINVAL; /* only used if we fail */
120 if (reclen > buf->count)
121 return -EINVAL;
David Howellsafefdbb2006-10-03 01:13:46 -0700122 d_ino = ino;
Al Viro645e68e2008-08-11 23:51:22 -0400123 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
124 buf->error = -EOVERFLOW;
David Howellsafefdbb2006-10-03 01:13:46 -0700125 return -EOVERFLOW;
Al Viro645e68e2008-08-11 23:51:22 -0400126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (buf->basep) {
128 if (put_user(offset, buf->basep))
Al Viro645e68e2008-08-11 23:51:22 -0400129 goto Efault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 buf->basep = NULL;
131 }
132 dirent = buf->dirent;
Al Viro645e68e2008-08-11 23:51:22 -0400133 if (put_user(d_ino, &dirent->d_ino) ||
134 put_user(namlen, &dirent->d_namlen) ||
135 put_user(reclen, &dirent->d_reclen) ||
136 copy_to_user(dirent->d_name, name, namlen) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 put_user(0, dirent->d_name + namlen))
Al Viro645e68e2008-08-11 23:51:22 -0400138 goto Efault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 dirent = (void __user *)dirent + reclen;
140 buf->dirent = dirent;
141 buf->count -= reclen;
142 return 0;
Al Viro645e68e2008-08-11 23:51:22 -0400143Efault:
144 buf->error = -EFAULT;
145 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800148SYSCALL_DEFINE4(osf_getdirentries, unsigned int, fd,
149 struct osf_dirent __user *, dirent, unsigned int, count,
150 long __user *, basep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 int error;
Al Viro63b6df12016-04-20 17:08:21 -0400153 struct fd arg = fdget_pos(fd);
Al Viroac6614b2013-05-22 22:22:04 -0400154 struct osf_dirent_callback buf = {
155 .ctx.actor = osf_filldir,
156 .dirent = dirent,
157 .basep = basep,
158 .count = count
159 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Al Viro2903ff02012-08-28 12:52:22 -0400161 if (!arg.file)
162 return -EBADF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Al Viro5c0ba4e2013-05-15 13:52:59 -0400164 error = iterate_dir(arg.file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400165 if (error >= 0)
166 error = buf.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (count != buf.count)
168 error = count - buf.count;
169
Al Viro63b6df12016-04-20 17:08:21 -0400170 fdput_pos(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return error;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#undef NAME_OFFSET
175
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800176SYSCALL_DEFINE6(osf_mmap, unsigned long, addr, unsigned long, len,
177 unsigned long, prot, unsigned long, flags, unsigned long, fd,
178 unsigned long, off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Al Virof8b72562009-11-30 17:37:04 -0500180 unsigned long ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182#if 0
183 if (flags & (_MAP_HASSEMAPHORE | _MAP_INHERIT | _MAP_UNALIGNED))
184 printk("%s: unimplemented OSF mmap flags %04lx\n",
185 current->comm, flags);
186#endif
Al Virof8b72562009-11-30 17:37:04 -0500187 if ((off + PAGE_ALIGN(len)) < off)
188 goto out;
189 if (off & ~PAGE_MASK)
190 goto out;
191 ret = sys_mmap_pgoff(addr, len, prot, flags, fd, off >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 out:
193 return ret;
194}
195
Mans Rullgard7a8bb982011-08-26 19:06:29 +0100196struct osf_stat {
197 int st_dev;
198 int st_pad1;
199 unsigned st_mode;
200 unsigned short st_nlink;
201 short st_nlink_reserved;
202 unsigned st_uid;
203 unsigned st_gid;
204 int st_rdev;
205 int st_ldev;
206 long st_size;
207 int st_pad2;
208 int st_uatime;
209 int st_pad3;
210 int st_umtime;
211 int st_pad4;
212 int st_uctime;
213 int st_pad5;
214 int st_pad6;
215 unsigned st_flags;
216 unsigned st_gen;
217 long st_spare[4];
218 unsigned st_ino;
219 int st_ino_reserved;
220 int st_atime;
221 int st_atime_reserved;
222 int st_mtime;
223 int st_mtime_reserved;
224 int st_ctime;
225 int st_ctime_reserved;
226 long st_blksize;
227 long st_blocks;
228};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230/*
231 * The OSF/1 statfs structure is much larger, but this should
232 * match the beginning, at least.
233 */
234struct osf_statfs {
235 short f_type;
236 short f_flags;
237 int f_fsize;
238 int f_bsize;
239 int f_blocks;
240 int f_bfree;
241 int f_bavail;
242 int f_files;
243 int f_ffree;
244 __kernel_fsid_t f_fsid;
245};
246
Mans Rullgard7a8bb982011-08-26 19:06:29 +0100247struct osf_statfs64 {
248 short f_type;
249 short f_flags;
250 int f_pad1;
251 int f_pad2;
252 int f_pad3;
253 int f_pad4;
254 int f_pad5;
255 int f_pad6;
256 int f_pad7;
257 __kernel_fsid_t f_fsid;
258 u_short f_namemax;
259 short f_reserved1;
260 int f_spare[8];
261 char f_pad8[90];
262 char f_pad9[90];
263 long mount_info[10];
264 u_long f_flags2;
265 long f_spare2[14];
266 long f_fsize;
267 long f_bsize;
268 long f_blocks;
269 long f_bfree;
270 long f_bavail;
271 long f_files;
272 long f_ffree;
273};
274
275static int
276linux_to_osf_stat(struct kstat *lstat, struct osf_stat __user *osf_stat)
277{
278 struct osf_stat tmp = { 0 };
279
280 tmp.st_dev = lstat->dev;
281 tmp.st_mode = lstat->mode;
282 tmp.st_nlink = lstat->nlink;
Eric W. Biedermanf31389d2012-08-11 12:07:24 -0700283 tmp.st_uid = from_kuid_munged(current_user_ns(), lstat->uid);
284 tmp.st_gid = from_kgid_munged(current_user_ns(), lstat->gid);
Mans Rullgard7a8bb982011-08-26 19:06:29 +0100285 tmp.st_rdev = lstat->rdev;
286 tmp.st_ldev = lstat->rdev;
287 tmp.st_size = lstat->size;
288 tmp.st_uatime = lstat->atime.tv_nsec / 1000;
289 tmp.st_umtime = lstat->mtime.tv_nsec / 1000;
290 tmp.st_uctime = lstat->ctime.tv_nsec / 1000;
291 tmp.st_ino = lstat->ino;
292 tmp.st_atime = lstat->atime.tv_sec;
293 tmp.st_mtime = lstat->mtime.tv_sec;
294 tmp.st_ctime = lstat->ctime.tv_sec;
295 tmp.st_blksize = lstat->blksize;
296 tmp.st_blocks = lstat->blocks;
297
298 return copy_to_user(osf_stat, &tmp, sizeof(tmp)) ? -EFAULT : 0;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301static int
302linux_to_osf_statfs(struct kstatfs *linux_stat, struct osf_statfs __user *osf_stat,
303 unsigned long bufsiz)
304{
305 struct osf_statfs tmp_stat;
306
307 tmp_stat.f_type = linux_stat->f_type;
308 tmp_stat.f_flags = 0; /* mount flags */
309 tmp_stat.f_fsize = linux_stat->f_frsize;
310 tmp_stat.f_bsize = linux_stat->f_bsize;
311 tmp_stat.f_blocks = linux_stat->f_blocks;
312 tmp_stat.f_bfree = linux_stat->f_bfree;
313 tmp_stat.f_bavail = linux_stat->f_bavail;
314 tmp_stat.f_files = linux_stat->f_files;
315 tmp_stat.f_ffree = linux_stat->f_ffree;
316 tmp_stat.f_fsid = linux_stat->f_fsid;
317 if (bufsiz > sizeof(tmp_stat))
318 bufsiz = sizeof(tmp_stat);
319 return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0;
320}
321
Mans Rullgard7a8bb982011-08-26 19:06:29 +0100322static int
323linux_to_osf_statfs64(struct kstatfs *linux_stat, struct osf_statfs64 __user *osf_stat,
324 unsigned long bufsiz)
325{
326 struct osf_statfs64 tmp_stat = { 0 };
327
328 tmp_stat.f_type = linux_stat->f_type;
329 tmp_stat.f_fsize = linux_stat->f_frsize;
330 tmp_stat.f_bsize = linux_stat->f_bsize;
331 tmp_stat.f_blocks = linux_stat->f_blocks;
332 tmp_stat.f_bfree = linux_stat->f_bfree;
333 tmp_stat.f_bavail = linux_stat->f_bavail;
334 tmp_stat.f_files = linux_stat->f_files;
335 tmp_stat.f_ffree = linux_stat->f_ffree;
336 tmp_stat.f_fsid = linux_stat->f_fsid;
337 if (bufsiz > sizeof(tmp_stat))
338 bufsiz = sizeof(tmp_stat);
339 return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0;
340}
341
Al Viroc8b91ac2011-03-12 10:41:39 -0500342SYSCALL_DEFINE3(osf_statfs, const char __user *, pathname,
343 struct osf_statfs __user *, buffer, unsigned long, bufsiz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
345 struct kstatfs linux_stat;
Al Viroc8b91ac2011-03-12 10:41:39 -0500346 int error = user_statfs(pathname, &linux_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (!error)
348 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz);
349 return error;
350}
351
Mans Rullgard7a8bb982011-08-26 19:06:29 +0100352SYSCALL_DEFINE2(osf_stat, char __user *, name, struct osf_stat __user *, buf)
353{
354 struct kstat stat;
355 int error;
356
357 error = vfs_stat(name, &stat);
358 if (error)
359 return error;
360
361 return linux_to_osf_stat(&stat, buf);
362}
363
364SYSCALL_DEFINE2(osf_lstat, char __user *, name, struct osf_stat __user *, buf)
365{
366 struct kstat stat;
367 int error;
368
369 error = vfs_lstat(name, &stat);
370 if (error)
371 return error;
372
373 return linux_to_osf_stat(&stat, buf);
374}
375
376SYSCALL_DEFINE2(osf_fstat, int, fd, struct osf_stat __user *, buf)
377{
378 struct kstat stat;
379 int error;
380
381 error = vfs_fstat(fd, &stat);
382 if (error)
383 return error;
384
385 return linux_to_osf_stat(&stat, buf);
386}
387
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800388SYSCALL_DEFINE3(osf_fstatfs, unsigned long, fd,
389 struct osf_statfs __user *, buffer, unsigned long, bufsiz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Al Viroc8b91ac2011-03-12 10:41:39 -0500391 struct kstatfs linux_stat;
392 int error = fd_statfs(fd, &linux_stat);
393 if (!error)
394 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz);
395 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Mans Rullgard7a8bb982011-08-26 19:06:29 +0100398SYSCALL_DEFINE3(osf_statfs64, char __user *, pathname,
399 struct osf_statfs64 __user *, buffer, unsigned long, bufsiz)
400{
401 struct kstatfs linux_stat;
402 int error = user_statfs(pathname, &linux_stat);
403 if (!error)
404 error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz);
405 return error;
406}
407
408SYSCALL_DEFINE3(osf_fstatfs64, unsigned long, fd,
409 struct osf_statfs64 __user *, buffer, unsigned long, bufsiz)
410{
411 struct kstatfs linux_stat;
412 int error = fd_statfs(fd, &linux_stat);
413 if (!error)
414 error = linux_to_osf_statfs64(&linux_stat, buffer, bufsiz);
415 return error;
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/*
419 * Uhh.. OSF/1 mount parameters aren't exactly obvious..
420 *
421 * Although to be frank, neither are the native Linux/i386 ones..
422 */
423struct ufs_args {
424 char __user *devname;
425 int flags;
426 uid_t exroot;
427};
428
429struct cdfs_args {
430 char __user *devname;
431 int flags;
432 uid_t exroot;
433
434 /* This has lots more here, which Linux handles with the option block
435 but I'm too lazy to do the translation into ASCII. */
436};
437
438struct procfs_args {
439 char __user *devname;
440 int flags;
441 uid_t exroot;
442};
443
444/*
445 * We can't actually handle ufs yet, so we translate UFS mounts to
446 * ext2fs mounts. I wouldn't mind a UFS filesystem, but the UFS
447 * layout is so braindead it's a major headache doing it.
448 *
449 * Just how long ago was it written? OTOH our UFS driver may be still
450 * unhappy with OSF UFS. [CHECKME]
451 */
452static int
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900453osf_ufs_mount(const char __user *dirname,
454 struct ufs_args __user *args, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 int retval;
457 struct cdfs_args tmp;
Jeff Layton91a27b22012-10-10 15:25:28 -0400458 struct filename *devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 retval = -EFAULT;
461 if (copy_from_user(&tmp, args, sizeof(tmp)))
462 goto out;
463 devname = getname(tmp.devname);
464 retval = PTR_ERR(devname);
465 if (IS_ERR(devname))
466 goto out;
Jeff Layton91a27b22012-10-10 15:25:28 -0400467 retval = do_mount(devname->name, dirname, "ext2", flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 putname(devname);
469 out:
470 return retval;
471}
472
473static int
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900474osf_cdfs_mount(const char __user *dirname,
475 struct cdfs_args __user *args, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 int retval;
478 struct cdfs_args tmp;
Jeff Layton91a27b22012-10-10 15:25:28 -0400479 struct filename *devname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 retval = -EFAULT;
482 if (copy_from_user(&tmp, args, sizeof(tmp)))
483 goto out;
484 devname = getname(tmp.devname);
485 retval = PTR_ERR(devname);
486 if (IS_ERR(devname))
487 goto out;
Jeff Layton91a27b22012-10-10 15:25:28 -0400488 retval = do_mount(devname->name, dirname, "iso9660", flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 putname(devname);
490 out:
491 return retval;
492}
493
494static int
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900495osf_procfs_mount(const char __user *dirname,
496 struct procfs_args __user *args, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct procfs_args tmp;
499
500 if (copy_from_user(&tmp, args, sizeof(tmp)))
501 return -EFAULT;
502
503 return do_mount("", dirname, "proc", flags, NULL);
504}
505
David Howellsc7887322010-08-11 11:26:22 +0100506SYSCALL_DEFINE4(osf_mount, unsigned long, typenr, const char __user *, path,
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800507 int, flag, void __user *, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Roel Kluin77079db2010-03-05 13:42:28 -0800509 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 switch (typenr) {
512 case 1:
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900513 retval = osf_ufs_mount(path, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515 case 6:
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900516 retval = osf_cdfs_mount(path, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 break;
518 case 9:
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900519 retval = osf_procfs_mount(path, data, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521 default:
Roel Kluin77079db2010-03-05 13:42:28 -0800522 retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 printk("osf_mount(%ld, %x)\n", typenr, flag);
524 }
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return retval;
527}
528
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800529SYSCALL_DEFINE1(osf_utsname, char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 int error;
532
533 down_read(&uts_sem);
534 error = -EFAULT;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700535 if (copy_to_user(name + 0, utsname()->sysname, 32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto out;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700537 if (copy_to_user(name + 32, utsname()->nodename, 32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto out;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700539 if (copy_to_user(name + 64, utsname()->release, 32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto out;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700541 if (copy_to_user(name + 96, utsname()->version, 32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 goto out;
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700543 if (copy_to_user(name + 128, utsname()->machine, 32))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 goto out;
545
546 error = 0;
547 out:
548 up_read(&uts_sem);
549 return error;
550}
551
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800552SYSCALL_DEFINE0(getpagesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 return PAGE_SIZE;
555}
556
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800557SYSCALL_DEFINE0(getdtablesize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Eric Dumazet9cfe0152008-02-06 01:37:16 -0800559 return sysctl_nr_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562/*
563 * For compatibility with OSF/1 only. Use utsname(2) instead.
564 */
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800565SYSCALL_DEFINE2(osf_getdomainname, char __user *, name, int, namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 unsigned len;
568 int i;
569
570 if (!access_ok(VERIFY_WRITE, name, namelen))
571 return -EFAULT;
572
573 len = namelen;
Dan Rosenberg21c59772011-06-15 15:09:01 -0700574 if (len > 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 len = 32;
576
577 down_read(&uts_sem);
578 for (i = 0; i < len; ++i) {
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700579 __put_user(utsname()->domainname[i], name + i);
580 if (utsname()->domainname[i] == '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 break;
582 }
583 up_read(&uts_sem);
584
585 return 0;
586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/*
589 * The following stuff should move into a header file should it ever
590 * be labeled "officially supported." Right now, there is just enough
591 * support to avoid applications (such as tar) printing error
592 * messages. The attributes are not really implemented.
593 */
594
595/*
596 * Values for Property list entry flag
597 */
598#define PLE_PROPAGATE_ON_COPY 0x1 /* cp(1) will copy entry
599 by default */
600#define PLE_FLAG_MASK 0x1 /* Valid flag values */
601#define PLE_FLAG_ALL -1 /* All flag value */
602
603struct proplistname_args {
604 unsigned int pl_mask;
605 unsigned int pl_numnames;
606 char **pl_names;
607};
608
609union pl_args {
610 struct setargs {
611 char __user *path;
612 long follow;
613 long nbytes;
614 char __user *buf;
615 } set;
616 struct fsetargs {
617 long fd;
618 long nbytes;
619 char __user *buf;
620 } fset;
621 struct getargs {
622 char __user *path;
623 long follow;
624 struct proplistname_args __user *name_args;
625 long nbytes;
626 char __user *buf;
627 int __user *min_buf_size;
628 } get;
629 struct fgetargs {
630 long fd;
631 struct proplistname_args __user *name_args;
632 long nbytes;
633 char __user *buf;
634 int __user *min_buf_size;
635 } fget;
636 struct delargs {
637 char __user *path;
638 long follow;
639 struct proplistname_args __user *name_args;
640 } del;
641 struct fdelargs {
642 long fd;
643 struct proplistname_args __user *name_args;
644 } fdel;
645};
646
647enum pl_code {
648 PL_SET = 1, PL_FSET = 2,
649 PL_GET = 3, PL_FGET = 4,
650 PL_DEL = 5, PL_FDEL = 6
651};
652
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800653SYSCALL_DEFINE2(osf_proplist_syscall, enum pl_code, code,
654 union pl_args __user *, args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 long error;
657 int __user *min_buf_size_ptr;
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 switch (code) {
660 case PL_SET:
661 if (get_user(error, &args->set.nbytes))
662 error = -EFAULT;
663 break;
664 case PL_FSET:
665 if (get_user(error, &args->fset.nbytes))
666 error = -EFAULT;
667 break;
668 case PL_GET:
669 error = get_user(min_buf_size_ptr, &args->get.min_buf_size);
670 if (error)
671 break;
672 error = put_user(0, min_buf_size_ptr);
673 break;
674 case PL_FGET:
675 error = get_user(min_buf_size_ptr, &args->fget.min_buf_size);
676 if (error)
677 break;
678 error = put_user(0, min_buf_size_ptr);
679 break;
680 case PL_DEL:
681 case PL_FDEL:
682 error = 0;
683 break;
684 default:
685 error = -EOPNOTSUPP;
686 break;
687 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return error;
689}
690
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800691SYSCALL_DEFINE2(osf_sigstack, struct sigstack __user *, uss,
692 struct sigstack __user *, uoss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 unsigned long usp = rdusp();
695 unsigned long oss_sp = current->sas_ss_sp + current->sas_ss_size;
696 unsigned long oss_os = on_sig_stack(usp);
697 int error;
698
699 if (uss) {
700 void __user *ss_sp;
701
702 error = -EFAULT;
703 if (get_user(ss_sp, &uss->ss_sp))
704 goto out;
705
706 /* If the current stack was set with sigaltstack, don't
707 swap stacks while we are on it. */
708 error = -EPERM;
709 if (current->sas_ss_sp && on_sig_stack(usp))
710 goto out;
711
712 /* Since we don't know the extent of the stack, and we don't
713 track onstack-ness, but rather calculate it, we must
714 presume a size. Ho hum this interface is lossy. */
715 current->sas_ss_sp = (unsigned long)ss_sp - SIGSTKSZ;
716 current->sas_ss_size = SIGSTKSZ;
717 }
718
719 if (uoss) {
720 error = -EFAULT;
721 if (! access_ok(VERIFY_WRITE, uoss, sizeof(*uoss))
722 || __put_user(oss_sp, &uoss->ss_sp)
723 || __put_user(oss_os, &uoss->ss_onstack))
724 goto out;
725 }
726
727 error = 0;
728 out:
729 return error;
730}
731
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800732SYSCALL_DEFINE3(osf_sysinfo, int, command, char __user *, buf, long, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Joe Perches31019072010-09-14 04:23:47 -0400734 const char *sysinfo_table[] = {
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700735 utsname()->sysname,
736 utsname()->nodename,
737 utsname()->release,
738 utsname()->version,
739 utsname()->machine,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 "alpha", /* instruction set architecture */
741 "dummy", /* hardware serial number */
742 "dummy", /* hardware manufacturer */
743 "dummy", /* secure RPC domain */
744 };
745 unsigned long offset;
Joe Perches31019072010-09-14 04:23:47 -0400746 const char *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 long len, err = -EINVAL;
748
749 offset = command-1;
Tobias Klauser25c87162006-07-30 03:03:23 -0700750 if (offset >= ARRAY_SIZE(sysinfo_table)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /* Digital UNIX has a few unpublished interfaces here */
752 printk("sysinfo(%d)", command);
753 goto out;
754 }
Tobias Klauser25c87162006-07-30 03:03:23 -0700755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 down_read(&uts_sem);
757 res = sysinfo_table[offset];
758 len = strlen(res)+1;
Dan Rosenberg21c59772011-06-15 15:09:01 -0700759 if ((unsigned long)len > (unsigned long)count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 len = count;
761 if (copy_to_user(buf, res, len))
762 err = -EFAULT;
763 else
764 err = 0;
765 up_read(&uts_sem);
766 out:
767 return err;
768}
769
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800770SYSCALL_DEFINE5(osf_getsysinfo, unsigned long, op, void __user *, buffer,
771 unsigned long, nbytes, int __user *, start, void __user *, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 unsigned long w;
774 struct percpu_struct *cpu;
775
776 switch (op) {
777 case GSI_IEEE_FP_CONTROL:
778 /* Return current software fp control & status bits. */
779 /* Note that DU doesn't verify available space here. */
780
781 w = current_thread_info()->ieee_state & IEEE_SW_MASK;
782 w = swcr_update_status(w, rdfpcr());
783 if (put_user(w, (unsigned long __user *) buffer))
784 return -EFAULT;
785 return 0;
786
787 case GSI_IEEE_STATE_AT_SIGNAL:
788 /*
789 * Not sure anybody will ever use this weird stuff. These
790 * ops can be used (under OSF/1) to set the fpcr that should
791 * be used when a signal handler starts executing.
792 */
793 break;
794
795 case GSI_UACPROC:
796 if (nbytes < sizeof(unsigned int))
797 return -EINVAL;
Al Viro3185bd22012-10-20 15:52:23 +0100798 w = current_thread_info()->status & UAC_BITMASK;
Sergei Trofimovich2df7a7d2011-08-25 15:59:02 -0700799 if (put_user(w, (unsigned int __user *)buffer))
800 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return 1;
802
803 case GSI_PROC_TYPE:
804 if (nbytes < sizeof(unsigned long))
805 return -EINVAL;
806 cpu = (struct percpu_struct*)
807 ((char*)hwrpb + hwrpb->processor_offset);
808 w = cpu->type;
809 if (put_user(w, (unsigned long __user*)buffer))
810 return -EFAULT;
811 return 1;
812
813 case GSI_GET_HWRPB:
Dan Rosenberg21c59772011-06-15 15:09:01 -0700814 if (nbytes > sizeof(*hwrpb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return -EINVAL;
816 if (copy_to_user(buffer, hwrpb, nbytes) != 0)
817 return -EFAULT;
818 return 1;
819
820 default:
821 break;
822 }
823
824 return -EOPNOTSUPP;
825}
826
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -0800827SYSCALL_DEFINE5(osf_setsysinfo, unsigned long, op, void __user *, buffer,
828 unsigned long, nbytes, int __user *, start, void __user *, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 switch (op) {
831 case SSI_IEEE_FP_CONTROL: {
832 unsigned long swcr, fpcr;
833 unsigned int *state;
834
835 /*
836 * Alpha Architecture Handbook 4.7.7.3:
837 * To be fully IEEE compiant, we must track the current IEEE
Simon Arlottc3a2dde2007-10-20 01:04:37 +0200838 * exception state in software, because spurious bits can be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 * set in the trap shadow of a software-complete insn.
840 */
841
842 if (get_user(swcr, (unsigned long __user *)buffer))
843 return -EFAULT;
844 state = &current_thread_info()->ieee_state;
845
846 /* Update softare trap enable bits. */
847 *state = (*state & ~IEEE_SW_MASK) | (swcr & IEEE_SW_MASK);
848
849 /* Update the real fpcr. */
850 fpcr = rdfpcr() & FPCR_DYN_MASK;
851 fpcr |= ieee_swcr_to_fpcr(swcr);
852 wrfpcr(fpcr);
853
854 return 0;
855 }
856
857 case SSI_IEEE_RAISE_EXCEPTION: {
858 unsigned long exc, swcr, fpcr, fex;
859 unsigned int *state;
860
861 if (get_user(exc, (unsigned long __user *)buffer))
862 return -EFAULT;
863 state = &current_thread_info()->ieee_state;
864 exc &= IEEE_STATUS_MASK;
865
866 /* Update softare trap enable bits. */
867 swcr = (*state & IEEE_SW_MASK) | exc;
868 *state |= exc;
869
870 /* Update the real fpcr. */
871 fpcr = rdfpcr();
872 fpcr |= ieee_swcr_to_fpcr(swcr);
873 wrfpcr(fpcr);
874
875 /* If any exceptions set by this call, and are unmasked,
876 send a signal. Old exceptions are not signaled. */
877 fex = (exc >> IEEE_STATUS_TO_EXCSUM_SHIFT) & swcr;
878 if (fex) {
879 siginfo_t info;
880 int si_code = 0;
881
882 if (fex & IEEE_TRAP_ENABLE_DNO) si_code = FPE_FLTUND;
883 if (fex & IEEE_TRAP_ENABLE_INE) si_code = FPE_FLTRES;
884 if (fex & IEEE_TRAP_ENABLE_UNF) si_code = FPE_FLTUND;
885 if (fex & IEEE_TRAP_ENABLE_OVF) si_code = FPE_FLTOVF;
886 if (fex & IEEE_TRAP_ENABLE_DZE) si_code = FPE_FLTDIV;
887 if (fex & IEEE_TRAP_ENABLE_INV) si_code = FPE_FLTINV;
888
889 info.si_signo = SIGFPE;
890 info.si_errno = 0;
891 info.si_code = si_code;
892 info.si_addr = NULL; /* FIXME */
893 send_sig_info(SIGFPE, &info, current);
894 }
895 return 0;
896 }
897
898 case SSI_IEEE_STATE_AT_SIGNAL:
899 case SSI_IEEE_IGNORE_STATE_AT_SIGNAL:
900 /*
901 * Not sure anybody will ever use this weird stuff. These
902 * ops can be used (under OSF/1) to set the fpcr that should
903 * be used when a signal handler starts executing.
904 */
905 break;
906
907 case SSI_NVPAIRS: {
Al Viro3185bd22012-10-20 15:52:23 +0100908 unsigned __user *p = buffer;
909 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Al Viro3185bd22012-10-20 15:52:23 +0100911 for (i = 0, p = buffer; i < nbytes; ++i, p += 2) {
912 unsigned v, w, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Al Viro3185bd22012-10-20 15:52:23 +0100914 if (get_user(v, p) || get_user(w, p + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return -EFAULT;
916 switch (v) {
917 case SSIN_UACPROC:
Al Viro3185bd22012-10-20 15:52:23 +0100918 w &= UAC_BITMASK;
919 status = current_thread_info()->status;
920 status = (status & ~UAC_BITMASK) | w;
921 current_thread_info()->status = status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
923
924 default:
925 return -EOPNOTSUPP;
926 }
927 }
928 return 0;
929 }
930
Mans Rullgard50744de2011-08-26 18:52:14 +0100931 case SSI_LMF:
932 return 0;
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 default:
935 break;
936 }
937
938 return -EOPNOTSUPP;
939}
940
941/* Translations due to the fact that OSF's time_t is an int. Which
942 affects all sorts of things, like timeval and itimerval. */
943
944extern struct timezone sys_tz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946struct timeval32
947{
948 int tv_sec, tv_usec;
949};
950
951struct itimerval32
952{
953 struct timeval32 it_interval;
954 struct timeval32 it_value;
955};
956
957static inline long
958get_tv32(struct timeval *o, struct timeval32 __user *i)
959{
960 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
961 (__get_user(o->tv_sec, &i->tv_sec) |
962 __get_user(o->tv_usec, &i->tv_usec)));
963}
964
965static inline long
966put_tv32(struct timeval32 __user *o, struct timeval *i)
967{
968 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
969 (__put_user(i->tv_sec, &o->tv_sec) |
970 __put_user(i->tv_usec, &o->tv_usec)));
971}
972
973static inline long
974get_it32(struct itimerval *o, struct itimerval32 __user *i)
975{
976 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
977 (__get_user(o->it_interval.tv_sec, &i->it_interval.tv_sec) |
978 __get_user(o->it_interval.tv_usec, &i->it_interval.tv_usec) |
979 __get_user(o->it_value.tv_sec, &i->it_value.tv_sec) |
980 __get_user(o->it_value.tv_usec, &i->it_value.tv_usec)));
981}
982
983static inline long
984put_it32(struct itimerval32 __user *o, struct itimerval *i)
985{
986 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
987 (__put_user(i->it_interval.tv_sec, &o->it_interval.tv_sec) |
988 __put_user(i->it_interval.tv_usec, &o->it_interval.tv_usec) |
989 __put_user(i->it_value.tv_sec, &o->it_value.tv_sec) |
990 __put_user(i->it_value.tv_usec, &o->it_value.tv_usec)));
991}
992
993static inline void
994jiffies_to_timeval32(unsigned long jiffies, struct timeval32 *value)
995{
996 value->tv_usec = (jiffies % HZ) * (1000000L / HZ);
997 value->tv_sec = jiffies / HZ;
998}
999
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001000SYSCALL_DEFINE2(osf_gettimeofday, struct timeval32 __user *, tv,
1001 struct timezone __user *, tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
1003 if (tv) {
1004 struct timeval ktv;
1005 do_gettimeofday(&ktv);
1006 if (put_tv32(tv, &ktv))
1007 return -EFAULT;
1008 }
1009 if (tz) {
1010 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
1011 return -EFAULT;
1012 }
1013 return 0;
1014}
1015
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001016SYSCALL_DEFINE2(osf_settimeofday, struct timeval32 __user *, tv,
1017 struct timezone __user *, tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Deepa Dinamani2ac00f12017-03-26 12:04:12 -07001019 struct timespec64 kts64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 struct timespec kts;
1021 struct timezone ktz;
1022
1023 if (tv) {
1024 if (get_tv32((struct timeval *)&kts, tv))
1025 return -EFAULT;
Chen Gangcceaedd2015-05-18 12:37:08 +08001026 kts.tv_nsec *= 1000;
Deepa Dinamani2ac00f12017-03-26 12:04:12 -07001027 kts64 = timespec_to_timespec64(kts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 if (tz) {
1030 if (copy_from_user(&ktz, tz, sizeof(*tz)))
1031 return -EFAULT;
1032 }
1033
Deepa Dinamani2ac00f12017-03-26 12:04:12 -07001034 return do_sys_settimeofday64(tv ? &kts64 : NULL, tz ? &ktz : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
Nicolas Pitrebaa73d92016-11-11 00:10:10 -05001037asmlinkage long sys_ni_posix_timers(void);
1038
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001039SYSCALL_DEFINE2(osf_getitimer, int, which, struct itimerval32 __user *, it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 struct itimerval kit;
1042 int error;
1043
Nicolas Pitrebaa73d92016-11-11 00:10:10 -05001044 if (!IS_ENABLED(CONFIG_POSIX_TIMERS))
1045 return sys_ni_posix_timers();
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 error = do_getitimer(which, &kit);
1048 if (!error && put_it32(it, &kit))
1049 error = -EFAULT;
1050
1051 return error;
1052}
1053
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001054SYSCALL_DEFINE3(osf_setitimer, int, which, struct itimerval32 __user *, in,
1055 struct itimerval32 __user *, out)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 struct itimerval kin, kout;
1058 int error;
1059
Nicolas Pitrebaa73d92016-11-11 00:10:10 -05001060 if (!IS_ENABLED(CONFIG_POSIX_TIMERS))
1061 return sys_ni_posix_timers();
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (in) {
1064 if (get_it32(&kin, in))
1065 return -EFAULT;
1066 } else
1067 memset(&kin, 0, sizeof(kin));
1068
1069 error = do_setitimer(which, &kin, out ? &kout : NULL);
1070 if (error || !out)
1071 return error;
1072
1073 if (put_it32(out, &kout))
1074 return -EFAULT;
1075
1076 return 0;
1077
1078}
1079
David Howellsc7887322010-08-11 11:26:22 +01001080SYSCALL_DEFINE2(osf_utimes, const char __user *, filename,
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001081 struct timeval32 __user *, tvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Ulrich Drepper1c710c82007-05-08 00:33:25 -07001083 struct timespec tv[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 if (tvs) {
Ulrich Drepper1c710c82007-05-08 00:33:25 -07001086 struct timeval ktvs[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (get_tv32(&ktvs[0], &tvs[0]) ||
1088 get_tv32(&ktvs[1], &tvs[1]))
1089 return -EFAULT;
Ulrich Drepper1c710c82007-05-08 00:33:25 -07001090
1091 if (ktvs[0].tv_usec < 0 || ktvs[0].tv_usec >= 1000000 ||
1092 ktvs[1].tv_usec < 0 || ktvs[1].tv_usec >= 1000000)
1093 return -EINVAL;
1094
1095 tv[0].tv_sec = ktvs[0].tv_sec;
1096 tv[0].tv_nsec = 1000 * ktvs[0].tv_usec;
1097 tv[1].tv_sec = ktvs[1].tv_sec;
1098 tv[1].tv_nsec = 1000 * ktvs[1].tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100
Ulrich Drepper1c710c82007-05-08 00:33:25 -07001101 return do_utimes(AT_FDCWD, filename, tvs ? tv : NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001104SYSCALL_DEFINE5(osf_select, int, n, fd_set __user *, inp, fd_set __user *, outp,
1105 fd_set __user *, exp, struct timeval32 __user *, tvp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Arjan van de Ven14e2acd2008-10-06 13:01:53 -07001107 struct timespec end_time, *to = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (tvp) {
1109 time_t sec, usec;
1110
Arjan van de Ven14e2acd2008-10-06 13:01:53 -07001111 to = &end_time;
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (!access_ok(VERIFY_READ, tvp, sizeof(*tvp))
1114 || __get_user(sec, &tvp->tv_sec)
1115 || __get_user(usec, &tvp->tv_usec)) {
Al Viroa2dcb442008-04-23 14:05:15 -04001116 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
1119 if (sec < 0 || usec < 0)
Al Viroa2dcb442008-04-23 14:05:15 -04001120 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Arjan van de Ven14e2acd2008-10-06 13:01:53 -07001122 if (poll_select_set_timeout(to, sec, usec * NSEC_PER_USEC))
1123 return -EINVAL;
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /* OSF does not copy back the remaining time. */
Arjan van de Ven14e2acd2008-10-06 13:01:53 -07001128 return core_sys_select(n, inp, outp, exp, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130
1131struct rusage32 {
1132 struct timeval32 ru_utime; /* user time used */
1133 struct timeval32 ru_stime; /* system time used */
1134 long ru_maxrss; /* maximum resident set size */
1135 long ru_ixrss; /* integral shared memory size */
1136 long ru_idrss; /* integral unshared data size */
1137 long ru_isrss; /* integral unshared stack size */
1138 long ru_minflt; /* page reclaims */
1139 long ru_majflt; /* page faults */
1140 long ru_nswap; /* swaps */
1141 long ru_inblock; /* block input operations */
1142 long ru_oublock; /* block output operations */
1143 long ru_msgsnd; /* messages sent */
1144 long ru_msgrcv; /* messages received */
1145 long ru_nsignals; /* signals received */
1146 long ru_nvcsw; /* voluntary context switches */
1147 long ru_nivcsw; /* involuntary " */
1148};
1149
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001150SYSCALL_DEFINE2(osf_getrusage, int, who, struct rusage32 __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
1152 struct rusage32 r;
Frederic Weisbeckerdc9b77b2017-01-31 04:09:24 +01001153 u64 utime, stime;
Frederic Weisbecker2019e8a2014-10-27 17:20:35 +01001154 unsigned long utime_jiffies, stime_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
1157 return -EINVAL;
1158
1159 memset(&r, 0, sizeof(r));
1160 switch (who) {
1161 case RUSAGE_SELF:
Frederic Weisbeckerdc9b77b2017-01-31 04:09:24 +01001162 task_cputime(current, &utime, &stime);
1163 utime_jiffies = nsecs_to_jiffies(utime);
1164 stime_jiffies = nsecs_to_jiffies(stime);
Frederic Weisbecker2019e8a2014-10-27 17:20:35 +01001165 jiffies_to_timeval32(utime_jiffies, &r.ru_utime);
1166 jiffies_to_timeval32(stime_jiffies, &r.ru_stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 r.ru_minflt = current->min_flt;
1168 r.ru_majflt = current->maj_flt;
1169 break;
1170 case RUSAGE_CHILDREN:
Frederic Weisbecker5613fda2017-01-31 04:09:23 +01001171 utime_jiffies = nsecs_to_jiffies(current->signal->cutime);
1172 stime_jiffies = nsecs_to_jiffies(current->signal->cstime);
Frederic Weisbecker2019e8a2014-10-27 17:20:35 +01001173 jiffies_to_timeval32(utime_jiffies, &r.ru_utime);
1174 jiffies_to_timeval32(stime_jiffies, &r.ru_stime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 r.ru_minflt = current->signal->cmin_flt;
1176 r.ru_majflt = current->signal->cmaj_flt;
1177 break;
1178 }
1179
1180 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1181}
1182
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001183SYSCALL_DEFINE4(osf_wait4, pid_t, pid, int __user *, ustatus, int, options,
1184 struct rusage32 __user *, ur)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 struct rusage r;
1187 long ret, err;
Dan Rosenberg21c59772011-06-15 15:09:01 -07001188 unsigned int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 mm_segment_t old_fs;
1190
1191 if (!ur)
1192 return sys_wait4(pid, ustatus, options, NULL);
1193
1194 old_fs = get_fs();
1195
1196 set_fs (KERNEL_DS);
Dan Rosenberg21c59772011-06-15 15:09:01 -07001197 ret = sys_wait4(pid, (unsigned int __user *) &status, options,
1198 (struct rusage __user *) &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 set_fs (old_fs);
1200
1201 if (!access_ok(VERIFY_WRITE, ur, sizeof(*ur)))
1202 return -EFAULT;
1203
1204 err = 0;
Dan Rosenberg21c59772011-06-15 15:09:01 -07001205 err |= put_user(status, ustatus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 err |= __put_user(r.ru_utime.tv_sec, &ur->ru_utime.tv_sec);
1207 err |= __put_user(r.ru_utime.tv_usec, &ur->ru_utime.tv_usec);
1208 err |= __put_user(r.ru_stime.tv_sec, &ur->ru_stime.tv_sec);
1209 err |= __put_user(r.ru_stime.tv_usec, &ur->ru_stime.tv_usec);
1210 err |= __put_user(r.ru_maxrss, &ur->ru_maxrss);
1211 err |= __put_user(r.ru_ixrss, &ur->ru_ixrss);
1212 err |= __put_user(r.ru_idrss, &ur->ru_idrss);
1213 err |= __put_user(r.ru_isrss, &ur->ru_isrss);
1214 err |= __put_user(r.ru_minflt, &ur->ru_minflt);
1215 err |= __put_user(r.ru_majflt, &ur->ru_majflt);
1216 err |= __put_user(r.ru_nswap, &ur->ru_nswap);
1217 err |= __put_user(r.ru_inblock, &ur->ru_inblock);
1218 err |= __put_user(r.ru_oublock, &ur->ru_oublock);
1219 err |= __put_user(r.ru_msgsnd, &ur->ru_msgsnd);
1220 err |= __put_user(r.ru_msgrcv, &ur->ru_msgrcv);
1221 err |= __put_user(r.ru_nsignals, &ur->ru_nsignals);
1222 err |= __put_user(r.ru_nvcsw, &ur->ru_nvcsw);
1223 err |= __put_user(r.ru_nivcsw, &ur->ru_nivcsw);
1224
1225 return err ? err : ret;
1226}
1227
1228/*
1229 * I don't know what the parameters are: the first one
1230 * seems to be a timeval pointer, and I suspect the second
1231 * one is the time remaining.. Ho humm.. No documentation.
1232 */
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001233SYSCALL_DEFINE2(osf_usleep_thread, struct timeval32 __user *, sleep,
1234 struct timeval32 __user *, remain)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 struct timeval tmp;
1237 unsigned long ticks;
1238
1239 if (get_tv32(&tmp, sleep))
1240 goto fault;
1241
Nishanth Aravamudan24d568e2005-05-16 21:53:55 -07001242 ticks = timeval_to_jiffies(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Nishanth Aravamudan20c6abd2005-09-10 00:27:25 -07001244 ticks = schedule_timeout_interruptible(ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 if (remain) {
Nishanth Aravamudan24d568e2005-05-16 21:53:55 -07001247 jiffies_to_timeval(ticks, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (put_tv32(remain, &tmp))
1249 goto fault;
1250 }
1251
1252 return 0;
1253 fault:
1254 return -EFAULT;
1255}
1256
1257
1258struct timex32 {
1259 unsigned int modes; /* mode selector */
1260 long offset; /* time offset (usec) */
1261 long freq; /* frequency offset (scaled ppm) */
1262 long maxerror; /* maximum error (usec) */
1263 long esterror; /* estimated error (usec) */
1264 int status; /* clock command/status */
1265 long constant; /* pll time constant */
1266 long precision; /* clock precision (usec) (read only) */
1267 long tolerance; /* clock frequency tolerance (ppm)
1268 * (read only)
1269 */
1270 struct timeval32 time; /* (read only) */
1271 long tick; /* (modified) usecs between clock ticks */
1272
1273 long ppsfreq; /* pps frequency (scaled ppm) (ro) */
1274 long jitter; /* pps jitter (us) (ro) */
1275 int shift; /* interval duration (s) (shift) (ro) */
1276 long stabil; /* pps stability (scaled ppm) (ro) */
1277 long jitcnt; /* jitter limit exceeded (ro) */
1278 long calcnt; /* calibration intervals (ro) */
1279 long errcnt; /* calibration errors (ro) */
1280 long stbcnt; /* stability limit exceeded (ro) */
1281
1282 int :32; int :32; int :32; int :32;
1283 int :32; int :32; int :32; int :32;
1284 int :32; int :32; int :32; int :32;
1285};
1286
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001287SYSCALL_DEFINE1(old_adjtimex, struct timex32 __user *, txc_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289 struct timex txc;
1290 int ret;
1291
1292 /* copy relevant bits of struct timex. */
1293 if (copy_from_user(&txc, txc_p, offsetof(struct timex32, time)) ||
1294 copy_from_user(&txc.tick, &txc_p->tick, sizeof(struct timex32) -
Al Viro2b5efc02017-03-25 00:43:43 -04001295 offsetof(struct timex32, tick)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return -EFAULT;
1297
1298 ret = do_adjtimex(&txc);
1299 if (ret < 0)
1300 return ret;
1301
1302 /* copy back to timex32 */
1303 if (copy_to_user(txc_p, &txc, offsetof(struct timex32, time)) ||
1304 (copy_to_user(&txc_p->tick, &txc.tick, sizeof(struct timex32) -
1305 offsetof(struct timex32, tick))) ||
1306 (put_tv32(&txc_p->time, &txc.time)))
1307 return -EFAULT;
1308
1309 return ret;
1310}
1311
1312/* Get an address range which is currently unmapped. Similar to the
1313 generic version except that we know how to honor ADDR_LIMIT_32BIT. */
1314
1315static unsigned long
1316arch_get_unmapped_area_1(unsigned long addr, unsigned long len,
1317 unsigned long limit)
1318{
Michel Lespinasse6d1c7cc2013-02-21 16:43:01 -08001319 struct vm_unmapped_area_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Michel Lespinasse6d1c7cc2013-02-21 16:43:01 -08001321 info.flags = 0;
1322 info.length = len;
1323 info.low_limit = addr;
1324 info.high_limit = limit;
1325 info.align_mask = 0;
1326 info.align_offset = 0;
1327 return vm_unmapped_area(&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
1330unsigned long
1331arch_get_unmapped_area(struct file *filp, unsigned long addr,
1332 unsigned long len, unsigned long pgoff,
1333 unsigned long flags)
1334{
1335 unsigned long limit;
1336
1337 /* "32 bit" actually means 31 bit, since pointers sign extend. */
1338 if (current->personality & ADDR_LIMIT_32BIT)
1339 limit = 0x80000000;
1340 else
1341 limit = TASK_SIZE;
1342
1343 if (len > limit)
1344 return -ENOMEM;
1345
Benjamin Herrenschmidt4b87b3b2007-05-06 14:50:06 -07001346 if (flags & MAP_FIXED)
1347 return addr;
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 /* First, see if the given suggestion fits.
1350
1351 The OSF/1 loader (/sbin/loader) relies on us returning an
1352 address larger than the requested if one exists, which is
1353 a terribly broken way to program.
1354
1355 That said, I can see the use in being able to suggest not
1356 merely specific addresses, but regions of memory -- perhaps
1357 this feature should be incorporated into all ports? */
1358
1359 if (addr) {
1360 addr = arch_get_unmapped_area_1 (PAGE_ALIGN(addr), len, limit);
1361 if (addr != (unsigned long) -ENOMEM)
1362 return addr;
1363 }
1364
1365 /* Next, try allocating at TASK_UNMAPPED_BASE. */
1366 addr = arch_get_unmapped_area_1 (PAGE_ALIGN(TASK_UNMAPPED_BASE),
1367 len, limit);
1368 if (addr != (unsigned long) -ENOMEM)
1369 return addr;
1370
1371 /* Finally, try allocating in low memory. */
1372 addr = arch_get_unmapped_area_1 (PAGE_SIZE, len, limit);
1373
1374 return addr;
1375}
1376
1377#ifdef CONFIG_OSF4_COMPAT
1378
1379/* Clear top 32 bits of iov_len in the user's buffer for
1380 compatibility with old versions of OSF/1 where iov_len
1381 was defined as int. */
1382static int
1383osf_fix_iov_len(const struct iovec __user *iov, unsigned long count)
1384{
1385 unsigned long i;
1386
1387 for (i = 0 ; i < count ; i++) {
1388 int __user *iov_len_high = (int __user *)&iov[i].iov_len + 1;
1389
1390 if (put_user(0, iov_len_high))
1391 return -EFAULT;
1392 }
1393 return 0;
1394}
1395
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001396SYSCALL_DEFINE3(osf_readv, unsigned long, fd,
1397 const struct iovec __user *, vector, unsigned long, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 if (unlikely(personality(current->personality) == PER_OSF4))
1400 if (osf_fix_iov_len(vector, count))
1401 return -EFAULT;
1402 return sys_readv(fd, vector, count);
1403}
1404
Ivan Kokshayskye5d9a902009-01-29 14:25:18 -08001405SYSCALL_DEFINE3(osf_writev, unsigned long, fd,
1406 const struct iovec __user *, vector, unsigned long, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
1408 if (unlikely(personality(current->personality) == PER_OSF4))
1409 if (osf_fix_iov_len(vector, count))
1410 return -EFAULT;
1411 return sys_writev(fd, vector, count);
1412}
1413
1414#endif
Al Virobe53db62012-08-19 14:40:59 +12001415
1416SYSCALL_DEFINE2(osf_getpriority, int, which, int, who)
1417{
1418 int prio = sys_getpriority(which, who);
1419 if (prio >= 0) {
1420 /* Return value is the unbiased priority, i.e. 20 - prio.
1421 This does result in negative return values, so signal
1422 no error */
1423 force_successful_syscall_return();
1424 prio = 20 - prio;
1425 }
1426 return prio;
1427}
1428
1429SYSCALL_DEFINE0(getxuid)
1430{
1431 current_pt_regs()->r20 = sys_geteuid();
1432 return sys_getuid();
1433}
1434
1435SYSCALL_DEFINE0(getxgid)
1436{
1437 current_pt_regs()->r20 = sys_getegid();
1438 return sys_getgid();
1439}
1440
1441SYSCALL_DEFINE0(getxpid)
1442{
1443 current_pt_regs()->r20 = sys_getppid();
1444 return sys_getpid();
1445}
1446
1447SYSCALL_DEFINE0(alpha_pipe)
1448{
1449 int fd[2];
1450 int res = do_pipe_flags(fd, 0);
1451 if (!res) {
1452 /* The return values are in $0 and $20. */
1453 current_pt_regs()->r20 = fd[1];
1454 res = fd[0];
1455 }
1456 return res;
1457}
1458
1459SYSCALL_DEFINE1(sethae, unsigned long, val)
1460{
1461 current_pt_regs()->hae = val;
1462 return 0;
1463}