1 /* @(#)nlm_prot.x 2.1 88/08/01 4.0 RPCSRC */
2 /* @(#)nlm_prot.x 1.8 87/09/21 Copyr 1987 Sun Micro */
5 * Network lock manager protocol definition
6 * Copyright (C) 1986 Sun Microsystems, Inc.
8 * protocol used between local lock manager and remote lock manager
16 %#define LM_MAXSTRLEN 1024
17 %#define MAXNAMELEN LM_MAXSTRLEN+1
21 * status of a call to the lock manager
26 nlm_denied_nolocks = 2,
28 nlm_denied_grace_period = 4
39 union nlm_testrply switch (nlm_stats stat) {
41 struct nlm_holder holder;
61 string caller_name<LM_MAXSTRLEN>;
62 netobj fh; /* identify a file */
63 netobj oh; /* identify owner of a lock */
64 int svid; /* generated from pid for svid */
73 struct nlm_lock alock;
74 bool reclaim; /* used for recovering locks */
75 int state; /* specify local status monitor state */
82 struct nlm_lock alock;
88 struct nlm_lock alock;
91 struct nlm_unlockargs {
93 struct nlm_lock alock;
99 % * The following enums are actually bit encoded for efficient
100 % * boolean algebra.... DON'T change them.....
104 fsm_DN = 0, /* deny none */
105 fsm_DR = 1, /* deny read */
106 fsm_DW = 2, /* deny write */
107 fsm_DRW = 3 /* deny read/write */
111 fsa_NONE = 0, /* for completeness */
112 fsa_R = 1, /* read only */
113 fsa_W = 2, /* write only */
114 fsa_RW = 3 /* read/write */
118 string caller_name<LM_MAXSTRLEN>;
125 struct nlm_shareargs {
131 struct nlm_shareres {
138 string name<MAXNAMELEN>;
143 * Over-the-wire protocol used between the network lock managers
149 nlm_testres NLM_TEST(struct nlm_testargs) = 1;
151 nlm_res NLM_LOCK(struct nlm_lockargs) = 2;
153 nlm_res NLM_CANCEL(struct nlm_cancargs) = 3;
154 nlm_res NLM_UNLOCK(struct nlm_unlockargs) = 4;
157 * remote lock manager call-back to grant lock
159 nlm_res NLM_GRANTED(struct nlm_testargs)= 5;
161 * message passing style of requesting lock
163 void NLM_TEST_MSG(struct nlm_testargs) = 6;
164 void NLM_LOCK_MSG(struct nlm_lockargs) = 7;
165 void NLM_CANCEL_MSG(struct nlm_cancargs) =8;
166 void NLM_UNLOCK_MSG(struct nlm_unlockargs) = 9;
167 void NLM_GRANTED_MSG(struct nlm_testargs) = 10;
168 void NLM_TEST_RES(nlm_testres) = 11;
169 void NLM_LOCK_RES(nlm_res) = 12;
170 void NLM_CANCEL_RES(nlm_res) = 13;
171 void NLM_UNLOCK_RES(nlm_res) = 14;
172 void NLM_GRANTED_RES(nlm_res) = 15;
176 nlm_shareres NLM_SHARE(nlm_shareargs) = 20;
177 nlm_shareres NLM_UNSHARE(nlm_shareargs) = 21;
178 nlm_res NLM_NM_LOCK(nlm_lockargs) = 22;
179 void NLM_FREE_ALL(nlm_notify) = 23;