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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- c -*- ------------------------------------------------------------- *
  2.  *   
  3.  * linux/fs/autofs/autofs_i.h
  4.  *
  5.  *   Copyright 1997-1998 Transmeta Corporation - All Rights Reserved
  6.  *
  7.  * This file is part of the Linux kernel and is made available under
  8.  * the terms of the GNU General Public License, version 2, or at your
  9.  * option, any later version, incorporated herein by reference.
  10.  *
  11.  * ----------------------------------------------------------------------- */
  12. /* Internal header file for autofs */
  13. #include <linux/auto_fs4.h>
  14. #include <linux/list.h>
  15. /* This is the range of ioctl() numbers we claim as ours */
  16. #define AUTOFS_IOC_FIRST     AUTOFS_IOC_READY
  17. #define AUTOFS_IOC_COUNT     32
  18. #include <linux/kernel.h>
  19. #include <linux/slab.h>
  20. #include <linux/sched.h>
  21. #include <linux/string.h>
  22. #include <linux/wait.h>
  23. #include <asm/uaccess.h>
  24. /* #define DEBUG */
  25. #ifdef DEBUG
  26. #define DPRINTK(D) do{ printk("pid %d: ", current->pid); printk D; } while(0)
  27. #else
  28. #define DPRINTK(D) do {} while(0)
  29. #endif
  30. #define AUTOFS_SUPER_MAGIC 0x0187
  31. /*
  32.  * If the daemon returns a negative response (AUTOFS_IOC_FAIL) then the
  33.  * kernel will keep the negative response cached for up to the time given
  34.  * here, although the time can be shorter if the kernel throws the dcache
  35.  * entry away.  This probably should be settable from user space.
  36.  */
  37. #define AUTOFS_NEGATIVE_TIMEOUT (60*HZ) /* 1 minute */
  38. /* Unified info structure.  This is pointed to by both the dentry and
  39.    inode structures.  Each file in the filesystem has an instance of this
  40.    structure.  It holds a reference to the dentry, so dentries are never
  41.    flushed while the file exists.  All name lookups are dealt with at the
  42.    dentry level, although the filesystem can interfere in the validation
  43.    process.  Readdir is implemented by traversing the dentry lists. */
  44. struct autofs_info {
  45. struct dentry *dentry;
  46. struct inode *inode;
  47. int flags;
  48. struct autofs_sb_info *sbi;
  49. unsigned long last_used;
  50. mode_t mode;
  51. size_t size;
  52. void (*free)(struct autofs_info *);
  53. union {
  54. const char *symlink;
  55. } u;
  56. };
  57. #define AUTOFS_INF_EXPIRING (1<<0) /* dentry is in the process of expiring */
  58. struct autofs_wait_queue {
  59. wait_queue_head_t queue;
  60. struct autofs_wait_queue *next;
  61. autofs_wqt_t wait_queue_token;
  62. /* We use the following to see what we are waiting for */
  63. int hash;
  64. int len;
  65. char *name;
  66. /* This is for status reporting upon return */
  67. int status;
  68. int wait_ctr;
  69. };
  70. #define AUTOFS_SBI_MAGIC 0x6d4a556d
  71. struct autofs_sb_info {
  72. u32 magic;
  73. struct file *pipe;
  74. pid_t oz_pgrp;
  75. int catatonic;
  76. int version;
  77. unsigned long exp_timeout;
  78. struct super_block *sb;
  79. struct autofs_wait_queue *queues; /* Wait queue pointer */
  80. };
  81. static inline struct autofs_sb_info *autofs4_sbi(struct super_block *sb)
  82. {
  83. return (struct autofs_sb_info *)(sb->u.generic_sbp);
  84. }
  85. static inline struct autofs_info *autofs4_dentry_ino(struct dentry *dentry)
  86. {
  87. return (struct autofs_info *)(dentry->d_fsdata);
  88. }
  89. /* autofs4_oz_mode(): do we see the man behind the curtain?  (The
  90.    processes which do manipulations for us in user space sees the raw
  91.    filesystem without "magic".) */
  92. static inline int autofs4_oz_mode(struct autofs_sb_info *sbi) {
  93. return sbi->catatonic || current->pgrp == sbi->oz_pgrp;
  94. }
  95. /* Does a dentry have some pending activity? */
  96. static inline int autofs4_ispending(struct dentry *dentry)
  97. {
  98. struct autofs_info *inf = autofs4_dentry_ino(dentry);
  99. return (dentry->d_flags & DCACHE_AUTOFS_PENDING) ||
  100. (inf != NULL && inf->flags & AUTOFS_INF_EXPIRING);
  101. }
  102. struct inode *autofs4_get_inode(struct super_block *, struct autofs_info *);
  103. struct autofs_info *autofs4_init_inf(struct autofs_sb_info *, mode_t mode);
  104. void autofs4_free_ino(struct autofs_info *);
  105. /* Expiration */
  106. int is_autofs4_dentry(struct dentry *);
  107. int autofs4_expire_run(struct super_block *, struct vfsmount *,
  108. struct autofs_sb_info *, struct autofs_packet_expire *);
  109. int autofs4_expire_multi(struct super_block *, struct vfsmount *,
  110. struct autofs_sb_info *, int *);
  111. /* Operations structures */
  112. extern struct inode_operations autofs4_symlink_inode_operations;
  113. extern struct inode_operations autofs4_dir_inode_operations;
  114. extern struct inode_operations autofs4_root_inode_operations;
  115. extern struct file_operations autofs4_dir_operations;
  116. extern struct file_operations autofs4_root_operations;
  117. /* Initializing function */
  118. struct super_block *autofs4_read_super(struct super_block *, void *,int);
  119. struct autofs_info *autofs4_init_ino(struct autofs_info *, struct autofs_sb_info *sbi, mode_t mode);
  120. /* Queue management functions */
  121. enum autofs_notify
  122. {
  123. NFY_NONE,
  124. NFY_MOUNT,
  125. NFY_EXPIRE
  126. };
  127. int autofs4_wait(struct autofs_sb_info *,struct qstr *, enum autofs_notify);
  128. int autofs4_wait_release(struct autofs_sb_info *,autofs_wqt_t,int);
  129. void autofs4_catatonic_mode(struct autofs_sb_info *);