]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netat/atp_open.c
xnu-1456.1.26.tar.gz
[apple/xnu.git] / bsd / netat / atp_open.c
index 9c8b95e9fa9b492b9bedf76e3abb0c71f38d20ef..28847f502b53b4376e59769cce62726f00c5cbdf 100644 (file)
@@ -1,23 +1,29 @@
 /*
  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License").  You may not use this file except in compliance with the
- * License.  Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
+ * This file contains Original Code and/or Modifications of Original Code
+ * as defined in and that are subject to the Apple Public Source License
+ * Version 2.0 (the 'License'). You may not use this file except in
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * unlawful or unlicensed copies of an Apple operating system, or to
+ * circumvent, violate, or enable the circumvention or violation of, any
+ * terms of an Apple operating system software license agreement.
  * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this file.
+ * 
+ * The Original Code and all software distributed under the License are
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+ * Please see the License for the specific language governing rights and
+ * limitations under the License.
  * 
- * @APPLE_LICENSE_HEADER_END@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*
  *     Copyright (c) 1996-1998 Apple Computer, Inc.
 #include <sys/ioctl.h>
 #include <sys/malloc.h>
 #include <sys/socket.h>
+#include <vm/vm_kern.h>         /* for kernel_map */
 
 #include <netat/sysglue.h>
 #include <netat/appletalk.h>
 #include <netat/ddp.h>
 #include <netat/at_pcb.h>
 #include <netat/atp.h>
+#include <netat/asp.h>
 #include <netat/debug.h>
 
 /*
@@ -57,9 +65,6 @@
 
 int atp_inited = 0;
 struct atp_rcb_qhead atp_need_rel;
-atlock_t atpall_lock;
-atlock_t atptmo_lock;
-atlock_t atpgen_lock;
 
 /**********/
 int atp_pidM[256];
@@ -100,21 +105,14 @@ int atp_input(mp)
 }
 
 /**********/
-void atp_init()
+void atp_init(void)
 {
-  int i;
-
   if (!atp_inited) {
        atp_inited = 1;
        atp_used_list = 0;
-       for (i = 0; i < NATP_RCB; i++) {
-               atp_rcb_data[i].rc_list.next = atp_rcb_free_list;
-               atp_rcb_free_list = &atp_rcb_data[i];
-       }
-       for (i = 0; i < NATP_STATE; i++) {
-               atp_state_data[i].atp_trans_waiting = atp_free_list;
-               atp_free_list = &atp_state_data[i];
-       }
+       atp_trans_abort.head = NULL;
+       atp_trans_abort.tail = NULL;
+               
        atp_need_rel.head = NULL;
        atp_need_rel.tail = NULL;
 
@@ -134,24 +132,54 @@ int atp_open(gref, flag)
        int flag;
 {
        register struct atp_state *atp;
-       register int s;
+       register int i;
+       vm_offset_t     temp;
+       
+       /*
+        * Allocate and init state and reply control block lists
+        * if this is the first open
+        */
+       if (atp_rcb_data == NULL) {
+               if (kmem_alloc(kernel_map, &temp, sizeof(struct atp_rcb) * NATP_RCB) != KERN_SUCCESS) 
+                       return(ENOMEM);
+               if (atp_rcb_data == NULL) {                                             
+                       bzero((caddr_t)temp, sizeof(struct atp_rcb) * NATP_RCB);
+                       atp_rcb_data = (struct atp_rcb*)temp;                                   
+                       for (i = 0; i < NATP_RCB; i++) {
+                               atp_rcb_data[i].rc_list.next = atp_rcb_free_list;
+                               atp_rcb_free_list = &atp_rcb_data[i];
+                       }
+               } else
+                       kmem_free(kernel_map, temp, sizeof(struct atp_rcb) * NATP_RCB); /* already allocated by another process */      
+       }
+       
+       if (atp_state_data == NULL) {
+               if (kmem_alloc(kernel_map, &temp, sizeof(struct atp_state) * NATP_STATE) != KERN_SUCCESS) 
+                       return(ENOMEM);
+               if (atp_state_data == NULL) {
+                 bzero((caddr_t)temp, sizeof(struct atp_state) * NATP_STATE);
+                       atp_state_data = (struct atp_state*) temp;
+                       for (i = 0; i < NATP_STATE; i++) {
+                               atp_state_data[i].atp_trans_waiting = atp_free_list;
+                               atp_free_list = &atp_state_data[i];
+                       }
+               } else
+                       kmem_free(kernel_map, temp, sizeof(struct atp_state) * NATP_STATE);     
+       }
+
 
        /*
         *      If no atp structure available return failure
         */
 
-       ATDISABLE(s, atpall_lock);
-       if ((atp = atp_free_list) == NULL) {
-               ATENABLE(s, atpall_lock);
+       if ((atp = atp_free_list) == NULL)
                return(EAGAIN);
-       }
 
        /*
         *      Update free list
         */
 
        atp_free_list = atp->atp_trans_waiting;
-       ATENABLE(s, atpall_lock);
 
        /*
         *      Initialize the data structure
@@ -165,12 +193,11 @@ int atp_open(gref, flag)
        atp->atp_timeout = HZ/8;
        atp->atp_rcb_waiting = NULL;
        atp->atp_rcb.head = NULL;       
+       atp->atp_attached.head = NULL;  
        atp->atp_flags = T_MPSAFE;
        atp->atp_socket_no = -1;
        atp->atp_pid = gref->pid;
        atp->atp_msgq = 0;
-       ATLOCKINIT(atp->atp_lock);
-       ATLOCKINIT(atp->atp_delay_lock);
        ATEVENTINIT(atp->atp_event);
        ATEVENTINIT(atp->atp_delay_event);
        gref->info = (void *)atp;
@@ -180,11 +207,9 @@ int atp_open(gref, flag)
         */
 
        if (flag) {
-               ATDISABLE(s, atpall_lock);
                if ((atp->atp_trans_waiting = atp_used_list) != 0)
                        atp->atp_trans_waiting->atp_rcb_waiting = atp;
                atp_used_list = atp;
-               ATENABLE(s, atpall_lock);
        }
        return(0);
 }
@@ -198,11 +223,9 @@ int atp_close(gref, flag)
        gref_t *gref;
        int flag;
 {
-       extern void atp_req_timeout();
        register struct atp_state *atp;
        register struct atp_trans *trp;
        register struct atp_rcb *rcbp;
-       register int s;
        int socket;
        pid_t pid;
 
@@ -214,7 +237,6 @@ int atp_close(gref, flag)
                atp->atp_msgq = 0;
        }
 
-       ATDISABLE(s, atp->atp_lock);
        atp->atp_flags |= ATP_CLOSING;
        socket = atp->atp_socket_no;
        if (socket != -1)
@@ -235,7 +257,6 @@ int atp_close(gref, flag)
                atp_rcb_free(rcbp);
        while ((rcbp = atp->atp_attached.head))
                atp_rcb_free(rcbp);
-       ATENABLE(s, atp->atp_lock);
 
        if (flag && (socket == -1))
                atp_dequeue_atp(atp);
@@ -243,11 +264,9 @@ int atp_close(gref, flag)
        /*
         *      free the state variable
         */
-       ATDISABLE(s, atpall_lock);
        atp->atp_socket_no = -1;
        atp->atp_trans_waiting = atp_free_list;
        atp_free_list = atp;
-       ATENABLE(s, atpall_lock);
 
        if (socket != -1) {
                pid = (pid_t)atp_pidM[socket];