X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fconnmgr.c;h=a0315b23fe9f0f6b2868c4cb71f1aad2a92b8263;hb=629a6b48e923b1015cfdfe81f9accf99371310fa;hp=1f5fbed90bc2c0f30736db0e4fb8ad75f4f184ba;hpb=2ed1202f141ecbda901c6531829273ea2ad8f1c8;p=sliver-openvswitch.git diff --git a/ofproto/connmgr.c b/ofproto/connmgr.c index 1f5fbed90..a0315b23f 100644 --- a/ofproto/connmgr.c +++ b/ofproto/connmgr.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012 Nicira Networks. + * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -33,6 +33,7 @@ #include "pktbuf.h" #include "rconn.h" #include "shash.h" +#include "simap.h" #include "stream.h" #include "timeval.h" #include "vconn.h" @@ -122,11 +123,12 @@ struct ofservice { int rate_limit; /* Max packet-in rate in packets per second. */ int burst_limit; /* Limit on accumulating packet credits. */ bool enable_async_msgs; /* Initially enable async messages? */ + uint8_t dscp; /* DSCP Value for controller connection */ }; static void ofservice_reconfigure(struct ofservice *, const struct ofproto_controller *); -static int ofservice_create(struct connmgr *, const char *target); +static int ofservice_create(struct connmgr *, const char *target, uint8_t dscp); static void ofservice_destroy(struct connmgr *, struct ofservice *); static struct ofservice *ofservice_lookup(struct connmgr *, const char *target); @@ -280,7 +282,8 @@ connmgr_run(struct connmgr *mgr, struct rconn *rconn; char *name; - rconn = rconn_create(ofservice->probe_interval, 0); + /* Passing default value for creation of the rconn */ + rconn = rconn_create(ofservice->probe_interval, 0, ofservice->dscp); name = ofconn_make_name(mgr, vconn_get_name(vconn)); rconn_connect_unreliably(rconn, vconn, name); free(name); @@ -336,6 +339,30 @@ connmgr_wait(struct connmgr *mgr, bool handling_openflow) } } +/* Adds some memory usage statistics for 'mgr' into 'usage', for use with + * memory_report(). */ +void +connmgr_get_memory_usage(const struct connmgr *mgr, struct simap *usage) +{ + const struct ofconn *ofconn; + unsigned int packets = 0; + unsigned int ofconns = 0; + + LIST_FOR_EACH (ofconn, node, &mgr->all_conns) { + int i; + + ofconns++; + + packets += rconn_count_txqlen(ofconn->rconn); + for (i = 0; i < N_SCHEDULERS; i++) { + packets += pinsched_count_txqlen(ofconn->schedulers[i]); + } + packets += pktbuf_count_packets(ofconn->pktbuf); + } + simap_increase(usage, "ofconns", ofconns); + simap_increase(usage, "packets", packets); +} + /* Returns the ofproto that owns 'ofconn''s connmgr. */ struct ofproto * ofconn_get_ofproto(const struct ofconn *ofconn) @@ -358,7 +385,7 @@ connmgr_retry(struct connmgr *mgr) /* OpenFlow configuration. */ -static void add_controller(struct connmgr *, const char *target); +static void add_controller(struct connmgr *, const char *target, uint8_t dscp); static struct ofconn *find_controller_by_target(struct connmgr *, const char *target); static void update_fail_open(struct connmgr *); @@ -465,11 +492,15 @@ connmgr_set_controllers(struct connmgr *mgr, if (!vconn_verify_name(c->target)) { if (!find_controller_by_target(mgr, c->target)) { - add_controller(mgr, c->target); + VLOG_INFO("%s: added primary controller \"%s\"", + mgr->name, c->target); + add_controller(mgr, c->target, c->dscp); } } else if (!pvconn_verify_name(c->target)) { if (!ofservice_lookup(mgr, c->target)) { - ofservice_create(mgr, c->target); + VLOG_INFO("%s: added service controller \"%s\"", + mgr->name, c->target); + ofservice_create(mgr, c->target, c->dscp); } } else { VLOG_WARN_RL(&rl, "%s: unsupported controller \"%s\"", @@ -483,10 +514,13 @@ connmgr_set_controllers(struct connmgr *mgr, /* Delete controllers that are no longer configured. * Update configuration of all now-existing controllers. */ HMAP_FOR_EACH_SAFE (ofconn, next_ofconn, hmap_node, &mgr->controllers) { + const char *target = ofconn_get_target(ofconn); struct ofproto_controller *c; - c = shash_find_data(&new_controllers, ofconn_get_target(ofconn)); + c = shash_find_data(&new_controllers, target); if (!c) { + VLOG_INFO("%s: removed primary controller \"%s\"", + mgr->name, target); ofconn_destroy(ofconn); } else { ofconn_reconfigure(ofconn, c); @@ -496,11 +530,13 @@ connmgr_set_controllers(struct connmgr *mgr, /* Delete services that are no longer configured. * Update configuration of all now-existing services. */ HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &mgr->services) { + const char *target = pvconn_get_name(ofservice->pvconn); struct ofproto_controller *c; - c = shash_find_data(&new_controllers, - pvconn_get_name(ofservice->pvconn)); + c = shash_find_data(&new_controllers, target); if (!c) { + VLOG_INFO("%s: removed service controller \"%s\"", + mgr->name, target); ofservice_destroy(mgr, ofservice); } else { ofservice_reconfigure(ofservice, c); @@ -559,12 +595,12 @@ connmgr_has_snoops(const struct connmgr *mgr) /* Creates a new controller for 'target' in 'mgr'. update_controller() needs * to be called later to finish the new ofconn's configuration. */ static void -add_controller(struct connmgr *mgr, const char *target) +add_controller(struct connmgr *mgr, const char *target, uint8_t dscp) { char *name = ofconn_make_name(mgr, target); struct ofconn *ofconn; - ofconn = ofconn_create(mgr, rconn_create(5, 8), OFCONN_PRIMARY, true); + ofconn = ofconn_create(mgr, rconn_create(5, 8, dscp), OFCONN_PRIMARY, true); ofconn->pktbuf = pktbuf_create(); rconn_connect(ofconn->rconn, target, name); hmap_insert(&mgr->controllers, &ofconn->hmap_node, hash_string(target, 0)); @@ -672,7 +708,7 @@ set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp, struct pvconn *pvconn; int error; - error = pvconn_open(name, &pvconn); + error = pvconn_open(name, &pvconn, 0); if (!error) { pvconns[n_pvconns++] = pvconn; } else { @@ -1223,9 +1259,7 @@ ofconn_send(const struct ofconn *ofconn, struct ofpbuf *msg, struct rconn_packet_counter *counter) { update_openflow_length(msg); - if (rconn_send(ofconn->rconn, msg, counter)) { - ofpbuf_delete(msg); - } + rconn_send(ofconn->rconn, msg, counter); } /* Sending asynchronous messages. */ @@ -1438,29 +1472,6 @@ connmgr_is_any_controller_admitted(const struct connmgr *mgr) } return false; } - -/* Sends 'packet' to each controller connected to 'mgr'. Takes ownership of - * 'packet'. */ -void -connmgr_broadcast(struct connmgr *mgr, struct ofpbuf *packet) -{ - struct ofconn *ofconn, *prev; - - prev = NULL; - LIST_FOR_EACH (ofconn, node, &mgr->all_conns) { - if (prev) { - ofconn_send_reply(ofconn, ofpbuf_clone(packet)); - } - if (rconn_is_connected(ofconn->rconn)) { - prev = ofconn; - } - } - if (prev) { - ofconn_send_reply(prev, packet); - } else { - ofpbuf_delete(packet); - } -} /* In-band configuration. */ @@ -1574,13 +1585,13 @@ connmgr_flushed(struct connmgr *mgr) * ofservice_reconfigure() must be called to fully configure the new * ofservice. */ static int -ofservice_create(struct connmgr *mgr, const char *target) +ofservice_create(struct connmgr *mgr, const char *target, uint8_t dscp) { struct ofservice *ofservice; struct pvconn *pvconn; int error; - error = pvconn_open(target, &pvconn); + error = pvconn_open(target, &pvconn, dscp); if (error) { return error; } @@ -1608,6 +1619,7 @@ ofservice_reconfigure(struct ofservice *ofservice, ofservice->rate_limit = c->rate_limit; ofservice->burst_limit = c->burst_limit; ofservice->enable_async_msgs = c->enable_async_msgs; + ofservice->dscp = c->dscp; } /* Finds and returns the ofservice within 'mgr' that has the given