2 * user-mode-linux networking multicast transport
3 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4 * Copyright (C) 2001 by Harald Welte <laforge@gnumonks.org>
6 * based on the existing uml-networking code, which is
7 * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) and
8 * James Leu (jleu@mindspring.net).
9 * Copyright (C) 2001 by various other people who didn't put their name here.
11 * Licensed under the GPL.
17 #include <netinet/in.h>
18 #include "kern_constants.h"
21 #include "um_malloc.h"
24 static struct sockaddr_in *new_addr(char *addr, unsigned short port)
26 struct sockaddr_in *sin;
28 sin = uml_kmalloc(sizeof(struct sockaddr_in), UM_GFP_KERNEL);
30 printk(UM_KERN_ERR "new_addr: allocation of sockaddr_in "
34 sin->sin_family = AF_INET;
35 sin->sin_addr.s_addr = in_aton(addr);
36 sin->sin_port = htons(port);
40 static int mcast_user_init(void *data, void *dev)
42 struct mcast_data *pri = data;
44 pri->mcast_addr = new_addr(pri->addr, pri->port);
49 static void mcast_remove(void *data)
51 struct mcast_data *pri = data;
53 kfree(pri->mcast_addr);
54 pri->mcast_addr = NULL;
57 static int mcast_open(void *data)
59 struct mcast_data *pri = data;
60 struct sockaddr_in *sin = pri->mcast_addr;
62 int fd, yes = 1, err = -EINVAL;
65 if ((sin->sin_addr.s_addr == 0) || (sin->sin_port == 0))
68 fd = socket(AF_INET, SOCK_DGRAM, 0);
72 printk(UM_KERN_ERR "mcast_open : data socket failed, "
73 "errno = %d\n", errno);
77 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) < 0) {
79 printk(UM_KERN_ERR "mcast_open: SO_REUSEADDR failed, "
80 "errno = %d\n", errno);
84 /* set ttl according to config */
85 if (setsockopt(fd, SOL_IP, IP_MULTICAST_TTL, &pri->ttl,
86 sizeof(pri->ttl)) < 0) {
88 printk(UM_KERN_ERR "mcast_open: IP_MULTICAST_TTL failed, "
89 "error = %d\n", errno);
93 /* set LOOP, so data does get fed back to local sockets */
94 if (setsockopt(fd, SOL_IP, IP_MULTICAST_LOOP, &yes, sizeof(yes)) < 0) {
96 printk(UM_KERN_ERR "mcast_open: IP_MULTICAST_LOOP failed, "
97 "error = %d\n", errno);
101 /* bind socket to mcast address */
102 if (bind(fd, (struct sockaddr *) sin, sizeof(*sin)) < 0) {
104 printk(UM_KERN_ERR "mcast_open : data bind failed, "
105 "errno = %d\n", errno);
109 /* subscribe to the multicast group */
110 mreq.imr_multiaddr.s_addr = sin->sin_addr.s_addr;
111 mreq.imr_interface.s_addr = 0;
112 if (setsockopt(fd, SOL_IP, IP_ADD_MEMBERSHIP,
113 &mreq, sizeof(mreq)) < 0) {
115 printk(UM_KERN_ERR "mcast_open: IP_ADD_MEMBERSHIP failed, "
116 "error = %d\n", errno);
117 printk(UM_KERN_ERR "There appears not to be a multicast-"
118 "capable network interface on the host.\n");
119 printk(UM_KERN_ERR "eth0 should be configured in order to use "
120 "the multicast transport.\n");
132 static void mcast_close(int fd, void *data)
135 struct mcast_data *pri = data;
136 struct sockaddr_in *sin = pri->mcast_addr;
138 mreq.imr_multiaddr.s_addr = sin->sin_addr.s_addr;
139 mreq.imr_interface.s_addr = 0;
140 if (setsockopt(fd, SOL_IP, IP_DROP_MEMBERSHIP,
141 &mreq, sizeof(mreq)) < 0) {
142 printk(UM_KERN_ERR "mcast_open: IP_DROP_MEMBERSHIP failed, "
143 "error = %d\n", errno);
149 int mcast_user_write(int fd, void *buf, int len, struct mcast_data *pri)
151 struct sockaddr_in *data_addr = pri->mcast_addr;
153 return net_sendto(fd, buf, len, data_addr, sizeof(*data_addr));
156 const struct net_user_info mcast_user_info = {
157 .init = mcast_user_init,
159 .close = mcast_close,
160 .remove = mcast_remove,
162 .delete_address = NULL,
163 .mtu = ETH_MAX_PACKET,
164 .max_packet = ETH_MAX_PACKET + ETH_HEADER_OTHER,