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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  3.  * unrestricted use provided that this legend is included on all tape
  4.  * media and as a part of the software program in whole or part.  Users
  5.  * may copy or modify Sun RPC without charge, but are not authorized
  6.  * to license or distribute it to anyone else except as part of a product or
  7.  * program developed by the user.
  8.  *
  9.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  10.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  11.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  12.  *
  13.  * Sun RPC is provided with no support and without any obligation on the
  14.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  15.  * modification or enhancement.
  16.  *
  17.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  18.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  19.  * OR ANY PART THEREOF.
  20.  *
  21.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  22.  * or profits or other special, indirect and consequential damages, even if
  23.  * Sun has been advised of the possibility of such damages.
  24.  *
  25.  * Sun Microsystems, Inc.
  26.  * 2550 Garcia Avenue
  27.  * Mountain View, California  94043
  28.  */
  29. #ifndef __RPCSVC_YP_H__
  30. #define __RPCSVC_YP_H__
  31. #include <features.h>
  32. #include <rpc/rpc.h>
  33. #define YPMAXRECORD 1024
  34. #define YPMAXDOMAIN 64
  35. #define YPMAXMAP 64
  36. #define YPMAXPEER 64
  37. enum ypstat {
  38. YP_TRUE = 1,
  39. YP_NOMORE = 2,
  40. YP_FALSE = 0,
  41. YP_NOMAP = -1,
  42. YP_NODOM = -2,
  43. YP_NOKEY = -3,
  44. YP_BADOP = -4,
  45. YP_BADDB = -5,
  46. YP_YPERR = -6,
  47. YP_BADARGS = -7,
  48. YP_VERS = -8,
  49. };
  50. typedef enum ypstat ypstat;
  51. enum ypxfrstat {
  52. YPXFR_SUCC = 1,
  53. YPXFR_AGE = 2,
  54. YPXFR_NOMAP = -1,
  55. YPXFR_NODOM = -2,
  56. YPXFR_RSRC = -3,
  57. YPXFR_RPC = -4,
  58. YPXFR_MADDR = -5,
  59. YPXFR_YPERR = -6,
  60. YPXFR_BADARGS = -7,
  61. YPXFR_DBM = -8,
  62. YPXFR_FILE = -9,
  63. YPXFR_SKEW = -10,
  64. YPXFR_CLEAR = -11,
  65. YPXFR_FORCE = -12,
  66. YPXFR_XFRERR = -13,
  67. YPXFR_REFUSED = -14,
  68. };
  69. typedef enum ypxfrstat ypxfrstat;
  70. typedef char *domainname;
  71. typedef char *mapname;
  72. typedef char *peername;
  73. typedef struct {
  74.   u_int keydat_len;
  75.   char *keydat_val;
  76. } keydat;
  77. typedef struct {
  78.   u_int valdat_len;
  79.   char *valdat_val;
  80. } valdat;
  81. struct ypmap_parms {
  82.   domainname domain;
  83.   mapname map;
  84.   u_int ordernum;
  85.   peername peer;
  86. };
  87. typedef struct ypmap_parms ypmap_parms;
  88. struct ypreq_key {
  89.   domainname domain;
  90.   mapname map;
  91.   keydat key;
  92. };
  93. typedef struct ypreq_key ypreq_key;
  94. struct ypreq_nokey {
  95.   domainname domain;
  96.   mapname map;
  97. };
  98. typedef struct ypreq_nokey ypreq_nokey;
  99. struct ypreq_xfr {
  100.   ypmap_parms map_parms;
  101.   u_int transid;
  102.   u_int prog;
  103.   u_int port;
  104. };
  105. typedef struct ypreq_xfr ypreq_xfr;
  106. struct ypresp_val {
  107.   ypstat stat;
  108.   valdat val;
  109. };
  110. typedef struct ypresp_val ypresp_val;
  111. struct ypresp_key_val {
  112.   ypstat stat;
  113. #ifdef STUPID_SUN_BUG
  114.   /* This is the form as distributed by Sun.  But even the Sun NIS
  115.      servers expect the values in the other order.  So their
  116.      implementation somehow must change the order internally.  We
  117.      don't want to follow this bad example since the user should be
  118.      able to use rpcgen on this file.  */
  119.   keydat key;
  120.   valdat val;
  121. #else
  122.   valdat val;
  123.   keydat key;
  124. #endif
  125. };
  126. typedef struct ypresp_key_val ypresp_key_val;
  127. struct ypresp_master {
  128.   ypstat stat;
  129.   peername peer;
  130. };
  131. typedef struct ypresp_master ypresp_master;
  132. struct ypresp_order {
  133.   ypstat stat;
  134.   u_int ordernum;
  135. };
  136. typedef struct ypresp_order ypresp_order;
  137. struct ypresp_all {
  138.   bool_t more;
  139.   union {
  140.     ypresp_key_val val;
  141.   } ypresp_all_u;
  142. };
  143. typedef struct ypresp_all ypresp_all;
  144. struct ypresp_xfr {
  145.   u_int transid;
  146.   ypxfrstat xfrstat;
  147. };
  148. typedef struct ypresp_xfr ypresp_xfr;
  149. struct ypmaplist {
  150.   mapname map;
  151.   struct ypmaplist *next;
  152. };
  153. typedef struct ypmaplist ypmaplist;
  154. struct ypresp_maplist {
  155.   ypstat stat;
  156.   ypmaplist *maps;
  157. };
  158. typedef struct ypresp_maplist ypresp_maplist;
  159. enum yppush_status {
  160.   YPPUSH_SUCC = 1,
  161.   YPPUSH_AGE = 2,
  162.   YPPUSH_NOMAP = -1,
  163.   YPPUSH_NODOM = -2,
  164.   YPPUSH_RSRC = -3,
  165.   YPPUSH_RPC = -4,
  166.   YPPUSH_MADDR = -5,
  167.   YPPUSH_YPERR = -6,
  168.   YPPUSH_BADARGS = -7,
  169.   YPPUSH_DBM = -8,
  170.   YPPUSH_FILE = -9,
  171.   YPPUSH_SKEW = -10,
  172.   YPPUSH_CLEAR = -11,
  173.   YPPUSH_FORCE = -12,
  174.   YPPUSH_XFRERR = -13,
  175.   YPPUSH_REFUSED = -14,
  176. };
  177. typedef enum yppush_status yppush_status;
  178. struct yppushresp_xfr {
  179.   u_int transid;
  180.   yppush_status status;
  181. };
  182. typedef struct yppushresp_xfr yppushresp_xfr;
  183. enum ypbind_resptype {
  184.   YPBIND_SUCC_VAL = 1,
  185.   YPBIND_FAIL_VAL = 2,
  186. };
  187. typedef enum ypbind_resptype ypbind_resptype;
  188. struct ypbind_binding {
  189.   char ypbind_binding_addr[4];
  190.   char ypbind_binding_port[2];
  191. };
  192. typedef struct ypbind_binding ypbind_binding;
  193. struct ypbind_resp {
  194.   ypbind_resptype ypbind_status;
  195.   union {
  196.     u_int ypbind_error;
  197.     ypbind_binding ypbind_bindinfo;
  198.   } ypbind_resp_u;
  199. };
  200. typedef struct ypbind_resp ypbind_resp;
  201. #define YPBIND_ERR_ERR 1
  202. #define YPBIND_ERR_NOSERV 2
  203. #define YPBIND_ERR_RESC 3
  204. struct ypbind_setdom {
  205.   domainname ypsetdom_domain;
  206.   ypbind_binding ypsetdom_binding;
  207.   u_int ypsetdom_vers;
  208. };
  209. typedef struct ypbind_setdom ypbind_setdom;
  210. __BEGIN_DECLS
  211. #define YPPROG 100004
  212. #define YPVERS 2
  213. #define YPPROC_NULL 0
  214. extern  void *ypproc_null_2 (void *, CLIENT *);
  215. extern  void *ypproc_null_2_svc (void *, struct svc_req *);
  216. #define YPPROC_DOMAIN 1
  217. extern  bool_t *ypproc_domain_2 (domainname *, CLIENT *);
  218. extern  bool_t *ypproc_domain_2_svc (domainname *, struct svc_req *);
  219. #define YPPROC_DOMAIN_NONACK 2
  220. extern  bool_t *ypproc_domain_nonack_2 (domainname *, CLIENT *);
  221. extern  bool_t *ypproc_domain_nonack_2_svc (domainname *, struct svc_req *);
  222. #define YPPROC_MATCH 3
  223. extern  ypresp_val *ypproc_match_2 (ypreq_key *, CLIENT *);
  224. extern  ypresp_val *ypproc_match_2_svc (ypreq_key *, struct svc_req *);
  225. #define YPPROC_FIRST 4
  226. extern  ypresp_key_val *ypproc_first_2 (ypreq_key *, CLIENT *);
  227. extern  ypresp_key_val *ypproc_first_2_svc (ypreq_key *, struct svc_req *);
  228. #define YPPROC_NEXT 5
  229. extern  ypresp_key_val *ypproc_next_2 (ypreq_key *, CLIENT *);
  230. extern  ypresp_key_val *ypproc_next_2_svc (ypreq_key *, struct svc_req *);
  231. #define YPPROC_XFR 6
  232. extern  ypresp_xfr *ypproc_xfr_2 (ypreq_xfr *, CLIENT *);
  233. extern  ypresp_xfr *ypproc_xfr_2_svc (ypreq_xfr *, struct svc_req *);
  234. #define YPPROC_CLEAR 7
  235. extern  void *ypproc_clear_2 (void *, CLIENT *);
  236. extern  void *ypproc_clear_2_svc (void *, struct svc_req *);
  237. #define YPPROC_ALL 8
  238. extern  ypresp_all *ypproc_all_2 (ypreq_nokey *, CLIENT *);
  239. extern  ypresp_all *ypproc_all_2_svc (ypreq_nokey *, struct svc_req *);
  240. #define YPPROC_MASTER 9
  241. extern  ypresp_master *ypproc_master_2 (ypreq_nokey *, CLIENT *);
  242. extern  ypresp_master *ypproc_master_2_svc (ypreq_nokey *, struct svc_req *);
  243. #define YPPROC_ORDER 10
  244. extern  ypresp_order *ypproc_order_2 (ypreq_nokey *, CLIENT *);
  245. extern  ypresp_order *ypproc_order_2_svc (ypreq_nokey *, struct svc_req *);
  246. #define YPPROC_MAPLIST 11
  247. extern  ypresp_maplist *ypproc_maplist_2 (domainname *, CLIENT *);
  248. extern  ypresp_maplist *ypproc_maplist_2_svc (domainname *, struct svc_req *);
  249. extern int ypprog_2_freeresult (SVCXPRT *, xdrproc_t, caddr_t);
  250. #define YPPUSH_XFRRESPPROG (0x40000000)
  251. #define YPPUSH_XFRRESPVERS 1
  252. #define YPPUSHPROC_NULL 0
  253. extern  void *yppushproc_null_1 (void *, CLIENT *);
  254. extern  void *yppushproc_null_1_svc (void *, struct svc_req *);
  255. #define YPPUSHPROC_XFRRESP 1
  256. extern  void *yppushproc_xfrresp_1 (yppushresp_xfr *, CLIENT *);
  257. extern  void *yppushproc_xfrresp_1_svc (yppushresp_xfr *, struct svc_req *);
  258. extern int yppush_xfrrespprog_1_freeresult (SVCXPRT *, xdrproc_t, caddr_t);
  259. #define YPBINDPROG 100007
  260. #define YPBINDVERS 2
  261. #define YPBINDPROC_NULL 0
  262. extern  void *ypbindproc_null_2 (void *, CLIENT *);
  263. extern  void *ypbindproc_null_2_svc (void *, struct svc_req *);
  264. #define YPBINDPROC_DOMAIN 1
  265. extern  ypbind_resp *ypbindproc_domain_2 (domainname *, CLIENT *);
  266. extern  ypbind_resp *ypbindproc_domain_2_svc (domainname *, struct svc_req *);
  267. #define YPBINDPROC_SETDOM 2
  268. extern  void *ypbindproc_setdom_2 (ypbind_setdom *, CLIENT *);
  269. extern  void *ypbindproc_setdom_2_svc (ypbind_setdom *, struct svc_req *);
  270. extern int ypbindprog_2_freeresult (SVCXPRT *, xdrproc_t, caddr_t);
  271. extern  bool_t xdr_ypstat (XDR *, ypstat*);
  272. extern  bool_t xdr_ypxfrstat (XDR *, ypxfrstat*);
  273. extern  bool_t xdr_domainname (XDR *, domainname*);
  274. extern  bool_t xdr_mapname (XDR *, mapname*);
  275. extern  bool_t xdr_peername (XDR *, peername*);
  276. extern  bool_t xdr_keydat (XDR *, keydat*);
  277. extern  bool_t xdr_valdat (XDR *, valdat*);
  278. extern  bool_t xdr_ypmap_parms (XDR *, ypmap_parms*);
  279. extern  bool_t xdr_ypreq_key (XDR *, ypreq_key*);
  280. extern  bool_t xdr_ypreq_nokey (XDR *, ypreq_nokey*);
  281. extern  bool_t xdr_ypreq_xfr (XDR *, ypreq_xfr*);
  282. extern  bool_t xdr_ypresp_val (XDR *, ypresp_val*);
  283. extern  bool_t xdr_ypresp_key_val (XDR *, ypresp_key_val*);
  284. extern  bool_t xdr_ypresp_master (XDR *, ypresp_master*);
  285. extern  bool_t xdr_ypresp_order (XDR *, ypresp_order*);
  286. extern  bool_t xdr_ypresp_all (XDR *, ypresp_all*);
  287. extern  bool_t xdr_ypresp_xfr (XDR *, ypresp_xfr*);
  288. extern  bool_t xdr_ypmaplist (XDR *, ypmaplist*);
  289. extern  bool_t xdr_ypresp_maplist (XDR *, ypresp_maplist*);
  290. extern  bool_t xdr_yppush_status (XDR *, yppush_status*);
  291. extern  bool_t xdr_yppushresp_xfr (XDR *, yppushresp_xfr*);
  292. extern  bool_t xdr_ypbind_resptype (XDR *, ypbind_resptype*);
  293. extern  bool_t xdr_ypbind_binding (XDR *, ypbind_binding*);
  294. extern  bool_t xdr_ypbind_resp (XDR *, ypbind_resp*);
  295. extern  bool_t xdr_ypbind_setdom (XDR *, ypbind_setdom*);
  296. __END_DECLS
  297. #endif /* !__RPCSVC_YP_H__ */