2 * Xenbus code for netif backend
4 * Copyright (C) 2005 Rusty Russell <rusty@rustcorp.com.au>
5 * Copyright (C) 2005 XenSource Ltd
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 struct xenbus_device
*dev
;
27 enum xenbus_state frontend_state
;
28 struct xenbus_watch hotplug_status_watch
;
29 u8 have_hotplug_status_watch
:1;
32 static int connect_rings(struct backend_info
*);
33 static void connect(struct backend_info
*);
34 static void backend_create_xenvif(struct backend_info
*be
);
35 static void unregister_hotplug_status_watch(struct backend_info
*be
);
37 static int netback_remove(struct xenbus_device
*dev
)
39 struct backend_info
*be
= dev_get_drvdata(&dev
->dev
);
41 unregister_hotplug_status_watch(be
);
43 kobject_uevent(&dev
->dev
.kobj
, KOBJ_OFFLINE
);
44 xenbus_rm(XBT_NIL
, dev
->nodename
, "hotplug-status");
45 xenvif_disconnect(be
->vif
);
49 dev_set_drvdata(&dev
->dev
, NULL
);
55 * Entry point to this code when a new device is created. Allocate the basic
56 * structures and switch to InitWait.
58 static int netback_probe(struct xenbus_device
*dev
,
59 const struct xenbus_device_id
*id
)
62 struct xenbus_transaction xbt
;
65 struct backend_info
*be
= kzalloc(sizeof(struct backend_info
),
68 xenbus_dev_fatal(dev
, -ENOMEM
,
69 "allocating backend structure");
74 dev_set_drvdata(&dev
->dev
, be
);
79 err
= xenbus_transaction_start(&xbt
);
81 xenbus_dev_fatal(dev
, err
, "starting transaction");
85 err
= xenbus_printf(xbt
, dev
->nodename
, "feature-sg", "%d", sg
);
87 message
= "writing feature-sg";
88 goto abort_transaction
;
91 err
= xenbus_printf(xbt
, dev
->nodename
, "feature-gso-tcpv4",
94 message
= "writing feature-gso-tcpv4";
95 goto abort_transaction
;
98 /* We support rx-copy path. */
99 err
= xenbus_printf(xbt
, dev
->nodename
,
100 "feature-rx-copy", "%d", 1);
102 message
= "writing feature-rx-copy";
103 goto abort_transaction
;
107 * We don't support rx-flip path (except old guests who don't
108 * grok this feature flag).
110 err
= xenbus_printf(xbt
, dev
->nodename
,
111 "feature-rx-flip", "%d", 0);
113 message
= "writing feature-rx-flip";
114 goto abort_transaction
;
117 err
= xenbus_transaction_end(xbt
, 0);
118 } while (err
== -EAGAIN
);
121 xenbus_dev_fatal(dev
, err
, "completing transaction");
125 err
= xenbus_switch_state(dev
, XenbusStateInitWait
);
129 /* This kicks hotplug scripts, so do it immediately. */
130 backend_create_xenvif(be
);
135 xenbus_transaction_end(xbt
, 1);
136 xenbus_dev_fatal(dev
, err
, "%s", message
);
145 * Handle the creation of the hotplug script environment. We add the script
146 * and vif variables to the environment, for the benefit of the vif-* hotplug
149 static int netback_uevent(struct xenbus_device
*xdev
,
150 struct kobj_uevent_env
*env
)
152 struct backend_info
*be
= dev_get_drvdata(&xdev
->dev
);
155 val
= xenbus_read(XBT_NIL
, xdev
->nodename
, "script", NULL
);
157 int err
= PTR_ERR(val
);
158 xenbus_dev_fatal(xdev
, err
, "reading script");
161 if (add_uevent_var(env
, "script=%s", val
)) {
171 return add_uevent_var(env
, "vif=%s", be
->vif
->dev
->name
);
175 static void backend_create_xenvif(struct backend_info
*be
)
179 struct xenbus_device
*dev
= be
->dev
;
184 err
= xenbus_scanf(XBT_NIL
, dev
->nodename
, "handle", "%li", &handle
);
186 xenbus_dev_fatal(dev
, err
, "reading handle");
190 be
->vif
= xenvif_alloc(&dev
->dev
, dev
->otherend_id
, handle
);
191 if (IS_ERR(be
->vif
)) {
192 err
= PTR_ERR(be
->vif
);
194 xenbus_dev_fatal(dev
, err
, "creating interface");
198 kobject_uevent(&dev
->dev
.kobj
, KOBJ_ONLINE
);
202 static void disconnect_backend(struct xenbus_device
*dev
)
204 struct backend_info
*be
= dev_get_drvdata(&dev
->dev
);
207 xenbus_rm(XBT_NIL
, dev
->nodename
, "hotplug-status");
208 xenvif_disconnect(be
->vif
);
214 * Callback received when the frontend's state changes.
216 static void frontend_changed(struct xenbus_device
*dev
,
217 enum xenbus_state frontend_state
)
219 struct backend_info
*be
= dev_get_drvdata(&dev
->dev
);
221 pr_debug("frontend state %s", xenbus_strstate(frontend_state
));
223 be
->frontend_state
= frontend_state
;
225 switch (frontend_state
) {
226 case XenbusStateInitialising
:
227 if (dev
->state
== XenbusStateClosed
) {
228 printk(KERN_INFO
"%s: %s: prepare for reconnect\n",
229 __func__
, dev
->nodename
);
230 xenbus_switch_state(dev
, XenbusStateInitWait
);
234 case XenbusStateInitialised
:
237 case XenbusStateConnected
:
238 if (dev
->state
== XenbusStateConnected
)
240 backend_create_xenvif(be
);
245 case XenbusStateClosing
:
247 kobject_uevent(&dev
->dev
.kobj
, KOBJ_OFFLINE
);
248 disconnect_backend(dev
);
249 xenbus_switch_state(dev
, XenbusStateClosing
);
252 case XenbusStateClosed
:
253 xenbus_switch_state(dev
, XenbusStateClosed
);
254 if (xenbus_dev_is_online(dev
))
256 /* fall through if not online */
257 case XenbusStateUnknown
:
258 device_unregister(&dev
->dev
);
262 xenbus_dev_fatal(dev
, -EINVAL
, "saw state %d at frontend",
269 static void xen_net_read_rate(struct xenbus_device
*dev
,
270 unsigned long *bytes
, unsigned long *usec
)
276 /* Default to unlimited bandwidth. */
280 ratestr
= xenbus_read(XBT_NIL
, dev
->nodename
, "rate", NULL
);
285 b
= simple_strtoul(s
, &e
, 10);
286 if ((s
== e
) || (*e
!= ','))
290 u
= simple_strtoul(s
, &e
, 10);
291 if ((s
== e
) || (*e
!= '\0'))
301 pr_warn("Failed to parse network rate limit. Traffic unlimited.\n");
305 static int xen_net_read_mac(struct xenbus_device
*dev
, u8 mac
[])
307 char *s
, *e
, *macstr
;
310 macstr
= s
= xenbus_read(XBT_NIL
, dev
->nodename
, "mac", NULL
);
312 return PTR_ERR(macstr
);
314 for (i
= 0; i
< ETH_ALEN
; i
++) {
315 mac
[i
] = simple_strtoul(s
, &e
, 16);
316 if ((s
== e
) || (*e
!= ((i
== ETH_ALEN
-1) ? '\0' : ':'))) {
327 static void unregister_hotplug_status_watch(struct backend_info
*be
)
329 if (be
->have_hotplug_status_watch
) {
330 unregister_xenbus_watch(&be
->hotplug_status_watch
);
331 kfree(be
->hotplug_status_watch
.node
);
333 be
->have_hotplug_status_watch
= 0;
336 static void hotplug_status_changed(struct xenbus_watch
*watch
,
338 unsigned int vec_size
)
340 struct backend_info
*be
= container_of(watch
,
342 hotplug_status_watch
);
346 str
= xenbus_read(XBT_NIL
, be
->dev
->nodename
, "hotplug-status", &len
);
349 if (len
== sizeof("connected")-1 && !memcmp(str
, "connected", len
)) {
350 xenbus_switch_state(be
->dev
, XenbusStateConnected
);
351 /* Not interested in this watch anymore. */
352 unregister_hotplug_status_watch(be
);
357 static void connect(struct backend_info
*be
)
360 struct xenbus_device
*dev
= be
->dev
;
362 err
= connect_rings(be
);
366 err
= xen_net_read_mac(dev
, be
->vif
->fe_dev_addr
);
368 xenbus_dev_fatal(dev
, err
, "parsing %s/mac", dev
->nodename
);
372 xen_net_read_rate(dev
, &be
->vif
->credit_bytes
,
373 &be
->vif
->credit_usec
);
374 be
->vif
->remaining_credit
= be
->vif
->credit_bytes
;
376 unregister_hotplug_status_watch(be
);
377 err
= xenbus_watch_pathfmt(dev
, &be
->hotplug_status_watch
,
378 hotplug_status_changed
,
379 "%s/%s", dev
->nodename
, "hotplug-status");
381 /* Switch now, since we can't do a watch. */
382 xenbus_switch_state(dev
, XenbusStateConnected
);
384 be
->have_hotplug_status_watch
= 1;
387 netif_wake_queue(be
->vif
->dev
);
391 static int connect_rings(struct backend_info
*be
)
393 struct xenvif
*vif
= be
->vif
;
394 struct xenbus_device
*dev
= be
->dev
;
395 unsigned long tx_ring_ref
, rx_ring_ref
;
396 unsigned int evtchn
, rx_copy
;
400 err
= xenbus_gather(XBT_NIL
, dev
->otherend
,
401 "tx-ring-ref", "%lu", &tx_ring_ref
,
402 "rx-ring-ref", "%lu", &rx_ring_ref
,
403 "event-channel", "%u", &evtchn
, NULL
);
405 xenbus_dev_fatal(dev
, err
,
406 "reading %s/ring-ref and event-channel",
411 err
= xenbus_scanf(XBT_NIL
, dev
->otherend
, "request-rx-copy", "%u",
413 if (err
== -ENOENT
) {
418 xenbus_dev_fatal(dev
, err
, "reading %s/request-rx-copy",
425 if (vif
->dev
->tx_queue_len
!= 0) {
426 if (xenbus_scanf(XBT_NIL
, dev
->otherend
,
427 "feature-rx-notify", "%d", &val
) < 0)
432 /* Must be non-zero for pfifo_fast to work. */
433 vif
->dev
->tx_queue_len
= 1;
436 if (xenbus_scanf(XBT_NIL
, dev
->otherend
, "feature-sg",
441 if (xenbus_scanf(XBT_NIL
, dev
->otherend
, "feature-gso-tcpv4",
446 if (xenbus_scanf(XBT_NIL
, dev
->otherend
, "feature-gso-tcpv4-prefix",
449 vif
->gso_prefix
= !!val
;
451 if (xenbus_scanf(XBT_NIL
, dev
->otherend
, "feature-no-csum-offload",
456 /* Map the shared frame, irq etc. */
457 err
= xenvif_connect(vif
, tx_ring_ref
, rx_ring_ref
, evtchn
);
459 xenbus_dev_fatal(dev
, err
,
460 "mapping shared-frames %lu/%lu port %u",
461 tx_ring_ref
, rx_ring_ref
, evtchn
);
468 /* ** Driver Registration ** */
471 static const struct xenbus_device_id netback_ids
[] = {
477 static struct xenbus_driver netback
= {
479 .owner
= THIS_MODULE
,
481 .probe
= netback_probe
,
482 .remove
= netback_remove
,
483 .uevent
= netback_uevent
,
484 .otherend_changed
= frontend_changed
,
487 int xenvif_xenbus_init(void)
489 return xenbus_register_backend(&netback
);