From: Jason Wang <jasowang@redhat.com>
To: Yang Hongyang <yanghy@cn.fujitsu.com>, qemu-devel@nongnu.org
Cc: thuth@redhat.com, lizhijian@cn.fujitsu.com, armbru@redhat.com,
Yang Hongyang <burnef@gmail.com>,
stefanha@redhat.com, zhang.zhanghailiang@huawei.com
Subject: Re: [Qemu-devel] [PATCH v11 12/12] netfilter: add multiqueue support
Date: Tue, 22 Sep 2015 15:36:49 +0800 [thread overview]
Message-ID: <56010511.2040303@redhat.com> (raw)
In-Reply-To: <1442405768-23019-13-git-send-email-yanghy@cn.fujitsu.com>
On 09/16/2015 08:16 PM, Yang Hongyang wrote:
> From: Yang Hongyang <burnef@gmail.com>
>
> add multiqueue support, if there's multiqueue, we add multi netfilter
> objects, other netfilter objects is the child of the first added netfilter
> object. So when we delete a netfilter, the other netfilter objects we
> added will be automatically deleted.
>
> Signed-off-by: Yang Hongyang <burnef@gmail.com>
> ---
> v11: initial patch
> ---
> net/filter.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
> 1 file changed, 79 insertions(+), 7 deletions(-)
>
> diff --git a/net/filter.c b/net/filter.c
> index aea619a..cc27528 100644
> --- a/net/filter.c
> +++ b/net/filter.c
> @@ -142,16 +142,25 @@ static void netfilter_finalize(Object *obj)
> g_free(nf->name);
> }
>
> +static void proptb_free_val_func(gpointer data)
> +{
> + g_free(data);
> +}
> +
> static void netfilter_complete(UserCreatable *uc, Error **errp)
> {
> - NetFilterState *nf = NETFILTER(uc);
> + NetFilterState *nf = NETFILTER(uc), *nfq = NULL;
> NetClientState *ncs[MAX_QUEUE_NUM];
> - NetFilterClass *nfc = NETFILTER_GET_CLASS(uc);
> - int queues;
> + NetFilterClass *nfc = NETFILTER_GET_CLASS(uc), *nfqc = NULL;
> + int queues, i;
> Error *local_err = NULL;
> - char *str, *info;
> + char *str, *info, *name;
> ObjectProperty *prop;
> StringOutputVisitor *ov;
> + Object *obj = NULL;
> + GHashTable *proptable = NULL;
> + GHashTableIter iter;
> + gpointer key, value;
>
> if (!nf->netdev_id) {
> error_setg(errp, "Parameter 'netdev' is required");
> @@ -165,9 +174,6 @@ static void netfilter_complete(UserCreatable *uc, Error **errp)
> error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "netdev",
> "a network backend id");
> return;
> - } else if (queues > 1) {
> - error_setg(errp, "Multi queue is not supported");
> - return;
> }
>
> if (get_vhost_net(ncs[0])) {
> @@ -187,6 +193,17 @@ static void netfilter_complete(UserCreatable *uc, Error **errp)
> }
> QTAILQ_INSERT_TAIL(&nf->netdev->filters, nf, next);
>
> + if (queues > 1) {
> + /*
> + * Store the properties of the filter except "type" property.
> + * When there's multiqueue, we will create a new filter object
> + * of the same type and same properties. this hashtable is used
> + * to set newly created object properties.
> + */
> + proptable = g_hash_table_new_full(NULL, NULL, NULL,
> + proptb_free_val_func);
> + }
I'm thinking whether or not duplicate all the properties in each
netfilters is a good method. Maybe we can have a another ojbect with
array of pointers to NetFilter objects embedded? Another question is
whether or not we need to do this at this level. Maybe we can make the
necessary Netfilter multiqueue aware. E.g let buffer filter to have
multiqueue also? Then you may only need a single timer?
> +
> /* generate info str */
> QTAILQ_FOREACH(prop, &OBJECT(nf)->properties, node) {
> if (!strcmp(prop->name, "type")) {
> @@ -199,9 +216,64 @@ static void netfilter_complete(UserCreatable *uc, Error **errp)
> string_output_visitor_cleanup(ov);
> info = g_strdup_printf(",%s=%s", prop->name, str);
> g_strlcat(nf->info_str, info, sizeof(nf->info_str));
> + if (queues > 1) {
> + g_hash_table_insert(proptable, prop->name, g_strdup(str));
> + }
> g_free(str);
> g_free(info);
> }
> +
> + for (i = 1; i < queues; i++) {
> + obj = object_new(object_get_typename(OBJECT(nf)));
> + /* set filter properties */
> + nfq = NETFILTER(obj);
> + nfq->name = g_strdup(nf->name);
> + nfq->netdev = ncs[i];
> + snprintf(nfq->info_str, sizeof(nfq->info_str), "%s", nf->info_str);
> +
> + g_hash_table_iter_init(&iter, proptable);
> + while (g_hash_table_iter_next(&iter, &key, &value)) {
> + object_property_parse(obj, (char *)value, (char *)key, &local_err);
> + if (local_err) {
> + error_propagate(errp, local_err);
> + goto out;
> + }
> + }
> +
> + /* add other queue's filter object as the first object's child */
> + name = g_strdup_printf("%s-queue-%d", nf->name, i);
> + object_property_add_child(OBJECT(nf), name, obj, &local_err);
> + g_free(name);
> + if (local_err) {
> + error_propagate(errp, local_err);
> + goto out;
> + }
> +
> + /* setup filter */
> + nfqc = NETFILTER_GET_CLASS(obj);
> + if (nfqc->setup) {
> + nfqc->setup(nfq, &local_err);
> + if (local_err) {
> + error_propagate(errp, local_err);
> + goto out;
> + }
> + }
> + QTAILQ_INSERT_TAIL(&nfq->netdev->filters, nfq, next);
> + object_unref(obj);
> + }
> +
> + if (proptable) {
> + g_hash_table_unref(proptable);
> + }
> + return;
> +
> +out:
We may leak objects here.
> + if (proptable) {
> + g_hash_table_unref(proptable);
> + }
> + if (obj) {
> + object_unref(obj);
> + }
> }
>
> static void netfilter_class_init(ObjectClass *oc, void *data)
To reduce the review iterations, I suggest to drop the patch also.
Multiqueue support could be another series on top.
Thanks
next prev parent reply other threads:[~2015-09-22 7:37 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-16 12:15 [Qemu-devel] [PATCH v11 00/12] Add a netfilter object and netbuffer filter Yang Hongyang
2015-09-16 12:15 ` [Qemu-devel] [PATCH v11 01/12] qmp: delete qemu opts when delete an object Yang Hongyang
2015-09-24 7:43 ` Markus Armbruster
2015-09-24 8:35 ` Yang Hongyang
2015-09-24 9:42 ` Markus Armbruster
2015-09-24 9:59 ` Yang Hongyang
2015-09-24 11:35 ` Markus Armbruster
2015-09-25 1:11 ` Yang Hongyang
2015-09-24 10:06 ` Yang Hongyang
2015-09-24 11:36 ` Markus Armbruster
2015-09-25 1:12 ` Yang Hongyang
2015-09-25 6:40 ` Jason Wang
2015-09-16 12:15 ` [Qemu-devel] [PATCH v11 02/12] init/cleanup of netfilter object Yang Hongyang
2015-09-16 21:09 ` Eric Blake
2015-09-17 1:23 ` Yang Hongyang
2015-09-17 16:09 ` Eric Blake
2015-09-18 1:14 ` Yang Hongyang
2015-09-24 8:41 ` Markus Armbruster
2015-09-24 8:47 ` Yang Hongyang
2015-09-24 11:40 ` Markus Armbruster
2015-09-25 1:13 ` Yang Hongyang
2015-09-24 8:57 ` Yang Hongyang
2015-09-24 11:52 ` Markus Armbruster
2015-09-25 6:45 ` Jason Wang
2015-09-25 14:10 ` Markus Armbruster
2015-09-28 5:47 ` Jason Wang
2015-09-28 5:53 ` Yang Hongyang
2015-09-16 12:15 ` [Qemu-devel] [PATCH v11 03/12] netfilter: hook packets before net queue send Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 04/12] net: merge qemu_deliver_packet and qemu_deliver_packet_iov Yang Hongyang
2015-09-22 7:30 ` Jason Wang
2015-09-22 7:44 ` Yang Hongyang
2015-09-22 8:14 ` Jason Wang
2015-09-22 8:21 ` Yang Hongyang
2015-09-22 9:19 ` Jason Wang
2015-09-22 9:26 ` Yang Hongyang
2015-09-22 9:42 ` Jason Wang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 05/12] net/queue: introduce NetQueueDeliverFunc Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 06/12] netfilter: add an API to pass the packet to next filter Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 07/12] netfilter: print filter info associate with the netdev Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 08/12] net/queue: export qemu_net_queue_append_iov Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 09/12] netfilter: add a netbuffer filter Yang Hongyang
2015-09-24 9:12 ` Markus Armbruster
2015-09-25 7:18 ` Yang Hongyang
2015-09-25 8:18 ` Jason Wang
2015-09-25 15:13 ` Markus Armbruster
2015-09-25 15:07 ` Markus Armbruster
2015-09-28 6:12 ` Jason Wang
2015-09-28 7:38 ` Markus Armbruster
2015-09-28 6:42 ` Yang Hongyang
2015-09-25 8:03 ` Yang Hongyang
2015-09-25 8:18 ` Thomas Huth
2015-09-25 8:22 ` Yang Hongyang
2015-09-25 15:26 ` Markus Armbruster
2015-09-28 6:40 ` Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 10/12] tests: add test cases for netfilter object Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 11/12] netfilter/multiqueue: introduce netfilter name Yang Hongyang
2015-09-16 12:16 ` [Qemu-devel] [PATCH v11 12/12] netfilter: add multiqueue support Yang Hongyang
2015-09-22 7:36 ` Jason Wang [this message]
2015-09-22 7:49 ` Yang Hongyang
2015-09-22 8:31 ` Jason Wang
2015-09-22 8:35 ` Yang Hongyang
2015-09-22 9:19 ` Jason Wang
2015-09-22 8:07 ` Yang Hongyang
2015-09-22 8:32 ` Jason Wang
2015-09-22 8:43 ` Yang Hongyang
2015-09-22 9:30 ` Jason Wang
2015-09-22 9:47 ` Yang Hongyang
2015-09-22 7:39 ` [Qemu-devel] [PATCH v11 00/12] Add a netfilter object and netbuffer filter Jason Wang
2015-09-22 7:59 ` Yang Hongyang
2015-09-24 4:22 ` Jason Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56010511.2040303@redhat.com \
--to=jasowang@redhat.com \
--cc=armbru@redhat.com \
--cc=burnef@gmail.com \
--cc=lizhijian@cn.fujitsu.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=thuth@redhat.com \
--cc=yanghy@cn.fujitsu.com \
--cc=zhang.zhanghailiang@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).