syscall.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/nfsd/syscall.h
  3.  *
  4.  * This file holds all declarations for the knfsd syscall interface.
  5.  *
  6.  * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef NFSD_SYSCALL_H
  9. #define NFSD_SYSCALL_H
  10. #include <asm/types.h>
  11. #ifdef __KERNEL__
  12. # include <linux/config.h>
  13. # include <linux/types.h>
  14. # include <linux/in.h>
  15. #endif 
  16. #include <linux/posix_types.h>
  17. #include <linux/nfsd/const.h>
  18. #include <linux/nfsd/export.h>
  19. #include <linux/nfsd/nfsfh.h>
  20. #include <linux/nfsd/auth.h>
  21. /*
  22.  * Version of the syscall interface
  23.  */
  24. #define NFSCTL_VERSION 0x0201
  25. /*
  26.  * These are the commands understood by nfsctl().
  27.  */
  28. #define NFSCTL_SVC 0 /* This is a server process. */
  29. #define NFSCTL_ADDCLIENT 1 /* Add an NFS client. */
  30. #define NFSCTL_DELCLIENT 2 /* Remove an NFS client. */
  31. #define NFSCTL_EXPORT 3 /* export a file system. */
  32. #define NFSCTL_UNEXPORT 4 /* unexport a file system. */
  33. /*#define NFSCTL_UGIDUPDATE 5 / * update a client's uid/gid map. DISCARDED */
  34. /*#define NFSCTL_GETFH 6 / * get an fh by ino DISCARDED */
  35. #define NFSCTL_GETFD 7 /* get an fh by path (used by mountd) */
  36. #define NFSCTL_GETFS 8 /* get an fh by path with max FH len */
  37. /* SVC */
  38. struct nfsctl_svc {
  39. unsigned short svc_port;
  40. int svc_nthreads;
  41. };
  42. /* ADDCLIENT/DELCLIENT */
  43. struct nfsctl_client {
  44. char cl_ident[NFSCLNT_IDMAX+1];
  45. int cl_naddr;
  46. struct in_addr cl_addrlist[NFSCLNT_ADDRMAX];
  47. int cl_fhkeytype;
  48. int cl_fhkeylen;
  49. unsigned char cl_fhkey[NFSCLNT_KEYMAX];
  50. };
  51. /* EXPORT/UNEXPORT */
  52. struct nfsctl_export {
  53. char ex_client[NFSCLNT_IDMAX+1];
  54. char ex_path[NFS_MAXPATHLEN+1];
  55. __kernel_old_dev_t ex_dev;
  56. __kernel_ino_t ex_ino;
  57. int ex_flags;
  58. __kernel_uid_t ex_anon_uid;
  59. __kernel_gid_t ex_anon_gid;
  60. };
  61. /* GETFD */
  62. struct nfsctl_fdparm {
  63. struct sockaddr gd_addr;
  64. char gd_path[NFS_MAXPATHLEN+1];
  65. int gd_version;
  66. };
  67. /* GETFS - GET Filehandle with Size */
  68. struct nfsctl_fsparm {
  69. struct sockaddr gd_addr;
  70. char gd_path[NFS_MAXPATHLEN+1];
  71. int gd_maxlen;
  72. };
  73. /*
  74.  * This is the argument union.
  75.  */
  76. struct nfsctl_arg {
  77. int ca_version; /* safeguard */
  78. union {
  79. struct nfsctl_svc u_svc;
  80. struct nfsctl_client u_client;
  81. struct nfsctl_export u_export;
  82. struct nfsctl_fdparm u_getfd;
  83. struct nfsctl_fsparm u_getfs;
  84. /*
  85.  * The following dummy member is needed to preserve binary compatibility
  86.  * on platforms where alignof(void*)>alignof(int).  It's needed because
  87.  * this union used to contain a member (u_umap) which contained a
  88.  * pointer.
  89.  */
  90. void *u_ptr;
  91. } u;
  92. #define ca_svc u.u_svc
  93. #define ca_client u.u_client
  94. #define ca_export u.u_export
  95. #define ca_getfd u.u_getfd
  96. #define ca_getfs u.u_getfs
  97. };
  98. union nfsctl_res {
  99. __u8 cr_getfh[NFS_FHSIZE];
  100. struct knfsd_fh cr_getfs;
  101. };
  102. #ifdef __KERNEL__
  103. /*
  104.  * Kernel syscall implementation.
  105.  */
  106. extern int exp_addclient(struct nfsctl_client *ncp);
  107. extern int exp_delclient(struct nfsctl_client *ncp);
  108. extern int exp_export(struct nfsctl_export *nxp);
  109. extern int exp_unexport(struct nfsctl_export *nxp);
  110. #endif /* __KERNEL__ */
  111. #endif /* NFSD_SYSCALL_H */