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/smp_lock.h>
19 #include <linux/stddef.h>
20 #include <linux/syscalls.h>
21 #include <linux/unistd.h>
22 #include <linux/ptrace.h>
23 #include <linux/slab.h>
24 #include <linux/user.h>
25 #include <linux/utsname.h>
26 #include <linux/time.h>
27 #include <linux/timex.h>
28 #include <linux/major.h>
29 #include <linux/stat.h>
30 #include <linux/mman.h>
31 #include <linux/shm.h>
32 #include <linux/poll.h>
33 #include <linux/file.h>
34 #include <linux/types.h>
35 #include <linux/ipc.h>
36 #include <linux/namei.h>
37 #include <linux/uio.h>
38 #include <linux/vfs.h>
39 #include <linux/rcupdate.h>
43 #include <asm/uaccess.h>
44 #include <asm/system.h>
45 #include <asm/sysinfo.h>
46 #include <asm/hwrpb.h>
47 #include <asm/processor.h>
49 extern int do_pipe(int *);
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.
57 asmlinkage unsigned long
58 osf_brk(unsigned long brk)
60 unsigned long retval = sys_brk(brk);
61 if (brk && brk != retval)
67 * This is pure guess-work..
70 osf_set_program_attributes(unsigned long text_start, unsigned long text_len,
71 unsigned long bss_start, unsigned long bss_len)
77 mm->end_code = bss_start + bss_len;
78 mm->start_brk = bss_start + bss_len;
79 mm->brk = bss_start + bss_len;
81 printk("set_program_attributes(%lx %lx %lx %lx)\n",
82 text_start, text_len, bss_start, bss_len);
89 * OSF/1 directory handling functions...
91 * The "getdents()" interface is much more sane: the "basep" stuff is
92 * braindamage (it can't really handle filesystems where the directory
93 * offset differences aren't the same as "d_reclen").
95 #define NAME_OFFSET offsetof (struct osf_dirent, d_name)
99 unsigned short d_reclen;
100 unsigned short d_namlen;
104 struct osf_dirent_callback {
105 struct osf_dirent __user *dirent;
112 osf_filldir(void *__buf, const char *name, int namlen, loff_t offset,
113 u64 ino, unsigned int d_type)
115 struct osf_dirent __user *dirent;
116 struct osf_dirent_callback *buf = (struct osf_dirent_callback *) __buf;
117 unsigned int reclen = ALIGN(NAME_OFFSET + namlen + 1, sizeof(u32));
120 buf->error = -EINVAL; /* only used if we fail */
121 if (reclen > buf->count)
124 if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
125 buf->error = -EOVERFLOW;
129 if (put_user(offset, buf->basep))
133 dirent = buf->dirent;
134 if (put_user(d_ino, &dirent->d_ino) ||
135 put_user(namlen, &dirent->d_namlen) ||
136 put_user(reclen, &dirent->d_reclen) ||
137 copy_to_user(dirent->d_name, name, namlen) ||
138 put_user(0, dirent->d_name + namlen))
140 dirent = (void __user *)dirent + reclen;
141 buf->dirent = dirent;
142 buf->count -= reclen;
145 buf->error = -EFAULT;
150 osf_getdirentries(unsigned int fd, struct osf_dirent __user *dirent,
151 unsigned int count, long __user *basep)
155 struct osf_dirent_callback buf;
167 error = vfs_readdir(file, osf_filldir, &buf);
170 if (count != buf.count)
171 error = count - buf.count;
180 asmlinkage unsigned long
181 osf_mmap(unsigned long addr, unsigned long len, unsigned long prot,
182 unsigned long flags, unsigned long fd, unsigned long off)
184 struct file *file = NULL;
185 unsigned long ret = -EBADF;
188 if (flags & (_MAP_HASSEMAPHORE | _MAP_INHERIT | _MAP_UNALIGNED))
189 printk("%s: unimplemented OSF mmap flags %04lx\n",
190 current->comm, flags);
192 if (!(flags & MAP_ANONYMOUS)) {
197 flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
198 down_write(¤t->mm->mmap_sem);
199 ret = do_mmap(file, addr, len, prot, flags, off);
200 up_write(¤t->mm->mmap_sem);
209 * The OSF/1 statfs structure is much larger, but this should
210 * match the beginning, at least.
222 __kernel_fsid_t f_fsid;
226 linux_to_osf_statfs(struct kstatfs *linux_stat, struct osf_statfs __user *osf_stat,
227 unsigned long bufsiz)
229 struct osf_statfs tmp_stat;
231 tmp_stat.f_type = linux_stat->f_type;
232 tmp_stat.f_flags = 0; /* mount flags */
233 tmp_stat.f_fsize = linux_stat->f_frsize;
234 tmp_stat.f_bsize = linux_stat->f_bsize;
235 tmp_stat.f_blocks = linux_stat->f_blocks;
236 tmp_stat.f_bfree = linux_stat->f_bfree;
237 tmp_stat.f_bavail = linux_stat->f_bavail;
238 tmp_stat.f_files = linux_stat->f_files;
239 tmp_stat.f_ffree = linux_stat->f_ffree;
240 tmp_stat.f_fsid = linux_stat->f_fsid;
241 if (bufsiz > sizeof(tmp_stat))
242 bufsiz = sizeof(tmp_stat);
243 return copy_to_user(osf_stat, &tmp_stat, bufsiz) ? -EFAULT : 0;
247 do_osf_statfs(struct dentry * dentry, struct osf_statfs __user *buffer,
248 unsigned long bufsiz)
250 struct kstatfs linux_stat;
251 int error = vfs_statfs(dentry, &linux_stat);
253 error = linux_to_osf_statfs(&linux_stat, buffer, bufsiz);
258 osf_statfs(char __user *pathname, struct osf_statfs __user *buffer, unsigned long bufsiz)
263 retval = user_path(pathname, &path);
265 retval = do_osf_statfs(path.dentry, buffer, bufsiz);
272 osf_fstatfs(unsigned long fd, struct osf_statfs __user *buffer, unsigned long bufsiz)
280 retval = do_osf_statfs(file->f_path.dentry, buffer, bufsiz);
287 * Uhh.. OSF/1 mount parameters aren't exactly obvious..
289 * Although to be frank, neither are the native Linux/i386 ones..
292 char __user *devname;
298 char __user *devname;
302 /* This has lots more here, which Linux handles with the option block
303 but I'm too lazy to do the translation into ASCII. */
307 char __user *devname;
313 * We can't actually handle ufs yet, so we translate UFS mounts to
314 * ext2fs mounts. I wouldn't mind a UFS filesystem, but the UFS
315 * layout is so braindead it's a major headache doing it.
317 * Just how long ago was it written? OTOH our UFS driver may be still
318 * unhappy with OSF UFS. [CHECKME]
321 osf_ufs_mount(char *dirname, struct ufs_args __user *args, int flags)
324 struct cdfs_args tmp;
328 if (copy_from_user(&tmp, args, sizeof(tmp)))
330 devname = getname(tmp.devname);
331 retval = PTR_ERR(devname);
334 retval = do_mount(devname, dirname, "ext2", flags, NULL);
341 osf_cdfs_mount(char *dirname, struct cdfs_args __user *args, int flags)
344 struct cdfs_args tmp;
348 if (copy_from_user(&tmp, args, sizeof(tmp)))
350 devname = getname(tmp.devname);
351 retval = PTR_ERR(devname);
354 retval = do_mount(devname, dirname, "iso9660", flags, NULL);
361 osf_procfs_mount(char *dirname, struct procfs_args __user *args, int flags)
363 struct procfs_args tmp;
365 if (copy_from_user(&tmp, args, sizeof(tmp)))
368 return do_mount("", dirname, "proc", flags, NULL);
372 osf_mount(unsigned long typenr, char __user *path, int flag, void __user *data)
374 int retval = -EINVAL;
379 name = getname(path);
380 retval = PTR_ERR(name);
385 retval = osf_ufs_mount(name, data, flag);
388 retval = osf_cdfs_mount(name, data, flag);
391 retval = osf_procfs_mount(name, data, flag);
394 printk("osf_mount(%ld, %x)\n", typenr, flag);
403 osf_utsname(char __user *name)
409 if (copy_to_user(name + 0, utsname()->sysname, 32))
411 if (copy_to_user(name + 32, utsname()->nodename, 32))
413 if (copy_to_user(name + 64, utsname()->release, 32))
415 if (copy_to_user(name + 96, utsname()->version, 32))
417 if (copy_to_user(name + 128, utsname()->machine, 32))
426 asmlinkage unsigned long
427 sys_getpagesize(void)
432 asmlinkage unsigned long
433 sys_getdtablesize(void)
435 return sysctl_nr_open;
439 * For compatibility with OSF/1 only. Use utsname(2) instead.
442 osf_getdomainname(char __user *name, int namelen)
447 if (!access_ok(VERIFY_WRITE, name, namelen))
455 for (i = 0; i < len; ++i) {
456 __put_user(utsname()->domainname[i], name + i);
457 if (utsname()->domainname[i] == '\0')
466 * The following stuff should move into a header file should it ever
467 * be labeled "officially supported." Right now, there is just enough
468 * support to avoid applications (such as tar) printing error
469 * messages. The attributes are not really implemented.
473 * Values for Property list entry flag
475 #define PLE_PROPAGATE_ON_COPY 0x1 /* cp(1) will copy entry
477 #define PLE_FLAG_MASK 0x1 /* Valid flag values */
478 #define PLE_FLAG_ALL -1 /* All flag value */
480 struct proplistname_args {
481 unsigned int pl_mask;
482 unsigned int pl_numnames;
501 struct proplistname_args __user *name_args;
504 int __user *min_buf_size;
508 struct proplistname_args __user *name_args;
511 int __user *min_buf_size;
516 struct proplistname_args __user *name_args;
520 struct proplistname_args __user *name_args;
525 PL_SET = 1, PL_FSET = 2,
526 PL_GET = 3, PL_FGET = 4,
527 PL_DEL = 5, PL_FDEL = 6
531 osf_proplist_syscall(enum pl_code code, union pl_args __user *args)
534 int __user *min_buf_size_ptr;
539 if (get_user(error, &args->set.nbytes))
543 if (get_user(error, &args->fset.nbytes))
547 error = get_user(min_buf_size_ptr, &args->get.min_buf_size);
550 error = put_user(0, min_buf_size_ptr);
553 error = get_user(min_buf_size_ptr, &args->fget.min_buf_size);
556 error = put_user(0, min_buf_size_ptr);
571 osf_sigstack(struct sigstack __user *uss, struct sigstack __user *uoss)
573 unsigned long usp = rdusp();
574 unsigned long oss_sp = current->sas_ss_sp + current->sas_ss_size;
575 unsigned long oss_os = on_sig_stack(usp);
582 if (get_user(ss_sp, &uss->ss_sp))
585 /* If the current stack was set with sigaltstack, don't
586 swap stacks while we are on it. */
588 if (current->sas_ss_sp && on_sig_stack(usp))
591 /* Since we don't know the extent of the stack, and we don't
592 track onstack-ness, but rather calculate it, we must
593 presume a size. Ho hum this interface is lossy. */
594 current->sas_ss_sp = (unsigned long)ss_sp - SIGSTKSZ;
595 current->sas_ss_size = SIGSTKSZ;
600 if (! access_ok(VERIFY_WRITE, uoss, sizeof(*uoss))
601 || __put_user(oss_sp, &uoss->ss_sp)
602 || __put_user(oss_os, &uoss->ss_onstack))
612 osf_sysinfo(int command, char __user *buf, long count)
614 char *sysinfo_table[] = {
620 "alpha", /* instruction set architecture */
621 "dummy", /* hardware serial number */
622 "dummy", /* hardware manufacturer */
623 "dummy", /* secure RPC domain */
625 unsigned long offset;
627 long len, err = -EINVAL;
630 if (offset >= ARRAY_SIZE(sysinfo_table)) {
631 /* Digital UNIX has a few unpublished interfaces here */
632 printk("sysinfo(%d)", command);
637 res = sysinfo_table[offset];
641 if (copy_to_user(buf, res, len))
650 asmlinkage unsigned long
651 osf_getsysinfo(unsigned long op, void __user *buffer, unsigned long nbytes,
652 int __user *start, void __user *arg)
655 struct percpu_struct *cpu;
658 case GSI_IEEE_FP_CONTROL:
659 /* Return current software fp control & status bits. */
660 /* Note that DU doesn't verify available space here. */
662 w = current_thread_info()->ieee_state & IEEE_SW_MASK;
663 w = swcr_update_status(w, rdfpcr());
664 if (put_user(w, (unsigned long __user *) buffer))
668 case GSI_IEEE_STATE_AT_SIGNAL:
670 * Not sure anybody will ever use this weird stuff. These
671 * ops can be used (under OSF/1) to set the fpcr that should
672 * be used when a signal handler starts executing.
677 if (nbytes < sizeof(unsigned int))
679 w = (current_thread_info()->flags >> UAC_SHIFT) & UAC_BITMASK;
680 if (put_user(w, (unsigned int __user *)buffer))
685 if (nbytes < sizeof(unsigned long))
687 cpu = (struct percpu_struct*)
688 ((char*)hwrpb + hwrpb->processor_offset);
690 if (put_user(w, (unsigned long __user*)buffer))
695 if (nbytes < sizeof(*hwrpb))
697 if (copy_to_user(buffer, hwrpb, nbytes) != 0)
708 asmlinkage unsigned long
709 osf_setsysinfo(unsigned long op, void __user *buffer, unsigned long nbytes,
710 int __user *start, void __user *arg)
713 case SSI_IEEE_FP_CONTROL: {
714 unsigned long swcr, fpcr;
718 * Alpha Architecture Handbook 4.7.7.3:
719 * To be fully IEEE compiant, we must track the current IEEE
720 * exception state in software, because spurious bits can be
721 * set in the trap shadow of a software-complete insn.
724 if (get_user(swcr, (unsigned long __user *)buffer))
726 state = ¤t_thread_info()->ieee_state;
728 /* Update softare trap enable bits. */
729 *state = (*state & ~IEEE_SW_MASK) | (swcr & IEEE_SW_MASK);
731 /* Update the real fpcr. */
732 fpcr = rdfpcr() & FPCR_DYN_MASK;
733 fpcr |= ieee_swcr_to_fpcr(swcr);
739 case SSI_IEEE_RAISE_EXCEPTION: {
740 unsigned long exc, swcr, fpcr, fex;
743 if (get_user(exc, (unsigned long __user *)buffer))
745 state = ¤t_thread_info()->ieee_state;
746 exc &= IEEE_STATUS_MASK;
748 /* Update softare trap enable bits. */
749 swcr = (*state & IEEE_SW_MASK) | exc;
752 /* Update the real fpcr. */
754 fpcr |= ieee_swcr_to_fpcr(swcr);
757 /* If any exceptions set by this call, and are unmasked,
758 send a signal. Old exceptions are not signaled. */
759 fex = (exc >> IEEE_STATUS_TO_EXCSUM_SHIFT) & swcr;
764 if (fex & IEEE_TRAP_ENABLE_DNO) si_code = FPE_FLTUND;
765 if (fex & IEEE_TRAP_ENABLE_INE) si_code = FPE_FLTRES;
766 if (fex & IEEE_TRAP_ENABLE_UNF) si_code = FPE_FLTUND;
767 if (fex & IEEE_TRAP_ENABLE_OVF) si_code = FPE_FLTOVF;
768 if (fex & IEEE_TRAP_ENABLE_DZE) si_code = FPE_FLTDIV;
769 if (fex & IEEE_TRAP_ENABLE_INV) si_code = FPE_FLTINV;
771 info.si_signo = SIGFPE;
773 info.si_code = si_code;
774 info.si_addr = NULL; /* FIXME */
775 send_sig_info(SIGFPE, &info, current);
780 case SSI_IEEE_STATE_AT_SIGNAL:
781 case SSI_IEEE_IGNORE_STATE_AT_SIGNAL:
783 * Not sure anybody will ever use this weird stuff. These
784 * ops can be used (under OSF/1) to set the fpcr that should
785 * be used when a signal handler starts executing.
790 unsigned long v, w, i;
791 unsigned int old, new;
793 for (i = 0; i < nbytes; ++i) {
795 if (get_user(v, 2*i + (unsigned int __user *)buffer))
797 if (get_user(w, 2*i + 1 + (unsigned int __user *)buffer))
802 old = current_thread_info()->flags;
803 new = old & ~(UAC_BITMASK << UAC_SHIFT);
804 new = new | (w & UAC_BITMASK) << UAC_SHIFT;
805 if (cmpxchg(¤t_thread_info()->flags,
824 /* Translations due to the fact that OSF's time_t is an int. Which
825 affects all sorts of things, like timeval and itimerval. */
827 extern struct timezone sys_tz;
836 struct timeval32 it_interval;
837 struct timeval32 it_value;
841 get_tv32(struct timeval *o, struct timeval32 __user *i)
843 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
844 (__get_user(o->tv_sec, &i->tv_sec) |
845 __get_user(o->tv_usec, &i->tv_usec)));
849 put_tv32(struct timeval32 __user *o, struct timeval *i)
851 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
852 (__put_user(i->tv_sec, &o->tv_sec) |
853 __put_user(i->tv_usec, &o->tv_usec)));
857 get_it32(struct itimerval *o, struct itimerval32 __user *i)
859 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
860 (__get_user(o->it_interval.tv_sec, &i->it_interval.tv_sec) |
861 __get_user(o->it_interval.tv_usec, &i->it_interval.tv_usec) |
862 __get_user(o->it_value.tv_sec, &i->it_value.tv_sec) |
863 __get_user(o->it_value.tv_usec, &i->it_value.tv_usec)));
867 put_it32(struct itimerval32 __user *o, struct itimerval *i)
869 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
870 (__put_user(i->it_interval.tv_sec, &o->it_interval.tv_sec) |
871 __put_user(i->it_interval.tv_usec, &o->it_interval.tv_usec) |
872 __put_user(i->it_value.tv_sec, &o->it_value.tv_sec) |
873 __put_user(i->it_value.tv_usec, &o->it_value.tv_usec)));
877 jiffies_to_timeval32(unsigned long jiffies, struct timeval32 *value)
879 value->tv_usec = (jiffies % HZ) * (1000000L / HZ);
880 value->tv_sec = jiffies / HZ;
884 osf_gettimeofday(struct timeval32 __user *tv, struct timezone __user *tz)
888 do_gettimeofday(&ktv);
889 if (put_tv32(tv, &ktv))
893 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
900 osf_settimeofday(struct timeval32 __user *tv, struct timezone __user *tz)
906 if (get_tv32((struct timeval *)&kts, tv))
910 if (copy_from_user(&ktz, tz, sizeof(*tz)))
916 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
920 osf_getitimer(int which, struct itimerval32 __user *it)
922 struct itimerval kit;
925 error = do_getitimer(which, &kit);
926 if (!error && put_it32(it, &kit))
933 osf_setitimer(int which, struct itimerval32 __user *in, struct itimerval32 __user *out)
935 struct itimerval kin, kout;
939 if (get_it32(&kin, in))
942 memset(&kin, 0, sizeof(kin));
944 error = do_setitimer(which, &kin, out ? &kout : NULL);
948 if (put_it32(out, &kout))
956 osf_utimes(char __user *filename, struct timeval32 __user *tvs)
958 struct timespec tv[2];
961 struct timeval ktvs[2];
962 if (get_tv32(&ktvs[0], &tvs[0]) ||
963 get_tv32(&ktvs[1], &tvs[1]))
966 if (ktvs[0].tv_usec < 0 || ktvs[0].tv_usec >= 1000000 ||
967 ktvs[1].tv_usec < 0 || ktvs[1].tv_usec >= 1000000)
970 tv[0].tv_sec = ktvs[0].tv_sec;
971 tv[0].tv_nsec = 1000 * ktvs[0].tv_usec;
972 tv[1].tv_sec = ktvs[1].tv_sec;
973 tv[1].tv_nsec = 1000 * ktvs[1].tv_usec;
976 return do_utimes(AT_FDCWD, filename, tvs ? tv : NULL, 0);
979 #define MAX_SELECT_SECONDS \
980 ((unsigned long) (MAX_SCHEDULE_TIMEOUT / HZ)-1)
983 osf_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp,
984 struct timeval32 __user *tvp)
986 struct timespec end_time, *to = NULL;
992 if (!access_ok(VERIFY_READ, tvp, sizeof(*tvp))
993 || __get_user(sec, &tvp->tv_sec)
994 || __get_user(usec, &tvp->tv_usec)) {
998 if (sec < 0 || usec < 0)
1001 if (poll_select_set_timeout(to, sec, usec * NSEC_PER_USEC))
1006 /* OSF does not copy back the remaining time. */
1007 return core_sys_select(n, inp, outp, exp, to);
1011 struct timeval32 ru_utime; /* user time used */
1012 struct timeval32 ru_stime; /* system time used */
1013 long ru_maxrss; /* maximum resident set size */
1014 long ru_ixrss; /* integral shared memory size */
1015 long ru_idrss; /* integral unshared data size */
1016 long ru_isrss; /* integral unshared stack size */
1017 long ru_minflt; /* page reclaims */
1018 long ru_majflt; /* page faults */
1019 long ru_nswap; /* swaps */
1020 long ru_inblock; /* block input operations */
1021 long ru_oublock; /* block output operations */
1022 long ru_msgsnd; /* messages sent */
1023 long ru_msgrcv; /* messages received */
1024 long ru_nsignals; /* signals received */
1025 long ru_nvcsw; /* voluntary context switches */
1026 long ru_nivcsw; /* involuntary " */
1030 osf_getrusage(int who, struct rusage32 __user *ru)
1034 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN)
1037 memset(&r, 0, sizeof(r));
1040 jiffies_to_timeval32(current->utime, &r.ru_utime);
1041 jiffies_to_timeval32(current->stime, &r.ru_stime);
1042 r.ru_minflt = current->min_flt;
1043 r.ru_majflt = current->maj_flt;
1045 case RUSAGE_CHILDREN:
1046 jiffies_to_timeval32(current->signal->cutime, &r.ru_utime);
1047 jiffies_to_timeval32(current->signal->cstime, &r.ru_stime);
1048 r.ru_minflt = current->signal->cmin_flt;
1049 r.ru_majflt = current->signal->cmaj_flt;
1053 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
1057 osf_wait4(pid_t pid, int __user *ustatus, int options,
1058 struct rusage32 __user *ur)
1062 mm_segment_t old_fs;
1065 return sys_wait4(pid, ustatus, options, NULL);
1070 ret = sys_wait4(pid, ustatus, options, (struct rusage __user *) &r);
1073 if (!access_ok(VERIFY_WRITE, ur, sizeof(*ur)))
1077 err |= __put_user(r.ru_utime.tv_sec, &ur->ru_utime.tv_sec);
1078 err |= __put_user(r.ru_utime.tv_usec, &ur->ru_utime.tv_usec);
1079 err |= __put_user(r.ru_stime.tv_sec, &ur->ru_stime.tv_sec);
1080 err |= __put_user(r.ru_stime.tv_usec, &ur->ru_stime.tv_usec);
1081 err |= __put_user(r.ru_maxrss, &ur->ru_maxrss);
1082 err |= __put_user(r.ru_ixrss, &ur->ru_ixrss);
1083 err |= __put_user(r.ru_idrss, &ur->ru_idrss);
1084 err |= __put_user(r.ru_isrss, &ur->ru_isrss);
1085 err |= __put_user(r.ru_minflt, &ur->ru_minflt);
1086 err |= __put_user(r.ru_majflt, &ur->ru_majflt);
1087 err |= __put_user(r.ru_nswap, &ur->ru_nswap);
1088 err |= __put_user(r.ru_inblock, &ur->ru_inblock);
1089 err |= __put_user(r.ru_oublock, &ur->ru_oublock);
1090 err |= __put_user(r.ru_msgsnd, &ur->ru_msgsnd);
1091 err |= __put_user(r.ru_msgrcv, &ur->ru_msgrcv);
1092 err |= __put_user(r.ru_nsignals, &ur->ru_nsignals);
1093 err |= __put_user(r.ru_nvcsw, &ur->ru_nvcsw);
1094 err |= __put_user(r.ru_nivcsw, &ur->ru_nivcsw);
1096 return err ? err : ret;
1100 * I don't know what the parameters are: the first one
1101 * seems to be a timeval pointer, and I suspect the second
1102 * one is the time remaining.. Ho humm.. No documentation.
1105 osf_usleep_thread(struct timeval32 __user *sleep, struct timeval32 __user *remain)
1108 unsigned long ticks;
1110 if (get_tv32(&tmp, sleep))
1113 ticks = timeval_to_jiffies(&tmp);
1115 ticks = schedule_timeout_interruptible(ticks);
1118 jiffies_to_timeval(ticks, &tmp);
1119 if (put_tv32(remain, &tmp))
1130 unsigned int modes; /* mode selector */
1131 long offset; /* time offset (usec) */
1132 long freq; /* frequency offset (scaled ppm) */
1133 long maxerror; /* maximum error (usec) */
1134 long esterror; /* estimated error (usec) */
1135 int status; /* clock command/status */
1136 long constant; /* pll time constant */
1137 long precision; /* clock precision (usec) (read only) */
1138 long tolerance; /* clock frequency tolerance (ppm)
1141 struct timeval32 time; /* (read only) */
1142 long tick; /* (modified) usecs between clock ticks */
1144 long ppsfreq; /* pps frequency (scaled ppm) (ro) */
1145 long jitter; /* pps jitter (us) (ro) */
1146 int shift; /* interval duration (s) (shift) (ro) */
1147 long stabil; /* pps stability (scaled ppm) (ro) */
1148 long jitcnt; /* jitter limit exceeded (ro) */
1149 long calcnt; /* calibration intervals (ro) */
1150 long errcnt; /* calibration errors (ro) */
1151 long stbcnt; /* stability limit exceeded (ro) */
1153 int :32; int :32; int :32; int :32;
1154 int :32; int :32; int :32; int :32;
1155 int :32; int :32; int :32; int :32;
1159 sys_old_adjtimex(struct timex32 __user *txc_p)
1164 /* copy relevant bits of struct timex. */
1165 if (copy_from_user(&txc, txc_p, offsetof(struct timex32, time)) ||
1166 copy_from_user(&txc.tick, &txc_p->tick, sizeof(struct timex32) -
1167 offsetof(struct timex32, time)))
1170 ret = do_adjtimex(&txc);
1174 /* copy back to timex32 */
1175 if (copy_to_user(txc_p, &txc, offsetof(struct timex32, time)) ||
1176 (copy_to_user(&txc_p->tick, &txc.tick, sizeof(struct timex32) -
1177 offsetof(struct timex32, tick))) ||
1178 (put_tv32(&txc_p->time, &txc.time)))
1184 /* Get an address range which is currently unmapped. Similar to the
1185 generic version except that we know how to honor ADDR_LIMIT_32BIT. */
1187 static unsigned long
1188 arch_get_unmapped_area_1(unsigned long addr, unsigned long len,
1189 unsigned long limit)
1191 struct vm_area_struct *vma = find_vma(current->mm, addr);
1194 /* At this point: (!vma || addr < vma->vm_end). */
1195 if (limit - len < addr)
1197 if (!vma || addr + len <= vma->vm_start)
1205 arch_get_unmapped_area(struct file *filp, unsigned long addr,
1206 unsigned long len, unsigned long pgoff,
1207 unsigned long flags)
1209 unsigned long limit;
1211 /* "32 bit" actually means 31 bit, since pointers sign extend. */
1212 if (current->personality & ADDR_LIMIT_32BIT)
1220 if (flags & MAP_FIXED)
1223 /* First, see if the given suggestion fits.
1225 The OSF/1 loader (/sbin/loader) relies on us returning an
1226 address larger than the requested if one exists, which is
1227 a terribly broken way to program.
1229 That said, I can see the use in being able to suggest not
1230 merely specific addresses, but regions of memory -- perhaps
1231 this feature should be incorporated into all ports? */
1234 addr = arch_get_unmapped_area_1 (PAGE_ALIGN(addr), len, limit);
1235 if (addr != (unsigned long) -ENOMEM)
1239 /* Next, try allocating at TASK_UNMAPPED_BASE. */
1240 addr = arch_get_unmapped_area_1 (PAGE_ALIGN(TASK_UNMAPPED_BASE),
1242 if (addr != (unsigned long) -ENOMEM)
1245 /* Finally, try allocating in low memory. */
1246 addr = arch_get_unmapped_area_1 (PAGE_SIZE, len, limit);
1251 #ifdef CONFIG_OSF4_COMPAT
1253 /* Clear top 32 bits of iov_len in the user's buffer for
1254 compatibility with old versions of OSF/1 where iov_len
1255 was defined as int. */
1257 osf_fix_iov_len(const struct iovec __user *iov, unsigned long count)
1261 for (i = 0 ; i < count ; i++) {
1262 int __user *iov_len_high = (int __user *)&iov[i].iov_len + 1;
1264 if (put_user(0, iov_len_high))
1271 osf_readv(unsigned long fd, const struct iovec __user * vector, unsigned long count)
1273 if (unlikely(personality(current->personality) == PER_OSF4))
1274 if (osf_fix_iov_len(vector, count))
1276 return sys_readv(fd, vector, count);
1280 osf_writev(unsigned long fd, const struct iovec __user * vector, unsigned long count)
1282 if (unlikely(personality(current->personality) == PER_OSF4))
1283 if (osf_fix_iov_len(vector, count))
1285 return sys_writev(fd, vector, count);