fs.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

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, ino_t ino)
  46. {
  47. struct hpux_dirent * dirent;
  48. struct getdents_callback * buf = (struct getdents_callback *) __buf;
  49. int reclen = ROUND_UP(NAME_OFFSET(dirent) + namlen + 1);
  50. buf->error = -EINVAL; /* only used if we fail.. */
  51. if (reclen > buf->count)
  52. return -EINVAL;
  53. dirent = buf->previous;
  54. if (dirent)
  55. put_user(offset, &dirent->d_off);
  56. dirent = buf->current_dir;
  57. buf->previous = dirent;
  58. put_user(ino, &dirent->d_ino);
  59. put_user(reclen, &dirent->d_reclen);
  60. put_user(namlen, &dirent->d_namlen);
  61. copy_to_user(dirent->d_name, name, namlen);
  62. put_user(0, dirent->d_name + namlen);
  63. ((char *) dirent) += reclen;
  64. buf->current_dir = dirent;
  65. buf->count -= reclen;
  66. return 0;
  67. }
  68. #undef NAME_OFFSET
  69. #undef ROUND_UP
  70. int hpux_getdents(unsigned int fd, struct hpux_dirent *dirent, unsigned int count)
  71. {
  72. struct file * file;
  73. struct dentry * dentry;
  74. struct inode * inode;
  75. struct hpux_dirent * lastdirent;
  76. struct getdents_callback buf;
  77. int error;
  78. lock_kernel();
  79. error = -EBADF;
  80. file = fget(fd);
  81. if (!file)
  82. goto out;
  83. dentry = file->f_dentry;
  84. if (!dentry)
  85. goto out_putf;
  86. inode = dentry->d_inode;
  87. if (!inode)
  88. goto out_putf;
  89. buf.current_dir = dirent;
  90. buf.previous = NULL;
  91. buf.count = count;
  92. buf.error = 0;
  93. error = -ENOTDIR;
  94. if (!file->f_op || !file->f_op->readdir)
  95. goto out_putf;
  96. /*
  97.  * Get the inode's semaphore to prevent changes
  98.  * to the directory while we read it.
  99.  */
  100. down(&inode->i_sem);
  101. error = file->f_op->readdir(file, &buf, filldir);
  102. up(&inode->i_sem);
  103. if (error < 0)
  104. goto out_putf;
  105. error = buf.error;
  106. lastdirent = buf.previous;
  107. if (lastdirent) {
  108. put_user(file->f_pos, &lastdirent->d_off);
  109. error = count - buf.count;
  110. }
  111. out_putf:
  112. fput(file);
  113. out:
  114. unlock_kernel();
  115. return error;
  116. }
  117. int hpux_mount(const char *fs, const char *path, int mflag,
  118. const char *fstype, const char *dataptr, int datalen)
  119. {
  120. return -ENOSYS;
  121. }
  122. static int cp_hpux_stat(struct inode * inode, struct hpux_stat64 * statbuf)
  123. {
  124. struct hpux_stat64 tmp;
  125. unsigned int blocks, indirect;
  126. memset(&tmp, 0, sizeof(tmp));
  127. tmp.st_dev = kdev_t_to_nr(inode->i_dev);
  128. tmp.st_ino = inode->i_ino;
  129. tmp.st_mode = inode->i_mode;
  130. tmp.st_nlink = inode->i_nlink;
  131. tmp.st_uid = inode->i_uid;
  132. tmp.st_gid = inode->i_gid;
  133. tmp.st_rdev = kdev_t_to_nr(inode->i_rdev);
  134. tmp.st_size = inode->i_size;
  135. tmp.st_atime = inode->i_atime;
  136. tmp.st_mtime = inode->i_mtime;
  137. tmp.st_ctime = inode->i_ctime;
  138. #define D_B   7
  139. #define I_B   (BLOCK_SIZE / sizeof(unsigned short))
  140. if (!inode->i_blksize) {
  141. blocks = (tmp.st_size + BLOCK_SIZE - 1) / BLOCK_SIZE;
  142. if (blocks > D_B) {
  143. indirect = (blocks - D_B + I_B - 1) / I_B;
  144. blocks += indirect;
  145. if (indirect > 1) {
  146. indirect = (indirect - 1 + I_B - 1) / I_B;
  147. blocks += indirect;
  148. if (indirect > 1)
  149. blocks++;
  150. }
  151. }
  152. tmp.st_blocks = (BLOCK_SIZE / 512) * blocks;
  153. tmp.st_blksize = BLOCK_SIZE;
  154. } else {
  155. tmp.st_blocks = inode->i_blocks;
  156. tmp.st_blksize = inode->i_blksize;
  157. }
  158. return copy_to_user(statbuf,&tmp,sizeof(tmp)) ? -EFAULT : 0;
  159. }
  160. /*
  161.  * Revalidate the inode. This is required for proper NFS attribute caching.
  162.  * Blatently copied wholesale from fs/stat.c
  163.  */
  164. static __inline__ int
  165. do_revalidate(struct dentry *dentry)
  166. {
  167. struct inode * inode = dentry->d_inode;
  168. if (inode->i_op && inode->i_op->revalidate)
  169. return inode->i_op->revalidate(dentry);
  170. return 0;
  171. }
  172. long hpux_stat64(const char *path, struct hpux_stat64 *buf)
  173. {
  174. struct nameidata nd;
  175. int error;
  176. lock_kernel();
  177. error = user_path_walk(path, &nd);
  178. if (!error) {
  179. error = do_revalidate(nd.dentry);
  180. if (!error)
  181. error = cp_hpux_stat(nd.dentry->d_inode, buf);
  182. path_release(&nd);
  183. }
  184. unlock_kernel();
  185. return error;
  186. }
  187. long hpux_fstat64(unsigned int fd, struct hpux_stat64 *statbuf)
  188. {
  189. struct file * f;
  190. int err = -EBADF;
  191. lock_kernel();
  192. f = fget(fd);
  193. if (f) {
  194. struct dentry * dentry = f->f_dentry;
  195. err = do_revalidate(dentry);
  196. if (!err)
  197. err = cp_hpux_stat(dentry->d_inode, statbuf);
  198. fput(f);
  199. }
  200. unlock_kernel();
  201. return err;
  202. }
  203. long hpux_lstat64(char *filename, struct hpux_stat64 *statbuf)
  204. {
  205. struct nameidata nd;
  206. int error;
  207. lock_kernel();
  208. error = user_path_walk_link(filename, &nd);
  209. if (!error) {
  210. error = do_revalidate(nd.dentry);
  211. if (!error)
  212. error = cp_hpux_stat(nd.dentry->d_inode, statbuf);
  213. path_release(&nd);
  214. }
  215. unlock_kernel();
  216. return error;
  217. }