fs.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/parisc/kernel/sys_hpux.c
  3.  *
  4.  * implements HPUX syscalls.
  5.  */
  6. #include <linux/mm.h>
  7. #include <linux/sched.h>
  8. #include <linux/file.h>
  9. #include <linux/smp_lock.h>
  10. #include <linux/slab.h>
  11. #include <asm/errno.h>
  12. #include <asm/uaccess.h>
  13. int hpux_execve(struct pt_regs *regs)
  14. {
  15. int error;
  16. char *filename;
  17. filename = getname((char *) regs->gr[26]);
  18. error = PTR_ERR(filename);
  19. if (IS_ERR(filename))
  20. goto out;
  21. error = do_execve(filename, (char **) regs->gr[25],
  22. (char **)regs->gr[24], regs);
  23. if (error == 0)
  24. current->ptrace &= ~PT_DTRACE;
  25. putname(filename);
  26. out:
  27. return error;
  28. }
  29. struct hpux_dirent {
  30. long d_off_pad; /* we only have a 32-bit off_t */
  31. long d_off;
  32. ino_t d_ino;
  33. short d_reclen;
  34. short d_namlen;
  35. char d_name[1];
  36. };
  37. struct getdents_callback {
  38. struct hpux_dirent *current_dir;
  39. struct hpux_dirent *previous;
  40. int count;
  41. int error;
  42. };
  43. #define NAME_OFFSET(de) ((int) ((de)->d_name - (char *) (de)))
  44. #define ROUND_UP(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1))
  45. static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
  46. ino_t ino, unsigned int d_type)
  47. {
  48. struct hpux_dirent * dirent;
  49. struct getdents_callback * buf = (struct getdents_callback *) __buf;
  50. int reclen = ROUND_UP(NAME_OFFSET(dirent) + namlen + 1);
  51. buf->error = -EINVAL; /* only used if we fail.. */
  52. if (reclen > buf->count)
  53. return -EINVAL;
  54. dirent = buf->previous;
  55. if (dirent)
  56. put_user(offset, &dirent->d_off);
  57. dirent = buf->current_dir;
  58. buf->previous = dirent;
  59. put_user(ino, &dirent->d_ino);
  60. put_user(reclen, &dirent->d_reclen);
  61. put_user(namlen, &dirent->d_namlen);
  62. copy_to_user(dirent->d_name, name, namlen);
  63. put_user(0, dirent->d_name + namlen);
  64. ((char *) dirent) += reclen;
  65. buf->current_dir = dirent;
  66. buf->count -= reclen;
  67. return 0;
  68. }
  69. #undef NAME_OFFSET
  70. #undef ROUND_UP
  71. int hpux_getdents(unsigned int fd, struct hpux_dirent *dirent, unsigned int count)
  72. {
  73. struct file * file;
  74. struct hpux_dirent * lastdirent;
  75. struct getdents_callback buf;
  76. int error;
  77. error = -EBADF;
  78. file = fget(fd);
  79. if (!file)
  80. goto out;
  81. buf.current_dir = dirent;
  82. buf.previous = NULL;
  83. buf.count = count;
  84. buf.error = 0;
  85. error = vfs_readdir(file, filldir, &buf);
  86. if (error < 0)
  87. goto out_putf;
  88. error = buf.error;
  89. lastdirent = buf.previous;
  90. if (lastdirent) {
  91. put_user(file->f_pos, &lastdirent->d_off);
  92. error = count - buf.count;
  93. }
  94. out_putf:
  95. fput(file);
  96. out:
  97. return error;
  98. }
  99. int hpux_mount(const char *fs, const char *path, int mflag,
  100. const char *fstype, const char *dataptr, int datalen)
  101. {
  102. return -ENOSYS;
  103. }
  104. static int cp_hpux_stat(struct inode * inode, struct hpux_stat64 * statbuf)
  105. {
  106. struct hpux_stat64 tmp;
  107. unsigned int blocks, indirect;
  108. memset(&tmp, 0, sizeof(tmp));
  109. tmp.st_dev = kdev_t_to_nr(inode->i_dev);
  110. tmp.st_ino = inode->i_ino;
  111. tmp.st_mode = inode->i_mode;
  112. tmp.st_nlink = inode->i_nlink;
  113. tmp.st_uid = inode->i_uid;
  114. tmp.st_gid = inode->i_gid;
  115. tmp.st_rdev = kdev_t_to_nr(inode->i_rdev);
  116. tmp.st_size = inode->i_size;
  117. tmp.st_atime = inode->i_atime;
  118. tmp.st_mtime = inode->i_mtime;
  119. tmp.st_ctime = inode->i_ctime;
  120. #define D_B   7
  121. #define I_B   (BLOCK_SIZE / sizeof(unsigned short))
  122. if (!inode->i_blksize) {
  123. blocks = (tmp.st_size + BLOCK_SIZE - 1) / BLOCK_SIZE;
  124. if (blocks > D_B) {
  125. indirect = (blocks - D_B + I_B - 1) / I_B;
  126. blocks += indirect;
  127. if (indirect > 1) {
  128. indirect = (indirect - 1 + I_B - 1) / I_B;
  129. blocks += indirect;
  130. if (indirect > 1)
  131. blocks++;
  132. }
  133. }
  134. tmp.st_blocks = (BLOCK_SIZE / 512) * blocks;
  135. tmp.st_blksize = BLOCK_SIZE;
  136. } else {
  137. tmp.st_blocks = inode->i_blocks;
  138. tmp.st_blksize = inode->i_blksize;
  139. }
  140. return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
  141. }
  142. /*
  143.  * Revalidate the inode. This is required for proper NFS attribute caching.
  144.  * Blatently copied wholesale from fs/stat.c
  145.  */
  146. static __inline__ int
  147. do_revalidate(struct dentry *dentry)
  148. {
  149. struct inode * inode = dentry->d_inode;
  150. if (inode->i_op && inode->i_op->revalidate)
  151. return inode->i_op->revalidate(dentry);
  152. return 0;
  153. }
  154. long hpux_stat64(const char *path, struct hpux_stat64 *buf)
  155. {
  156. struct nameidata nd;
  157. int error;
  158. lock_kernel();
  159. error = user_path_walk(path, &nd);
  160. if (!error) {
  161. error = do_revalidate(nd.dentry);
  162. if (!error)
  163. error = cp_hpux_stat(nd.dentry->d_inode, buf);
  164. path_release(&nd);
  165. }
  166. unlock_kernel();
  167. return error;
  168. }
  169. long hpux_fstat64(unsigned int fd, struct hpux_stat64 *statbuf)
  170. {
  171. struct file * f;
  172. int err = -EBADF;
  173. lock_kernel();
  174. f = fget(fd);
  175. if (f) {
  176. struct dentry * dentry = f->f_dentry;
  177. err = do_revalidate(dentry);
  178. if (!err)
  179. err = cp_hpux_stat(dentry->d_inode, statbuf);
  180. fput(f);
  181. }
  182. unlock_kernel();
  183. return err;
  184. }
  185. long hpux_lstat64(char *filename, struct hpux_stat64 *statbuf)
  186. {
  187. struct nameidata nd;
  188. int error;
  189. lock_kernel();
  190. error = user_path_walk_link(filename, &nd);
  191. if (!error) {
  192. error = do_revalidate(nd.dentry);
  193. if (!error)
  194. error = cp_hpux_stat(nd.dentry->d_inode, statbuf);
  195. path_release(&nd);
  196. }
  197. unlock_kernel();
  198. return error;
  199. }