fs.c 5.1 KB

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