fs.c 4.8 KB

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