auto_fs.h 2.2 KB

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