Server IPv6 support

From Linux NFS

Revision as of 21:41, 18 August 2007 by PcbXtz (Talk | contribs)
Jump to: navigation, search

mansion imposible lettore memory stick pro insieme kar rappresentanti per estero mamara eros ramazzotti osculati un genio in famiglia bevanda ai cereali winmix gratis delitto nella tempesta olga tanon programma per mix ati radeon x600pro 256mb pci dvi gay cazzi nudi video gratis nute if you buck sgozzati www mogambo com ar zelig drive 4 tetovaza inserimento motore ricerca do you knoe where new maco s faretti per giardino tomtom 500 europa nokia 6630 accessori mmc www ragazze italiane diga di assuan tv lcd 17 hyundai jeep cherokee 2 8 crd cuore prigioniero gps navman fotos porno de belinda casse audio pc the ark sane el ultimo video de kalimba neon blu l oceano del silenzio ridi schede ati x850 tv lcd 32 pollici hdmi con la pallina paroles marina gioco grande fratello appartamento lecce del turco cheats for rpm tuning nvidia geforce 6600 agp8x ruslana wild dances eurovision boy s palm te2 benetton basket canna spinning viaggio pesca athlon 64 bit 2800 porfido tv7 borsa per dvd portatile nikon mb-e5700 www ragazze it oakley judge sussudio star wars battlefront 2 - trailer 4 stampante epson cd la segunda independencia pioneer home cinema 535 nepalesi massacro www x ho com scaricare waves of luv pettenasco rutherfor trampolin cielo sopra berlino little tailor hub combo usb sindicalizacion en panama thomson dvd recorder doppio sospetto circo massimo la boda de belen aventura obsession crazy ball jeans take -two kimberly poppin dem thangs ridder multimedia lcd kiss 1500 oc theme california loredana cannata video packard bell spirit cd alan parsons foto fanni cadeo disco di avvio xp bilderdijk, willem fotocamera per ipaq www simplyred com ragazzo gorizia www uil scuola it disco zone o zone sum ojoz dow chemical lavororoma gif natalizie la donna invisibile assicurazione verona negrette il video di brytney toxic jump for joy simpol main morenas proiettore per diapositive abbigliamento piombo lizzie bordon istituti di vigilanza privata cinema palermo testi canzoni mario winans keys viacess video stupidi rex frigorifero fi 22 10 fa lidiota gamebot lancio del ping born to be alive patrick hernandez la pazzia di re giorgio christmas songs ma che freddo nuova fiat stilo benzina auto nuove radio cassette cd mp3 yonu le bambole del desiderio bomb jake navigon 3 un sogno lungo un giorno hull, albert wallace foto sorelle lecciso scanner epson 2480 civili in ostaggio in iraq navika mp3 try it on my own coppie valutano singoli vacanze ungheria i figli di sanchez adsl pro chimene badi annunci singole palermo fus missione caracas puta con cd 224e annelise van der pol dior mascara nardi forni switch loa ponce case prefabricate in legno olimpiadi programma 15 08 don dale km0 cherokee auto km 0 ritta sata 80 gb 2 5 fit puglia villaggio vacanza basilicata nad c272 ram sdram 133 512mb legge 241 del 1990 hard disc maxtor doppio cordless joyce kelvin irish lottery foto di maria teresa ruta silvia vada chandrakanta leatherman juice sony cybershot h1 go west young man scheda audio sound blaster audigy x-fi drin claudio grimm trieste www atlasconcorde it screw up m jakson una vita in pericolo fare pompino sony - fotocamera digitale - dsc-t3 scarpette puma topolino e la magia del natale callan incontro crotone joss stone mp3 http infor gruppo telecomitalia it punto grande asus - p4s800d tiepolo praga masterizzatore dvd samsung esterno euro 204 walter piacesi kurort schmalkalden caricatore cd autoradio televisore lcd 20 pollici candy cbd 80 p batteria a1000 arrivano joe e margherito NFS kernel code work for IPv6 support in NFSv4 server Description of possible implementation

Contents

Possible methods of implementation

Solution 1

Each time an address (or a socket address) is used, a specific processing is performed according to the family of the address.

Solution 2

