protocol.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * INET An implementation of the TCP/IP protocol suite for the LINUX
  3.  * operating system.  INET is implemented using the  BSD Socket
  4.  * interface as the means of communication with the user level.
  5.  *
  6.  * PF_INET6 protocol dispatch tables.
  7.  *
  8.  * Version: $Id: protocol.c,v 1.10 2001/05/18 02:25:49 davem Exp $
  9.  *
  10.  * Authors: Pedro Roque <roque@di.fc.ul.pt>
  11.  *
  12.  * This program is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU General Public License
  14.  * as published by the Free Software Foundation; either version
  15.  * 2 of the License, or (at your option) any later version.
  16.  */
  17. /*
  18.  *      Changes:
  19.  *
  20.  *      Vince Laviano (vince@cs.stanford.edu)       16 May 2001
  21.  *      - Removed unused variable 'inet6_protocol_base'
  22.  *      - Modified inet6_del_protocol() to correctly maintain copy bit.
  23.  */
  24. #include <linux/errno.h>
  25. #include <linux/types.h>
  26. #include <linux/socket.h>
  27. #include <linux/sockios.h>
  28. #include <linux/sched.h>
  29. #include <linux/net.h>
  30. #include <linux/in6.h>
  31. #include <linux/netdevice.h>
  32. #include <linux/if_arp.h>
  33. #include <linux/brlock.h>
  34. #include <net/sock.h>
  35. #include <net/snmp.h>
  36. #include <net/ipv6.h>
  37. #include <net/protocol.h>
  38. struct inet6_protocol *inet6_protos[MAX_INET_PROTOS];
  39. void inet6_add_protocol(struct inet6_protocol *prot)
  40. {
  41. unsigned char hash;
  42. struct inet6_protocol *p2;
  43. hash = prot->protocol & (MAX_INET_PROTOS - 1);
  44. br_write_lock_bh(BR_NETPROTO_LOCK);
  45. prot->next = inet6_protos[hash];
  46. inet6_protos[hash] = prot;
  47. prot->copy = 0;
  48. /*
  49.  * Set the copy bit if we need to. 
  50.  */
  51.  
  52. p2 = (struct inet6_protocol *) prot->next;
  53. while(p2 != NULL) {
  54. if (p2->protocol == prot->protocol) {
  55. prot->copy = 1;
  56. break;
  57. }
  58. p2 = (struct inet6_protocol *) p2->next;
  59. }
  60. br_write_unlock_bh(BR_NETPROTO_LOCK);
  61. }
  62. /*
  63.  * Remove a protocol from the hash tables.
  64.  */
  65.  
  66. int inet6_del_protocol(struct inet6_protocol *prot)
  67. {
  68. struct inet6_protocol *p;
  69. struct inet6_protocol *lp = NULL;
  70. unsigned char hash;
  71. hash = prot->protocol & (MAX_INET_PROTOS - 1);
  72. br_write_lock_bh(BR_NETPROTO_LOCK);
  73. if (prot == inet6_protos[hash]) {
  74. inet6_protos[hash] = (struct inet6_protocol *) inet6_protos[hash]->next;
  75. br_write_unlock_bh(BR_NETPROTO_LOCK);
  76. return(0);
  77. }
  78. p = (struct inet6_protocol *) inet6_protos[hash];
  79.         if (p != NULL && p->protocol == prot->protocol)
  80.                 lp = p;
  81. while(p != NULL) {
  82. /*
  83.  * We have to worry if the protocol being deleted is
  84.  * the last one on the list, then we may need to reset
  85.  * someone's copied bit.
  86.  */
  87. if (p->next != NULL && p->next == prot) {
  88. /*
  89.  * if we are the last one with this protocol and
  90.  * there is a previous one, reset its copy bit.
  91.  */
  92. if (prot->copy == 0 && lp != NULL)
  93. lp->copy = 0;
  94. p->next = prot->next;
  95. br_write_unlock_bh(BR_NETPROTO_LOCK);
  96. return(0);
  97. }
  98. if (p->next != NULL && p->next->protocol == prot->protocol) 
  99. lp = p->next;
  100. p = (struct inet6_protocol *) p->next;
  101. }
  102. br_write_unlock_bh(BR_NETPROTO_LOCK);
  103. return(-1);
  104. }