auto_fs.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* -*- linux-c -*- ------------------------------------------------------- *
  2. *
  3. * linux/include/linux/auto_fs.h
  4. *
  5. * Copyright 1997 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. #ifndef _LINUX_AUTO_FS_H
  13. #define _LINUX_AUTO_FS_H
  14. #include <linux/types.h>
  15. #include <sys/ioctl.h>
  16. /* This file describes autofs v3 */
  17. #define AUTOFS_PROTO_VERSION 3
  18. /* Range of protocol versions defined */
  19. #define AUTOFS_MAX_PROTO_VERSION AUTOFS_PROTO_VERSION
  20. #define AUTOFS_MIN_PROTO_VERSION AUTOFS_PROTO_VERSION
  21. /*
  22. * The wait_queue_token (autofs_wqt_t) is part of a structure which is passed
  23. * back to the kernel via ioctl from userspace. On architectures where 32- and
  24. * 64-bit userspace binaries can be executed it's important that the size of
  25. * autofs_wqt_t stays constant between 32- and 64-bit Linux kernels so that we
  26. * do not break the binary ABI interface by changing the structure size.
  27. */
  28. #if defined(__ia64__) || defined(__alpha__) /* pure 64bit architectures */
  29. typedef unsigned long autofs_wqt_t;
  30. #else
  31. typedef unsigned int autofs_wqt_t;
  32. #endif
  33. /* Packet types */
  34. #define autofs_ptype_missing 0 /* Missing entry (mount request) */
  35. #define autofs_ptype_expire 1 /* Expire entry (umount request) */
  36. struct autofs_packet_hdr {
  37. int proto_version; /* Protocol version */
  38. int type; /* Type of packet */
  39. };
  40. struct autofs_packet_missing {
  41. struct autofs_packet_hdr hdr;
  42. autofs_wqt_t wait_queue_token;
  43. int len;
  44. char name[NAME_MAX+1];
  45. };
  46. /* v3 expire (via ioctl) */
  47. struct autofs_packet_expire {
  48. struct autofs_packet_hdr hdr;
  49. int len;
  50. char name[NAME_MAX+1];
  51. };
  52. #define AUTOFS_IOC_READY _IO(0x93,0x60)
  53. #define AUTOFS_IOC_FAIL _IO(0x93,0x61)
  54. #define AUTOFS_IOC_CATATONIC _IO(0x93,0x62)
  55. #define AUTOFS_IOC_PROTOVER _IOR(0x93,0x63,int)
  56. #define AUTOFS_IOC_SETTIMEOUT32 _IOWR(0x93,0x64,compat_ulong_t)
  57. #define AUTOFS_IOC_SETTIMEOUT _IOWR(0x93,0x64,unsigned long)
  58. #define AUTOFS_IOC_EXPIRE _IOR(0x93,0x65,struct autofs_packet_expire)
  59. #endif /* _LINUX_AUTO_FS_H */