2 * linux/arch/alpha/kernel/osf_sys.c
4 * Copyright (C) 1995 Linus Torvalds
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..
13 #include <linux/errno.h>
14 #include <linux/sched.h>
15 #include <linux/kernel.h>
17 #include <linux/smp.h>
18 #include <linux/stddef.h>
19 #include <linux/syscalls.h>
20 #include <linux/unistd.h>
21 #include <linux/ptrace.h>
22 #include <linux/user.h>
23 #include <linux/utsname.h>
24 #include <linux/time.h>
25 #include <linux/timex.h>
26 #include <linux/major.h>
27 #include <linux/stat.h>
28 #include <linux/mman.h>
29 #include <linux/shm.h>
30 #include <linux/poll.h>
31 #include <linux/file.h>
32 #include <linux/types.h>
33 #include <linux/ipc.h>
34 #include <linux/namei.h>
35 #include <linux/uio.h>
36 #include <linux/vfs.h>
37 #include <linux/rcupdate.h>
38 #include <linux/slab.h>
42 #include <asm/uaccess.h>
43 #include <asm/sysinfo.h>
44 #include <asm/thread_info.h>
45 #include <asm/hwrpb.h>
46 #include <asm/processor.h>
49 * Brk needs to return an error. Still support Linux's brk(0) query idiom,
50 * which OSF programs just shouldn't be doing. We're still not quite
51 * identical to OSF as we don't return 0 on success, but doing otherwise
52 * would require changes to libc. Hopefully this is good enough.
54 SYSCALL_DEFINE1(osf_brk
, unsigned long, brk
)
56 unsigned long retval
= sys_brk(brk
);
57 if (brk
&& brk
!= retval
)
63 * This is pure guess-work..
65 SYSCALL_DEFINE4(osf_set_program_attributes
, unsigned long, text_start
,
66 unsigned long, text_len
, unsigned long, bss_start
,
67 unsigned long, bss_len
)
72 mm
->end_code
= bss_start
+ bss_len
;
73 mm
->start_brk
= bss_start
+ bss_len
;
74 mm
->brk
= bss_start
+ bss_len
;
76 printk("set_program_attributes(%lx %lx %lx %lx)\n",
77 text_start
, text_len
, bss_start
, bss_len
);
83 * OSF/1 directory handling functions...
85 * The "getdents()" interface is much more sane: the "basep" stuff is
86 * braindamage (it can't really handle filesystems where the directory
87 * offset differences aren't the same as "d_reclen").
89 #define NAME_OFFSET offsetof (struct osf_dirent, d_name)
93 unsigned short d_reclen
;
94 unsigned short d_namlen
;
98 struct osf_dirent_callback
{
99 struct dir_context ctx
;
100 struct osf_dirent __user
*dirent
;
107 osf_filldir(struct dir_context
*ctx
, const char *name
, int namlen
,
108 loff_t offset
, u64 ino
, unsigned int d_type
)
110 struct osf_dirent __user
*dirent
;
111 struct osf_dirent_callback
*buf
=
112 container_of(ctx
, struct osf_dirent_callback
, ctx
);
113 unsigned int reclen
= ALIGN(NAME_OFFSET
+ namlen
+ 1, sizeof(u32
));
116 buf
->error
= -EINVAL
; /* only used if we fail */
117 if (reclen
> buf
->count
)
120 if (sizeof(d_ino
) < sizeof(ino
) && d_ino
!= ino
) {
121 buf
->error
= -EOVERFLOW
;
125 if (put_user(offset
, buf
->basep
))
129 dirent
= buf
->dirent
;
130 if (put_user(d_ino
, &dirent
->d_ino
) ||
131 put_user(namlen
, &dirent
->d_namlen
) ||
132 put_user(reclen
, &dirent
->d_reclen
) ||
133 copy_to_user(dirent
->d_name
, name
, namlen
) ||
134 put_user(0, dirent
->d_name
+ namlen
))
136 dirent
= (void __user
*)dirent
+ reclen
;
137 buf
->dirent
= dirent
;
138 buf
->count
-= reclen
;
141 buf
->error
= -EFAULT
;
145 SYSCALL_DEFINE4(osf_getdirentries
, unsigned int, fd
,
146 struct osf_dirent __user
*, dirent
, unsigned int, count
,
147 long __user
*, basep
)
150 struct fd arg
= fdget_pos(fd
);
151 struct osf_dirent_callback buf
= {
152 .ctx
.actor
= osf_filldir
,
161 error
= iterate_dir(arg
.file
, &buf
.ctx
);
164 if (count
!= buf
.count
)
165 error
= count
- buf
.count
;
173 SYSCALL_DEFINE6(osf_mmap
, unsigned long, addr
, unsigned long, len
,
174 unsigned long, prot
, unsigned long, flags
, unsigned long, fd
,
177 unsigned long ret
= -EINVAL
;
180 if (flags
& (_MAP_HASSEMAPHORE
| _MAP_INHERIT
| _MAP_UNALIGNED
))
181 printk("%s: unimplemented OSF mmap flags %04lx\n",
182 current
->comm
, flags
);
184 if ((off
+ PAGE_ALIGN(len
)) < off
)
186 if (off
& ~PAGE_MASK
)
188 ret
= sys_mmap_pgoff(addr
, len
, prot
, flags
, fd
, off
>> PAGE_SHIFT
);
197 unsigned short st_nlink
;
198 short st_nlink_reserved
;
218 int st_atime_reserved
;
220 int st_mtime_reserved
;
222 int st_ctime_reserved
;
228 * The OSF/1 statfs structure is much larger, but this should
229 * match the beginning, at least.
241 __kernel_fsid_t f_fsid
;
244 struct osf_statfs64
{
254 __kernel_fsid_t f_fsid
;
273 linux_to_osf_stat(struct kstat
*lstat
, struct osf_stat __user
*osf_stat
)
275 struct osf_stat tmp
= { 0 };
277 tmp
.st_dev
= lstat
->dev
;
278 tmp
.st_mode
= lstat
->mode
;
279 tmp
.st_nlink
= lstat
->nlink
;
280 tmp
.st_uid
= from_kuid_munged(current_user_ns(), lstat
->uid
);
281 tmp
.st_gid
= from_kgid_munged(current_user_ns(), lstat
->gid
);
282 tmp
.st_rdev
= lstat
->rdev
;
283 tmp
.st_ldev
= lstat
->rdev
;
284 tmp
.st_size
= lstat
->size
;
285 tmp
.st_uatime
= lstat
->atime
.tv_nsec
/ 1000;
286 tmp
.st_umtime
= lstat
->mtime
.tv_nsec
/ 1000;
287 tmp
.st_uctime
= lstat
->ctime
.tv_nsec
/ 1000;
288 tmp
.st_ino
= lstat
->ino
;
289 tmp
.st_atime
= lstat
->atime
.tv_sec
;
290 tmp
.st_mtime
= lstat
->mtime
.tv_sec
;
291 tmp
.st_ctime
= lstat
->ctime
.tv_sec
;
292 tmp
.st_blksize
= lstat
->blksize
;
293 tmp
.st_blocks
= lstat
->blocks
;
295 return copy_to_user(osf_stat
, &tmp
, sizeof(tmp
)) ? -EFAULT
: 0;
299 linux_to_osf_statfs(struct kstatfs
*linux_stat
, struct osf_statfs __user
*osf_stat
,
300 unsigned long bufsiz
)
302 struct osf_statfs tmp_stat
;
304 tmp_stat
.f_type
= linux_stat
->f_type
;
305 tmp_stat
.f_flags
= 0; /* mount flags */
306 tmp_stat
.f_fsize
= linux_stat
->f_frsize
;
307 tmp_stat
.f_bsize
= linux_stat
->f_bsize
;
308 tmp_stat
.f_blocks
= linux_stat
->f_blocks
;
309 tmp_stat
.f_bfree
= linux_stat
->f_bfree
;
310 tmp_stat
.f_bavail
= linux_stat
->f_bavail
;
311 tmp_stat
.f_files
= linux_stat
->f_files
;
312 tmp_stat
.f_ffree
= linux_stat
->f_ffree
;
313 tmp_stat
.f_fsid
= linux_stat
->f_fsid
;
314 if (bufsiz
> sizeof(tmp_stat
))
315 bufsiz
= sizeof(tmp_stat
);
316 return copy_to_user(osf_stat
, &tmp_stat
, bufsiz
) ? -EFAULT
: 0;
320 linux_to_osf_statfs64(struct kstatfs
*linux_stat
, struct osf_statfs64 __user
*osf_stat
,
321 unsigned long bufsiz
)
323 struct osf_statfs64 tmp_stat
= { 0 };
325 tmp_stat
.f_type
= linux_stat
->f_type
;
326 tmp_stat
.f_fsize
= linux_stat
->f_frsize
;
327 tmp_stat
.f_bsize
= linux_stat
->f_bsize
;
328 tmp_stat
.f_blocks
= linux_stat
->f_blocks
;
329 tmp_stat
.f_bfree
= linux_stat
->f_bfree
;
330 tmp_stat
.f_bavail
= linux_stat
->f_bavail
;
331 tmp_stat
.f_files
= linux_stat
->f_files
;
332 tmp_stat
.f_ffree
= linux_stat
->f_ffree
;
333 tmp_stat
.f_fsid
= linux_stat
->f_fsid
;
334 if (bufsiz
> sizeof(tmp_stat
))
335 bufsiz
= sizeof(tmp_stat
);
336 return copy_to_user(osf_stat
, &tmp_stat
, bufsiz
) ? -EFAULT
: 0;
339 SYSCALL_DEFINE3(osf_statfs
, const char __user
*, pathname
,
340 struct osf_statfs __user
*, buffer
, unsigned long, bufsiz
)
342 struct kstatfs linux_stat
;
343 int error
= user_statfs(pathname
, &linux_stat
);
345 error
= linux_to_osf_statfs(&linux_stat
, buffer
, bufsiz
);
349 SYSCALL_DEFINE2(osf_stat
, char __user
*, name
, struct osf_stat __user
*, buf
)
354 error
= vfs_stat(name
, &stat
);
358 return linux_to_osf_stat(&stat
, buf
);
361 SYSCALL_DEFINE2(osf_lstat
, char __user
*, name
, struct osf_stat __user
*, buf
)
366 error
= vfs_lstat(name
, &stat
);
370 return linux_to_osf_stat(&stat
, buf
);
373 SYSCALL_DEFINE2(osf_fstat
, int, fd
, struct osf_stat __user
*, buf
)
378 error
= vfs_fstat(fd
, &stat
);
382 return linux_to_osf_stat(&stat
, buf
);
385 SYSCALL_DEFINE3(osf_fstatfs
, unsigned long, fd
,
386 struct osf_statfs __user
*, buffer
, unsigned long, bufsiz
)
388 struct kstatfs linux_stat
;
389 int error
= fd_statfs(fd
, &linux_stat
);
391 error
= linux_to_osf_statfs(&linux_stat
, buffer
, bufsiz
);
395 SYSCALL_DEFINE3(osf_statfs64
, char __user
*, pathname
,
396 struct osf_statfs64 __user
*, buffer
, unsigned long, bufsiz
)
398 struct kstatfs linux_stat
;
399 int error
= user_statfs(pathname
, &linux_stat
);
401 error
= linux_to_osf_statfs64(&linux_stat
, buffer
, bufsiz
);
405 SYSCALL_DEFINE3(osf_fstatfs64
, unsigned long, fd
,
406 struct osf_statfs64 __user
*, buffer
, unsigned long, bufsiz
)
408 struct kstatfs linux_stat
;
409 int error
= fd_statfs(fd
, &linux_stat
);
411 error
= linux_to_osf_statfs64(&linux_stat
, buffer
, bufsiz
);
416 * Uhh.. OSF/1 mount parameters aren't exactly obvious..
418 * Although to be frank, neither are the native Linux/i386 ones..
421 char __user
*devname
;
427 char __user
*devname
;
431 /* This has lots more here, which Linux handles with the option block
432 but I'm too lazy to do the translation into ASCII. */
436 char __user
*devname
;
442 * We can't actually handle ufs yet, so we translate UFS mounts to
443 * ext2fs mounts. I wouldn't mind a UFS filesystem, but the UFS
444 * layout is so braindead it's a major headache doing it.
446 * Just how long ago was it written? OTOH our UFS driver may be still
447 * unhappy with OSF UFS. [CHECKME]
450 osf_ufs_mount(const char __user
*dirname
,
451 struct ufs_args __user
*args
, int flags
)
454 struct cdfs_args tmp
;
455 struct filename
*devname
;
458 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
460 devname
= getname(tmp
.devname
);
461 retval
= PTR_ERR(devname
);
464 retval
= do_mount(devname
->name
, dirname
, "ext2", flags
, NULL
);
471 osf_cdfs_mount(const char __user
*dirname
,
472 struct cdfs_args __user
*args
, int flags
)
475 struct cdfs_args tmp
;
476 struct filename
*devname
;
479 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
481 devname
= getname(tmp
.devname
);
482 retval
= PTR_ERR(devname
);
485 retval
= do_mount(devname
->name
, dirname
, "iso9660", flags
, NULL
);
492 osf_procfs_mount(const char __user
*dirname
,
493 struct procfs_args __user
*args
, int flags
)
495 struct procfs_args tmp
;
497 if (copy_from_user(&tmp
, args
, sizeof(tmp
)))
500 return do_mount("", dirname
, "proc", flags
, NULL
);
503 SYSCALL_DEFINE4(osf_mount
, unsigned long, typenr
, const char __user
*, path
,
504 int, flag
, void __user
*, data
)
510 retval
= osf_ufs_mount(path
, data
, flag
);
513 retval
= osf_cdfs_mount(path
, data
, flag
);
516 retval
= osf_procfs_mount(path
, data
, flag
);
520 printk("osf_mount(%ld, %x)\n", typenr
, flag
);
526 SYSCALL_DEFINE1(osf_utsname
, char __user
*, name
)
532 memcpy(tmp
+ 0 * 32, utsname()->sysname
, 32);
533 memcpy(tmp
+ 1 * 32, utsname()->nodename
, 32);
534 memcpy(tmp
+ 2 * 32, utsname()->release
, 32);
535 memcpy(tmp
+ 3 * 32, utsname()->version
, 32);
536 memcpy(tmp
+ 4 * 32, utsname()->machine
, 32);
539 if (copy_to_user(name
, tmp
, sizeof(tmp
)))
544 SYSCALL_DEFINE0(getpagesize
)
549 SYSCALL_DEFINE0(getdtablesize
)
551 return sysctl_nr_open
;
555 * For compatibility with OSF/1 only. Use utsname(2) instead.
557 SYSCALL_DEFINE2(osf_getdomainname
, char __user
*, name
, int, namelen
)
563 if (namelen
< 0 || namelen
> 32)
567 kname
= utsname()->domainname
;
568 len
= strnlen(kname
, namelen
);
569 len
= min(len
+ 1, namelen
);
570 memcpy(tmp
, kname
, len
);
573 if (copy_to_user(name
, tmp
, len
))
579 * The following stuff should move into a header file should it ever
580 * be labeled "officially supported." Right now, there is just enough
581 * support to avoid applications (such as tar) printing error
582 * messages. The attributes are not really implemented.
586 * Values for Property list entry flag
588 #define PLE_PROPAGATE_ON_COPY 0x1 /* cp(1) will copy entry
590 #define PLE_FLAG_MASK 0x1 /* Valid flag values */
591 #define PLE_FLAG_ALL -1 /* All flag value */
593 struct proplistname_args
{
594 unsigned int pl_mask
;
595 unsigned int pl_numnames
;
614 struct proplistname_args __user
*name_args
;
617 int __user
*min_buf_size
;
621 struct proplistname_args __user
*name_args
;
624 int __user
*min_buf_size
;
629 struct proplistname_args __user
*name_args
;
633 struct proplistname_args __user
*name_args
;
638 PL_SET
= 1, PL_FSET
= 2,
639 PL_GET
= 3, PL_FGET
= 4,
640 PL_DEL
= 5, PL_FDEL
= 6
643 SYSCALL_DEFINE2(osf_proplist_syscall
, enum pl_code
, code
,
644 union pl_args __user
*, args
)
647 int __user
*min_buf_size_ptr
;
651 if (get_user(error
, &args
->set
.nbytes
))
655 if (get_user(error
, &args
->fset
.nbytes
))
659 error
= get_user(min_buf_size_ptr
, &args
->get
.min_buf_size
);
662 error
= put_user(0, min_buf_size_ptr
);
665 error
= get_user(min_buf_size_ptr
, &args
->fget
.min_buf_size
);
668 error
= put_user(0, min_buf_size_ptr
);
681 SYSCALL_DEFINE2(osf_sigstack
, struct sigstack __user
*, uss
,
682 struct sigstack __user
*, uoss
)
684 unsigned long usp
= rdusp();
685 unsigned long oss_sp
= current
->sas_ss_sp
+ current
->sas_ss_size
;
686 unsigned long oss_os
= on_sig_stack(usp
);
693 if (get_user(ss_sp
, &uss
->ss_sp
))
696 /* If the current stack was set with sigaltstack, don't
697 swap stacks while we are on it. */
699 if (current
->sas_ss_sp
&& on_sig_stack(usp
))
702 /* Since we don't know the extent of the stack, and we don't
703 track onstack-ness, but rather calculate it, we must
704 presume a size. Ho hum this interface is lossy. */
705 current
->sas_ss_sp
= (unsigned long)ss_sp
- SIGSTKSZ
;
706 current
->sas_ss_size
= SIGSTKSZ
;
711 if (! access_ok(VERIFY_WRITE
, uoss
, sizeof(*uoss
))
712 || __put_user(oss_sp
, &uoss
->ss_sp
)
713 || __put_user(oss_os
, &uoss
->ss_onstack
))
722 SYSCALL_DEFINE3(osf_sysinfo
, int, command
, char __user
*, buf
, long, count
)
724 const char *sysinfo_table
[] = {
730 "alpha", /* instruction set architecture */
731 "dummy", /* hardware serial number */
732 "dummy", /* hardware manufacturer */
733 "dummy", /* secure RPC domain */
735 unsigned long offset
;
738 char tmp
[__NEW_UTS_LEN
+ 1];
741 if (offset
>= ARRAY_SIZE(sysinfo_table
)) {
742 /* Digital UNIX has a few unpublished interfaces here */
743 printk("sysinfo(%d)", command
);
748 res
= sysinfo_table
[offset
];
750 if ((unsigned long)len
> (unsigned long)count
)
752 memcpy(tmp
, res
, len
);
754 if (copy_to_user(buf
, tmp
, len
))
759 SYSCALL_DEFINE5(osf_getsysinfo
, unsigned long, op
, void __user
*, buffer
,
760 unsigned long, nbytes
, int __user
*, start
, void __user
*, arg
)
763 struct percpu_struct
*cpu
;
766 case GSI_IEEE_FP_CONTROL
:
767 /* Return current software fp control & status bits. */
768 /* Note that DU doesn't verify available space here. */
770 w
= current_thread_info()->ieee_state
& IEEE_SW_MASK
;
771 w
= swcr_update_status(w
, rdfpcr());
772 if (put_user(w
, (unsigned long __user
*) buffer
))
776 case GSI_IEEE_STATE_AT_SIGNAL
:
778 * Not sure anybody will ever use this weird stuff. These
779 * ops can be used (under OSF/1) to set the fpcr that should
780 * be used when a signal handler starts executing.
785 if (nbytes
< sizeof(unsigned int))
787 w
= current_thread_info()->status
& UAC_BITMASK
;
788 if (put_user(w
, (unsigned int __user
*)buffer
))
793 if (nbytes
< sizeof(unsigned long))
795 cpu
= (struct percpu_struct
*)
796 ((char*)hwrpb
+ hwrpb
->processor_offset
);
798 if (put_user(w
, (unsigned long __user
*)buffer
))
803 if (nbytes
> sizeof(*hwrpb
))
805 if (copy_to_user(buffer
, hwrpb
, nbytes
) != 0)
816 SYSCALL_DEFINE5(osf_setsysinfo
, unsigned long, op
, void __user
*, buffer
,
817 unsigned long, nbytes
, int __user
*, start
, void __user
*, arg
)
820 case SSI_IEEE_FP_CONTROL
: {
821 unsigned long swcr
, fpcr
;
825 * Alpha Architecture Handbook 4.7.7.3:
826 * To be fully IEEE compiant, we must track the current IEEE
827 * exception state in software, because spurious bits can be
828 * set in the trap shadow of a software-complete insn.
831 if (get_user(swcr
, (unsigned long __user
*)buffer
))
833 state
= ¤t_thread_info()->ieee_state
;
835 /* Update softare trap enable bits. */
836 *state
= (*state
& ~IEEE_SW_MASK
) | (swcr
& IEEE_SW_MASK
);
838 /* Update the real fpcr. */
839 fpcr
= rdfpcr() & FPCR_DYN_MASK
;
840 fpcr
|= ieee_swcr_to_fpcr(swcr
);
846 case SSI_IEEE_RAISE_EXCEPTION
: {
847 unsigned long exc
, swcr
, fpcr
, fex
;
850 if (get_user(exc
, (unsigned long __user
*)buffer
))
852 state
= ¤t_thread_info()->ieee_state
;
853 exc
&= IEEE_STATUS_MASK
;
855 /* Update softare trap enable bits. */
856 swcr
= (*state
& IEEE_SW_MASK
) | exc
;
859 /* Update the real fpcr. */
861 fpcr
|= ieee_swcr_to_fpcr(swcr
);
864 /* If any exceptions set by this call, and are unmasked,
865 send a signal. Old exceptions are not signaled. */
866 fex
= (exc
>> IEEE_STATUS_TO_EXCSUM_SHIFT
) & swcr
;
871 if (fex
& IEEE_TRAP_ENABLE_DNO
) si_code
= FPE_FLTUND
;
872 if (fex
& IEEE_TRAP_ENABLE_INE
) si_code
= FPE_FLTRES
;
873 if (fex
& IEEE_TRAP_ENABLE_UNF
) si_code
= FPE_FLTUND
;
874 if (fex
& IEEE_TRAP_ENABLE_OVF
) si_code
= FPE_FLTOVF
;
875 if (fex
& IEEE_TRAP_ENABLE_DZE
) si_code
= FPE_FLTDIV
;
876 if (fex
& IEEE_TRAP_ENABLE_INV
) si_code
= FPE_FLTINV
;
878 info
.si_signo
= SIGFPE
;
880 info
.si_code
= si_code
;
881 info
.si_addr
= NULL
; /* FIXME */
882 send_sig_info(SIGFPE
, &info
, current
);
887 case SSI_IEEE_STATE_AT_SIGNAL
:
888 case SSI_IEEE_IGNORE_STATE_AT_SIGNAL
:
890 * Not sure anybody will ever use this weird stuff. These
891 * ops can be used (under OSF/1) to set the fpcr that should
892 * be used when a signal handler starts executing.
897 unsigned __user
*p
= buffer
;
900 for (i
= 0, p
= buffer
; i
< nbytes
; ++i
, p
+= 2) {
901 unsigned v
, w
, status
;
903 if (get_user(v
, p
) || get_user(w
, p
+ 1))
908 status
= current_thread_info()->status
;
909 status
= (status
& ~UAC_BITMASK
) | w
;
910 current_thread_info()->status
= status
;
930 /* Translations due to the fact that OSF's time_t is an int. Which
931 affects all sorts of things, like timeval and itimerval. */
933 extern struct timezone sys_tz
;
942 struct timeval32 it_interval
;
943 struct timeval32 it_value
;
947 get_tv32(struct timeval
*o
, struct timeval32 __user
*i
)
949 return (!access_ok(VERIFY_READ
, i
, sizeof(*i
)) ||
950 (__get_user(o
->tv_sec
, &i
->tv_sec
) |
951 __get_user(o
->tv_usec
, &i
->tv_usec
)));
955 put_tv32(struct timeval32 __user
*o
, struct timeval
*i
)
957 return (!access_ok(VERIFY_WRITE
, o
, sizeof(*o
)) ||
958 (__put_user(i
->tv_sec
, &o
->tv_sec
) |
959 __put_user(i
->tv_usec
, &o
->tv_usec
)));
963 get_it32(struct itimerval
*o
, struct itimerval32 __user
*i
)
965 return (!access_ok(VERIFY_READ
, i
, sizeof(*i
)) ||
966 (__get_user(o
->it_interval
.tv_sec
, &i
->it_interval
.tv_sec
) |
967 __get_user(o
->it_interval
.tv_usec
, &i
->it_interval
.tv_usec
) |
968 __get_user(o
->it_value
.tv_sec
, &i
->it_value
.tv_sec
) |
969 __get_user(o
->it_value
.tv_usec
, &i
->it_value
.tv_usec
)));
973 put_it32(struct itimerval32 __user
*o
, struct itimerval
*i
)
975 return (!access_ok(VERIFY_WRITE
, o
, sizeof(*o
)) ||
976 (__put_user(i
->it_interval
.tv_sec
, &o
->it_interval
.tv_sec
) |
977 __put_user(i
->it_interval
.tv_usec
, &o
->it_interval
.tv_usec
) |
978 __put_user(i
->it_value
.tv_sec
, &o
->it_value
.tv_sec
) |
979 __put_user(i
->it_value
.tv_usec
, &o
->it_value
.tv_usec
)));
983 jiffies_to_timeval32(unsigned long jiffies
, struct timeval32
*value
)
985 value
->tv_usec
= (jiffies
% HZ
) * (1000000L / HZ
);
986 value
->tv_sec
= jiffies
/ HZ
;
989 SYSCALL_DEFINE2(osf_gettimeofday
, struct timeval32 __user
*, tv
,
990 struct timezone __user
*, tz
)
994 do_gettimeofday(&ktv
);
995 if (put_tv32(tv
, &ktv
))
999 if (copy_to_user(tz
, &sys_tz
, sizeof(sys_tz
)))
1005 SYSCALL_DEFINE2(osf_settimeofday
, struct timeval32 __user
*, tv
,
1006 struct timezone __user
*, tz
)
1008 struct timespec kts
;
1009 struct timezone ktz
;
1012 if (get_tv32((struct timeval
*)&kts
, tv
))
1014 kts
.tv_nsec
*= 1000;
1017 if (copy_from_user(&ktz
, tz
, sizeof(*tz
)))
1021 return do_sys_settimeofday(tv
? &kts
: NULL
, tz
? &ktz
: NULL
);
1024 SYSCALL_DEFINE2(osf_getitimer
, int, which
, struct itimerval32 __user
*, it
)
1026 struct itimerval kit
;
1029 error
= do_getitimer(which
, &kit
);
1030 if (!error
&& put_it32(it
, &kit
))
1036 SYSCALL_DEFINE3(osf_setitimer
, int, which
, struct itimerval32 __user
*, in
,
1037 struct itimerval32 __user
*, out
)
1039 struct itimerval kin
, kout
;
1043 if (get_it32(&kin
, in
))
1046 memset(&kin
, 0, sizeof(kin
));
1048 error
= do_setitimer(which
, &kin
, out
? &kout
: NULL
);
1052 if (put_it32(out
, &kout
))
1059 SYSCALL_DEFINE2(osf_utimes
, const char __user
*, filename
,
1060 struct timeval32 __user
*, tvs
)
1062 struct timespec tv
[2];
1065 struct timeval ktvs
[2];
1066 if (get_tv32(&ktvs
[0], &tvs
[0]) ||
1067 get_tv32(&ktvs
[1], &tvs
[1]))
1070 if (ktvs
[0].tv_usec
< 0 || ktvs
[0].tv_usec
>= 1000000 ||
1071 ktvs
[1].tv_usec
< 0 || ktvs
[1].tv_usec
>= 1000000)
1074 tv
[0].tv_sec
= ktvs
[0].tv_sec
;
1075 tv
[0].tv_nsec
= 1000 * ktvs
[0].tv_usec
;
1076 tv
[1].tv_sec
= ktvs
[1].tv_sec
;
1077 tv
[1].tv_nsec
= 1000 * ktvs
[1].tv_usec
;
1080 return do_utimes(AT_FDCWD
, filename
, tvs
? tv
: NULL
, 0);
1083 SYSCALL_DEFINE5(osf_select
, int, n
, fd_set __user
*, inp
, fd_set __user
*, outp
,
1084 fd_set __user
*, exp
, struct timeval32 __user
*, tvp
)
1086 struct timespec end_time
, *to
= NULL
;
1092 if (!access_ok(VERIFY_READ
, tvp
, sizeof(*tvp
))
1093 || __get_user(sec
, &tvp
->tv_sec
)
1094 || __get_user(usec
, &tvp
->tv_usec
)) {
1098 if (sec
< 0 || usec
< 0)
1101 if (poll_select_set_timeout(to
, sec
, usec
* NSEC_PER_USEC
))
1106 /* OSF does not copy back the remaining time. */
1107 return core_sys_select(n
, inp
, outp
, exp
, to
);
1111 struct timeval32 ru_utime
; /* user time used */
1112 struct timeval32 ru_stime
; /* system time used */
1113 long ru_maxrss
; /* maximum resident set size */
1114 long ru_ixrss
; /* integral shared memory size */
1115 long ru_idrss
; /* integral unshared data size */
1116 long ru_isrss
; /* integral unshared stack size */
1117 long ru_minflt
; /* page reclaims */
1118 long ru_majflt
; /* page faults */
1119 long ru_nswap
; /* swaps */
1120 long ru_inblock
; /* block input operations */
1121 long ru_oublock
; /* block output operations */
1122 long ru_msgsnd
; /* messages sent */
1123 long ru_msgrcv
; /* messages received */
1124 long ru_nsignals
; /* signals received */
1125 long ru_nvcsw
; /* voluntary context switches */
1126 long ru_nivcsw
; /* involuntary " */
1129 SYSCALL_DEFINE2(osf_getrusage
, int, who
, struct rusage32 __user
*, ru
)
1132 cputime_t utime
, stime
;
1133 unsigned long utime_jiffies
, stime_jiffies
;
1135 if (who
!= RUSAGE_SELF
&& who
!= RUSAGE_CHILDREN
)
1138 memset(&r
, 0, sizeof(r
));
1141 task_cputime(current
, &utime
, &stime
);
1142 utime_jiffies
= cputime_to_jiffies(utime
);
1143 stime_jiffies
= cputime_to_jiffies(stime
);
1144 jiffies_to_timeval32(utime_jiffies
, &r
.ru_utime
);
1145 jiffies_to_timeval32(stime_jiffies
, &r
.ru_stime
);
1146 r
.ru_minflt
= current
->min_flt
;
1147 r
.ru_majflt
= current
->maj_flt
;
1149 case RUSAGE_CHILDREN
:
1150 utime_jiffies
= cputime_to_jiffies(current
->signal
->cutime
);
1151 stime_jiffies
= cputime_to_jiffies(current
->signal
->cstime
);
1152 jiffies_to_timeval32(utime_jiffies
, &r
.ru_utime
);
1153 jiffies_to_timeval32(stime_jiffies
, &r
.ru_stime
);
1154 r
.ru_minflt
= current
->signal
->cmin_flt
;
1155 r
.ru_majflt
= current
->signal
->cmaj_flt
;
1159 return copy_to_user(ru
, &r
, sizeof(r
)) ? -EFAULT
: 0;
1162 SYSCALL_DEFINE4(osf_wait4
, pid_t
, pid
, int __user
*, ustatus
, int, options
,
1163 struct rusage32 __user
*, ur
)
1167 unsigned int status
= 0;
1168 mm_segment_t old_fs
;
1171 return sys_wait4(pid
, ustatus
, options
, NULL
);
1176 ret
= sys_wait4(pid
, (unsigned int __user
*) &status
, options
,
1177 (struct rusage __user
*) &r
);
1180 if (!access_ok(VERIFY_WRITE
, ur
, sizeof(*ur
)))
1183 err
= put_user(status
, ustatus
);
1185 return err
? err
: ret
;
1187 err
|= __put_user(r
.ru_utime
.tv_sec
, &ur
->ru_utime
.tv_sec
);
1188 err
|= __put_user(r
.ru_utime
.tv_usec
, &ur
->ru_utime
.tv_usec
);
1189 err
|= __put_user(r
.ru_stime
.tv_sec
, &ur
->ru_stime
.tv_sec
);
1190 err
|= __put_user(r
.ru_stime
.tv_usec
, &ur
->ru_stime
.tv_usec
);
1191 err
|= __put_user(r
.ru_maxrss
, &ur
->ru_maxrss
);
1192 err
|= __put_user(r
.ru_ixrss
, &ur
->ru_ixrss
);
1193 err
|= __put_user(r
.ru_idrss
, &ur
->ru_idrss
);
1194 err
|= __put_user(r
.ru_isrss
, &ur
->ru_isrss
);
1195 err
|= __put_user(r
.ru_minflt
, &ur
->ru_minflt
);
1196 err
|= __put_user(r
.ru_majflt
, &ur
->ru_majflt
);
1197 err
|= __put_user(r
.ru_nswap
, &ur
->ru_nswap
);
1198 err
|= __put_user(r
.ru_inblock
, &ur
->ru_inblock
);
1199 err
|= __put_user(r
.ru_oublock
, &ur
->ru_oublock
);
1200 err
|= __put_user(r
.ru_msgsnd
, &ur
->ru_msgsnd
);
1201 err
|= __put_user(r
.ru_msgrcv
, &ur
->ru_msgrcv
);
1202 err
|= __put_user(r
.ru_nsignals
, &ur
->ru_nsignals
);
1203 err
|= __put_user(r
.ru_nvcsw
, &ur
->ru_nvcsw
);
1204 err
|= __put_user(r
.ru_nivcsw
, &ur
->ru_nivcsw
);
1206 return err
? err
: ret
;
1210 * I don't know what the parameters are: the first one
1211 * seems to be a timeval pointer, and I suspect the second
1212 * one is the time remaining.. Ho humm.. No documentation.
1214 SYSCALL_DEFINE2(osf_usleep_thread
, struct timeval32 __user
*, sleep
,
1215 struct timeval32 __user
*, remain
)
1218 unsigned long ticks
;
1220 if (get_tv32(&tmp
, sleep
))
1223 ticks
= timeval_to_jiffies(&tmp
);
1225 ticks
= schedule_timeout_interruptible(ticks
);
1228 jiffies_to_timeval(ticks
, &tmp
);
1229 if (put_tv32(remain
, &tmp
))
1240 unsigned int modes
; /* mode selector */
1241 long offset
; /* time offset (usec) */
1242 long freq
; /* frequency offset (scaled ppm) */
1243 long maxerror
; /* maximum error (usec) */
1244 long esterror
; /* estimated error (usec) */
1245 int status
; /* clock command/status */
1246 long constant
; /* pll time constant */
1247 long precision
; /* clock precision (usec) (read only) */
1248 long tolerance
; /* clock frequency tolerance (ppm)
1251 struct timeval32 time
; /* (read only) */
1252 long tick
; /* (modified) usecs between clock ticks */
1254 long ppsfreq
; /* pps frequency (scaled ppm) (ro) */
1255 long jitter
; /* pps jitter (us) (ro) */
1256 int shift
; /* interval duration (s) (shift) (ro) */
1257 long stabil
; /* pps stability (scaled ppm) (ro) */
1258 long jitcnt
; /* jitter limit exceeded (ro) */
1259 long calcnt
; /* calibration intervals (ro) */
1260 long errcnt
; /* calibration errors (ro) */
1261 long stbcnt
; /* stability limit exceeded (ro) */
1263 int :32; int :32; int :32; int :32;
1264 int :32; int :32; int :32; int :32;
1265 int :32; int :32; int :32; int :32;
1268 SYSCALL_DEFINE1(old_adjtimex
, struct timex32 __user
*, txc_p
)
1273 /* copy relevant bits of struct timex. */
1274 if (copy_from_user(&txc
, txc_p
, offsetof(struct timex32
, time
)) ||
1275 copy_from_user(&txc
.tick
, &txc_p
->tick
, sizeof(struct timex32
) -
1276 offsetof(struct timex32
, time
)))
1279 ret
= do_adjtimex(&txc
);
1283 /* copy back to timex32 */
1284 if (copy_to_user(txc_p
, &txc
, offsetof(struct timex32
, time
)) ||
1285 (copy_to_user(&txc_p
->tick
, &txc
.tick
, sizeof(struct timex32
) -
1286 offsetof(struct timex32
, tick
))) ||
1287 (put_tv32(&txc_p
->time
, &txc
.time
)))
1293 /* Get an address range which is currently unmapped. Similar to the
1294 generic version except that we know how to honor ADDR_LIMIT_32BIT. */
1296 static unsigned long
1297 arch_get_unmapped_area_1(unsigned long addr
, unsigned long len
,
1298 unsigned long limit
)
1300 struct vm_unmapped_area_info info
;
1304 info
.low_limit
= addr
;
1305 info
.high_limit
= limit
;
1306 info
.align_mask
= 0;
1307 info
.align_offset
= 0;
1308 return vm_unmapped_area(&info
);
1312 arch_get_unmapped_area(struct file
*filp
, unsigned long addr
,
1313 unsigned long len
, unsigned long pgoff
,
1314 unsigned long flags
)
1316 unsigned long limit
;
1318 /* "32 bit" actually means 31 bit, since pointers sign extend. */
1319 if (current
->personality
& ADDR_LIMIT_32BIT
)
1327 if (flags
& MAP_FIXED
)
1330 /* First, see if the given suggestion fits.
1332 The OSF/1 loader (/sbin/loader) relies on us returning an
1333 address larger than the requested if one exists, which is
1334 a terribly broken way to program.
1336 That said, I can see the use in being able to suggest not
1337 merely specific addresses, but regions of memory -- perhaps
1338 this feature should be incorporated into all ports? */
1341 addr
= arch_get_unmapped_area_1 (PAGE_ALIGN(addr
), len
, limit
);
1342 if (addr
!= (unsigned long) -ENOMEM
)
1346 /* Next, try allocating at TASK_UNMAPPED_BASE. */
1347 addr
= arch_get_unmapped_area_1 (PAGE_ALIGN(TASK_UNMAPPED_BASE
),
1349 if (addr
!= (unsigned long) -ENOMEM
)
1352 /* Finally, try allocating in low memory. */
1353 addr
= arch_get_unmapped_area_1 (PAGE_SIZE
, len
, limit
);
1358 #ifdef CONFIG_OSF4_COMPAT
1360 /* Clear top 32 bits of iov_len in the user's buffer for
1361 compatibility with old versions of OSF/1 where iov_len
1362 was defined as int. */
1364 osf_fix_iov_len(const struct iovec __user
*iov
, unsigned long count
)
1368 for (i
= 0 ; i
< count
; i
++) {
1369 int __user
*iov_len_high
= (int __user
*)&iov
[i
].iov_len
+ 1;
1371 if (put_user(0, iov_len_high
))
1377 SYSCALL_DEFINE3(osf_readv
, unsigned long, fd
,
1378 const struct iovec __user
*, vector
, unsigned long, count
)
1380 if (unlikely(personality(current
->personality
) == PER_OSF4
))
1381 if (osf_fix_iov_len(vector
, count
))
1383 return sys_readv(fd
, vector
, count
);
1386 SYSCALL_DEFINE3(osf_writev
, unsigned long, fd
,
1387 const struct iovec __user
*, vector
, unsigned long, count
)
1389 if (unlikely(personality(current
->personality
) == PER_OSF4
))
1390 if (osf_fix_iov_len(vector
, count
))
1392 return sys_writev(fd
, vector
, count
);
1397 SYSCALL_DEFINE2(osf_getpriority
, int, which
, int, who
)
1399 int prio
= sys_getpriority(which
, who
);
1401 /* Return value is the unbiased priority, i.e. 20 - prio.
1402 This does result in negative return values, so signal
1404 force_successful_syscall_return();
1410 SYSCALL_DEFINE0(getxuid
)
1412 current_pt_regs()->r20
= sys_geteuid();
1413 return sys_getuid();
1416 SYSCALL_DEFINE0(getxgid
)
1418 current_pt_regs()->r20
= sys_getegid();
1419 return sys_getgid();
1422 SYSCALL_DEFINE0(getxpid
)
1424 current_pt_regs()->r20
= sys_getppid();
1425 return sys_getpid();
1428 SYSCALL_DEFINE0(alpha_pipe
)
1431 int res
= do_pipe_flags(fd
, 0);
1433 /* The return values are in $0 and $20. */
1434 current_pt_regs()->r20
= fd
[1];
1440 SYSCALL_DEFINE1(sethae
, unsigned long, val
)
1442 current_pt_regs()->hae
= val
;