Add PGM protocol support to the IP stack

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Christoph Lameter
Date: Thursday, March 18, 2010 - 10:58 am

Is there any work in progress on including PGM support (RFC 3208) in the
kernel?

I know about the openpgm implementation. Openpbm does this at the user
level and requires linking to a library. It is essentially a communication
protocol done in user space. It has privilege issues because it has to
create PGM packets via a raw socket. Which also has implications for the
possible performance. Openpgm seems to be able to interact with major
commercial implementations of PGM.

I am looking at openpgm right now and it seems that there are a number of
useful files and functions in there that could be used to implement PGM
support in the kernel.

There is also an existing socket API for handling PGM available in another
operating system whose name we rather avoid mentioning. That socket API
could be used as the basic. PGM use would then be possible without a
library and without privilege and performance issues.

PGM support would support two different modes of communication


1. Native PGM (allows NAK suppression by Cisco routers to be used)

	socket(AF_INET, SOCK_RDM, IPPROTO_RM)

(SOCK_RDM is defined in the kernel sources but not implemented. PGM
support would implement SOCK_RDM, IPPROTO_RM would need to be defined
according to the IANA protocol number for PGM).


2. PGM over UDP (which is used by many commercial product but not by the
unspeakable OS). No router support for NAK suppression is available. For
this I guess we would have to support

	socket(AF_INET, SOCK_RDM, IPPROTO_UDP)

I would be interested to find others who are interested in such a project
or maybe there is already a project in the works? If not then I will try
to come up with some code to get this going. Any help you could offer
would be appreciated.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Add PGM protocol support to the IP stack, Christoph Lameter, (Thu Mar 18, 10:58 am)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Thu Mar 18, 2:58 pm)
Re: Add PGM protocol support to the IP stack, Andi Kleen, (Fri Mar 19, 10:18 am)
Re: Add PGM protocol support to the IP stack, David Miller, (Fri Mar 19, 2:53 pm)
Re: Add PGM protocol support to the IP stack, H. Peter Anvin, (Fri Mar 19, 3:26 pm)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Mon Mar 22, 7:20 am)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Mon Mar 22, 7:24 am)
Re: Add PGM protocol support to the IP stack, Andi Kleen, (Mon Mar 22, 9:36 am)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Mon Mar 22, 9:51 am)
Re: Add PGM protocol support to the IP stack, Andi Kleen, (Mon Mar 22, 10:43 am)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Mon Mar 22, 11:07 am)
Re: Add PGM protocol support to the IP stack, Andi Kleen, (Mon Mar 22, 11:53 am)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Mon Mar 22, 12:32 pm)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Fri Mar 26, 10:33 am)
Re: Add PGM protocol support to the IP stack, Andi Kleen, (Sat Mar 27, 6:11 am)
Re: Add PGM protocol support to the IP stack, Martin Sustrik, (Sat Mar 27, 9:54 am)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Mon Mar 29, 7:50 am)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Mon Mar 29, 8:00 am)
Re: Add PGM protocol support to the IP stack, Andi Kleen, (Mon Mar 29, 2:43 pm)
Re: Add PGM protocol support to the IP stack, H. Peter Anvin, (Mon Mar 29, 4:01 pm)
Re: Add PGM protocol support to the IP stack, Christoph Lameter, (Tue Mar 30, 11:12 am)