vote up 1 vote down star

How can I develop a Linux kernel module in order to make UDP reliable? This is my college assignment and I don't how to proceed. how to do change the default UDP behaviour in linux kernel by loading a new kernel module? and how to program such kernel module?

flag

73% accept rate
@suresh: since this is a college assignment (as you commented below), please edit your question and tell us what you were thinking of doing. Just asking outright for an answer will not be well received. – Jon B Apr 13 at 17:25
Take hints/features from TCP. Things like acknowledging received packets. – Albert Apr 13 at 17:36
It might help for you to define what is meant by "reliable". – T.E.D. Apr 14 at 14:25

14 Answers

vote up 9 vote down

There actually is reliable UDP, it's called RUDP, and it was invented for Plan 9. However, there really is no point to this, just use TCP.

Edit: Also, UDT might be useful. It is based on UDP, but is reliable.

link|flag
This is my college assignment.. i dunno how to proceed.. – suresh Apr 13 at 17:29
1  
How did this get 10 upvotes? Downloading someone else's code and handing it in as your own assignment will get you a fail grade incredibly fast. – paxdiablo Oct 29 at 3:36
@paxdiablo: I was not suggesting that the OP use this code for his assignment, but it would be good to look at to get an idea where to start. I also wanted to combat all the posts that claim that there is no such thing as reliable UDP (of course, there really isn't, the abstraction is "leaky", but it would be as reliable as TCP is). – Zifre Nov 4 at 0:10
vote up 6 vote down

Reliable UDP is not the same as just using TCP. There are a number of differences but the most predominant is that you are guaranteed to always receive an entire UDP message or not receive it at all. Whereas, it is not only possible but very common to receive partial TCP messages.

Since this is just a homework assignment I would suggest just implementing a single send message, wait for an ACK, send next message routine with a timeout. If the timeout kicks in then resend message some number of times before declaring a failure. Yes, this will be slower than necessary. There are lots of techniques to improve throughput, but for your assignment the odds are that you don't need to use them.

link|flag
I'm voting this up but you will most likely need to add sequence numbers to correlate the messages with the ACKs. – paxdiablo Oct 29 at 3:38
vote up 3 vote down

Overlay TCP on top of UDP, as TCP already does. 'Reliable UDP' is an oxymoron. It's not designed to be such.

link|flag
Minor nitpick, TCP isn't a layer on top of UDP, it's a layer on top of IP. UDP is a very thin layer on top of IP. – Michael Apr 13 at 17:20
It's been a long time since I was down in the guts of the networking stack :-) – Alister Bulman Apr 13 at 17:23
1  
+1 You can put whole IP packets on top of UDP as shown by openvpn. There is NO fundamental reason you cannot do this. – Marcelo Morales Apr 13 at 18:07
vote up 2 vote down

If you absolutely need a message-based transport layer protocol where you can turn off some of the TCP reliability features like head-of-line blocking, check out SCTP. The API even has a "UDP mode" that masks the underlying connections.

It's still a work in progress, so you can't expect users to have it -- but if you only need it for computers you maintain, it should be fine. It's implemented in various flavors of unix, though FreeBSD is where most of the development work happens. YMMV.

link|flag
+1 The only one who mentioned SCTP. – Juliano Apr 13 at 17:59
And -1 since it's a homework assignment. That means OP needs to write their own. – paxdiablo Oct 29 at 3:39
It was retagged way after my answer, but gee, thanks. :) – ojrac Oct 29 at 6:02
vote up 1 vote down

If for some reason you MUST use UDP (seriously, just use TCP) some quick and easy reliability features would be a presence heartbeat, acks, and xor'ed checksums.

link|flag
1  
-1. "Seriously, just use TCP" - and will you go up during the evaluation and explain to OPs professor why he chose to do a totally unrelated assignment? Instant fail. – paxdiablo Oct 29 at 3:41
vote up 1 vote down

I use UDP a lot, and the main "reliability" issue I end up seeing is lost packets (particularly in fragmented IP packets). You could probably do %90 of what needs to be done by preventing fragmenting (add a layer that chops up datagrams into IP-sized chunks), and by having the recipeint detect and request resends for lost "chunks".

However, this kind of thing is really what TCP was invented for. UDP is best used for time-sensitive data that would be stale on a resend anyway.

There is a network topological solution. Just arrange things so that there can't be any collisions (the #1 source of lost packets on a LAN). Here's what we do where I work to make UDP reliable:

  • Put one client and server on a dedicated ethernet link (perhaps a switch between them, but no other systems on their private LAN).
  • Keep a strict client-server communications protocol on the UDP LAN. The server is never allowed to talk, except in response to the client.
  • Turn off all exteranious networking garbage on that UDP link (Netbios, etc).
  • Make ARP entries on both ends static (so ARP won't interfere once every 10 minutes).
link|flag
The big reason we use UDP over TCP is the number of connections. We have thousands of devices sending small packets to one location to be put into a db and that number of connection kills the server. – Rex Logan Apr 13 at 21:37
Well, our "network topological solution" certianly wouldn't work for you Rex. It requires a separate physical network for each client. I'd say you just need a less limited implementation of TCP. Sad if you have to implement it yourself, rather than tweak a setting somewhere. – T.E.D. Apr 14 at 14:18
vote up 1 vote down

If you want more information on how to modify the Linux Kernel, my first response is to google "linux kernel" and maybe even add "socket" to it. The Linux Kernel website looks like it might have some other leads for you to follow.

My suggestions are that

1) Look at how UDP is implemented in Linux
2) Look at how RUDP is implemented (as somebody already mentioned)
3) ... (you make magic happen here)
4) Profit! err... Finished Homework!

