Make "controller nl:0" work again, by fixing a layering violation.
[sliver-openvswitch.git] / datapath / datapath.c
1 /*
2  * Distributed under the terms of the GNU GPL version 2.
3  * Copyright (c) 2007, 2008 The Board of Trustees of The Leland 
4  * Stanford Junior University
5  */
6
7 /* Functions for managing the dp interface/device. */
8
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/if_arp.h>
12 #include <linux/if_bridge.h>
13 #include <linux/if_vlan.h>
14 #include <linux/in.h>
15 #include <net/genetlink.h>
16 #include <linux/ip.h>
17 #include <linux/delay.h>
18 #include <linux/etherdevice.h>
19 #include <linux/kernel.h>
20 #include <linux/kthread.h>
21 #include <linux/mutex.h>
22 #include <linux/rtnetlink.h>
23 #include <linux/rcupdate.h>
24 #include <linux/version.h>
25 #include <linux/ethtool.h>
26 #include <linux/random.h>
27 #include <asm/system.h>
28 #include <linux/netfilter_bridge.h>
29 #include <linux/inetdevice.h>
30 #include <linux/list.h>
31 #include <linux/rculist.h>
32 #include <linux/workqueue.h>
33
34 #include "openflow-netlink.h"
35 #include "datapath.h"
36 #include "table.h"
37 #include "chain.h"
38 #include "dp_dev.h"
39 #include "forward.h"
40 #include "flow.h"
41
42 #include "compat.h"
43
44
45 /* Strings to describe the manufacturer, hardware, and software.  This data 
46  * is queriable through the switch description stats message. */
47 static char mfr_desc[DESC_STR_LEN] = "Nicira Networks";
48 static char hw_desc[DESC_STR_LEN] = "Reference Linux Kernel Module";
49 static char sw_desc[DESC_STR_LEN] = VERSION;
50 static char serial_num[SERIAL_NUM_LEN] = "None";
51
52 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
53 module_param_string(mfr_desc, mfr_desc, sizeof mfr_desc, 0444);
54 module_param_string(hw_desc, hw_desc, sizeof hw_desc, 0444);
55 module_param_string(sw_desc, sw_desc, sizeof sw_desc, 0444);
56 module_param_string(serial_num, serial_num, sizeof serial_num, 0444);
57 #else
58 MODULE_PARM(mfr_desc, "s");
59 MODULE_PARM(hw_desc, "s");
60 MODULE_PARM(sw_desc, "s");
61 MODULE_PARM(serial_num, "s");
62 #endif
63
64
65 /* Number of milliseconds between runs of the maintenance thread. */
66 #define MAINT_SLEEP_MSECS 1000
67
68 #define UINT32_MAX                        4294967295U
69 #define UINT16_MAX                        65535
70 #define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
71
72 static struct genl_family dp_genl_family;
73 static struct genl_multicast_group mc_group;
74
75 /* It's hard to imagine wanting more than one datapath, but... */
76 #define DP_MAX 32
77
78 /* Datapaths.  Protected on the read side by rcu_read_lock, on the write side
79  * by dp_mutex.  dp_mutex is almost completely redundant with genl_mutex
80  * maintained by the Generic Netlink code, but the timeout path needs mutual
81  * exclusion too.
82  *
83  * It is safe to access the datapath and net_bridge_port structures with just
84  * dp_mutex.
85  */
86 static struct datapath *dps[DP_MAX];
87 DEFINE_MUTEX(dp_mutex);
88 EXPORT_SYMBOL(dp_mutex);
89
90 static int dp_maint_func(void *data);
91 static int update_port_status(struct net_bridge_port *p);
92 static int send_port_status(struct net_bridge_port *p, uint8_t status);
93 static int dp_genl_openflow_done(struct netlink_callback *);
94 static struct net_bridge_port *new_nbp(struct datapath *,
95                                        struct net_device *, int port_no);
96 static int del_switch_port(struct net_bridge_port *);
97
98 /* nla_shrink - reduce amount of space reserved by nla_reserve
99  * @skb: socket buffer from which to recover room
100  * @nla: netlink attribute to adjust
101  * @len: new length of attribute payload
102  *
103  * Reduces amount of space reserved by a call to nla_reserve.
104  *
105  * No other attributes may be added between calling nla_reserve and this
106  * function, since it will create a hole in the message.
107  */
108 void nla_shrink(struct sk_buff *skb, struct nlattr *nla, int len)
109 {
110         int delta = nla_total_size(len) - nla_total_size(nla_len(nla));
111         BUG_ON(delta > 0);
112         skb->tail += delta;
113         skb->len  += delta;
114         nla->nla_len = nla_attr_size(len);
115 }
116
117 /* Puts a set of openflow headers for a message of the given 'type' into 'skb'.
118  * If 'sender' is nonnull, then it is used as the message's destination.  'dp'
119  * must specify the datapath to use.
120  *
121  * '*max_openflow_len' receives the maximum number of bytes that are available
122  * for the embedded OpenFlow message.  The caller must call
123  * resize_openflow_skb() to set the actual size of the message to this number
124  * of bytes or less.
125  *
126  * Returns the openflow header if successful, otherwise (if 'skb' is too small)
127  * an error code. */
128 static void *
129 put_openflow_headers(struct datapath *dp, struct sk_buff *skb, uint8_t type,
130                      const struct sender *sender, int *max_openflow_len)
131 {
132         struct ofp_header *oh;
133         struct nlattr *attr;
134         int openflow_len;
135
136         /* Assemble the Generic Netlink wrapper. */
137         if (!genlmsg_put(skb,
138                          sender ? sender->pid : 0,
139                          sender ? sender->seq : 0,
140                          &dp_genl_family, 0, DP_GENL_C_OPENFLOW))
141                 return ERR_PTR(-ENOBUFS);
142         if (nla_put_u32(skb, DP_GENL_A_DP_IDX, dp->dp_idx) < 0)
143                 return ERR_PTR(-ENOBUFS);
144         openflow_len = (skb_tailroom(skb) - NLA_HDRLEN) & ~(NLA_ALIGNTO - 1);
145         if (openflow_len < sizeof *oh)
146                 return ERR_PTR(-ENOBUFS);
147         *max_openflow_len = openflow_len;
148         attr = nla_reserve(skb, DP_GENL_A_OPENFLOW, openflow_len);
149         BUG_ON(!attr);
150
151         /* Fill in the header.  The caller is responsible for the length. */
152         oh = nla_data(attr);
153         oh->version = OFP_VERSION;
154         oh->type = type;
155         oh->xid = sender ? sender->xid : 0;
156
157         return oh;
158 }
159
160 /* Resizes OpenFlow header 'oh', which must be at the tail end of 'skb', to new
161  * length 'new_length' (in bytes), adjusting pointers and size values as
162  * necessary. */
163 static void
164 resize_openflow_skb(struct sk_buff *skb,
165                     struct ofp_header *oh, size_t new_length)
166 {
167         struct nlattr *attr = ((void *) oh) - NLA_HDRLEN;
168         nla_shrink(skb, attr, new_length);
169         oh->length = htons(new_length);
170         nlmsg_end(skb, (struct nlmsghdr *) skb->data);
171 }
172
173 /* Allocates a new skb to contain an OpenFlow message 'openflow_len' bytes in
174  * length.  Returns a null pointer if memory is unavailable, otherwise returns
175  * the OpenFlow header and stores a pointer to the skb in '*pskb'. 
176  *
177  * 'type' is the OpenFlow message type.  If 'sender' is nonnull, then it is
178  * used as the message's destination.  'dp' must specify the datapath to
179  * use.  */
180 static void *
181 alloc_openflow_skb(struct datapath *dp, size_t openflow_len, uint8_t type,
182                    const struct sender *sender, struct sk_buff **pskb) 
183 {
184         struct ofp_header *oh;
185         size_t genl_len;
186         struct sk_buff *skb;
187         int max_openflow_len;
188
189         if ((openflow_len + sizeof(struct ofp_header)) > UINT16_MAX) {
190                 if (net_ratelimit())
191                         printk("alloc_openflow_skb: openflow message too large: %zu\n", 
192                                         openflow_len);
193                 return NULL;
194         }
195
196         genl_len = nlmsg_total_size(GENL_HDRLEN + dp_genl_family.hdrsize);
197         genl_len += nla_total_size(sizeof(uint32_t)); /* DP_GENL_A_DP_IDX */
198         genl_len += nla_total_size(openflow_len);    /* DP_GENL_A_OPENFLOW */
199         skb = *pskb = genlmsg_new(genl_len, GFP_ATOMIC);
200         if (!skb) {
201                 if (net_ratelimit())
202                         printk("alloc_openflow_skb: genlmsg_new failed\n");
203                 return NULL;
204         }
205
206         oh = put_openflow_headers(dp, skb, type, sender, &max_openflow_len);
207         BUG_ON(!oh || IS_ERR(oh));
208         resize_openflow_skb(skb, oh, openflow_len);
209
210         return oh;
211 }
212
213 /* Sends 'skb' to 'sender' if it is nonnull, otherwise multicasts 'skb' to all
214  * listeners. */
215 static int
216 send_openflow_skb(struct sk_buff *skb, const struct sender *sender) 
217 {
218         return (sender
219                 ? genlmsg_unicast(skb, sender->pid)
220                 : genlmsg_multicast(skb, 0, mc_group.id, GFP_ATOMIC));
221 }
222
223 /* Generates a unique datapath id.  It incorporates the datapath index
224  * and a hardware address, if available.  If not, it generates a random
225  * one.
226  */
227 static 
228 uint64_t gen_datapath_id(uint16_t dp_idx)
229 {
230         uint64_t id;
231         int i;
232         struct net_device *dev;
233
234         /* The top 16 bits are used to identify the datapath.  The lower 48 bits
235          * use an interface address.  */
236         id = (uint64_t)dp_idx << 48;
237         if ((dev = dev_get_by_name(&init_net, "ctl0")) 
238                         || (dev = dev_get_by_name(&init_net, "eth0"))) {
239                 for (i=0; i<ETH_ALEN; i++) {
240                         id |= (uint64_t)dev->dev_addr[i] << (8*(ETH_ALEN-1 - i));
241                 }
242                 dev_put(dev);
243         } else {
244                 /* Randomly choose the lower 48 bits if we cannot find an
245                  * address and mark the most significant bit to indicate that
246                  * this was randomly generated. */
247                 uint8_t rand[ETH_ALEN];
248                 get_random_bytes(rand, ETH_ALEN);
249                 id |= (uint64_t)1 << 63;
250                 for (i=0; i<ETH_ALEN; i++) {
251                         id |= (uint64_t)rand[i] << (8*(ETH_ALEN-1 - i));
252                 }
253         }
254
255         return id;
256 }
257
258 /* Creates a new datapath numbered 'dp_idx'.  Returns 0 for success or a
259  * negative error code. */
260 static int new_dp(int dp_idx)
261 {
262         struct datapath *dp;
263         int err;
264
265         if (dp_idx < 0 || dp_idx >= DP_MAX)
266                 return -EINVAL;
267
268         if (!try_module_get(THIS_MODULE))
269                 return -ENODEV;
270
271         /* Exit early if a datapath with that number already exists. */
272         if (dps[dp_idx]) {
273                 err = -EEXIST;
274                 goto err_unlock;
275         }
276
277         err = -ENOMEM;
278         dp = kzalloc(sizeof *dp, GFP_KERNEL);
279         if (dp == NULL)
280                 goto err_unlock;
281
282         /* Setup our "of" device */
283         err = dp_dev_setup(dp);
284         if (err)
285                 goto err_free_dp;
286
287         dp->dp_idx = dp_idx;
288         dp->id = gen_datapath_id(dp_idx);
289         dp->chain = chain_create(dp);
290         if (dp->chain == NULL)
291                 goto err_destroy_dp_dev;
292         INIT_LIST_HEAD(&dp->port_list);
293
294         dp->local_port = new_nbp(dp, dp->netdev, OFPP_LOCAL);
295         if (IS_ERR(dp->local_port)) {
296                 err = PTR_ERR(dp->local_port);
297                 goto err_destroy_local_port;
298         }
299
300         dp->flags = 0;
301         dp->miss_send_len = OFP_DEFAULT_MISS_SEND_LEN;
302
303         dp->dp_task = kthread_run(dp_maint_func, dp, "dp%d", dp_idx);
304         if (IS_ERR(dp->dp_task))
305                 goto err_destroy_chain;
306
307         dps[dp_idx] = dp;
308
309         return 0;
310
311 err_destroy_local_port:
312         del_switch_port(dp->local_port);
313 err_destroy_chain:
314         chain_destroy(dp->chain);
315 err_destroy_dp_dev:
316         dp_dev_destroy(dp);
317 err_free_dp:
318         kfree(dp);
319 err_unlock:
320         module_put(THIS_MODULE);
321                 return err;
322 }
323
324 /* Find and return a free port number under 'dp'. */
325 static int find_portno(struct datapath *dp)
326 {
327         int i;
328         for (i = 0; i < OFPP_MAX; i++)
329                 if (dp->ports[i] == NULL)
330                         return i;
331         return -EXFULL;
332 }
333
334 static struct net_bridge_port *new_nbp(struct datapath *dp,
335                                        struct net_device *dev, int port_no)
336 {
337         struct net_bridge_port *p;
338
339         if (dev->br_port != NULL)
340                 return ERR_PTR(-EBUSY);
341
342         p = kzalloc(sizeof(*p), GFP_KERNEL);
343         if (p == NULL)
344                 return ERR_PTR(-ENOMEM);
345
346         rtnl_lock();
347         dev_set_promiscuity(dev, 1);
348         rtnl_unlock();
349         dev_hold(dev);
350         p->dp = dp;
351         p->dev = dev;
352         p->port_no = port_no;
353         spin_lock_init(&p->lock);
354         INIT_WORK(&p->port_task, NULL);
355         if (port_no != OFPP_LOCAL)
356                 rcu_assign_pointer(dev->br_port, p);
357         if (port_no < OFPP_MAX)
358                 rcu_assign_pointer(dp->ports[port_no], p); 
359         list_add_rcu(&p->node, &dp->port_list);
360
361         return p;
362 }
363
364 int add_switch_port(struct datapath *dp, struct net_device *dev)
365 {
366         struct net_bridge_port *p;
367         int port_no;
368
369         if (dev->flags & IFF_LOOPBACK || dev->type != ARPHRD_ETHER
370             || is_dp_dev(dev))
371                 return -EINVAL;
372
373         port_no = find_portno(dp);
374         if (port_no < 0)
375                 return port_no;
376
377         p = new_nbp(dp, dev, port_no);
378         if (IS_ERR(p))
379                 return PTR_ERR(p);
380
381         update_port_status(p);
382
383         /* Notify the ctlpath that this port has been added */
384         send_port_status(p, OFPPR_ADD);
385
386         return 0;
387 }
388
389 /* Delete 'p' from switch. */
390 static int del_switch_port(struct net_bridge_port *p)
391 {
392         /* First drop references to device. */
393         cancel_work_sync(&p->port_task);
394         rtnl_lock();
395         dev_set_promiscuity(p->dev, -1);
396         rtnl_unlock();
397         list_del_rcu(&p->node);
398         if (p->port_no != OFPP_LOCAL)
399                 rcu_assign_pointer(p->dp->ports[p->port_no], NULL);
400         rcu_assign_pointer(p->dev->br_port, NULL);
401
402         /* Then wait until no one is still using it, and destroy it. */
403         synchronize_rcu();
404
405         /* Notify the ctlpath that this port no longer exists */
406         send_port_status(p, OFPPR_DELETE);
407
408         dev_put(p->dev);
409         kfree(p);
410
411         return 0;
412 }
413
414 static void del_dp(struct datapath *dp)
415 {
416         struct net_bridge_port *p, *n;
417
418         kthread_stop(dp->dp_task);
419
420         /* Drop references to DP. */
421         list_for_each_entry_safe (p, n, &dp->port_list, node)
422                 del_switch_port(p);
423         rcu_assign_pointer(dps[dp->dp_idx], NULL);
424
425         /* Kill off local_port dev references from buffered packets that have
426          * associated dst entries. */
427         synchronize_rcu();
428         fwd_discard_all();
429
430         /* Destroy dp->netdev.  (Must follow deleting switch ports since
431          * dp->local_port has a reference to it.) */
432         dp_dev_destroy(dp);
433
434         /* Wait until no longer in use, then destroy it. */
435         synchronize_rcu();
436         chain_destroy(dp->chain);
437         kfree(dp);
438         module_put(THIS_MODULE);
439 }
440
441 static int dp_maint_func(void *data)
442 {
443         struct datapath *dp = (struct datapath *) data;
444
445         while (!kthread_should_stop()) {
446                 struct net_bridge_port *p;
447
448                 /* Check if port status has changed */
449                 rcu_read_lock();
450                 list_for_each_entry_rcu (p, &dp->port_list, node) 
451                         if (update_port_status(p)) 
452                                 send_port_status(p, OFPPR_MOD);
453                 rcu_read_unlock();
454
455                 /* Timeout old entries */
456                 chain_timeout(dp->chain);
457                 msleep_interruptible(MAINT_SLEEP_MSECS);
458         }
459                 
460         return 0;
461 }
462
463 static void
464 do_port_input(struct net_bridge_port *p, struct sk_buff *skb) 
465 {
466         /* Push the Ethernet header back on. */
467         skb_push(skb, ETH_HLEN);
468         fwd_port_input(p->dp->chain, skb, p);
469 }
470
471 /*
472  * Used as br_handle_frame_hook.  (Cannot run bridge at the same time, even on
473  * different set of devices!)
474  */
475 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22)
476 /* Called with rcu_read_lock. */
477 static struct sk_buff *dp_frame_hook(struct net_bridge_port *p,
478                                          struct sk_buff *skb)
479 {
480         do_port_input(p, skb);
481         return NULL;
482 }
483 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
484 static int dp_frame_hook(struct net_bridge_port *p, struct sk_buff **pskb)
485 {
486         do_port_input(p, *pskb);
487         return 1;
488 }
489 #else
490 /* NB: This has only been tested on 2.4.35 */
491 static void dp_frame_hook(struct sk_buff *skb)
492 {
493         struct net_bridge_port *p = skb->dev->br_port;
494         if (p) {
495                 rcu_read_lock();
496                 do_port_input(p, skb);
497                 rcu_read_unlock();
498         } else
499                 kfree_skb(skb);
500 }
501 #endif
502
503 /* Forwarding output path.
504  * Based on net/bridge/br_forward.c. */
505
506 static inline unsigned packet_length(const struct sk_buff *skb)
507 {
508         int length = skb->len - ETH_HLEN;
509         if (skb->protocol == htons(ETH_P_8021Q))
510                 length -= VLAN_HLEN;
511         return length;
512 }
513
514 /* Send packets out all the ports except the originating one.  If the
515  * "flood" argument is set, only send along the minimum spanning tree.
516  */
517 static int
518 output_all(struct datapath *dp, struct sk_buff *skb, int flood)
519 {
520         u32 disable = flood ? OFPPFL_NO_FLOOD : 0;
521         struct net_bridge_port *p;
522         int prev_port = -1;
523
524         list_for_each_entry_rcu (p, &dp->port_list, node) {
525                 if (skb->dev == p->dev || p->flags & disable)
526                         continue;
527                 if (prev_port != -1) {
528                         struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
529                         if (!clone) {
530                                 kfree_skb(skb);
531                                 return -ENOMEM;
532                         }
533                         dp_output_port(dp, clone, prev_port, 0); 
534                 }
535                 prev_port = p->port_no;
536         }
537         if (prev_port != -1)
538                 dp_output_port(dp, skb, prev_port, 0);
539         else
540                 kfree_skb(skb);
541
542         return 0;
543 }
544
545 /* Marks 'skb' as having originated from 'in_port' in 'dp'.
546    FIXME: how are devices reference counted? */
547 int dp_set_origin(struct datapath *dp, uint16_t in_port,
548                            struct sk_buff *skb)
549 {
550         struct net_bridge_port *p = (in_port < OFPP_MAX ? dp->ports[in_port]
551                                      : in_port == OFPP_LOCAL ? dp->local_port
552                                      : NULL);
553         if (p) {
554                 skb->dev = p->dev;
555                 return 0;
556         }
557         return -ENOENT;
558 }
559
560 static int xmit_skb(struct sk_buff *skb)
561 {
562         int len = skb->len;
563         if (packet_length(skb) > skb->dev->mtu) {
564                 printk("dropped over-mtu packet: %d > %d\n",
565                            packet_length(skb), skb->dev->mtu);
566                 kfree_skb(skb);
567                 return -E2BIG;
568         }
569
570         dev_queue_xmit(skb);
571
572         return len;
573 }
574
575 /* Takes ownership of 'skb' and transmits it to 'out_port' on 'dp'.
576  */
577 int dp_output_port(struct datapath *dp, struct sk_buff *skb, int out_port,
578                    int ignore_no_fwd)
579 {
580         BUG_ON(!skb);
581         switch (out_port){
582         case OFPP_IN_PORT:
583                 /* Send it out the port it came in on, which is already set in
584                  * the skb. */
585                 if (!skb->dev) {
586                         if (net_ratelimit())
587                                 printk("skb device not set forwarding to in_port\n");
588                         kfree(skb);
589                         return -ESRCH;
590                 }
591                 return xmit_skb(skb);
592                 
593         case OFPP_TABLE: {
594                 int retval = run_flow_through_tables(dp->chain, skb,
595                                                      skb->dev->br_port);
596                 if (retval)
597                         kfree_skb(skb);
598                 return retval;
599         }
600
601         case OFPP_FLOOD:
602                 return output_all(dp, skb, 1);
603
604         case OFPP_ALL:
605                 return output_all(dp, skb, 0);
606
607         case OFPP_CONTROLLER:
608                 return dp_output_control(dp, skb, fwd_save_skb(skb), 0,
609                                                   OFPR_ACTION);
610
611         case OFPP_LOCAL: {
612                 struct net_device *dev = dp->netdev;
613                 return dev ? dp_dev_recv(dev, skb) : -ESRCH;
614         }
615
616         case 0 ... OFPP_MAX-1: {
617                 struct net_bridge_port *p = dp->ports[out_port];
618                 if (p == NULL)
619                         goto bad_port;
620                 if (p->dev == skb->dev) {
621                         /* To send to the input port, must use OFPP_IN_PORT */
622                         kfree_skb(skb);
623                         if (net_ratelimit())
624                                 printk("can't directly forward to input port\n");
625                         return -EINVAL;
626                 }
627                 if (p->flags & OFPPFL_NO_FWD && !ignore_no_fwd) {
628                         kfree_skb(skb);
629                         return 0;
630                 }
631                 skb->dev = p->dev; 
632                 return xmit_skb(skb);
633         }
634
635         default:
636                 goto bad_port;
637         }
638
639 bad_port:
640         kfree_skb(skb);
641         if (net_ratelimit())
642                 printk("can't forward to bad port %d\n", out_port);
643         return -ENOENT;
644 }
645
646 /* Takes ownership of 'skb' and transmits it to 'dp''s control path.  If
647  * 'buffer_id' != -1, then only the first 64 bytes of 'skb' are sent;
648  * otherwise, all of 'skb' is sent.  'reason' indicates why 'skb' is being
649  * sent. 'max_len' sets the maximum number of bytes that the caller
650  * wants to be sent; a value of 0 indicates the entire packet should be
651  * sent. */
652 int
653 dp_output_control(struct datapath *dp, struct sk_buff *skb,
654                            uint32_t buffer_id, size_t max_len, int reason)
655 {
656         /* FIXME?  Can we avoid creating a new skbuff in the case where we
657          * forward the whole packet? */
658         struct sk_buff *f_skb;
659         struct ofp_packet_in *opi;
660         struct net_bridge_port *p;
661         size_t fwd_len, opi_len;
662         int err;
663
664         fwd_len = skb->len;
665         if ((buffer_id != (uint32_t) -1) && max_len)
666                 fwd_len = min(fwd_len, max_len);
667
668         opi_len = offsetof(struct ofp_packet_in, data) + fwd_len;
669         opi = alloc_openflow_skb(dp, opi_len, OFPT_PACKET_IN, NULL, &f_skb);
670         if (!opi) {
671                 err = -ENOMEM;
672                 goto out;
673         }
674         opi->buffer_id      = htonl(buffer_id);
675         opi->total_len      = htons(skb->len);
676         p = skb->dev->br_port;
677         opi->in_port        = htons(p ? p->port_no : OFPP_LOCAL);
678         opi->reason         = reason;
679         opi->pad            = 0;
680         memcpy(opi->data, skb_mac_header(skb), fwd_len);
681         err = send_openflow_skb(f_skb, NULL);
682
683 out:
684         kfree_skb(skb);
685         return err;
686 }
687
688 static void fill_port_desc(struct net_bridge_port *p, struct ofp_phy_port *desc)
689 {
690         unsigned long flags;
691         desc->port_no = htons(p->port_no);
692         strncpy(desc->name, p->dev->name, OFP_MAX_PORT_NAME_LEN);
693         desc->name[OFP_MAX_PORT_NAME_LEN-1] = '\0';
694         memcpy(desc->hw_addr, p->dev->dev_addr, ETH_ALEN);
695         desc->flags = 0;
696         desc->features = 0;
697         desc->speed = 0;
698
699         spin_lock_irqsave(&p->lock, flags);
700         desc->flags = htonl(p->flags | p->status);
701         spin_unlock_irqrestore(&p->lock, flags);
702
703 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,24)
704         if (p->dev->ethtool_ops && p->dev->ethtool_ops->get_settings) {
705                 struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET };
706
707                 if (!p->dev->ethtool_ops->get_settings(p->dev, &ecmd)) {
708                         if (ecmd.supported & SUPPORTED_10baseT_Half) 
709                                 desc->features |= OFPPF_10MB_HD;
710                         if (ecmd.supported & SUPPORTED_10baseT_Full)
711                                 desc->features |= OFPPF_10MB_FD;
712                         if (ecmd.supported & SUPPORTED_100baseT_Half) 
713                                 desc->features |= OFPPF_100MB_HD;
714                         if (ecmd.supported & SUPPORTED_100baseT_Full)
715                                 desc->features |= OFPPF_100MB_FD;
716                         if (ecmd.supported & SUPPORTED_1000baseT_Half)
717                                 desc->features |= OFPPF_1GB_HD;
718                         if (ecmd.supported & SUPPORTED_1000baseT_Full)
719                                 desc->features |= OFPPF_1GB_FD;
720                         /* 10Gbps half-duplex doesn't exist... */
721                         if (ecmd.supported & SUPPORTED_10000baseT_Full)
722                                 desc->features |= OFPPF_10GB_FD;
723
724                         desc->speed = htonl(ecmd.speed);
725                 }
726         }
727 #endif
728         desc->features = htonl(desc->features);
729 }
730
731 static int 
732 fill_features_reply(struct datapath *dp, struct ofp_switch_features *ofr)
733 {
734         struct net_bridge_port *p;
735         int port_count = 0;
736
737         ofr->datapath_id  = cpu_to_be64(dp->id); 
738
739         ofr->n_buffers    = htonl(N_PKT_BUFFERS);
740         ofr->n_tables     = dp->chain->n_tables;
741         ofr->capabilities = htonl(OFP_SUPPORTED_CAPABILITIES);
742         ofr->actions      = htonl(OFP_SUPPORTED_ACTIONS);
743         memset(ofr->pad, 0, sizeof ofr->pad);
744
745         list_for_each_entry_rcu (p, &dp->port_list, node) {
746                 fill_port_desc(p, &ofr->ports[port_count]);
747                 port_count++;
748         }
749
750         return port_count;
751 }
752
753 int
754 dp_send_features_reply(struct datapath *dp, const struct sender *sender)
755 {
756         struct sk_buff *skb;
757         struct ofp_switch_features *ofr;
758         size_t ofr_len, port_max_len;
759         int port_count;
760
761         /* Overallocate. */
762         port_max_len = sizeof(struct ofp_phy_port) * OFPP_MAX;
763         ofr = alloc_openflow_skb(dp, sizeof(*ofr) + port_max_len,
764                                  OFPT_FEATURES_REPLY, sender, &skb);
765         if (!ofr)
766                 return -ENOMEM;
767
768         /* Fill. */
769         port_count = fill_features_reply(dp, ofr);
770
771         /* Shrink to fit. */
772         ofr_len = sizeof(*ofr) + (sizeof(struct ofp_phy_port) * port_count);
773         resize_openflow_skb(skb, &ofr->header, ofr_len);
774         return send_openflow_skb(skb, sender);
775 }
776
777 int
778 dp_send_config_reply(struct datapath *dp, const struct sender *sender)
779 {
780         struct sk_buff *skb;
781         struct ofp_switch_config *osc;
782
783         osc = alloc_openflow_skb(dp, sizeof *osc, OFPT_GET_CONFIG_REPLY, sender,
784                                  &skb);
785         if (!osc)
786                 return -ENOMEM;
787
788         osc->flags = htons(dp->flags);
789         osc->miss_send_len = htons(dp->miss_send_len);
790
791         return send_openflow_skb(skb, sender);
792 }
793
794 int
795 dp_send_hello(struct datapath *dp, const struct sender *sender,
796               const struct ofp_header *request)
797 {
798         if (request->version < OFP_VERSION) {
799                 char err[64];
800                 sprintf(err, "Only version 0x%02x supported", OFP_VERSION);
801                 dp_send_error_msg(dp, sender, OFPET_HELLO_FAILED,
802                                   OFPHFC_INCOMPATIBLE, err, strlen(err));
803                 return -EINVAL;
804         } else {
805                 struct sk_buff *skb;
806                 struct ofp_header *reply;
807
808                 reply = alloc_openflow_skb(dp, sizeof *reply,
809                                            OFPT_HELLO, sender, &skb);
810                 if (!reply)
811                         return -ENOMEM;
812
813                 return send_openflow_skb(skb, sender);
814         }
815 }
816
817 /* Callback function for a workqueue to disable an interface */
818 static void
819 down_port_cb(struct work_struct *work)
820 {
821         struct net_bridge_port *p = container_of(work, struct net_bridge_port, 
822                         port_task);
823
824         rtnl_lock();
825         if (dev_change_flags(p->dev, p->dev->flags & ~IFF_UP) < 0)
826                 if (net_ratelimit())
827                         printk("problem bringing up port %s\n", p->dev->name);
828         rtnl_unlock();
829         p->status |= OFPPFL_PORT_DOWN;
830 }
831
832 /* Callback function for a workqueue to enable an interface */
833 static void
834 up_port_cb(struct work_struct *work)
835 {
836         struct net_bridge_port *p = container_of(work, struct net_bridge_port, 
837                         port_task);
838
839         rtnl_lock();
840         if (dev_change_flags(p->dev, p->dev->flags | IFF_UP) < 0)
841                 if (net_ratelimit())
842                         printk("problem bringing down port %s\n", p->dev->name);
843         rtnl_unlock();
844         p->status &= ~OFPPFL_PORT_DOWN;
845 }
846
847 int
848 dp_update_port_flags(struct datapath *dp, const struct ofp_port_mod *opm)
849 {
850         unsigned long int flags;
851         const struct ofp_phy_port *opp = &opm->desc;
852         int port_no = ntohs(opp->port_no);
853         struct net_bridge_port *p = (port_no < OFPP_MAX ? dp->ports[port_no]
854                                      : port_no == OFPP_LOCAL ? dp->local_port
855                                      : NULL);
856         uint32_t flag_mask;
857
858         /* Make sure the port id hasn't changed since this was sent */
859         if (!p || memcmp(opp->hw_addr, p->dev->dev_addr, ETH_ALEN))
860                 return -1;
861
862         spin_lock_irqsave(&p->lock, flags);
863         flag_mask = ntohl(opm->mask) & PORT_FLAG_BITS;
864         if (flag_mask) {
865                 p->flags &= ~flag_mask;
866                 p->flags |= ntohl(opp->flags) & flag_mask;
867         }
868
869         /* Modifying the status of an interface requires taking a lock
870          * that cannot be done from here.  For this reason, we use a shared 
871          * workqueue, which will cause it to be executed from a safer 
872          * context. */
873         if (opm->mask & htonl(OFPPFL_PORT_DOWN)) {
874                 if ((opp->flags & htonl(OFPPFL_PORT_DOWN))
875                     && (p->status & OFPPFL_PORT_DOWN) == 0) {
876                         PREPARE_WORK(&p->port_task, down_port_cb);
877                         schedule_work(&p->port_task);
878                 } else if ((opp->flags & htonl(OFPPFL_PORT_DOWN)) == 0
879                            && (p->status & OFPPFL_PORT_DOWN)) {
880                         PREPARE_WORK(&p->port_task, up_port_cb);
881                         schedule_work(&p->port_task);
882                 }
883         }
884         spin_unlock_irqrestore(&p->lock, flags);
885
886         return 0;
887 }
888
889 /* Update the port status field of the bridge port.  A non-zero return
890  * value indicates some field has changed. 
891  *
892  * NB: Callers of this function may hold the RCU read lock, so any
893  * additional checks must not sleep.
894  */
895 static int
896 update_port_status(struct net_bridge_port *p)
897 {
898         unsigned long int flags;
899         uint32_t orig_status;
900
901         spin_lock_irqsave(&p->lock, flags);
902         orig_status = p->status;
903
904         if (p->dev->flags & IFF_UP) 
905                 p->status &= ~OFPPFL_PORT_DOWN;
906         else
907                 p->status |= OFPPFL_PORT_DOWN;
908
909         if (netif_carrier_ok(p->dev))
910                 p->status &= ~OFPPFL_LINK_DOWN;
911         else
912                 p->status |= OFPPFL_LINK_DOWN;
913
914         spin_unlock_irqrestore(&p->lock, flags);
915         return (orig_status != p->status);
916 }
917
918 static int
919 send_port_status(struct net_bridge_port *p, uint8_t status)
920 {
921         struct sk_buff *skb;
922         struct ofp_port_status *ops;
923
924         ops = alloc_openflow_skb(p->dp, sizeof *ops, OFPT_PORT_STATUS, NULL,
925                                  &skb);
926         if (!ops)
927                 return -ENOMEM;
928         ops->reason = status;
929         memset(ops->pad, 0, sizeof ops->pad);
930         fill_port_desc(p, &ops->desc);
931
932         return send_openflow_skb(skb, NULL);
933 }
934
935 int 
936 dp_send_flow_expired(struct datapath *dp, struct sw_flow *flow,
937                      enum ofp_flow_expired_reason reason)
938 {
939         struct sk_buff *skb;
940         struct ofp_flow_expired *ofe;
941
942         if (!(dp->flags & OFPC_SEND_FLOW_EXP))
943                 return 0;
944
945         ofe = alloc_openflow_skb(dp, sizeof *ofe, OFPT_FLOW_EXPIRED, 0, &skb);
946         if (!ofe)
947                 return -ENOMEM;
948
949         flow_fill_match(&ofe->match, &flow->key);
950
951         ofe->priority = htons(flow->priority);
952         ofe->reason = reason;
953         memset(ofe->pad, 0, sizeof ofe->pad);
954
955         ofe->duration     = htonl((jiffies - flow->init_time) / HZ);
956         memset(ofe->pad2, 0, sizeof ofe->pad2);
957         ofe->packet_count = cpu_to_be64(flow->packet_count);
958         ofe->byte_count   = cpu_to_be64(flow->byte_count);
959
960         return send_openflow_skb(skb, NULL);
961 }
962 EXPORT_SYMBOL(dp_send_flow_expired);
963
964 int
965 dp_send_error_msg(struct datapath *dp, const struct sender *sender, 
966                 uint16_t type, uint16_t code, const void *data, size_t len)
967 {
968         struct sk_buff *skb;
969         struct ofp_error_msg *oem;
970
971
972         oem = alloc_openflow_skb(dp, sizeof(*oem)+len, OFPT_ERROR, 
973                         sender, &skb);
974         if (!oem)
975                 return -ENOMEM;
976
977         oem->type = htons(type);
978         oem->code = htons(code);
979         memcpy(oem->data, data, len);
980
981         return send_openflow_skb(skb, sender);
982 }
983
984 int
985 dp_send_echo_reply(struct datapath *dp, const struct sender *sender,
986                    const struct ofp_header *rq)
987 {
988         struct sk_buff *skb;
989         struct ofp_header *reply;
990
991         reply = alloc_openflow_skb(dp, ntohs(rq->length), OFPT_ECHO_REPLY,
992                                    sender, &skb);
993         if (!reply)
994                 return -ENOMEM;
995
996         memcpy(reply + 1, rq + 1, ntohs(rq->length) - sizeof *rq);
997         return send_openflow_skb(skb, sender);
998 }
999
1000 /* Generic Netlink interface.
1001  *
1002  * See netlink(7) for an introduction to netlink.  See
1003  * http://linux-net.osdl.org/index.php/Netlink for more information and
1004  * pointers on how to work with netlink and Generic Netlink in the kernel and
1005  * in userspace. */
1006
1007 static struct genl_family dp_genl_family = {
1008         .id = GENL_ID_GENERATE,
1009         .hdrsize = 0,
1010         .name = DP_GENL_FAMILY_NAME,
1011         .version = 1,
1012         .maxattr = DP_GENL_A_MAX,
1013 };
1014
1015 /* Attribute policy: what each attribute may contain.  */
1016 static struct nla_policy dp_genl_policy[DP_GENL_A_MAX + 1] = {
1017         [DP_GENL_A_DP_IDX] = { .type = NLA_U32 },
1018         [DP_GENL_A_MC_GROUP] = { .type = NLA_U32 },
1019         [DP_GENL_A_PORTNAME] = { .type = NLA_STRING }
1020 };
1021
1022 static int dp_genl_add(struct sk_buff *skb, struct genl_info *info)
1023 {
1024         if (!info->attrs[DP_GENL_A_DP_IDX])
1025                 return -EINVAL;
1026
1027         return new_dp(nla_get_u32(info->attrs[DP_GENL_A_DP_IDX]));
1028 }
1029
1030 static struct genl_ops dp_genl_ops_add_dp = {
1031         .cmd = DP_GENL_C_ADD_DP,
1032         .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1033         .policy = dp_genl_policy,
1034         .doit = dp_genl_add,
1035         .dumpit = NULL,
1036 };
1037
1038 struct datapath *dp_get(int dp_idx)
1039 {
1040         if (dp_idx < 0 || dp_idx > DP_MAX)
1041                 return NULL;
1042         return rcu_dereference(dps[dp_idx]);
1043 }
1044
1045 static int dp_genl_del(struct sk_buff *skb, struct genl_info *info)
1046 {
1047         struct datapath *dp;
1048         int err;
1049
1050         if (!info->attrs[DP_GENL_A_DP_IDX])
1051                 return -EINVAL;
1052
1053         dp = dp_get(nla_get_u32((info->attrs[DP_GENL_A_DP_IDX])));
1054         if (!dp)
1055                 err = -ENOENT;
1056         else {
1057                 del_dp(dp);
1058                 err = 0;
1059         }
1060         return err;
1061 }
1062
1063 static struct genl_ops dp_genl_ops_del_dp = {
1064         .cmd = DP_GENL_C_DEL_DP,
1065         .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1066         .policy = dp_genl_policy,
1067         .doit = dp_genl_del,
1068         .dumpit = NULL,
1069 };
1070
1071 /* Queries a datapath for related information.  Currently the only relevant
1072  * information is the datapath's multicast group ID.  Really we want one
1073  * multicast group per datapath, but because of locking issues[*] we can't
1074  * easily get one.  Thus, every datapath will currently return the same
1075  * global multicast group ID, but in the future it would be nice to fix that.
1076  *
1077  * [*] dp_genl_add, to add a new datapath, is called under the genl_lock
1078  *       mutex, and genl_register_mc_group, called to acquire a new multicast
1079  *       group ID, also acquires genl_lock, thus deadlock.
1080  */
1081 static int dp_genl_query(struct sk_buff *skb, struct genl_info *info)
1082 {
1083         struct datapath *dp;
1084         struct sk_buff *ans_skb = NULL;
1085         int dp_idx;
1086         int err = -ENOMEM;
1087
1088         if (!info->attrs[DP_GENL_A_DP_IDX])
1089                 return -EINVAL;
1090
1091         rcu_read_lock();
1092         dp_idx = nla_get_u32((info->attrs[DP_GENL_A_DP_IDX]));
1093         dp = dp_get(dp_idx);
1094         if (!dp)
1095                 err = -ENOENT;
1096         else {
1097                 void *data;
1098                 ans_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
1099                 if (!ans_skb) {
1100                         err = -ENOMEM;
1101                         goto err;
1102                 }
1103                 data = genlmsg_put_reply(ans_skb, info, &dp_genl_family,
1104                                          0, DP_GENL_C_QUERY_DP);
1105                 if (data == NULL) {
1106                         err = -ENOMEM;
1107                         goto err;
1108                 }
1109                 NLA_PUT_U32(ans_skb, DP_GENL_A_DP_IDX, dp_idx);
1110                 NLA_PUT_U32(ans_skb, DP_GENL_A_MC_GROUP, mc_group.id);
1111
1112                 genlmsg_end(ans_skb, data);
1113                 err = genlmsg_reply(ans_skb, info);
1114                 if (!err)
1115                         ans_skb = NULL;
1116         }
1117 err:
1118 nla_put_failure:
1119         if (ans_skb)
1120                 kfree_skb(ans_skb);
1121         rcu_read_unlock();
1122         return err;
1123 }
1124
1125 static struct genl_ops dp_genl_ops_query_dp = {
1126         .cmd = DP_GENL_C_QUERY_DP,
1127         .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1128         .policy = dp_genl_policy,
1129         .doit = dp_genl_query,
1130         .dumpit = NULL,
1131 };
1132
1133 static int dp_genl_add_del_port(struct sk_buff *skb, struct genl_info *info)
1134 {
1135         struct datapath *dp;
1136         struct net_device *port;
1137         int err;
1138
1139         if (!info->attrs[DP_GENL_A_DP_IDX] || !info->attrs[DP_GENL_A_PORTNAME])
1140                 return -EINVAL;
1141
1142         /* Get datapath. */
1143         dp = dp_get(nla_get_u32(info->attrs[DP_GENL_A_DP_IDX]));
1144         if (!dp) {
1145                 err = -ENOENT;
1146                 goto out;
1147         }
1148
1149         /* Get interface to add/remove. */
1150         port = dev_get_by_name(&init_net, 
1151                         nla_data(info->attrs[DP_GENL_A_PORTNAME]));
1152         if (!port) {
1153                 err = -ENOENT;
1154                 goto out;
1155         }
1156
1157         /* Execute operation. */
1158         if (info->genlhdr->cmd == DP_GENL_C_ADD_PORT)
1159                 err = add_switch_port(dp, port);
1160         else {
1161                 if (port->br_port == NULL || port->br_port->dp != dp) {
1162                         err = -ENOENT;
1163                         goto out_put;
1164                 }
1165                 err = del_switch_port(port->br_port);
1166         }
1167
1168 out_put:
1169         dev_put(port);
1170 out:
1171         return err;
1172 }
1173
1174 static struct genl_ops dp_genl_ops_add_port = {
1175         .cmd = DP_GENL_C_ADD_PORT,
1176         .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1177         .policy = dp_genl_policy,
1178         .doit = dp_genl_add_del_port,
1179         .dumpit = NULL,
1180 };
1181
1182 static struct genl_ops dp_genl_ops_del_port = {
1183         .cmd = DP_GENL_C_DEL_PORT,
1184         .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1185         .policy = dp_genl_policy,
1186         .doit = dp_genl_add_del_port,
1187         .dumpit = NULL,
1188 };
1189
1190 static int dp_genl_openflow(struct sk_buff *skb, struct genl_info *info)
1191 {
1192         struct nlattr *va = info->attrs[DP_GENL_A_OPENFLOW];
1193         struct datapath *dp;
1194         struct ofp_header *oh;
1195         struct sender sender;
1196         int err;
1197
1198         if (!info->attrs[DP_GENL_A_DP_IDX] || !va)
1199                 return -EINVAL;
1200
1201         dp = dp_get(nla_get_u32(info->attrs[DP_GENL_A_DP_IDX]));
1202         if (!dp)
1203                 return -ENOENT;
1204
1205         if (nla_len(va) < sizeof(struct ofp_header))
1206                 return -EINVAL;
1207         oh = nla_data(va);
1208
1209         sender.xid = oh->xid;
1210         sender.pid = info->snd_pid;
1211         sender.seq = info->snd_seq;
1212
1213         mutex_lock(&dp_mutex);
1214         err = fwd_control_input(dp->chain, &sender,
1215                                 nla_data(va), nla_len(va));
1216         mutex_unlock(&dp_mutex);
1217         return err;
1218 }
1219
1220 static struct nla_policy dp_genl_openflow_policy[DP_GENL_A_MAX + 1] = {
1221         [DP_GENL_A_DP_IDX] = { .type = NLA_U32 },
1222 };
1223
1224 static int desc_stats_dump(struct datapath *dp, void *state,
1225                             void *body, int *body_len)
1226 {
1227         struct ofp_desc_stats *ods = body;
1228         int n_bytes = sizeof *ods;
1229
1230         if (n_bytes > *body_len) {
1231                 return -ENOBUFS;
1232         }
1233         *body_len = n_bytes;
1234
1235         strncpy(ods->mfr_desc, mfr_desc, sizeof ods->mfr_desc);
1236         strncpy(ods->hw_desc, hw_desc, sizeof ods->hw_desc);
1237         strncpy(ods->sw_desc, sw_desc, sizeof ods->sw_desc);
1238         strncpy(ods->serial_num, serial_num, sizeof ods->serial_num);
1239
1240         return 0;
1241 }
1242
1243 struct flow_stats_state {
1244         int table_idx;
1245         struct sw_table_position position;
1246         const struct ofp_flow_stats_request *rq;
1247
1248         void *body;
1249         int bytes_used, bytes_allocated;
1250 };
1251
1252 static int flow_stats_init(struct datapath *dp, const void *body, int body_len,
1253                            void **state)
1254 {
1255         const struct ofp_flow_stats_request *fsr = body;
1256         struct flow_stats_state *s = kmalloc(sizeof *s, GFP_ATOMIC);
1257         if (!s)
1258                 return -ENOMEM;
1259         s->table_idx = fsr->table_id == 0xff ? 0 : fsr->table_id;
1260         memset(&s->position, 0, sizeof s->position);
1261         s->rq = fsr;
1262         *state = s;
1263         return 0;
1264 }
1265
1266 static int flow_stats_dump_callback(struct sw_flow *flow, void *private)
1267 {
1268         struct sw_flow_actions *sf_acts = rcu_dereference(flow->sf_acts);
1269         struct flow_stats_state *s = private;
1270         struct ofp_flow_stats *ofs;
1271         int actions_length;
1272         int length;
1273
1274         actions_length = sizeof *ofs->actions * sf_acts->n_actions;
1275         length = sizeof *ofs + actions_length;
1276         if (length + s->bytes_used > s->bytes_allocated)
1277                 return 1;
1278
1279         ofs = s->body + s->bytes_used;
1280         ofs->length          = htons(length);
1281         ofs->table_id        = s->table_idx;
1282         ofs->pad             = 0;
1283         ofs->match.wildcards = htonl(flow->key.wildcards);
1284         ofs->match.in_port   = flow->key.in_port;
1285         memcpy(ofs->match.dl_src, flow->key.dl_src, ETH_ALEN);
1286         memcpy(ofs->match.dl_dst, flow->key.dl_dst, ETH_ALEN);
1287         ofs->match.dl_vlan   = flow->key.dl_vlan;
1288         ofs->match.dl_type   = flow->key.dl_type;
1289         ofs->match.nw_src    = flow->key.nw_src;
1290         ofs->match.nw_dst    = flow->key.nw_dst;
1291         ofs->match.nw_proto  = flow->key.nw_proto;
1292         ofs->match.pad       = 0;
1293         ofs->match.tp_src    = flow->key.tp_src;
1294         ofs->match.tp_dst    = flow->key.tp_dst;
1295         ofs->duration        = htonl((jiffies - flow->init_time) / HZ);
1296         ofs->priority        = htons(flow->priority);
1297         ofs->idle_timeout    = htons(flow->idle_timeout);
1298         ofs->hard_timeout    = htons(flow->hard_timeout);
1299         memset(ofs->pad2, 0, sizeof ofs->pad2);
1300         ofs->packet_count    = cpu_to_be64(flow->packet_count);
1301         ofs->byte_count      = cpu_to_be64(flow->byte_count);
1302         memcpy(ofs->actions, sf_acts->actions, actions_length);
1303
1304         s->bytes_used += length;
1305         return 0;
1306 }
1307
1308 static int flow_stats_dump(struct datapath *dp, void *state,
1309                            void *body, int *body_len)
1310 {
1311         struct flow_stats_state *s = state;
1312         struct sw_flow_key match_key;
1313         int error = 0;
1314
1315         s->bytes_used = 0;
1316         s->bytes_allocated = *body_len;
1317         s->body = body;
1318
1319         flow_extract_match(&match_key, &s->rq->match);
1320         while (s->table_idx < dp->chain->n_tables
1321                && (s->rq->table_id == 0xff || s->rq->table_id == s->table_idx))
1322         {
1323                 struct sw_table *table = dp->chain->tables[s->table_idx];
1324
1325                 error = table->iterate(table, &match_key, &s->position,
1326                                        flow_stats_dump_callback, s);
1327                 if (error)
1328                         break;
1329
1330                 s->table_idx++;
1331                 memset(&s->position, 0, sizeof s->position);
1332         }
1333         *body_len = s->bytes_used;
1334
1335         /* If error is 0, we're done.
1336          * Otherwise, if some bytes were used, there are more flows to come.
1337          * Otherwise, we were not able to fit even a single flow in the body,
1338          * which indicates that we have a single flow with too many actions to
1339          * fit.  We won't ever make any progress at that rate, so give up. */
1340         return !error ? 0 : s->bytes_used ? 1 : -ENOMEM;
1341 }
1342
1343 static void flow_stats_done(void *state)
1344 {
1345         kfree(state);
1346 }
1347
1348 static int aggregate_stats_init(struct datapath *dp,
1349                                 const void *body, int body_len,
1350                                 void **state)
1351 {
1352         *state = (void *)body;
1353         return 0;
1354 }
1355
1356 static int aggregate_stats_dump_callback(struct sw_flow *flow, void *private)
1357 {
1358         struct ofp_aggregate_stats_reply *rpy = private;
1359         rpy->packet_count += flow->packet_count;
1360         rpy->byte_count += flow->byte_count;
1361         rpy->flow_count++;
1362         return 0;
1363 }
1364
1365 static int aggregate_stats_dump(struct datapath *dp, void *state,
1366                                 void *body, int *body_len)
1367 {
1368         struct ofp_aggregate_stats_request *rq = state;
1369         struct ofp_aggregate_stats_reply *rpy;
1370         struct sw_table_position position;
1371         struct sw_flow_key match_key;
1372         int table_idx;
1373
1374         if (*body_len < sizeof *rpy)
1375                 return -ENOBUFS;
1376         rpy = body;
1377         *body_len = sizeof *rpy;
1378
1379         memset(rpy, 0, sizeof *rpy);
1380
1381         flow_extract_match(&match_key, &rq->match);
1382         table_idx = rq->table_id == 0xff ? 0 : rq->table_id;
1383         memset(&position, 0, sizeof position);
1384         while (table_idx < dp->chain->n_tables
1385                && (rq->table_id == 0xff || rq->table_id == table_idx))
1386         {
1387                 struct sw_table *table = dp->chain->tables[table_idx];
1388                 int error;
1389
1390                 error = table->iterate(table, &match_key, &position,
1391                                        aggregate_stats_dump_callback, rpy);
1392                 if (error)
1393                         return error;
1394
1395                 table_idx++;
1396                 memset(&position, 0, sizeof position);
1397         }
1398
1399         rpy->packet_count = cpu_to_be64(rpy->packet_count);
1400         rpy->byte_count = cpu_to_be64(rpy->byte_count);
1401         rpy->flow_count = htonl(rpy->flow_count);
1402         return 0;
1403 }
1404
1405 static int table_stats_dump(struct datapath *dp, void *state,
1406                             void *body, int *body_len)
1407 {
1408         struct ofp_table_stats *ots;
1409         int n_bytes = dp->chain->n_tables * sizeof *ots;
1410         int i;
1411         if (n_bytes > *body_len)
1412                 return -ENOBUFS;
1413         *body_len = n_bytes;
1414         for (i = 0, ots = body; i < dp->chain->n_tables; i++, ots++) {
1415                 struct sw_table_stats stats;
1416                 dp->chain->tables[i]->stats(dp->chain->tables[i], &stats);
1417                 strncpy(ots->name, stats.name, sizeof ots->name);
1418                 ots->table_id = i;
1419                 ots->wildcards = htonl(stats.wildcards);
1420                 memset(ots->pad, 0, sizeof ots->pad);
1421                 ots->max_entries = htonl(stats.max_flows);
1422                 ots->active_count = htonl(stats.n_flows);
1423                 ots->matched_count = cpu_to_be64(stats.n_matched);
1424         }
1425         return 0;
1426 }
1427
1428 struct port_stats_state {
1429         int port;
1430 };
1431
1432 static int port_stats_init(struct datapath *dp, const void *body, int body_len,
1433                            void **state)
1434 {
1435         struct port_stats_state *s = kmalloc(sizeof *s, GFP_ATOMIC);
1436         if (!s)
1437                 return -ENOMEM;
1438         s->port = 0;
1439         *state = s;
1440         return 0;
1441 }
1442
1443 static int port_stats_dump(struct datapath *dp, void *state,
1444                            void *body, int *body_len)
1445 {
1446         struct port_stats_state *s = state;
1447         struct ofp_port_stats *ops;
1448         int n_ports, max_ports;
1449         int i;
1450
1451         max_ports = *body_len / sizeof *ops;
1452         if (!max_ports)
1453                 return -ENOMEM;
1454         ops = body;
1455
1456         n_ports = 0;
1457         for (i = s->port; i < OFPP_MAX && n_ports < max_ports; i++) {
1458                 struct net_bridge_port *p = dp->ports[i];
1459                 struct net_device_stats *stats;
1460                 if (!p)
1461                         continue;
1462                 stats = p->dev->get_stats(p->dev);
1463                 ops->port_no = htons(p->port_no);
1464                 memset(ops->pad, 0, sizeof ops->pad);
1465                 ops->rx_packets   = cpu_to_be64(stats->rx_packets);
1466                 ops->tx_packets   = cpu_to_be64(stats->tx_packets);
1467                 ops->rx_bytes     = cpu_to_be64(stats->rx_bytes);
1468                 ops->tx_bytes     = cpu_to_be64(stats->tx_bytes);
1469                 ops->rx_dropped   = cpu_to_be64(stats->rx_dropped);
1470                 ops->tx_dropped   = cpu_to_be64(stats->tx_dropped);
1471                 ops->rx_errors    = cpu_to_be64(stats->rx_errors);
1472                 ops->tx_errors    = cpu_to_be64(stats->tx_errors);
1473                 ops->rx_frame_err = cpu_to_be64(stats->rx_frame_errors);
1474                 ops->rx_over_err  = cpu_to_be64(stats->rx_over_errors);
1475                 ops->rx_crc_err   = cpu_to_be64(stats->rx_crc_errors);
1476                 ops->collisions   = cpu_to_be64(stats->collisions);
1477                 n_ports++;
1478                 ops++;
1479         }
1480         s->port = i;
1481         *body_len = n_ports * sizeof *ops;
1482         return n_ports >= max_ports;
1483 }
1484
1485 static void port_stats_done(void *state)
1486 {
1487         kfree(state);
1488 }
1489
1490 struct stats_type {
1491         /* Minimum and maximum acceptable number of bytes in body member of
1492          * struct ofp_stats_request. */
1493         size_t min_body, max_body;
1494
1495         /* Prepares to dump some kind of statistics on 'dp'.  'body' and
1496          * 'body_len' are the 'body' member of the struct ofp_stats_request.
1497          * Returns zero if successful, otherwise a negative error code.
1498          * May initialize '*state' to state information.  May be null if no
1499          * initialization is required.*/
1500         int (*init)(struct datapath *dp, const void *body, int body_len,
1501                     void **state);
1502
1503         /* Dumps statistics for 'dp' into the '*body_len' bytes at 'body', and
1504          * modifies '*body_len' to reflect the number of bytes actually used.
1505          * ('body' will be transmitted as the 'body' member of struct
1506          * ofp_stats_reply.) */
1507         int (*dump)(struct datapath *dp, void *state,
1508                     void *body, int *body_len);
1509
1510         /* Cleans any state created by the init or dump functions.  May be null
1511          * if no cleanup is required. */
1512         void (*done)(void *state);
1513 };
1514
1515 static const struct stats_type stats[] = {
1516         [OFPST_DESC] = {
1517                 0,
1518                 0,
1519                 NULL,
1520                 desc_stats_dump,
1521                 NULL
1522         },
1523         [OFPST_FLOW] = {
1524                 sizeof(struct ofp_flow_stats_request),
1525                 sizeof(struct ofp_flow_stats_request),
1526                 flow_stats_init,
1527                 flow_stats_dump,
1528                 flow_stats_done
1529         },
1530         [OFPST_AGGREGATE] = {
1531                 sizeof(struct ofp_aggregate_stats_request),
1532                 sizeof(struct ofp_aggregate_stats_request),
1533                 aggregate_stats_init,
1534                 aggregate_stats_dump,
1535                 NULL
1536         },
1537         [OFPST_TABLE] = {
1538                 0,
1539                 0,
1540                 NULL,
1541                 table_stats_dump,
1542                 NULL
1543         },
1544         [OFPST_PORT] = {
1545                 0,
1546                 0,
1547                 port_stats_init,
1548                 port_stats_dump,
1549                 port_stats_done
1550         },
1551 };
1552
1553 static int
1554 dp_genl_openflow_dumpit(struct sk_buff *skb, struct netlink_callback *cb)
1555 {
1556         struct datapath *dp;
1557         struct sender sender;
1558         const struct stats_type *s;
1559         struct ofp_stats_reply *osr;
1560         int dp_idx;
1561         int max_openflow_len, body_len;
1562         void *body;
1563         int err;
1564
1565         /* Set up the cleanup function for this dump.  Linux 2.6.20 and later
1566          * support setting up cleanup functions via the .doneit member of
1567          * struct genl_ops.  This kluge supports earlier versions also. */
1568         cb->done = dp_genl_openflow_done;
1569
1570         sender.pid = NETLINK_CB(cb->skb).pid;
1571         sender.seq = cb->nlh->nlmsg_seq;
1572         if (!cb->args[0]) {
1573                 struct nlattr *attrs[DP_GENL_A_MAX + 1];
1574                 struct ofp_stats_request *rq;
1575                 struct nlattr *va;
1576                 size_t len, body_len;
1577                 int type;
1578
1579                 err = nlmsg_parse(cb->nlh, GENL_HDRLEN, attrs, DP_GENL_A_MAX,
1580                                   dp_genl_openflow_policy);
1581                 if (err < 0)
1582                         return err;
1583
1584                 if (!attrs[DP_GENL_A_DP_IDX])
1585                         return -EINVAL;
1586                 dp_idx = nla_get_u16(attrs[DP_GENL_A_DP_IDX]);
1587                 dp = dp_get(dp_idx);
1588                 if (!dp)
1589                         return -ENOENT;
1590
1591                 va = attrs[DP_GENL_A_OPENFLOW];
1592                 len = nla_len(va);
1593                 if (!va || len < sizeof *rq)
1594                         return -EINVAL;
1595
1596                 rq = nla_data(va);
1597                 sender.xid = rq->header.xid;
1598                 type = ntohs(rq->type);
1599                 if (rq->header.version != OFP_VERSION) {
1600                         dp_send_error_msg(dp, &sender, OFPET_BAD_REQUEST,
1601                                           OFPBRC_BAD_VERSION, rq, len);
1602                         return -EINVAL;
1603                 }
1604                 if (rq->header.type != OFPT_STATS_REQUEST
1605                     || ntohs(rq->header.length) != len)
1606                         return -EINVAL;
1607
1608                 if (type >= ARRAY_SIZE(stats) || !stats[type].dump) {
1609                         dp_send_error_msg(dp, &sender, OFPET_BAD_REQUEST,
1610                                           OFPBRC_BAD_STAT, rq, len);
1611                         return -EINVAL;
1612                 }
1613
1614                 s = &stats[type];
1615                 body_len = len - offsetof(struct ofp_stats_request, body);
1616                 if (body_len < s->min_body || body_len > s->max_body)
1617                         return -EINVAL;
1618
1619                 cb->args[0] = 1;
1620                 cb->args[1] = dp_idx;
1621                 cb->args[2] = type;
1622                 cb->args[3] = rq->header.xid;
1623                 if (s->init) {
1624                         void *state;
1625                         err = s->init(dp, rq->body, body_len, &state);
1626                         if (err)
1627                                 return err;
1628                         cb->args[4] = (long) state;
1629                 }
1630         } else if (cb->args[0] == 1) {
1631                 sender.xid = cb->args[3];
1632                 dp_idx = cb->args[1];
1633                 s = &stats[cb->args[2]];
1634
1635                 dp = dp_get(dp_idx);
1636                 if (!dp)
1637                         return -ENOENT;
1638         } else {
1639                 return 0;
1640         }
1641
1642         osr = put_openflow_headers(dp, skb, OFPT_STATS_REPLY, &sender,
1643                                    &max_openflow_len);
1644         if (IS_ERR(osr))
1645                 return PTR_ERR(osr);
1646         osr->type = htons(s - stats);
1647         osr->flags = 0;
1648         resize_openflow_skb(skb, &osr->header, max_openflow_len);
1649         body = osr->body;
1650         body_len = max_openflow_len - offsetof(struct ofp_stats_reply, body);
1651
1652         err = s->dump(dp, (void *) cb->args[4], body, &body_len);
1653         if (err >= 0) {
1654                 if (!err)
1655                         cb->args[0] = 2;
1656                 else
1657                         osr->flags = ntohs(OFPSF_REPLY_MORE);
1658                 resize_openflow_skb(skb, &osr->header,
1659                                     (offsetof(struct ofp_stats_reply, body)
1660                                      + body_len));
1661                 err = skb->len;
1662         }
1663
1664         return err;
1665 }
1666
1667 static int
1668 dp_genl_openflow_done(struct netlink_callback *cb)
1669 {
1670         if (cb->args[0]) {
1671                 const struct stats_type *s = &stats[cb->args[2]];
1672                 if (s->done)
1673                         s->done((void *) cb->args[4]);
1674         }
1675         return 0;
1676 }
1677
1678 static struct genl_ops dp_genl_ops_openflow = {
1679         .cmd = DP_GENL_C_OPENFLOW,
1680         .flags = GENL_ADMIN_PERM, /* Requires CAP_NET_ADMIN privilege. */
1681         .policy = dp_genl_openflow_policy,
1682         .doit = dp_genl_openflow,
1683         .dumpit = dp_genl_openflow_dumpit,
1684 };
1685
1686 static struct genl_ops *dp_genl_all_ops[] = {
1687         /* Keep this operation first.  Generic Netlink dispatching
1688          * looks up operations with linear search, so we want it at the
1689          * front. */
1690         &dp_genl_ops_openflow,
1691
1692         &dp_genl_ops_add_dp,
1693         &dp_genl_ops_del_dp,
1694         &dp_genl_ops_query_dp,
1695         &dp_genl_ops_add_port,
1696         &dp_genl_ops_del_port,
1697 };
1698
1699 static int dp_init_netlink(void)
1700 {
1701         int err;
1702         int i;
1703
1704         err = genl_register_family(&dp_genl_family);
1705         if (err)
1706                 return err;
1707
1708         for (i = 0; i < ARRAY_SIZE(dp_genl_all_ops); i++) {
1709                 err = genl_register_ops(&dp_genl_family, dp_genl_all_ops[i]);
1710                 if (err)
1711                         goto err_unregister;
1712         }
1713
1714         strcpy(mc_group.name, "openflow");
1715         err = genl_register_mc_group(&dp_genl_family, &mc_group);
1716         if (err < 0)
1717                 goto err_unregister;
1718
1719         return 0;
1720
1721 err_unregister:
1722         genl_unregister_family(&dp_genl_family);
1723                 return err;
1724 }
1725
1726 static void dp_uninit_netlink(void)
1727 {
1728         genl_unregister_family(&dp_genl_family);
1729 }
1730
1731 static int __init dp_init(void)
1732 {
1733         int err;
1734
1735         printk("OpenFlow "VERSION", built "__DATE__" "__TIME__", "
1736                "protocol 0x%02x\n", OFP_VERSION);
1737
1738         err = flow_init();
1739         if (err)
1740                 goto error;
1741
1742         err = dp_init_netlink();
1743         if (err)
1744                 goto error_flow_exit;
1745
1746         /* Hook into callback used by the bridge to intercept packets.
1747          * Parasites we are. */
1748         if (br_handle_frame_hook)
1749                 printk("openflow: hijacking bridge hook\n");
1750         br_handle_frame_hook = dp_frame_hook;
1751
1752         return 0;
1753
1754 error_flow_exit:
1755         flow_exit();
1756 error:
1757         printk(KERN_EMERG "openflow: failed to install!");
1758         return err;
1759 }
1760
1761 static void dp_cleanup(void)
1762 {
1763         fwd_exit();
1764         dp_uninit_netlink();
1765         flow_exit();
1766         br_handle_frame_hook = NULL;
1767 }
1768
1769 module_init(dp_init);
1770 module_exit(dp_cleanup);
1771
1772 MODULE_DESCRIPTION("OpenFlow switching datapath");
1773 MODULE_AUTHOR("Copyright (c) 2007, 2008 The Board of Trustees of The Leland Stanford Junior University");
1774 MODULE_LICENSE("GPL");