]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netat/atp_open.c
xnu-344.49.tar.gz
[apple/xnu.git] / bsd / netat / atp_open.c
index de927389c462b000ffb09b0f13cb13ab08e2103b..c0fdc869c6cf4978372cbfff2298990da202b065 100644 (file)
@@ -3,19 +3,22 @@
  *
  * @APPLE_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.
+ * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
  * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * 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. 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@
  */
@@ -42,6 +45,7 @@
 #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>
@@ -109,15 +113,7 @@ void atp_init()
        atp_used_list = 0;
        atp_trans_abort.head = NULL;
        atp_trans_abort.tail = NULL;
-       
-       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_need_rel.head = NULL;
        atp_need_rel.tail = NULL;
 
@@ -137,7 +133,41 @@ int atp_open(gref, flag)
        int flag;
 {
        register struct atp_state *atp;
-       register int s;
+       register int s, 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) {                                             /* in case we lost funnel while allocating */
+                       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