15ad0790c89f0fd80ce8fd537df3324d0023ddf2
[linux-flexiantxendom0-3.2.10.git] / arch / sparc / kernel / sys_sunos.c
1 /* $Id: sys_sunos.c,v 1.132 2001/02/13 01:16:43 davem Exp $
2  * sys_sunos.c: SunOS specific syscall compatibility support.
3  *
4  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
5  * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
6  *
7  * Based upon preliminary work which is:
8  *
9  * Copyright (C) 1995 Adrian M. Rodriguez (adrian@remus.rutgers.edu)
10  *
11  */
12
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/types.h>
16 #include <linux/mman.h>
17 #include <linux/mm.h>
18 #include <linux/swap.h>
19 #include <linux/fs.h>
20 #include <linux/file.h>
21 #include <linux/resource.h>
22 #include <linux/ipc.h>
23 #include <linux/shm.h>
24 #include <linux/msg.h>
25 #include <linux/sem.h>
26 #include <linux/signal.h>
27 #include <linux/uio.h>
28 #include <linux/utsname.h>
29 #include <linux/major.h>
30 #include <linux/stat.h>
31 #include <linux/slab.h>
32 #include <linux/pagemap.h>
33 #include <linux/errno.h>
34 #include <linux/smp.h>
35 #include <linux/smp_lock.h>
36
37 #include <asm/uaccess.h>
38 #ifndef KERNEL_DS
39 #include <linux/segment.h>
40 #endif
41
42 #include <asm/page.h>
43 #include <asm/pgtable.h>
44 #include <asm/pconf.h>
45 #include <asm/idprom.h> /* for gethostid() */
46 #include <asm/unistd.h>
47 #include <asm/system.h>
48
49 /* For the nfs mount emulation */
50 #include <linux/socket.h>
51 #include <linux/in.h>
52 #include <linux/nfs.h>
53 #include <linux/nfs2.h>
54 #include <linux/nfs_mount.h>
55
56 /* for sunos_select */
57 #include <linux/time.h>
58 #include <linux/personality.h>
59
60 /* NR_OPEN is now larger and dynamic in recent kernels. */
61 #define SUNOS_NR_OPEN   256
62
63 /* We use the SunOS mmap() semantics. */
64 asmlinkage unsigned long sunos_mmap(unsigned long addr, unsigned long len,
65                                     unsigned long prot, unsigned long flags,
66                                     unsigned long fd, unsigned long off)
67 {
68         struct file * file = NULL;
69         unsigned long retval, ret_type;
70
71         if(flags & MAP_NORESERVE) {
72                 static int cnt;
73                 if (cnt++ < 10)
74                         printk("%s: unimplemented SunOS MAP_NORESERVE mmap() flag\n",
75                                current->comm);
76                 flags &= ~MAP_NORESERVE;
77         }
78         retval = -EBADF;
79         if(!(flags & MAP_ANONYMOUS)) {
80                 if (fd >= SUNOS_NR_OPEN)
81                         goto out;
82                 file = fget(fd);
83                 if (!file)
84                         goto out;
85         }
86
87         retval = -EINVAL;
88         /* If this is ld.so or a shared library doing an mmap
89          * of /dev/zero, transform it into an anonymous mapping.
90          * SunOS is so stupid some times... hmph!
91          */
92         if (file) {
93                 if(MAJOR(file->f_dentry->d_inode->i_rdev) == MEM_MAJOR &&
94                    MINOR(file->f_dentry->d_inode->i_rdev) == 5) {
95                         flags |= MAP_ANONYMOUS;
96                         fput(file);
97                         file = 0;
98                 }
99         }
100         ret_type = flags & _MAP_NEW;
101         flags &= ~_MAP_NEW;
102
103         if(!(flags & MAP_FIXED))
104                 addr = 0;
105         else {
106                 if (ARCH_SUN4C_SUN4 &&
107                     (len > 0x20000000 ||
108                      ((flags & MAP_FIXED) &&
109                       addr < 0xe0000000 && addr + len > 0x20000000)))
110                         goto out_putf;
111
112                 /* See asm-sparc/uaccess.h */
113                 if (len > TASK_SIZE - PAGE_SIZE ||
114                     addr + len > TASK_SIZE - PAGE_SIZE)
115                         goto out_putf;
116         }
117
118         flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
119         down_write(&current->mm->mmap_sem);
120         retval = do_mmap(file, addr, len, prot, flags, off);
121         up_write(&current->mm->mmap_sem);
122         if(!ret_type)
123                 retval = ((retval < PAGE_OFFSET) ? 0 : retval);
124
125 out_putf:
126         if (file)
127                 fput(file);
128 out:
129         return retval;
130 }
131
132 /* lmbench calls this, just say "yeah, ok" */
133 asmlinkage int sunos_mctl(unsigned long addr, unsigned long len, int function, char *arg)
134 {
135         return 0;
136 }
137
138 /* SunOS is completely broken... it returns 0 on success, otherwise
139  * ENOMEM.  For sys_sbrk() it wants the old brk value as a return
140  * on success and ENOMEM as before on failure.
141  */
142 asmlinkage int sunos_brk(unsigned long brk)
143 {
144         int freepages, retval = -ENOMEM;
145         unsigned long rlim;
146         unsigned long newbrk, oldbrk;
147
148         down_write(&current->mm->mmap_sem);
149         if(ARCH_SUN4C_SUN4) {
150                 if(brk >= 0x20000000 && brk < 0xe0000000) {
151                         goto out;
152                 }
153         }
154
155         if (brk < current->mm->end_code)
156                 goto out;
157
158         newbrk = PAGE_ALIGN(brk);
159         oldbrk = PAGE_ALIGN(current->mm->brk);
160         retval = 0;
161         if (oldbrk == newbrk) {
162                 current->mm->brk = brk;
163                 goto out;
164         }
165
166         /*
167          * Always allow shrinking brk
168          */
169         if (brk <= current->mm->brk) {
170                 current->mm->brk = brk;
171                 do_munmap(current->mm, newbrk, oldbrk-newbrk);
172                 goto out;
173         }
174         /*
175          * Check against rlimit and stack..
176          */
177         retval = -ENOMEM;
178         rlim = current->rlim[RLIMIT_DATA].rlim_cur;
179         if (rlim >= RLIM_INFINITY)
180                 rlim = ~0;
181         if (brk - current->mm->end_code > rlim)
182                 goto out;
183
184         /*
185          * Check against existing mmap mappings.
186          */
187         if (find_vma_intersection(current->mm, oldbrk, newbrk+PAGE_SIZE))
188                 goto out;
189
190         /*
191          * stupid algorithm to decide if we have enough memory: while
192          * simple, it hopefully works in most obvious cases.. Easy to
193          * fool it, but this should catch most mistakes.
194          */
195         freepages = atomic_read(&buffermem_pages) >> PAGE_SHIFT;
196         freepages += atomic_read(&page_cache_size);
197         freepages >>= 1;
198         freepages += nr_free_pages();
199         freepages += nr_swap_pages;
200         freepages -= num_physpages >> 4;
201         freepages -= (newbrk-oldbrk) >> PAGE_SHIFT;
202         if (freepages < 0)
203                 goto out;
204         /*
205          * Ok, we have probably got enough memory - let it rip.
206          */
207         current->mm->brk = brk;
208         do_brk(oldbrk, newbrk-oldbrk);
209         retval = 0;
210 out:
211         up_write(&current->mm->mmap_sem);
212         return retval;
213 }
214
215 asmlinkage unsigned long sunos_sbrk(int increment)
216 {
217         int error;
218         unsigned long oldbrk;
219
220         /* This should do it hopefully... */
221         lock_kernel();
222         oldbrk = current->mm->brk;
223         error = sunos_brk(((int) current->mm->brk) + increment);
224         if(!error)
225                 error = oldbrk;
226         unlock_kernel();
227         return error;
228 }
229
230 /* XXX Completely undocumented, and completely magic...
231  * XXX I believe it is to increase the size of the stack by
232  * XXX argument 'increment' and return the new end of stack
233  * XXX area.  Wheee...
234  */
235 asmlinkage unsigned long sunos_sstk(int increment)
236 {
237         lock_kernel();
238         printk("%s: Call to sunos_sstk(increment<%d>) is unsupported\n",
239                current->comm, increment);
240         unlock_kernel();
241         return -1;
242 }
243
244 /* Give hints to the kernel as to what paging strategy to use...
245  * Completely bogus, don't remind me.
246  */
247 #define VA_NORMAL     0 /* Normal vm usage expected */
248 #define VA_ABNORMAL   1 /* Abnormal/random vm usage probable */
249 #define VA_SEQUENTIAL 2 /* Accesses will be of a sequential nature */
250 #define VA_INVALIDATE 3 /* Page table entries should be flushed ??? */
251 static char *vstrings[] = {
252         "VA_NORMAL",
253         "VA_ABNORMAL",
254         "VA_SEQUENTIAL",
255         "VA_INVALIDATE",
256 };
257
258 asmlinkage void sunos_vadvise(unsigned long strategy)
259 {
260         /* I wanna see who uses this... */
261         lock_kernel();
262         printk("%s: Advises us to use %s paging strategy\n",
263                current->comm,
264                strategy <= 3 ? vstrings[strategy] : "BOGUS");
265         unlock_kernel();
266 }
267
268 /* This just wants the soft limit (ie. rlim_cur element) of the RLIMIT_NOFILE
269  * resource limit and is for backwards compatibility with older sunos
270  * revs.
271  */
272 asmlinkage long sunos_getdtablesize(void)
273 {
274         return SUNOS_NR_OPEN;
275 }
276
277 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
278
279 asmlinkage unsigned long sunos_sigblock(unsigned long blk_mask)
280 {
281         unsigned long old;
282
283         spin_lock_irq(&current->sigmask_lock);
284         old = current->blocked.sig[0];
285         current->blocked.sig[0] |= (blk_mask & _BLOCKABLE);
286         recalc_sigpending(current);
287         spin_unlock_irq(&current->sigmask_lock);
288         return old;
289 }
290
291 asmlinkage unsigned long sunos_sigsetmask(unsigned long newmask)
292 {
293         unsigned long retval;
294
295         spin_lock_irq(&current->sigmask_lock);
296         retval = current->blocked.sig[0];
297         current->blocked.sig[0] = (newmask & _BLOCKABLE);
298         recalc_sigpending(current);
299         spin_unlock_irq(&current->sigmask_lock);
300         return retval;
301 }
302
303 /* SunOS getdents is very similar to the newer Linux (iBCS2 compliant)    */
304 /* getdents system call, the format of the structure just has a different */
305 /* layout (d_off+d_ino instead of d_ino+d_off) */
306 struct sunos_dirent {
307     long           d_off;
308     unsigned long  d_ino;
309     unsigned short d_reclen;
310     unsigned short d_namlen;
311     char           d_name[1];
312 };
313
314 struct sunos_dirent_callback {
315     struct sunos_dirent *curr;
316     struct sunos_dirent *previous;
317     int count;
318     int error;
319 };
320
321 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char *) (de)))
322 #define ROUND_UP(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1))
323
324 static int sunos_filldir(void * __buf, const char * name, int namlen,
325                          off_t offset, ino_t ino, unsigned int d_type)
326 {
327         struct sunos_dirent * dirent;
328         struct sunos_dirent_callback * buf = (struct sunos_dirent_callback *) __buf;
329         int reclen = ROUND_UP(NAME_OFFSET(dirent) + namlen + 1);
330
331         buf->error = -EINVAL;   /* only used if we fail.. */
332         if (reclen > buf->count)
333                 return -EINVAL;
334         dirent = buf->previous;
335         if (dirent)
336                 put_user(offset, &dirent->d_off);
337         dirent = buf->curr;
338         buf->previous = dirent;
339         put_user(ino, &dirent->d_ino);
340         put_user(namlen, &dirent->d_namlen);
341         put_user(reclen, &dirent->d_reclen);
342         copy_to_user(dirent->d_name, name, namlen);
343         put_user(0, dirent->d_name + namlen);
344         ((char *) dirent) += reclen;
345         buf->curr = dirent;
346         buf->count -= reclen;
347         return 0;
348 }
349
350 asmlinkage int sunos_getdents(unsigned int fd, void * dirent, int cnt)
351 {
352         struct file * file;
353         struct sunos_dirent * lastdirent;
354         struct sunos_dirent_callback buf;
355         int error = -EBADF;
356
357         if (fd >= SUNOS_NR_OPEN)
358                 goto out;
359
360         file = fget(fd);
361         if (!file)
362                 goto out;
363
364         error = -EINVAL;
365         if (cnt < (sizeof(struct sunos_dirent) + 255))
366                 goto out_putf;
367
368         buf.curr = (struct sunos_dirent *) dirent;
369         buf.previous = NULL;
370         buf.count = cnt;
371         buf.error = 0;
372
373         error = vfs_readdir(file, sunos_filldir, &buf);
374         if (error < 0)
375                 goto out_putf;
376
377         lastdirent = buf.previous;
378         error = buf.error;
379         if (lastdirent) {
380                 put_user(file->f_pos, &lastdirent->d_off);
381                 error = cnt - buf.count;
382         }
383
384 out_putf:
385         fput(file);
386 out:
387         return error;
388 }
389
390 /* Old sunos getdirentries, severely broken compatibility stuff here. */
391 struct sunos_direntry {
392     unsigned long  d_ino;
393     unsigned short d_reclen;
394     unsigned short d_namlen;
395     char           d_name[1];
396 };
397
398 struct sunos_direntry_callback {
399     struct sunos_direntry *curr;
400     struct sunos_direntry *previous;
401     int count;
402     int error;
403 };
404
405 static int sunos_filldirentry(void * __buf, const char * name, int namlen,
406                               off_t offset, ino_t ino, unsigned int d_type)
407 {
408         struct sunos_direntry * dirent;
409         struct sunos_direntry_callback * buf = (struct sunos_direntry_callback *) __buf;
410         int reclen = ROUND_UP(NAME_OFFSET(dirent) + namlen + 1);
411
412         buf->error = -EINVAL;   /* only used if we fail.. */
413         if (reclen > buf->count)
414                 return -EINVAL;
415         dirent = buf->previous;
416         dirent = buf->curr;
417         buf->previous = dirent;
418         put_user(ino, &dirent->d_ino);
419         put_user(namlen, &dirent->d_namlen);
420         put_user(reclen, &dirent->d_reclen);
421         copy_to_user(dirent->d_name, name, namlen);
422         put_user(0, dirent->d_name + namlen);
423         ((char *) dirent) += reclen;
424         buf->curr = dirent;
425         buf->count -= reclen;
426         return 0;
427 }
428
429 asmlinkage int sunos_getdirentries(unsigned int fd, void * dirent, int cnt, unsigned int *basep)
430 {
431         struct file * file;
432         struct sunos_direntry * lastdirent;
433         struct sunos_direntry_callback buf;
434         int error = -EBADF;
435
436         if (fd >= SUNOS_NR_OPEN)
437                 goto out;
438
439         file = fget(fd);
440         if (!file)
441                 goto out;
442
443         error = -EINVAL;
444         if(cnt < (sizeof(struct sunos_direntry) + 255))
445                 goto out_putf;
446
447         buf.curr = (struct sunos_direntry *) dirent;
448         buf.previous = NULL;
449         buf.count = cnt;
450         buf.error = 0;
451
452         error = vfs_readdir(file, sunos_filldirentry, &buf);
453         if (error < 0)
454                 goto out_putf;
455
456         lastdirent = buf.previous;
457         error = buf.error;
458         if (lastdirent) {
459                 put_user(file->f_pos, basep);
460                 error = cnt - buf.count;
461         }
462
463 out_putf:
464         fput(file);
465 out:
466         return error;
467 }
468
469 struct sunos_utsname {
470         char sname[9];
471         char nname[9];
472         char nnext[56];
473         char rel[9];
474         char ver[9];
475         char mach[9];
476 };
477
478 asmlinkage int sunos_uname(struct sunos_utsname *name)
479 {
480         int ret;
481         down_read(&uts_sem);
482         ret = copy_to_user(&name->sname[0], &system_utsname.sysname[0], sizeof(name->sname) - 1);
483         if (!ret) {
484                 ret |= __copy_to_user(&name->nname[0], &system_utsname.nodename[0], sizeof(name->nname) - 1);
485                 ret |= __put_user('\0', &name->nname[8]);
486                 ret |= __copy_to_user(&name->rel[0], &system_utsname.release[0], sizeof(name->rel) - 1);
487                 ret |= __copy_to_user(&name->ver[0], &system_utsname.version[0], sizeof(name->ver) - 1);
488                 ret |= __copy_to_user(&name->mach[0], &system_utsname.machine[0], sizeof(name->mach) - 1);
489         }
490         up_read(&uts_sem);
491         return ret;
492 }
493
494 asmlinkage int sunos_nosys(void)
495 {
496         struct pt_regs *regs;
497         siginfo_t info;
498         static int cnt;
499
500         lock_kernel();
501         regs = current->thread.kregs;
502         info.si_signo = SIGSYS;
503         info.si_errno = 0;
504         info.si_code = __SI_FAULT|0x100;
505         info.si_addr = (void *)regs->pc;
506         info.si_trapno = regs->u_regs[UREG_G1];
507         send_sig_info(SIGSYS, &info, current);
508         if (cnt++ < 4) {
509                 printk("Process makes ni_syscall number %d, register dump:\n",
510                        (int) regs->u_regs[UREG_G1]);
511                 show_regs(regs);
512         }
513         unlock_kernel();
514         return -ENOSYS;
515 }
516
517 /* This is not a real and complete implementation yet, just to keep
518  * the easy SunOS binaries happy.
519  */
520 asmlinkage int sunos_fpathconf(int fd, int name)
521 {
522         int ret;
523
524         switch(name) {
525         case _PCONF_LINK:
526                 ret = LINK_MAX;
527                 break;
528         case _PCONF_CANON:
529                 ret = MAX_CANON;
530                 break;
531         case _PCONF_INPUT:
532                 ret = MAX_INPUT;
533                 break;
534         case _PCONF_NAME:
535                 ret = NAME_MAX;
536                 break;
537         case _PCONF_PATH:
538                 ret = PATH_MAX;
539                 break;
540         case _PCONF_PIPE:
541                 ret = PIPE_BUF;
542                 break;
543         case _PCONF_CHRESTRICT:         /* XXX Investigate XXX */
544                 ret = 1;
545                 break;
546         case _PCONF_NOTRUNC:            /* XXX Investigate XXX */
547         case _PCONF_VDISABLE:
548                 ret = 0;
549                 break;
550         default:
551                 ret = -EINVAL;
552                 break;
553         }
554         return ret;
555 }
556
557 asmlinkage int sunos_pathconf(char *path, int name)
558 {
559         int ret;
560
561         ret = sunos_fpathconf(0, name); /* XXX cheese XXX */
562         return ret;
563 }
564
565 /* SunOS mount system call emulation */
566 extern asmlinkage int
567 sys_select(int n, fd_set *inp, fd_set *outp, fd_set *exp, struct timeval *tvp);
568
569 asmlinkage int sunos_select(int width, fd_set *inp, fd_set *outp, fd_set *exp, struct timeval *tvp)
570 {
571         int ret;
572
573         /* SunOS binaries expect that select won't change the tvp contents */
574         ret = sys_select (width, inp, outp, exp, tvp);
575         if (ret == -EINTR && tvp) {
576                 time_t sec, usec;
577
578                 __get_user(sec, &tvp->tv_sec);
579                 __get_user(usec, &tvp->tv_usec);
580
581                 if (sec == 0 && usec == 0)
582                         ret = 0;
583         }
584         return ret;
585 }
586
587 asmlinkage void sunos_nop(void)
588 {
589         return;
590 }
591
592 /* SunOS mount/umount. */
593 #define SMNT_RDONLY       1
594 #define SMNT_NOSUID       2
595 #define SMNT_NEWTYPE      4
596 #define SMNT_GRPID        8
597 #define SMNT_REMOUNT      16
598 #define SMNT_NOSUB        32
599 #define SMNT_MULTI        64
600 #define SMNT_SYS5         128
601
602 struct sunos_fh_t {
603         char fh_data [NFS_FHSIZE];
604 };
605
606 struct sunos_nfs_mount_args {
607         struct sockaddr_in  *addr; /* file server address */
608         struct nfs_fh *fh;     /* File handle to be mounted */
609         int        flags;      /* flags */
610         int        wsize;      /* write size in bytes */
611         int        rsize;      /* read size in bytes */
612         int        timeo;      /* initial timeout in .1 secs */
613         int        retrans;    /* times to retry send */
614         char       *hostname;  /* server's hostname */
615         int        acregmin;   /* attr cache file min secs */
616         int        acregmax;   /* attr cache file max secs */
617         int        acdirmin;   /* attr cache dir min secs */
618         int        acdirmax;   /* attr cache dir max secs */
619         char       *netname;   /* server's netname */
620 };
621
622
623 extern dev_t get_unnamed_dev(void);
624 extern void put_unnamed_dev(dev_t);
625 extern asmlinkage int sys_connect(int fd, struct sockaddr *uservaddr, int addrlen);
626 extern asmlinkage int sys_socket(int family, int type, int protocol);
627 extern asmlinkage int sys_bind(int fd, struct sockaddr *umyaddr, int addrlen);
628
629
630 /* Bind the socket on a local reserved port and connect it to the
631  * remote server.  This on Linux/i386 is done by the mount program,
632  * not by the kernel.
633  */
634 static int
635 sunos_nfs_get_server_fd (int fd, struct sockaddr_in *addr)
636 {
637         struct sockaddr_in local;
638         struct sockaddr_in server;
639         int    try_port;
640         struct socket *socket;
641         struct inode  *inode;
642         struct file   *file;
643         int    ret, result = 0;
644
645         file = fget(fd);
646         if (!file)
647                 goto out;
648
649         inode = file->f_dentry->d_inode;
650
651         socket = &inode->u.socket_i;
652         local.sin_family = AF_INET;
653         local.sin_addr.s_addr = INADDR_ANY;
654
655         /* IPPORT_RESERVED = 1024, can't find the definition in the kernel */
656         try_port = 1024;
657         do {
658                 local.sin_port = htons (--try_port);
659                 ret = socket->ops->bind(socket, (struct sockaddr*)&local,
660                                         sizeof(local));
661         } while (ret && try_port > (1024 / 2));
662
663         if (ret)
664                 goto out_putf;
665
666         server.sin_family = AF_INET;
667         server.sin_addr = addr->sin_addr;
668         server.sin_port = NFS_PORT;
669
670         /* Call sys_connect */
671         ret = socket->ops->connect (socket, (struct sockaddr *) &server,
672                                     sizeof (server), file->f_flags);
673         if (ret >= 0)
674                 result = 1;
675
676 out_putf:
677         fput(file);
678 out:
679         return result;
680 }
681
682 static int get_default (int value, int def_value)
683 {
684     if (value)
685         return value;
686     else
687         return def_value;
688 }
689
690 static int sunos_nfs_mount(char *dir_name, int linux_flags, void *data)
691 {
692         int  server_fd;
693         char *the_name;
694         struct nfs_mount_data linux_nfs_mount;
695         struct sunos_nfs_mount_args sunos_mount;
696
697         /* Ok, here comes the fun part: Linux's nfs mount needs a
698          * socket connection to the server, but SunOS mount does not
699          * require this, so we use the information on the destination
700          * address to create a socket and bind it to a reserved
701          * port on this system
702          */
703         if (copy_from_user(&sunos_mount, data, sizeof(sunos_mount)))
704                 return -EFAULT;
705
706         server_fd = sys_socket (AF_INET, SOCK_DGRAM, IPPROTO_UDP);
707         if (server_fd < 0)
708                 return -ENXIO;
709
710         if (copy_from_user(&linux_nfs_mount.addr,sunos_mount.addr,
711                                 sizeof(*sunos_mount.addr)) ||
712             copy_from_user(&linux_nfs_mount.root,sunos_mount.fh,
713                                 sizeof(*sunos_mount.fh))) {
714                 sys_close (server_fd);
715                 return -EFAULT;
716         }
717
718         if (!sunos_nfs_get_server_fd (server_fd, &linux_nfs_mount.addr)){
719                 sys_close (server_fd);
720                 return -ENXIO;
721         }
722
723         /* Now, bind it to a locally reserved port */
724         linux_nfs_mount.version  = NFS_MOUNT_VERSION;
725         linux_nfs_mount.flags    = sunos_mount.flags;
726         linux_nfs_mount.fd       = server_fd;
727         
728         linux_nfs_mount.rsize    = get_default (sunos_mount.rsize, 8192);
729         linux_nfs_mount.wsize    = get_default (sunos_mount.wsize, 8192);
730         linux_nfs_mount.timeo    = get_default (sunos_mount.timeo, 10);
731         linux_nfs_mount.retrans  = sunos_mount.retrans;
732         
733         linux_nfs_mount.acregmin = sunos_mount.acregmin;
734         linux_nfs_mount.acregmax = sunos_mount.acregmax;
735         linux_nfs_mount.acdirmin = sunos_mount.acdirmin;
736         linux_nfs_mount.acdirmax = sunos_mount.acdirmax;
737
738         the_name = getname(sunos_mount.hostname);
739         if(IS_ERR(the_name))
740                 return PTR_ERR(the_name);
741
742         strncpy (linux_nfs_mount.hostname, the_name, 254);
743         linux_nfs_mount.hostname [255] = 0;
744         putname (the_name);
745         
746         return do_mount ("", dir_name, "nfs", linux_flags, &linux_nfs_mount);
747 }
748
749 asmlinkage int
750 sunos_mount(char *type, char *dir, int flags, void *data)
751 {
752         int linux_flags = MS_MGC_MSK; /* new semantics */
753         int ret = -EINVAL;
754         char *dev_fname = 0;
755         char *dir_page, *type_page;
756
757         if (!capable (CAP_SYS_ADMIN))
758                 return -EPERM;
759                 
760         lock_kernel();
761         /* We don't handle the integer fs type */
762         if ((flags & SMNT_NEWTYPE) == 0)
763                 goto out;
764
765         /* Do not allow for those flags we don't support */
766         if (flags & (SMNT_GRPID|SMNT_NOSUB|SMNT_MULTI|SMNT_SYS5))
767                 goto out;
768
769         if(flags & SMNT_REMOUNT)
770                 linux_flags |= MS_REMOUNT;
771         if(flags & SMNT_RDONLY)
772                 linux_flags |= MS_RDONLY;
773         if(flags & SMNT_NOSUID)
774                 linux_flags |= MS_NOSUID;
775
776         dir_page = getname(dir);
777         ret = PTR_ERR(dir_page);
778         if (IS_ERR(dir_page))
779                 goto out;
780
781         type_page = getname(type);
782         ret = PTR_ERR(type_page);
783         if (IS_ERR(type_page))
784                 goto out1;
785
786         if(strcmp(type_page, "ext2") == 0) {
787                 dev_fname = getname(data);
788         } else if(strcmp(type_page, "iso9660") == 0) {
789                 dev_fname = getname(data);
790         } else if(strcmp(type_page, "minix") == 0) {
791                 dev_fname = getname(data);
792         } else if(strcmp(type_page, "nfs") == 0) {
793                 ret = sunos_nfs_mount (dir_page, flags, data);
794                 goto out2;
795         } else if(strcmp(type_page, "ufs") == 0) {
796                 printk("Warning: UFS filesystem mounts unsupported.\n");
797                 ret = -ENODEV;
798                 goto out2;
799         } else if(strcmp(type_page, "proc")) {
800                 ret = -ENODEV;
801                 goto out2;
802         }
803         ret = PTR_ERR(dev_fname);
804         if (IS_ERR(dev_fname))
805                 goto out2;
806         ret = do_mount(dev_fname, dir_page, type_page, linux_flags, NULL);
807         if (dev_fname)
808                 putname(dev_fname);
809 out2:
810         putname(type_page);
811 out1:
812         putname(dir_page);
813 out:
814         unlock_kernel();
815         return ret;
816 }
817
818 extern asmlinkage int sys_setsid(void);
819 extern asmlinkage int sys_setpgid(pid_t, pid_t);
820
821 asmlinkage int sunos_setpgrp(pid_t pid, pid_t pgid)
822 {
823         int ret;
824
825         /* So stupid... */
826         if((!pid || pid == current->pid) &&
827            !pgid) {
828                 sys_setsid();
829                 ret = 0;
830         } else {
831                 ret = sys_setpgid(pid, pgid);
832         }
833         return ret;
834 }
835
836 /* So stupid... */
837 asmlinkage int sunos_wait4(pid_t pid, unsigned int *stat_addr, int options, struct rusage *ru)
838 {
839         int ret;
840
841         ret = sys_wait4((pid ? pid : -1), stat_addr, options, ru);
842         return ret;
843 }
844
845 extern int kill_pg(int, int, int);
846 asmlinkage int sunos_killpg(int pgrp, int sig)
847 {
848         int ret;
849
850         lock_kernel();
851         ret = kill_pg(pgrp, sig, 0);
852         unlock_kernel();
853         return ret;
854 }
855
856 asmlinkage int sunos_audit(void)
857 {
858         lock_kernel();
859         printk ("sys_audit\n");
860         unlock_kernel();
861         return -1;
862 }
863
864 extern asmlinkage unsigned long sunos_gethostid(void)
865 {
866         unsigned long ret;
867
868         lock_kernel();
869         ret = ((unsigned long)idprom->id_machtype << 24) |
870                 (unsigned long)idprom->id_sernum;
871         unlock_kernel();
872         return ret;
873 }
874
875 /* sysconf options, for SunOS compatibility */
876 #define   _SC_ARG_MAX             1
877 #define   _SC_CHILD_MAX           2
878 #define   _SC_CLK_TCK             3
879 #define   _SC_NGROUPS_MAX         4
880 #define   _SC_OPEN_MAX            5
881 #define   _SC_JOB_CONTROL         6
882 #define   _SC_SAVED_IDS           7
883 #define   _SC_VERSION             8
884
885 extern asmlinkage long sunos_sysconf (int name)
886 {
887         long ret;
888
889         switch (name){
890         case _SC_ARG_MAX:
891                 ret = ARG_MAX;
892                 break;
893         case _SC_CHILD_MAX:
894                 ret = CHILD_MAX;
895                 break;
896         case _SC_CLK_TCK:
897                 ret = HZ;
898                 break;
899         case _SC_NGROUPS_MAX:
900                 ret = NGROUPS_MAX;
901                 break;
902         case _SC_OPEN_MAX:
903                 ret = OPEN_MAX;
904                 break;
905         case _SC_JOB_CONTROL:
906                 ret = 1;        /* yes, we do support job control */
907                 break;
908         case _SC_SAVED_IDS:
909                 ret = 1;        /* yes, we do support saved uids  */
910                 break;
911         case _SC_VERSION:
912                 /* mhm, POSIX_VERSION is in /usr/include/unistd.h
913                  * should it go on /usr/include/linux?
914                  */
915                 ret = 199009L; 
916                 break;
917         default:
918                 ret = -1;
919                 break;
920         };
921         return ret;
922 }
923
924 asmlinkage int sunos_semsys(int op, unsigned long arg1, unsigned long arg2,
925                             unsigned long arg3, void *ptr)
926 {
927         union semun arg4;
928         int ret;
929
930         switch (op) {
931         case 0:
932                 /* Most arguments match on a 1:1 basis but cmd doesn't */
933                 switch(arg3) {
934                 case 4:
935                         arg3=GETPID; break;
936                 case 5:
937                         arg3=GETVAL; break;
938                 case 6:
939                         arg3=GETALL; break;
940                 case 3:
941                         arg3=GETNCNT; break;
942                 case 7:
943                         arg3=GETZCNT; break;
944                 case 8:
945                         arg3=SETVAL; break;
946                 case 9:
947                         arg3=SETALL; break;
948                 }
949                 /* sys_semctl(): */
950                 arg4.__pad=ptr; /* value to modify semaphore to */
951                 ret = sys_semctl((int)arg1, (int)arg2, (int)arg3, arg4 );
952                 break;
953         case 1:
954                 /* sys_semget(): */
955                 ret = sys_semget((key_t)arg1, (int)arg2, (int)arg3);
956                 break;
957         case 2:
958                 /* sys_semop(): */
959                 ret = sys_semop((int)arg1, (struct sembuf *)arg2, (unsigned)arg3);
960                 break;
961         default:
962                 ret = -EINVAL;
963                 break;
964         };
965         return ret;
966 }
967
968 asmlinkage int sunos_msgsys(int op, unsigned long arg1, unsigned long arg2,
969                             unsigned long arg3, unsigned long arg4)
970 {
971         struct sparc_stackf *sp;
972         unsigned long arg5;
973         int rval;
974
975         switch(op) {
976         case 0:
977                 rval = sys_msgget((key_t)arg1, (int)arg2);
978                 break;
979         case 1:
980                 rval = sys_msgctl((int)arg1, (int)arg2,
981                                   (struct msqid_ds *)arg3);
982                 break;
983         case 2:
984                 lock_kernel();
985                 sp = (struct sparc_stackf *)current->thread.kregs->u_regs[UREG_FP];
986                 arg5 = sp->xxargs[0];
987                 unlock_kernel();
988                 rval = sys_msgrcv((int)arg1, (struct msgbuf *)arg2,
989                                   (size_t)arg3, (long)arg4, (int)arg5);
990                 break;
991         case 3:
992                 rval = sys_msgsnd((int)arg1, (struct msgbuf *)arg2,
993                                   (size_t)arg3, (int)arg4);
994                 break;
995         default:
996                 rval = -EINVAL;
997                 break;
998         }
999         return rval;
1000 }
1001
1002 asmlinkage int sunos_shmsys(int op, unsigned long arg1, unsigned long arg2,
1003                             unsigned long arg3)
1004 {
1005         unsigned long raddr;
1006         int rval;
1007
1008         switch(op) {
1009         case 0:
1010                 /* sys_shmat(): attach a shared memory area */
1011                 rval = sys_shmat((int)arg1,(char *)arg2,(int)arg3,&raddr);
1012                 if(!rval)
1013                         rval = (int) raddr;
1014                 break;
1015         case 1:
1016                 /* sys_shmctl(): modify shared memory area attr. */
1017                 rval = sys_shmctl((int)arg1,(int)arg2,(struct shmid_ds *)arg3);
1018                 break;
1019         case 2:
1020                 /* sys_shmdt(): detach a shared memory area */
1021                 rval = sys_shmdt((char *)arg1);
1022                 break;
1023         case 3:
1024                 /* sys_shmget(): get a shared memory area */
1025                 rval = sys_shmget((key_t)arg1,(int)arg2,(int)arg3);
1026                 break;
1027         default:
1028                 rval = -EINVAL;
1029                 break;
1030         };
1031         return rval;
1032 }
1033
1034 #define SUNOS_EWOULDBLOCK 35
1035
1036 /* see the sunos man page read(2v) for an explanation
1037    of this garbage. We use O_NDELAY to mark
1038    file descriptors that have been set non-blocking 
1039    using 4.2BSD style calls. (tridge) */
1040
1041 static inline int check_nonblock(int ret, int fd)
1042 {
1043         if (ret == -EAGAIN) {
1044                 struct file * file = fget(fd);
1045                 if (file) {
1046                         if (file->f_flags & O_NDELAY)
1047                                 ret = -SUNOS_EWOULDBLOCK;
1048                         fput(file);
1049                 }
1050         }
1051         return ret;
1052 }
1053
1054 extern asmlinkage int sys_read(unsigned int fd,char *buf,int count);
1055 extern asmlinkage int sys_write(unsigned int fd,char *buf,int count);
1056 extern asmlinkage int sys_recv(int fd, void * ubuf, int size, unsigned flags);
1057 extern asmlinkage int sys_send(int fd, void * buff, int len, unsigned flags);
1058 extern asmlinkage int sys_accept(int fd, struct sockaddr *sa, int *addrlen);
1059 extern asmlinkage int sys_readv(unsigned long fd, const struct iovec * vector, long count);
1060 extern asmlinkage int sys_writev(unsigned long fd, const struct iovec * vector, long count);
1061
1062
1063 asmlinkage int sunos_read(unsigned int fd,char *buf,int count)
1064 {
1065         int ret;
1066
1067         ret = check_nonblock(sys_read(fd,buf,count),fd);
1068         return ret;
1069 }
1070
1071 asmlinkage int sunos_readv(unsigned long fd, const struct iovec * vector, long count)
1072 {
1073         int ret;
1074
1075         ret = check_nonblock(sys_readv(fd,vector,count),fd);
1076         return ret;
1077 }
1078
1079 asmlinkage int sunos_write(unsigned int fd,char *buf,int count)
1080 {
1081         int ret;
1082
1083         ret = check_nonblock(sys_write(fd,buf,count),fd);
1084         return ret;
1085 }
1086
1087 asmlinkage int sunos_writev(unsigned long fd, const struct iovec * vector, long count)
1088 {
1089         int ret;
1090
1091         ret = check_nonblock(sys_writev(fd,vector,count),fd);
1092         return ret;
1093 }
1094
1095 asmlinkage int sunos_recv(int fd, void * ubuf, int size, unsigned flags)
1096 {
1097         int ret;
1098
1099         ret = check_nonblock(sys_recv(fd,ubuf,size,flags),fd);
1100         return ret;
1101 }
1102
1103 asmlinkage int sunos_send(int fd, void * buff, int len, unsigned flags)
1104 {
1105         int ret;
1106
1107         ret = check_nonblock(sys_send(fd,buff,len,flags),fd);
1108         return ret;
1109 }
1110
1111 extern asmlinkage int sys_setsockopt(int fd, int level, int optname,
1112                                      char *optval, int optlen);
1113
1114 asmlinkage int sunos_socket(int family, int type, int protocol)
1115 {
1116         int ret, one = 1;
1117
1118         ret = sys_socket(family, type, protocol);
1119         if (ret < 0)
1120                 goto out;
1121
1122         sys_setsockopt(ret, SOL_SOCKET, SO_BSDCOMPAT,
1123                        (char *)&one, sizeof(one));
1124 out:
1125         return ret;
1126 }
1127
1128 asmlinkage int sunos_accept(int fd, struct sockaddr *sa, int *addrlen)
1129 {
1130         int ret, one = 1;
1131
1132         while (1) {
1133                 ret = check_nonblock(sys_accept(fd,sa,addrlen),fd);     
1134                 if (ret != -ENETUNREACH && ret != -EHOSTUNREACH)
1135                         break;
1136         }
1137         if (ret < 0)
1138                 goto out;
1139
1140         sys_setsockopt(ret, SOL_SOCKET, SO_BSDCOMPAT,
1141                        (char *)&one, sizeof(one));
1142 out:
1143         return ret;
1144 }
1145
1146 #define SUNOS_SV_INTERRUPT 2
1147
1148 asmlinkage int
1149 sunos_sigaction(int sig, const struct old_sigaction *act,
1150                 struct old_sigaction *oact)
1151 {
1152         struct k_sigaction new_ka, old_ka;
1153         int ret;
1154
1155         if(act) {
1156                 old_sigset_t mask;
1157
1158                 if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
1159                     __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
1160                     __get_user(new_ka.sa.sa_flags, &act->sa_flags))
1161                         return -EFAULT;
1162                 __get_user(mask, &act->sa_mask);
1163                 new_ka.sa.sa_restorer = NULL;
1164                 new_ka.ka_restorer = NULL;
1165                 siginitset(&new_ka.sa.sa_mask, mask);
1166                 new_ka.sa.sa_flags ^= SUNOS_SV_INTERRUPT;
1167         }
1168
1169         ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
1170
1171         if (!ret && oact) {
1172                 /* In the clone() case we could copy half consistant
1173                  * state to the user, however this could sleep and
1174                  * deadlock us if we held the signal lock on SMP.  So for
1175                  * now I take the easy way out and do no locking.
1176                  * But then again we don't support SunOS lwp's anyways ;-)
1177                  */
1178                 old_ka.sa.sa_flags ^= SUNOS_SV_INTERRUPT;
1179                 if (verify_area(VERIFY_WRITE, oact, sizeof(*oact)) ||
1180                     __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
1181                     __put_user(old_ka.sa.sa_flags, &oact->sa_flags))
1182                          return -EFAULT;
1183                 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
1184         }
1185
1186         return ret;
1187 }
1188
1189
1190 extern asmlinkage int sys_setsockopt(int fd, int level, int optname, char *optval, int optlen);
1191 extern asmlinkage int sys_getsockopt(int fd, int level, int optname, char *optval, int *optlen);
1192
1193 asmlinkage int sunos_setsockopt(int fd, int level, int optname, char *optval,
1194                                 int optlen)
1195 {
1196         int tr_opt = optname;
1197         int ret;
1198
1199         if (level == SOL_IP) {
1200                 /* Multicast socketopts (ttl, membership) */
1201                 if (tr_opt >=2 && tr_opt <= 6)
1202                         tr_opt += 30;
1203         }
1204         ret = sys_setsockopt(fd, level, tr_opt, optval, optlen);
1205         return ret;
1206 }
1207
1208 asmlinkage int sunos_getsockopt(int fd, int level, int optname, char *optval,
1209                                 int *optlen)
1210 {
1211         int tr_opt = optname;
1212         int ret;
1213
1214         if (level == SOL_IP) {
1215                 /* Multicast socketopts (ttl, membership) */
1216                 if (tr_opt >=2 && tr_opt <= 6)
1217                         tr_opt += 30;
1218         }
1219         ret = sys_getsockopt(fd, level, tr_opt, optval, optlen);
1220         return ret;
1221 }