fs.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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. #include <linux/kernel.h>
  24. #include <linux/mm.h>
  25. #include <linux/fs.h>
  26. #include <linux/sched.h>
  27. #include <linux/file.h>
  28. #include <linux/ptrace.h>
  29. #include <linux/slab.h>
  30. #include <asm/errno.h>
  31. #include <asm/uaccess.h>
  32. int hpux_execve(struct pt_regs *regs)
  33. {
  34. return do_execve(getname((const char __user *) regs->gr[26]),
  35. (const char __user *const __user *) regs->gr[25],
  36. (const char __user *const __user *) regs->gr[24]);
  37. }
  38. struct hpux_dirent {
  39. loff_t d_off;
  40. ino_t d_ino;
  41. short d_reclen;
  42. short d_namlen;
  43. char d_name[1];
  44. };
  45. struct getdents_callback {
  46. struct dir_context ctx;
  47. struct hpux_dirent __user *current_dir;
  48. struct hpux_dirent __user *previous;
  49. int count;
  50. int error;
  51. };
  52. #define NAME_OFFSET(de) ((int) ((de)->d_name - (char __user *) (de)))
  53. static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
  54. u64 ino, unsigned d_type)
  55. {
  56. struct hpux_dirent __user * dirent;
  57. struct getdents_callback * buf = (struct getdents_callback *) __buf;
  58. ino_t d_ino;
  59. int reclen = ALIGN(NAME_OFFSET(dirent) + namlen + 1, sizeof(long));
  60. buf->error = -EINVAL; /* only used if we fail.. */
  61. if (reclen > buf->count)
  62. return -EINVAL;
  63. d_ino = ino;
  64. if (sizeof(d_ino) < sizeof(ino) && d_ino != ino) {
  65. buf->error = -EOVERFLOW;
  66. return -EOVERFLOW;
  67. }
  68. dirent = buf->previous;
  69. if (dirent)
  70. if (put_user(offset, &dirent->d_off))
  71. goto Efault;
  72. dirent = buf->current_dir;
  73. if (put_user(d_ino, &dirent->d_ino) ||
  74. put_user(reclen, &dirent->d_reclen) ||
  75. put_user(namlen, &dirent->d_namlen) ||
  76. copy_to_user(dirent->d_name, name, namlen) ||
  77. put_user(0, dirent->d_name + namlen))
  78. goto Efault;
  79. buf->previous = dirent;
  80. buf->current_dir = (void __user *)dirent + reclen;
  81. buf->count -= reclen;
  82. return 0;
  83. Efault:
  84. buf->error = -EFAULT;
  85. return -EFAULT;
  86. }
  87. #undef NAME_OFFSET
  88. int hpux_getdents(unsigned int fd, struct hpux_dirent __user *dirent, unsigned int count)
  89. {
  90. struct fd arg;
  91. struct hpux_dirent __user * lastdirent;
  92. struct getdents_callback buf = {
  93. .ctx.actor = filldir,
  94. .current_dir = dirent,
  95. .count = count
  96. };
  97. int error;
  98. arg = fdget(fd);
  99. if (!arg.file)
  100. return -EBADF;
  101. error = iterate_dir(arg.file, &buf.ctx);
  102. if (error >= 0)
  103. error = buf.error;
  104. lastdirent = buf.previous;
  105. if (lastdirent) {
  106. if (put_user(buf.ctx.pos, &lastdirent->d_off))
  107. error = -EFAULT;
  108. else
  109. error = count - buf.count;
  110. }
  111. fdput(arg);
  112. return error;
  113. }
  114. int hpux_mount(const char *fs, const char *path, int mflag,
  115. const char *fstype, const char *dataptr, int datalen)
  116. {
  117. return -ENOSYS;
  118. }
  119. static int cp_hpux_stat(struct kstat *stat, struct hpux_stat64 __user *statbuf)
  120. {
  121. struct hpux_stat64 tmp;
  122. /* we probably want a different split here - is hpux 12:20? */
  123. if (!new_valid_dev(stat->dev) || !new_valid_dev(stat->rdev))
  124. return -EOVERFLOW;
  125. memset(&tmp, 0, sizeof(tmp));
  126. tmp.st_dev = new_encode_dev(stat->dev);
  127. tmp.st_ino = stat->ino;
  128. tmp.st_mode = stat->mode;
  129. tmp.st_nlink = stat->nlink;
  130. tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
  131. tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
  132. tmp.st_rdev = new_encode_dev(stat->rdev);
  133. tmp.st_size = stat->size;
  134. tmp.st_atime = stat->atime.tv_sec;
  135. tmp.st_mtime = stat->mtime.tv_sec;
  136. tmp.st_ctime = stat->ctime.tv_sec;
  137. tmp.st_blocks = stat->blocks;
  138. tmp.st_blksize = stat->blksize;
  139. return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
  140. }
  141. long hpux_stat64(const char __user *filename, struct hpux_stat64 __user *statbuf)
  142. {
  143. struct kstat stat;
  144. int error = vfs_stat(filename, &stat);
  145. if (!error)
  146. error = cp_hpux_stat(&stat, statbuf);
  147. return error;
  148. }
  149. long hpux_fstat64(unsigned int fd, struct hpux_stat64 __user *statbuf)
  150. {
  151. struct kstat stat;
  152. int error = vfs_fstat(fd, &stat);
  153. if (!error)
  154. error = cp_hpux_stat(&stat, statbuf);
  155. return error;
  156. }
  157. long hpux_lstat64(const char __user *filename,
  158. struct hpux_stat64 __user *statbuf)
  159. {
  160. struct kstat stat;
  161. int error = vfs_lstat(filename, &stat);
  162. if (!error)
  163. error = cp_hpux_stat(&stat, statbuf);
  164. return error;
  165. }