OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [i386/] [kernel/] [sys_i386.c] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
/*
/*
 * linux/arch/i386/kernel/sys_i386.c
 * linux/arch/i386/kernel/sys_i386.c
 *
 *
 * This file contains various random system calls that
 * This file contains various random system calls that
 * have a non-standard calling sequence on the Linux/i386
 * have a non-standard calling sequence on the Linux/i386
 * platform.
 * platform.
 */
 */
 
 
#include <linux/errno.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/mm.h>
#include <linux/sem.h>
#include <linux/sem.h>
#include <linux/msg.h>
#include <linux/msg.h>
#include <linux/shm.h>
#include <linux/shm.h>
#include <linux/stat.h>
#include <linux/stat.h>
#include <linux/mman.h>
#include <linux/mman.h>
 
 
#include <asm/segment.h>
#include <asm/segment.h>
 
 
/*
/*
 * sys_pipe() is the normal C calling standard for creating
 * sys_pipe() is the normal C calling standard for creating
 * a pipe. It's not the way unix traditionally does this, though.
 * a pipe. It's not the way unix traditionally does this, though.
 */
 */
asmlinkage int sys_pipe(unsigned long * fildes)
asmlinkage int sys_pipe(unsigned long * fildes)
{
{
        int fd[2];
        int fd[2];
        int error;
        int error;
 
 
        error = verify_area(VERIFY_WRITE,fildes,8);
        error = verify_area(VERIFY_WRITE,fildes,8);
        if (error)
        if (error)
                return error;
                return error;
        error = do_pipe(fd);
        error = do_pipe(fd);
        if (error)
        if (error)
                return error;
                return error;
        put_fs_long(fd[0],0+fildes);
        put_fs_long(fd[0],0+fildes);
        put_fs_long(fd[1],1+fildes);
        put_fs_long(fd[1],1+fildes);
        return 0;
        return 0;
}
}
 
 
/*
/*
 * Perform the select(nd, in, out, ex, tv) and mmap() system
 * Perform the select(nd, in, out, ex, tv) and mmap() system
 * calls. Linux/i386 didn't use to be able to handle more than
 * calls. Linux/i386 didn't use to be able to handle more than
 * 4 system call parameters, so these system calls used a memory
 * 4 system call parameters, so these system calls used a memory
 * block for parameter passing..
 * block for parameter passing..
 */
 */
asmlinkage int old_mmap(unsigned long *buffer)
asmlinkage int old_mmap(unsigned long *buffer)
{
{
        int error;
        int error;
        unsigned long flags;
        unsigned long flags;
        struct file * file = NULL;
        struct file * file = NULL;
 
 
        error = verify_area(VERIFY_READ, buffer, 6*sizeof(long));
        error = verify_area(VERIFY_READ, buffer, 6*sizeof(long));
        if (error)
        if (error)
                return error;
                return error;
        flags = get_user(buffer+3);
        flags = get_user(buffer+3);
        if (!(flags & MAP_ANONYMOUS)) {
        if (!(flags & MAP_ANONYMOUS)) {
                unsigned long fd = get_user(buffer+4);
                unsigned long fd = get_user(buffer+4);
                if (fd >= NR_OPEN || !(file = current->files->fd[fd]))
                if (fd >= NR_OPEN || !(file = current->files->fd[fd]))
                        return -EBADF;
                        return -EBADF;
        }
        }
        flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
        flags &= ~(MAP_EXECUTABLE | MAP_DENYWRITE);
        return do_mmap(file, get_user(buffer), get_user(buffer+1),
        return do_mmap(file, get_user(buffer), get_user(buffer+1),
                       get_user(buffer+2), flags, get_user(buffer+5));
                       get_user(buffer+2), flags, get_user(buffer+5));
}
}
 
 
extern asmlinkage int sys_select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
extern asmlinkage int sys_select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
 
 
asmlinkage int old_select(unsigned long *buffer)
asmlinkage int old_select(unsigned long *buffer)
{
{
        int n;
        int n;
        fd_set *inp;
        fd_set *inp;
        fd_set *outp;
        fd_set *outp;
        fd_set *exp;
        fd_set *exp;
        struct timeval *tvp;
        struct timeval *tvp;
 
 
        n = verify_area(VERIFY_READ, buffer, 5*sizeof(unsigned long));
        n = verify_area(VERIFY_READ, buffer, 5*sizeof(unsigned long));
        if (n)
        if (n)
                return n;
                return n;
        n = get_user(buffer);
        n = get_user(buffer);
        inp = (fd_set *) get_user(buffer+1);
        inp = (fd_set *) get_user(buffer+1);
        outp = (fd_set *) get_user(buffer+2);
        outp = (fd_set *) get_user(buffer+2);
        exp = (fd_set *) get_user(buffer+3);
        exp = (fd_set *) get_user(buffer+3);
        tvp = (struct timeval *) get_user(buffer+4);
        tvp = (struct timeval *) get_user(buffer+4);
        return sys_select(n, inp, outp, exp, tvp);
        return sys_select(n, inp, outp, exp, tvp);
}
}
 
 
/*
/*
 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
 *
 *
 * This is really horribly ugly.
 * This is really horribly ugly.
 */
 */
