linux/arch/parisc/hpux/fs.c
<<
>>
Prefs
   1/*
   2 *    Implements HPUX syscalls.
   3 *
   4 *    Copyright (C) 1999 Matthew Wilcox <willy with parisc-linux.org>
   5 *    Copyright (C) 2000 Michael Ang <mang with subcarrier.org>
   6 *    Copyright (C) 2000 John Marvin <jsm with parisc-linux.org>
   7 *    Copyright (C) 2000 Philipp Rumpf
   8 *
   9 *    This program is free software; you can redistribute it and/or modify
  10 *    it under the terms of the GNU General Public License as published by
  11 *    the Free Software Foundation; either version 2 of the License, or
  12 *    (at your option) any later version.
  13 *
  14 *    This program is distributed in the hope that it will be useful,
  15 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  16 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17 *    GNU General Public License for more details.
  18 *
  19 *    You should have received a copy of the GNU General Public License
  20 *    along with this program; if not, write to the Free Software
  21 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22 */
  23
  24#include <linux/kernel.h>
  25#include <linux/mm.h>
  26#include <linux/fs.h>
  27#include <linux/sched.h>
  28#include <linux/file.h>
  29#include <linux/slab.h>
  30#include <linux/ptrace.h>
  31#include <asm/errno.h>
  32#include <asm/uaccess.h>
  33
  34int hpux_execve(struct pt_regs *regs)
  35{
  36        int error;
  37        char *filename;
  38
  39        filename = getname((char __user *) regs->gr[26]);
  40        error = PTR_ERR(filename);
  41        if (IS_ERR(filename))
  42                goto out;
  43
  44        error = do_execve(filename, (char __user * __user *) regs->gr[25],
  45                (char __user * __user *) regs->gr[24], regs);
  46
  47        putname(filename);
  48
  49out:
  50        return error;
  51}
  52
  53struct hpux_dirent {
  54        loff_t  d_off;
  55        ino_t   d_ino;
  56        short   d_reclen;
  57        short   d_namlen;
  58        char    d_name[1];
  59};
  60
  61struct getdents_callback {
  62        struct hpux_dirent __user *current_dir;
  63        struct hpux_dirent __user *previous;
  64        int count;
  65        int error;
  66};
  67
  68#define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
  69
  70static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
  71                u64 ino, unsigned d_type)
  72{
  73        struct hpux_dirent __user * dirent;
  74        struct getdents_callback * buf = (struct getdents_callback *) __buf;
  75        ino_t d_ino;
  76        int reclen = ALIGN(NAME_OFFSET(dirent) + namlen + 1, sizeof(long));
  77
  78        buf->error = -EINVAL;   /* only used if we fail.. */
  79        if (reclen > buf->count)
  80                return -EINVAL;
  81        d_ino = ino;
  82        if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
  83                buf->error = -EOVERFLOW;
  84                return -EOVERFLOW;
  85        }
  86        dirent = buf->previous;
  87        if (dirent)
  88                if (put_user(offset, &dirent->d_off))
  89                        goto Efault;
  90        dirent = buf->current_dir;
  91        if (put_user(d_ino, &dirent->d_ino) ||
  92            put_user(reclen, &dirent->d_reclen) ||
  93            put_user(namlen, &dirent->d_namlen) ||
  94            copy_to_user(dirent->d_name, name, namlen) ||
  95            put_user(0, dirent->d_name + namlen))
  96                goto Efault;
  97        buf->previous = dirent;
  98        buf->current_dir = (void __user *)dirent + reclen;
  99        buf->count -= reclen;
 100        return 0;
 101Efault:
 102        buf->error = -EFAULT;
 103        return -EFAULT;
 104}
 105
 106#undef NAME_OFFSET
 107
 108int hpux_getdents(unsigned int fd, struct hpux_dirent __user *dirent, unsigned int count)
 109{
 110        struct file * file;
 111        struct hpux_dirent __user * lastdirent;
 112        struct getdents_callback buf;
 113        int error = -EBADF;
 114
 115        file = fget(fd);
 116        if (!file)
 117                goto out;
 118
 119        buf.current_dir = dirent;
 120        buf.previous = NULL;
 121        buf.count = count;
 122        buf.error = 0;
 123
 124        error = vfs_readdir(file, filldir, &buf);
 125        if (error >= 0)
 126                error = buf.error;
 127        lastdirent = buf.previous;
 128        if (lastdirent) {
 129                if (put_user(file->f_pos, &lastdirent->d_off))
 130                        error = -EFAULT;
 131                else
 132                        error = count - buf.count;
 133        }
 134
 135        fput(file);
 136out:
 137        return error;
 138}
 139
 140int hpux_mount(const char *fs, const char *path, int mflag,
 141                const char *fstype, const char *dataptr, int datalen)
 142{
 143        return -ENOSYS;
 144}
 145
 146static int cp_hpux_stat(struct kstat *stat, struct hpux_stat64 __user *statbuf)
 147{
 148        struct hpux_stat64 tmp;
 149
 150        /* we probably want a different split here - is hpux 12:20? */
 151
 152        if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
 153                return -EOVERFLOW;
 154
 155        memset(&tmp, 0, sizeof(tmp));
 156        tmp.st_dev = new_encode_dev(stat->dev);
 157        tmp.st_ino = stat->ino;
 158        tmp.st_mode = stat->mode;
 159        tmp.st_nlink = stat->nlink;
 160        tmp.st_uid = stat->uid;
 161        tmp.st_gid = stat->gid;
 162        tmp.st_rdev = new_encode_dev(stat->rdev);
 163        tmp.st_size = stat->size;
 164        tmp.st_atime = stat->atime.tv_sec;
 165        tmp.st_mtime = stat->mtime.tv_sec;
 166        tmp.st_ctime = stat->ctime.tv_sec;
 167        tmp.st_blocks = stat->blocks;
 168        tmp.st_blksize = stat->blksize;
 169        return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
 170}
 171
 172long hpux_stat64(char __user *filename, struct hpux_stat64 __user *statbuf)
 173{
 174        struct kstat stat;
 175        int error = vfs_stat(filename, &stat);
 176
 177        if (!error)
 178                error = cp_hpux_stat(&stat, statbuf);
 179
 180        return error;
 181}
 182
 183long hpux_fstat64(unsigned int fd, struct hpux_stat64 __user *statbuf)
 184{
 185        struct kstat stat;
 186        int error = vfs_fstat(fd, &stat);
 187
 188        if (!error)
 189                error = cp_hpux_stat(&stat, statbuf);
 190
 191        return error;
 192}
 193
 194long hpux_lstat64(char __user *filename, struct hpux_stat64 __user *statbuf)
 195{
 196        struct kstat stat;
 197        int error = vfs_lstat(filename, &stat);
 198
 199        if (!error)
 200                error = cp_hpux_stat(&stat, statbuf);
 201
 202        return error;
 203}
 204