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