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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* @(#)yp.x 2.1 88/08/01 4.0 RPCSRC */
  2. /*
  3.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  4.  * unrestricted use provided that this legend is included on all tape
  5.  * media and as a part of the software program in whole or part.  Users
  6.  * may copy or modify Sun RPC without charge, but are not authorized
  7.  * to license or distribute it to anyone else except as part of a product or
  8.  * program developed by the user.
  9.  *
  10.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  11.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  12.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  13.  *
  14.  * Sun RPC is provided with no support and without any obligation on the
  15.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  16.  * modification or enhancement.
  17.  *
  18.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  19.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  20.  * OR ANY PART THEREOF.
  21.  *
  22.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  23.  * or profits or other special, indirect and consequential damages, even if
  24.  * Sun has been advised of the possibility of such damages.
  25.  *
  26.  * Sun Microsystems, Inc.
  27.  * 2550 Garcia Avenue
  28.  * Mountain View, California  94043
  29.  */
  30. /*
  31.  * Protocol description file for the Yellow Pages Service
  32.  */
  33. const YPMAXRECORD = 1024;
  34. const YPMAXDOMAIN = 64;
  35. const YPMAXMAP = 64;
  36. const 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. enum ypxfrstat {
  51. YPXFR_SUCC =  1,
  52. YPXFR_AGE =  2,
  53. YPXFR_NOMAP = -1,
  54. YPXFR_NODOM = -2,
  55. YPXFR_RSRC = -3,
  56. YPXFR_RPC = -4,
  57. YPXFR_MADDR = -5,
  58. YPXFR_YPERR = -6,
  59. YPXFR_BADARGS = -7,
  60. YPXFR_DBM = -8,
  61. YPXFR_FILE = -9,
  62. YPXFR_SKEW = -10,
  63. YPXFR_CLEAR = -11,
  64. YPXFR_FORCE = -12,
  65. YPXFR_XFRERR = -13,
  66. YPXFR_REFUSED = -14
  67. };
  68. typedef string domainname<YPMAXDOMAIN>;
  69. typedef string mapname<YPMAXMAP>;
  70. typedef string peername<YPMAXPEER>;
  71. typedef opaque keydat<YPMAXRECORD>;
  72. typedef opaque valdat<YPMAXRECORD>;
  73. struct ypmap_parms {
  74. domainname domain;
  75. mapname map;
  76. unsigned int ordernum;
  77. peername peer;
  78. };
  79. struct ypreq_key {
  80. domainname domain;
  81. mapname map;
  82. keydat key;
  83. };
  84. struct ypreq_nokey {
  85. domainname domain;
  86. mapname map;
  87. };
  88. struct ypreq_xfr {
  89. ypmap_parms map_parms;
  90. unsigned int transid;
  91. unsigned int prog;
  92. unsigned int port;
  93. };
  94. struct ypresp_val {
  95. ypstat stat;
  96. valdat val;
  97. };
  98. struct ypresp_key_val {
  99. ypstat stat;
  100. #ifdef STUPID_SUN_BUG
  101. /* This is the form as distributed by Sun.  But even the Sun NIS
  102.    servers expect the values in the other order.  So their
  103.    implementation somehow must change the order internally.  We
  104.    don't want to follow this bad example since the user should be
  105.    able to use rpcgen on this file.  */
  106. keydat key;
  107. valdat val;
  108. #else
  109. valdat val;
  110. keydat key;
  111. #endif
  112. };
  113. struct ypresp_master {
  114. ypstat stat;
  115. peername peer;
  116. };
  117. struct ypresp_order {
  118. ypstat stat;
  119. unsigned int ordernum;
  120. };
  121. union ypresp_all switch (bool more) {
  122. case TRUE:
  123. ypresp_key_val val;
  124. case FALSE:
  125. void;
  126. };
  127. struct ypresp_xfr {
  128. unsigned int transid;
  129. ypxfrstat xfrstat;
  130. };
  131. struct ypmaplist {
  132. mapname map;
  133. ypmaplist *next;
  134. };
  135. struct ypresp_maplist {
  136. ypstat stat;
  137. ypmaplist *maps;
  138. };
  139. enum yppush_status {
  140. YPPUSH_SUCC =  1, /* Success */
  141. YPPUSH_AGE  =  2, /* Master's version not newer */
  142. YPPUSH_NOMAP = -1, /* Can't find server for map */
  143. YPPUSH_NODOM = -2, /* Domain not supported */
  144. YPPUSH_RSRC = -3, /* Local resource alloc failure */
  145. YPPUSH_RPC = -4, /* RPC failure talking to server */
  146. YPPUSH_MADDR  = -5, /* Can't get master address */
  147. YPPUSH_YPERR = -6, /* YP server/map db error */
  148. YPPUSH_BADARGS = -7, /* Request arguments bad */
  149. YPPUSH_DBM = -8, /* Local dbm operation failed */
  150. YPPUSH_FILE = -9, /* Local file I/O operation failed */
  151. YPPUSH_SKEW = -10, /* Map version skew during transfer */
  152. YPPUSH_CLEAR = -11, /* Can't send "Clear" req to local ypserv */
  153. YPPUSH_FORCE = -12, /* No local order number in map  use -f flag. */
  154. YPPUSH_XFRERR  = -13, /* ypxfr error */
  155. YPPUSH_REFUSED = -14  /* Transfer request refused by ypserv */
  156. };
  157. struct yppushresp_xfr {
  158. unsigned transid;
  159. yppush_status status;
  160. };
  161. /*
  162.  * Response structure and overall result status codes.  Success and failure
  163.  * represent two separate response message types.
  164.  */
  165. enum ypbind_resptype {
  166. YPBIND_SUCC_VAL = 1,
  167. YPBIND_FAIL_VAL = 2
  168. };
  169. struct ypbind_binding {
  170.     opaque ypbind_binding_addr[4]; /* In network order */
  171.     opaque ypbind_binding_port[2]; /* In network order */
  172. };
  173. union ypbind_resp switch (ypbind_resptype ypbind_status) {
  174. case YPBIND_FAIL_VAL:
  175.         unsigned ypbind_error;
  176. case YPBIND_SUCC_VAL:
  177.         ypbind_binding ypbind_bindinfo;
  178. };
  179. /* Detailed failure reason codes for response field ypbind_error*/
  180. const YPBIND_ERR_ERR    = 1; /* Internal error */
  181. const YPBIND_ERR_NOSERV = 2; /* No bound server for passed domain */
  182. const YPBIND_ERR_RESC   = 3; /* System resource allocation failure */
  183. /*
  184.  * Request data structure for ypbind "Set domain" procedure.
  185.  */
  186. struct ypbind_setdom {
  187. domainname ypsetdom_domain;
  188. ypbind_binding ypsetdom_binding;
  189. unsigned ypsetdom_vers;
  190. };
  191. /*
  192.  * YP access protocol
  193.  */
  194. program YPPROG {
  195. version YPVERS {
  196. void
  197. YPPROC_NULL(void) = 0;
  198. bool
  199. YPPROC_DOMAIN(domainname) = 1;
  200. bool
  201. YPPROC_DOMAIN_NONACK(domainname) = 2;
  202. ypresp_val
  203. YPPROC_MATCH(ypreq_key) = 3;
  204. ypresp_key_val
  205. YPPROC_FIRST(ypreq_key) = 4;
  206. ypresp_key_val
  207. YPPROC_NEXT(ypreq_key) = 5;
  208. ypresp_xfr
  209. YPPROC_XFR(ypreq_xfr) = 6;
  210. void
  211. YPPROC_CLEAR(void) = 7;
  212. ypresp_all
  213. YPPROC_ALL(ypreq_nokey) = 8;
  214. ypresp_master
  215. YPPROC_MASTER(ypreq_nokey) = 9;
  216. ypresp_order
  217. YPPROC_ORDER(ypreq_nokey) = 10;
  218. ypresp_maplist
  219. YPPROC_MAPLIST(domainname) = 11;
  220. } = 2;
  221. } = 100004;
  222. /*
  223.  * YPPUSHPROC_XFRRESP is the callback routine for result of YPPROC_XFR
  224.  */
  225. program YPPUSH_XFRRESPPROG {
  226. version YPPUSH_XFRRESPVERS {
  227. void
  228. YPPUSHPROC_NULL(void) = 0;
  229. #ifdef STUPID_SUN_BUG
  230. /* This is the form as distributed by Sun.  But even
  231.    the Sun NIS servers expect the values in the other
  232.    order.  So their implementation somehow must change
  233.    the order internally.  We don't want to follow this
  234.    bad example since the user should be able to use
  235.    rpcgen on this file.  */
  236. yppushresp_xfr
  237. YPPUSHPROC_XFRRESP(void) = 1;
  238. #else
  239. void
  240. YPPUSHPROC_XFRRESP(yppushresp_xfr) = 1;
  241. #endif
  242. } = 1;
  243. } = 0x40000000; /* transient: could be anything up to 0x5fffffff */
  244. /*
  245.  * YP binding protocol
  246.  */
  247. program YPBINDPROG {
  248. version YPBINDVERS {
  249. void
  250. YPBINDPROC_NULL(void) = 0;
  251. ypbind_resp
  252. YPBINDPROC_DOMAIN(domainname) = 1;
  253. void
  254. YPBINDPROC_SETDOM(ypbind_setdom) = 2;
  255. } = 2;
  256. } = 100007;