]> git.saurik.com Git - apple/xnu.git/blob - bsd/netat/atp.h
fa1ae73919fc299d01a5b0b94c48b003b7c58fd0
[apple/xnu.git] / bsd / netat / atp.h
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /*
29 *
30 * ORIGINS: 82
31 *
32 * (C) COPYRIGHT Apple Computer, Inc. 1992-1996
33 * All Rights Reserved
34 *
35 */
36
37 /* Definitions for ATP protocol and streams module, per
38 * AppleTalk Transaction Protocol documentation from
39 * `Inside AppleTalk', July 14, 1986.
40 */
41
42 /*
43 * Copyright (c) 1988, 1989 Apple Computer, Inc.
44 *
45 * The information contained herein is subject to change without
46 * notice and should not be construed as a commitment by Apple
47 * Computer, Inc. Apple Computer, Inc. assumes no responsibility
48 * for any errors that may appear.
49 *
50 * Confidential and Proprietary to Apple Computer, Inc.
51 */
52
53 #ifndef _NETAT_ATP_H_
54 #define _NETAT_ATP_H_
55 #include <sys/appleapiopts.h>
56
57 #ifdef __APPLE_API_OBSOLETE
58
59 /* ATP function codes */
60
61 #define ATP_CMD_TREQ 0x01 /* TRequest packet */
62 #define ATP_CMD_TRESP 0x02 /* TResponse packet */
63 #define ATP_CMD_TREL 0x03 /* TRelease packet */
64
65 /* Miscellaneous definitions */
66
67 #define ATP_DEF_RETRIES 8 /* Default for maximum retry count */
68 #define ATP_DEF_INTERVAL 2 /* Default for retry interval in seconds */
69
70 #define ATP_TRESP_MAX 8 /* Maximum number of Tresp pkts */
71
72 #define ATP_HDR_SIZE 8 /* Size of the ATP header */
73 #define ATP_DATA_SIZE 578 /* Maximum size of the ATP data area */
74
75 /* Consts for asynch support */
76 #define ATP_ASYNCH_REQ 1
77 #define ATP_ASYNCH_RESP 2
78
79 /* Timer values for XO release timers */
80 #define ATP_XO_DEF_REL_TIME 0
81 #define ATP_XO_30SEC 0
82 #define ATP_XO_1MIN 1
83 #define ATP_XO_2MIN 2
84 #define ATP_XO_4MIN 3
85 #define ATP_XO_8MIN 4
86
87 typedef struct {
88 unsigned cmd : 2,
89 xo : 1,
90 eom : 1,
91 sts : 1,
92 xo_relt : 3;
93 u_char bitmap;
94 ua_short tid;
95 ua_long user_bytes;
96 u_char data[ATP_DATA_SIZE];
97 } at_atp_t;
98
99 #define ATP_ATP_HDR(c) ((at_atp_t *)(&((at_ddp_t *)(c))->data[0]))
100
101 #define TOTAL_ATP_HDR_SIZE (ATP_HDR_SIZE+DDP_X_HDR_SIZE)
102 #define ATP_CLEAR_CONTROL(c) (*(char *)(c) = 0)
103
104 /* ATP ioctl interface */
105
106 /* Structure for the atp_set_default call */
107
108 #define ATP_INFINITE_RETRIES 0xffffffff /* means retry forever
109 * in the def_retries field
110 */
111
112 struct atp_set_default {
113 u_int def_retries; /* number of retries for a request */
114 u_int def_rate; /* retry rate (in seconds/100) NB: the
115 * system may not be able to resolve
116 * delays of 100th of a second but will
117 * instead make a 'best effort'
118 */
119 struct atpBDS *def_bdsp; /* BDS structure associated with this req */
120 u_int def_BDSlen; /* size of BDS structure */
121 };
122
123
124 /* Return header from requests */
125
126 struct atp_result {
127 u_short count; /* the number of packets */
128 u_short hdr; /* offset to header in buffer */
129 u_short offset[8]; /* offset to the Nth packet in the buffer */
130 u_short len[8]; /* length of the Nth packet */
131 };
132
133 struct atpBDS {
134 ua_short bdsBuffSz;
135 ua_long bdsBuffAddr;
136 ua_short bdsDataSz;
137 unsigned char bdsUserData[4];
138 };
139
140
141 typedef struct {
142 u_short at_atpreq_type;
143 at_inet_t at_atpreq_to;
144 u_char at_atpreq_treq_user_bytes[4];
145 u_char *at_atpreq_treq_data;
146 u_short at_atpreq_treq_length;
147 u_char at_atpreq_treq_bitmap;
148 u_char at_atpreq_xo;
149 u_char at_atpreq_xo_relt;
150 u_short at_atpreq_retry_timeout;
151 u_short at_atpreq_maximum_retries;
152 u_char at_atpreq_tresp_user_bytes[ATP_TRESP_MAX][4];
153 u_char *at_atpreq_tresp_data[ATP_TRESP_MAX];
154 u_short at_atpreq_tresp_lengths[ATP_TRESP_MAX];
155 u_long at_atpreq_debug[4];
156 u_short at_atpreq_tid;
157 u_char at_atpreq_tresp_bitmap;
158 u_char at_atpreq_tresp_eom_seqno;
159 u_char at_atpreq_got_trel;
160 } at_atpreq;
161
162
163 /* The ATP module ioctl commands */
164
165 #define AT_ATP_CANCEL_REQUEST (('|'<<8)|1)
166 #define AT_ATP_ISSUE_REQUEST (('|'<<8)|2) /* ALO */
167 #define AT_ATP_ISSUE_REQUEST_DEF (('|'<<8)|3) /* XO */
168 #define AT_ATP_ISSUE_REQUEST_DEF_NOTE (('|'<<8)|4) /* XO & nowait -- not needed*/
169 #define AT_ATP_ISSUE_REQUEST_NOTE (('|'<<8)|5) /* ALO & nowait */
170 #define AT_ATP_GET_POLL (('|'<<8)|6)
171 #define AT_ATP_RELEASE_RESPONSE (('|'<<8)|7)
172 #define AT_ATP_REQUEST_COMPLETE (('|'<<8)|8)
173 #define AT_ATP_SEND_FULL_RESPONSE (('|'<<8)|9) /* not used */
174 #define AT_ATP_BIND_REQ (('|'<<8)|10)
175 #define AT_ATP_GET_CHANID (('|'<<8)|11)
176 #define AT_ATP_PEEK (('|'<<8)|12)
177 #define AT_ATP_ISSUE_REQUEST_TICKLE (('|'<<8)|13) /* ALO & nowait */
178
179 /* These macros don't really depend here, but since they're used only by the
180 * old ATP and old PAP, they're put here. Unisoft PAP includes this file.
181 */
182 #define R16(x) UAS_VALUE(x)
183 #define W16(x,v) UAS_ASSIGN(x, v)
184 #define C16(x,v) UAS_UAS(x, v)
185
186 /*
187 * these are the dispatch codes for
188 * the new atp_control system call
189 */
190 #define ATP_SENDREQUEST 0
191 #define ATP_GETRESPONSE 1
192 #define ATP_SENDRESPONSE 2
193 #define ATP_GETREQUEST 3
194
195 #ifdef KERNEL_PRIVATE
196
197
198 /*
199 * Stuff for accessing protocol headers
200 */
201 #define AT_DDP_HDR(m) ((at_ddp_t *)(gbuf_rptr(m)))
202 #define AT_ATP_HDR(m) ((at_atp_t *)(&((at_ddp_t *)(gbuf_rptr(m)))->data[0]))
203
204 /*
205 * Masks for accessing/manipulating the bitmap field in atp headers
206 */
207
208 #ifdef ATP_DECLARE
209 unsigned char atp_mask [] = {
210 0x01, 0x02, 0x04, 0x08,
211 0x10, 0x20, 0x40, 0x80,
212 };
213
214 unsigned char atp_lomask [] = {
215 0x00, 0x01, 0x03, 0x07,
216 0x0f, 0x1f, 0x3f, 0x7f,
217 0xff
218 };
219 #else
220 extern unsigned char atp_mask [];
221 extern unsigned char atp_lomask [];
222 #endif /* ATP_DECLARE */
223
224 /*
225 * doubly linked queue types and primitives
226 */
227
228 #define ATP_Q_ENTER(hdr, object, entry) { \
229 if ((hdr).head) { \
230 (hdr).head->entry.prev = (object); \
231 (object)->entry.next = (hdr).head; \
232 } else { \
233 (hdr).tail = (object); \
234 (object)->entry.next = NULL; \
235 } \
236 (object)->entry.prev = NULL; \
237 (hdr).head = (object); \
238 }
239
240 #define ATP_Q_APPEND(hdr, object, entry) { \
241 if ((hdr).head) { \
242 (hdr).tail->entry.next = (object); \
243 (object)->entry.prev = (hdr).tail; \
244 } else { \
245 (hdr).head = (object); \
246 (object)->entry.prev = NULL; \
247 } \
248 (object)->entry.next = NULL; \
249 (hdr).tail = (object); \
250 }
251
252 #define ATP_Q_REMOVE(hdr, object, entry) { \
253 if ((object)->entry.prev) { \
254 (object)->entry.prev->entry.next = (object)->entry.next;\
255 } else { \
256 (hdr).head = (object)->entry.next; \
257 } \
258 if ((object)->entry.next) { \
259 (object)->entry.next->entry.prev = (object)->entry.prev;\
260 } else { \
261 (hdr).tail = (object)->entry.prev; \
262 } \
263 }
264
265 struct atp_rcb_qhead {
266 struct atp_rcb *head;
267 struct atp_rcb *tail;
268 };
269
270 struct atp_rcb_q {
271 struct atp_rcb *prev;
272 struct atp_rcb *next;
273 };
274
275 struct atp_trans_qhead {
276 struct atp_trans *head;
277 struct atp_trans *tail;
278 };
279
280 struct atp_trans_q {
281 struct atp_trans *prev;
282 struct atp_trans *next;
283 };
284
285 /*
286 * Locally saved remote node address
287 */
288
289 struct atp_socket {
290 u_short net;
291 at_node node;
292 at_socket socket;
293 };
294
295 /*
296 * transaction control block (local context at requester end)
297 */
298
299 struct atp_trans {
300 struct atp_trans_q tr_list; /* trans list */
301 struct atp_state *tr_queue; /* state data structure */
302 gbuf_t *tr_xmt; /* message being sent */
303 gbuf_t *tr_rcv[8]; /* message being rcvd */
304 unsigned int tr_retry; /* # retries left */
305 unsigned int tr_timeout; /* timer interval */
306 char tr_state; /* current state */
307 char tr_rsp_wait; /* waiting for transaction response */
308 char filler[2];
309 unsigned char tr_xo; /* execute once transaction */
310 unsigned char tr_bitmap; /* requested bitmask */
311 unsigned short tr_tid; /* transaction id */
312 struct atp_socket tr_socket; /* the remote socket id */
313 struct atp_trans_q tr_snd_wait; /* list of transactions waiting
314 for space to send a msg */
315 at_socket tr_local_socket;
316 at_node tr_local_node;
317 at_net tr_local_net;
318 gbuf_t *tr_bdsp; /* bds structure pointer */
319 unsigned int tr_tmo_delta;
320 void (*tr_tmo_func)();
321 struct atp_trans *tr_tmo_next;
322 struct atp_trans *tr_tmo_prev;
323 atlock_t tr_lock;
324 atevent_t tr_event;
325 };
326
327 #define TRANS_TIMEOUT 0 /* waiting for a reply */
328 #define TRANS_REQUEST 1 /* waiting to send a request */
329 #define TRANS_RELEASE 2 /* waiting to send a release */
330 #define TRANS_DONE 3 /* done - waiting for poll to complete */
331 #define TRANS_FAILED 4 /* done - waiting for poll to report failure */
332 #define TRANS_ABORTING 5 /* waiting on atp_trans_abort list for thread to wakeup */
333
334 /*
335 * reply control block (local context at repling end)
336 */
337
338 struct atp_rcb {
339 struct atp_rcb_q rc_list; /* rcb list */
340 struct atp_rcb_q rc_tlist;
341 struct atp_state *rc_queue; /* state data structure */
342 gbuf_t *rc_xmt; /* replys being sent */
343 gbuf_t *rc_ioctl; /* waiting ioctl */
344 char rc_snd[8]; /* replys actually to be sent */
345 int rc_pktcnt; /* no of pkts in this trans */
346 short rc_state; /* current state */
347 unsigned char rc_xo; /* execute once transaction */
348 at_node rc_local_node;
349 at_net rc_local_net;
350 short rc_rep_waiting; /* in the reply wait list */
351 int rc_timestamp; /* reply timer */
352 unsigned char rc_bitmap; /* replied bitmask */
353 unsigned char rc_not_sent_bitmap; /* replied bitmask */
354 unsigned short rc_tid; /* transaction id */
355 struct atp_socket rc_socket; /* the remote socket id */
356 };
357
358 #define RCB_UNQUEUED 0 /* newly allocated, not q'd */
359 #define RCB_RESPONDING 2 /* waiting all of response from process*/
360 #define RCB_RESPONSE_FULL 3 /* got all of response */
361 #define RCB_RELEASED 4 /* got our release */
362 #define RCB_PENDING 5 /* a no wait rcb is full */
363 #define RCB_NOTIFIED 6
364 #define RCB_SENDING 7 /* we're currently xmitting this trans */
365
366 /*
367 * socket state (per module data structure)
368 */
369
370 struct atp_state {
371 gref_t *atp_gref; /* must be the first entry */
372 int atp_pid; /* process id, must be the second entry */
373 gbuf_t *atp_msgq; /* data msg, must be the third entry */
374 unsigned char dflag; /* structure flag, must be the fourth entry */
375 unsigned char filler;
376 short atp_socket_no;
377 short atp_flags; /* general flags */
378 struct atp_trans_qhead atp_trans_wait; /* pending transaction list */
379 struct atp_state *atp_trans_waiting; /* list of atps waiting for a
380 free transaction */
381 unsigned int atp_retry; /* retry count */
382 unsigned int atp_timeout; /* retry timeout */
383 struct atp_state *atp_rcb_waiting;
384 struct atp_rcb_qhead atp_rcb; /* active rcbs */
385 struct atp_rcb_qhead atp_attached; /* rcb's waiting to be read */
386 atlock_t atp_lock;
387 atevent_t atp_event;
388 atlock_t atp_delay_lock;
389 atevent_t atp_delay_event;
390 };
391
392
393 /*
394 * atp_state flag definitions
395 */
396 #define ATP_CLOSING 0x08 /* atp stream in process of closing */
397
398
399 /*
400 * tcb/rcb/state allocation queues
401 */
402
403 /*
404 * Size defines; must be outside following #ifdef to permit
405 * debugging code to reference independent of ATP_DECLARE
406 */
407 #define NATP_RCB 512 /* the number of ATP RCBs at once */
408 #define NATP_STATE 192 /* the number of ATP sockets open at once */
409 /* note: I made NATP_STATE == NSOCKETS */
410
411 #ifdef ATP_DECLARE
412 struct atp_trans *atp_trans_free_list = NULL; /* free transactions */
413 struct atp_rcb *atp_rcb_free_list = NULL; /* free rcbs */
414 struct atp_state *atp_free_list = NULL; /* free atp states */
415 struct atp_trans_qhead atp_trans_abort; /* aborted trans list */
416 struct atp_rcb* atp_rcb_data = NULL;
417 struct atp_state* atp_state_data=NULL;
418
419
420 #else
421 extern struct atp_trans *atp_trans_free_list; /* free transactions */
422 extern struct atp_rcb *atp_rcb_free_list; /* free rcbs */
423 extern struct atp_state *atp_free_list; /* free atp states */
424 extern struct atp_rcb* atp_rcb_data;
425 extern struct atp_state* atp_state_data;
426 extern struct atp_trans_qhead atp_trans_abort; /* aborting trans list */
427
428 extern void atp_req_timeout();
429 extern void atp_rcb_timer();
430 extern void atp_x_done();
431 extern struct atp_rcb *atp_rcb_alloc();
432 extern struct atp_trans *atp_trans_alloc();
433 #endif /* ATP_DECLARE */
434
435 /* prototypes */
436 void atp_send_req(gref_t *, gbuf_t *);
437 void atp_drop_req(gref_t *, gbuf_t *);
438 void atp_send_rsp(gref_t *, gbuf_t *, int);
439 void atp_wput(gref_t *, gbuf_t *);
440 void atp_rput(gref_t *, gbuf_t *);
441 void atp_retry_req(void *);
442 void atp_stop(gbuf_t *, int);
443 void atp_cancel_req(gref_t *, unsigned short);
444 int atp_open(gref_t *, int);
445 int atp_bind(gref_t *, unsigned int, unsigned char *);
446 int atp_close(gref_t *, int);
447 gbuf_t *atp_build_release(struct atp_trans *);
448 void atp_req_timeout(struct atp_trans *);
449 void atp_free(struct atp_trans *);
450 void atp_x_done(struct atp_trans *);
451 void atp_send(struct atp_trans *);
452 void atp_rsp_ind(struct atp_trans *, gbuf_t *);
453 void atp_trans_free(struct atp_trans *);
454 void atp_reply(struct atp_rcb *);
455 void atp_rcb_free(struct atp_rcb *);
456 void atp_send_replies(struct atp_state *, struct atp_rcb *);
457 void atp_dequeue_atp(struct atp_state *);
458 int atp_iocack(struct atp_state *, gbuf_t *);
459 void atp_req_ind(struct atp_state *, gbuf_t *);
460 int atp_iocnak(struct atp_state *, gbuf_t *, int);
461 void atp_trp_timer(void *, int);
462 void atp_timout(void (*func)(), struct atp_trans *, int);
463 void atp_untimout(void (*func)(), struct atp_trans *);
464 int atp_tid(struct atp_state *);
465
466 #endif /* KERNEL_PRIVATE */
467 #endif /* __APPLE_API_OBSOLETE */
468 #endif /* _NETAT_ATP_H_ */