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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-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_fs.h>
  14. /* This is the range of ioctl() numbers we claim as ours */
  15. #define AUTOFS_IOC_FIRST     AUTOFS_IOC_READY
  16. #define AUTOFS_IOC_COUNT     32
  17. #include <linux/kernel.h>
  18. #include <linux/slab.h>
  19. #include <linux/sched.h>
  20. #include <linux/string.h>
  21. #include <linux/wait.h>
  22. #include <asm/uaccess.h>
  23. #ifdef DEBUG
  24. #define DPRINTK(D) (printk D)
  25. #else
  26. #define DPRINTK(D) ((void)0)
  27. #endif
  28. #define AUTOFS_SUPER_MAGIC 0x0187
  29. /*
  30.  * If the daemon returns a negative response (AUTOFS_IOC_FAIL) then the
  31.  * kernel will keep the negative response cached for up to the time given
  32.  * here, although the time can be shorter if the kernel throws the dcache
  33.  * entry away.  This probably should be settable from user space.
  34.  */
  35. #define AUTOFS_NEGATIVE_TIMEOUT (60*HZ) /* 1 minute */
  36. /* Structures associated with the root directory hash table */
  37. #define AUTOFS_HASH_SIZE 67
  38. struct autofs_dir_ent {
  39. int hash;
  40. char *name;
  41. int len;
  42. ino_t ino;
  43. struct dentry *dentry;
  44. /* Linked list of entries */
  45. struct autofs_dir_ent *next;
  46. struct autofs_dir_ent **back;
  47. /* The following entries are for the expiry system */
  48. unsigned long last_usage;
  49. struct list_head exp;
  50. };
  51. struct autofs_dirhash {
  52. struct autofs_dir_ent *h[AUTOFS_HASH_SIZE];
  53. struct list_head expiry_head;
  54. };
  55. struct autofs_wait_queue {
  56. wait_queue_head_t queue;
  57. struct autofs_wait_queue *next;
  58. autofs_wqt_t wait_queue_token;
  59. /* We use the following to see what we are waiting for */
  60. int hash;
  61. int len;
  62. char *name;
  63. /* This is for status reporting upon return */
  64. int status;
  65. int wait_ctr;
  66. };
  67. struct autofs_symlink {
  68. char *data;
  69. int len;
  70. time_t mtime;
  71. };
  72. #define AUTOFS_MAX_SYMLINKS 256
  73. #define AUTOFS_ROOT_INO      1
  74. #define AUTOFS_FIRST_SYMLINK 2
  75. #define AUTOFS_FIRST_DIR_INO (AUTOFS_FIRST_SYMLINK+AUTOFS_MAX_SYMLINKS)
  76. #define AUTOFS_SYMLINK_BITMAP_LEN 
  77. ((AUTOFS_MAX_SYMLINKS+((sizeof(long)*1)-1))/(sizeof(long)*8))
  78. #define AUTOFS_SBI_MAGIC 0x6d4a556d
  79. struct autofs_sb_info {
  80. u32 magic;
  81. struct file *pipe;
  82. pid_t oz_pgrp;
  83. int catatonic;
  84. unsigned long exp_timeout;
  85. ino_t next_dir_ino;
  86. struct autofs_wait_queue *queues; /* Wait queue pointer */
  87. struct autofs_dirhash dirhash; /* Root directory hash */
  88. struct autofs_symlink symlink[AUTOFS_MAX_SYMLINKS];
  89. unsigned long symlink_bitmap[AUTOFS_SYMLINK_BITMAP_LEN];
  90. };
  91. static inline struct autofs_sb_info *autofs_sbi(struct super_block *sb)
  92. {
  93. return (struct autofs_sb_info *)(sb->u.generic_sbp);
  94. }
  95. /* autofs_oz_mode(): do we see the man behind the curtain?  (The
  96.    processes which do manipulations for us in user space sees the raw
  97.    filesystem without "magic".) */
  98. static inline int autofs_oz_mode(struct autofs_sb_info *sbi) {
  99. return sbi->catatonic || current->pgrp == sbi->oz_pgrp;
  100. }
  101. /* Hash operations */
  102. void autofs_initialize_hash(struct autofs_dirhash *);
  103. struct autofs_dir_ent *autofs_hash_lookup(const struct autofs_dirhash *,struct qstr *);
  104. void autofs_hash_insert(struct autofs_dirhash *,struct autofs_dir_ent *);
  105. void autofs_hash_delete(struct autofs_dir_ent *);
  106. struct autofs_dir_ent *autofs_hash_enum(const struct autofs_dirhash *,off_t *,struct autofs_dir_ent *);
  107. void autofs_hash_dputall(struct autofs_dirhash *);
  108. void autofs_hash_nuke(struct autofs_dirhash *);
  109. /* Expiration-handling functions */
  110. void autofs_update_usage(struct autofs_dirhash *,struct autofs_dir_ent *);
  111. struct autofs_dir_ent *autofs_expire(struct super_block *,struct autofs_sb_info *, struct vfsmount *mnt);
  112. /* Operations structures */
  113. extern struct inode_operations autofs_root_inode_operations;
  114. extern struct inode_operations autofs_symlink_inode_operations;
  115. extern struct inode_operations autofs_dir_inode_operations;
  116. extern struct file_operations autofs_root_operations;
  117. extern struct file_operations autofs_dir_operations;
  118. /* Initializing function */
  119. struct super_block *autofs_read_super(struct super_block *, void *,int);
  120. /* Queue management functions */
  121. int autofs_wait(struct autofs_sb_info *,struct qstr *);
  122. int autofs_wait_release(struct autofs_sb_info *,autofs_wqt_t,int);
  123. void autofs_catatonic_mode(struct autofs_sb_info *);
  124. #ifdef DEBUG
  125. void autofs_say(const char *name, int len);
  126. #else
  127. #define autofs_say(n,l) ((void)0)
  128. #endif