link|flag
I have some idea to make udp reliable.. but dunno how to do it via module... how the default udp behaviour is changed by loadin a kernel module.... – suresh Apr 14 at 6:34
The only real suggestion I can give you is to go look at how the current code is implemented in Linux for sockets. Then, see about compiling your own derived kernel and drop it in as a replacement. Bootloaders allow multiple kernels, so drop yours in as an alternative for testing and debugging. – Erich Mirabal Apr 14 at 12:46
vote up 1 vote down

The techniques for reliable transmission of data are collectively known as "ARQ", which stands for Automatic Repeat reQuest.

It's too verbose a subject to explain here, but the wikipedia pages are a good place to start, but little more than that. I recommend you pick up one of the text books on computer networking (e.g. Tanenbaum or Kurose/Ross) and go from there. If you think it suffices for your assignment, implement basic stop-and-wait ARQ and forget about the more advanced ARQ schemes, they're a lot more work to build.

I have no experience developing Linux kernel modules, but if you go for one of the more advanced ARQ schemes I wouldn't be surprised if the implementation of the ARQ mechanism turns out to be more work than packing that as a kernel module.

Good luck with your assignment.

link|flag
vote up 1 vote down

You would need implement everything in TCP just use TCP.

Since you have to do it for homework.

You need to think about what reliable means. Also you need to decide if you need the packets in order or if out of order is ok. If out of order is ok you need to come up with an ACK, retransmit, and timeout scheme. Also you need to decide if you are going to handle packet fragmentation. If you can get away with it yo might want to limit the size of a packet to prevent fragmentation.

link|flag
This is my college assignment.. i dunno how to proceed.. – suresh Apr 13 at 17:23
vote up 1 vote down

I think asking how to make UDP reliable may be approaching the question the wrong way. UDP is unreliable more or less by definition - ipso facto. You aren't going to get anywhere making the OS-side implementation of the protocol more "reliable."

A great many applications that use UDP use it because they need the low-overhead, low-latency nature of it much more than they need the precise reliability of TCP. But almost all of these applications still need some mechanism for verifying end-to-end receipt of certain types of messages, and perhaps even reassembly and/or initial handshaking. Think about SIP in VoIP telephony, for example; TCP's latent three-way handshake and very gradual congestion control aren't really acceptable for decent call setup time or QoS, but some way of acknowledging messages is definitely needed (that's what provisional responses are for, in SIP terminology). Or various protocols in use by online games -- same basic idea.

It is very likely that the real intent of the assignment - even if is not stated clearly - is not so much to make UDP reliable as to create a simple program that uses UDP and has some primitive reliability abstraction layer within its own communication scheme, encapsulated in UDP as it were.

link|flag
vote up 0 vote down

Possibly what you may be getting stuck on is the concept 'reliable'. Do you have a clear concept of what, exactly, in technical terms, you mean by that? (Or, more relevantly I suppose, what your instructor means by it.)

When you have a precise idea of what characteristics a protocol has to have for you to call it reliable, that's likely to provide directions for you to work in. Building to that as a minimal requirement, rather than getting lost in more fully-featured real-world implementations, may also make completing your homework more feasible.

link|flag
I need to know to make module to do it...I have some idea to make udp reliable.. but dunno how to do it via module... how the default udp behaviour is changed by loadin a kernel module.... – suresh Apr 14 at 6:34
vote up 0 vote down

I'm not sure that there is a simple way to modify the behaviour of the existing UDP code via a new module.

What would be simpler is to take the UDP code (net/ipv4/udp.c) and create a new module with a new IP protocol number, and modify this code to implement your reliable UDP protocol. You will need to rename all the external symbols so the names dont clash with the existing symbols, find out where it registers the protocol number (17) and change that, and then update the Makefile to build your new module and probably put an entry in Kconfig.

Have a look in /etc/protocols to see what protocol IDs are allocated already.

Edit: It looks like that udp.c cannot be built as a module. You will need to look at some of the other protocols (such as ipip.c or ip_gre.c) to see how to make your code into a module.

link|flag
vote up 0 vote down

To be honest I wonder if this is a trick question. It takes two parties to communicate and absolutely nothing you do can ensure the sender knows (or cares) that you want it to resend a packet unless you have already established a protocol to communicate this wish. If UDP itself can do this, I strongly suspect the kernel already supports it.

What you're left with is identifying and implementing a module that implements a new protocol. There's nothing wrong with that, others have already given you suggestions, and I'm sure that you can use the UDP implementation to handle the actual packet transport. But just remember that it's an implementation of a new protocol, not just twisting UDP a little to get new functionality in it.

link|flag
vote up -1 vote down

Don't reinvent the wheel, it's already done for you. TCP.

link|flag
This is my college assignment.. i dunno how to proceed.. – suresh Apr 13 at 17:23
That's an inherent problem with CS degrees. The almost never teach you find the best solution available and want you to re-invent the wheel instead. Not writing code is often the best decision and CS students should be have this principle embedded into their brain, wish I was taught this earlier – Chris Ballance Apr 13 at 17:28
1  
@Chris, I disagree. A CS degree is about understanding the solutions, and sometimes in order to do that you need to try doing something yourself. It isn't about re-inventing the wheel, it's about understanding why the wheel is round. – Adam Jaskiewicz Apr 13 at 17:42
1  
@Adam: spot on. Reimplementing existing solutions such as this one in college has made me a much better programmer than I would have been if I hadn't. – Barend Apr 13 at 18:47
Also, "Reliable UDP" is a great way to illustrate TCP by pretend-implementing subset of TCP -- without building it from scratch – Matt Rogish Apr 13 at 18:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.