Another way is to use the IPv4-mapping addressing: with this method, recommended to migrate to IPv6, the IPv4 addresses are mapped into IPv6 addresses and then all the processings are done on IPv6 addresses. So it is no more useful to distinguish IPv4 / IPv6 addresses and the IP layer automatically map/unmap the IPv4 addresses when needed.

Solution 3

A third way is to use sets of functions specific to each protocol (TCP/IPv4, TCP/IPv6, ...) written to implement the parts of code depending on the address type. When a new client or server instance is created, the set of functions corresponding to the transport protocol is stored in the associated structure to be used when needed. This method is used by the transport switch implemented by Chuck Lever to allow new transports, such as RDMA, to be plugged and used instead of TCP or UDP.

Mapped addresses

Mapped addresses are a mechanism to « encapsulate » a 32 bit IPv4 address in a 128 bit IPv6 address. The IPv4 address is stored in less significant bits of IPv6 address and the 96 most significant bits are 0:0:0:0:FFFF

So the représentaion of A.B.C.D IP address is:

0 0 0 0 0 0 0 0 0 0 FF FF A B C D


The IN6_IS_ADDR_V4MAPPED() routine aims at determining if an inet6 address is a mapped address.

Solutions Analysis

Solution 1 adds a lot of tests in the code which increase the complexity of the code reading and maintainability.

Solution 2 has the advantage to simplify the code (only one format of addresses is handled) and preserves the performances. Drawbacks: it requires the kernel to be compiled with IPv6, even if no IPv6 addressing is used. Other OS (*nix, Windows, ...) provide the support of IPv6 in standard. Though the default Linux kernels provided by the major distributions (RedHat, FedoraCore, Suse, Debian, Mandrake, ...) are already compiled with IPv6 enabled, the IPv6 compilation flag is not set by default on the kernel.org delivery. Several reasons could explain the unwillingness to require the kernel built with IPv6: the IPv6 code seems not to be mature and tested enough for some people, and this requirement doesn't match with the Linux concept of global modularity (i.e. the possibility to have the wanted functions and only these ones). Keeping the possibility to compile the kernel without the support of IPv6 requires to keep the current processing and to add the new one with a compilation flag (CONFIG_IPV6). This makes the bug fixing more difficult especially because different code paths can be used according to whether the kernel has been built or not with IPv6 enabled.

Solution 3 is clean, it works even if the kernel is not compiled with IPv6. But since INET addresses are used in a lot of places (in nfs, nfsd, lockd, statd, rpc, ...), the access to the structure defining the set of functions to be used may be very difficult. Moreover, according to the granularity of these functions, a lot of code may be duplicated, decreasing the maintainability.

Proposed solution

3 for client and a mix of 1 and 2 for server On the client side, since Chuck Lever has already implemented the transport switch in the RPC kernel part, the third solution has been implemented by extending the use of this transport switch to the NFS part. Moreover, the mount command uses the TI-RPC library and has been been extended to be made transport independent. For further information see: http://nfsv4.bullopensource.org/doc/mini-howto.php

Client Ipv6 support should be integrated into Transport Switch and Trond's patchset soon. However, the Ipv6 patchset for the client is available here: http://nfsv4.bullopensource.org/patches/nfs_ipv6-5/index.php

On the server side, no work has been done yet, and is planned, to implement a framework to plug new transports. The current code allows the processing of tcp/ipv4 and udp/ipv4 transports by testing the used protocol when needed. In the same way, the tcp/ipv6 and udp/ipv6 will be added at the RPC level by using generic structures and adding tests of the used family (AF_INET or AF_INET6). INET and INET6 sockets will be used to communicate with clients. INET6 structures (sockaddr_in6 and in6_addr) are used to store both IPv4 and IPv6 addresses. The mapping mechanism is used to encapsulate IPv4 addresses in INET6 structures. In this way, we take advantage of IPv6 features, without needing the kernel to be compiled with IPv6 enabled. We will use IPv6 structure just as a container for both type of addresses. For the transmission we will use IPv6 socket only if adresses are IPv6 addresses. In case of IPv4 address, we will retrieve the IPv4 address from the INET6 structure, and then use IPv4 sockets. In this case, there is no need to have kernel IPv6 modules compiled to do IPv4 communications.

Personal tools