asmlinkage int sys_ipc (uint call, int first, int second, int third, void *ptr, long fifth)
asmlinkage int sys_ipc (uint call, int first, int second, int third, void *ptr, long fifth)
{
{
        int version;
        int version;
 
 
        version = call >> 16; /* hack for backward compatibility */
        version = call >> 16; /* hack for backward compatibility */
        call &= 0xffff;
        call &= 0xffff;
 
 
        if (call <= SEMCTL)
        if (call <= SEMCTL)
                switch (call) {
                switch (call) {
                case SEMOP:
                case SEMOP:
                        return sys_semop (first, (struct sembuf *)ptr, second);
                        return sys_semop (first, (struct sembuf *)ptr, second);
                case SEMGET:
                case SEMGET:
                        return sys_semget (first, second, third);
                        return sys_semget (first, second, third);
                case SEMCTL: {
                case SEMCTL: {
                        union semun fourth;
                        union semun fourth;
                        int err;
                        int err;
                        if (!ptr)
                        if (!ptr)
                                return -EINVAL;
                                return -EINVAL;
                        if ((err = verify_area (VERIFY_READ, ptr, sizeof(long))))
                        if ((err = verify_area (VERIFY_READ, ptr, sizeof(long))))
                                return err;
                                return err;
                        fourth.__pad = (void *) get_fs_long(ptr);
                        fourth.__pad = (void *) get_fs_long(ptr);
                        return sys_semctl (first, second, third, fourth);
                        return sys_semctl (first, second, third, fourth);
                        }
                        }
                default:
                default:
                        return -EINVAL;
                        return -EINVAL;
                }
                }
        if (call <= MSGCTL)
        if (call <= MSGCTL)
                switch (call) {
                switch (call) {
                case MSGSND:
                case MSGSND:
                        return sys_msgsnd (first, (struct msgbuf *) ptr,
                        return sys_msgsnd (first, (struct msgbuf *) ptr,
                                           second, third);
                                           second, third);
                case MSGRCV:
                case MSGRCV:
                        switch (version) {
                        switch (version) {
                        case 0: {
                        case 0: {
                                struct ipc_kludge tmp;
                                struct ipc_kludge tmp;
                                int err;
                                int err;
                                if (!ptr)
                                if (!ptr)
                                        return -EINVAL;
                                        return -EINVAL;
                                if ((err = verify_area (VERIFY_READ, ptr, sizeof(tmp))))
                                if ((err = verify_area (VERIFY_READ, ptr, sizeof(tmp))))
                                        return err;
                                        return err;
                                memcpy_fromfs (&tmp,(struct ipc_kludge *) ptr,
                                memcpy_fromfs (&tmp,(struct ipc_kludge *) ptr,
                                               sizeof (tmp));
                                               sizeof (tmp));
                                return sys_msgrcv (first, tmp.msgp, second, tmp.msgtyp, third);
                                return sys_msgrcv (first, tmp.msgp, second, tmp.msgtyp, third);
                                }
                                }
                        case 1: default:
                        case 1: default:
                                return sys_msgrcv (first, (struct msgbuf *) ptr, second, fifth, third);
                                return sys_msgrcv (first, (struct msgbuf *) ptr, second, fifth, third);
                        }
                        }
                case MSGGET:
                case MSGGET:
                        return sys_msgget ((key_t) first, second);
                        return sys_msgget ((key_t) first, second);
                case MSGCTL:
                case MSGCTL:
                        return sys_msgctl (first, second, (struct msqid_ds *) ptr);
                        return sys_msgctl (first, second, (struct msqid_ds *) ptr);
                default:
                default:
                        return -EINVAL;
                        return -EINVAL;
                }
                }
        if (call <= SHMCTL)
        if (call <= SHMCTL)
                switch (call) {
                switch (call) {
                case SHMAT:
                case SHMAT:
                        switch (version) {
                        switch (version) {
                        case 0: default: {
                        case 0: default: {
                                ulong raddr;
                                ulong raddr;
                                int err;
                                int err;
                                if ((err = verify_area(VERIFY_WRITE, (ulong*) third, sizeof(ulong))))
                                if ((err = verify_area(VERIFY_WRITE, (ulong*) third, sizeof(ulong))))
                                        return err;
                                        return err;
                                err = sys_shmat (first, (char *) ptr, second, &raddr);
                                err = sys_shmat (first, (char *) ptr, second, &raddr);
                                if (err)
                                if (err)
                                        return err;
                                        return err;
                                put_fs_long (raddr, (ulong *) third);
                                put_fs_long (raddr, (ulong *) third);
                                return 0;
                                return 0;
                                }
                                }
                        case 1: /* iBCS2 emulator entry point */
                        case 1: /* iBCS2 emulator entry point */
                                if (get_fs() != get_ds())
                                if (get_fs() != get_ds())
                                        return -EINVAL;
                                        return -EINVAL;
                                return sys_shmat (first, (char *) ptr, second, (ulong *) third);
                                return sys_shmat (first, (char *) ptr, second, (ulong *) third);
                        }
                        }
                case SHMDT:
                case SHMDT:
                        return sys_shmdt ((char *)ptr);
                        return sys_shmdt ((char *)ptr);
                case SHMGET:
                case SHMGET:
                        return sys_shmget (first, second, third);
                        return sys_shmget (first, second, third);
                case SHMCTL:
                case SHMCTL:
                        return sys_shmctl (first, second, (struct shmid_ds *) ptr);
                        return sys_shmctl (first, second, (struct shmid_ds *) ptr);
                default:
                default:
                        return -EINVAL;
                        return -EINVAL;
                }
                }
        return -EINVAL;
        return -EINVAL;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.