blob: 1f8bf054d11c16a51ecdbc168d83736818aed1b2 [file] [log] [blame]
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -07001/*
Valentin Ilief3c48ec2012-07-14 13:08:29 +00002 * cn_queue.c
Frederic Weisbecker1a5645b2009-02-02 23:22:04 -08003 *
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07004 * 2004+ Copyright (c) Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -07005 * All rights reserved.
Frederic Weisbecker1a5645b2009-02-02 23:22:04 -08006 *
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -07007 * 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.
11 *
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.
16 *
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
20 *
21 */
22
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/list.h>
26#include <linux/workqueue.h>
27#include <linux/spinlock.h>
28#include <linux/slab.h>
29#include <linux/skbuff.h>
30#include <linux/suspend.h>
31#include <linux/connector.h>
32#include <linux/delay.h>
33
Mike Frysinger07412412009-07-17 10:13:21 -070034static struct cn_callback_entry *
Patrick McHardy04f482f2011-03-28 08:39:36 +000035cn_queue_alloc_callback_entry(struct cn_queue_dev *dev, const char *name,
36 struct cb_id *id,
Valentin Ilief3c48ec2012-07-14 13:08:29 +000037 void (*callback)(struct cn_msg *,
38 struct netlink_skb_parms *))
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070039{
40 struct cn_callback_entry *cbq;
41
42 cbq = kzalloc(sizeof(*cbq), GFP_KERNEL);
43 if (!cbq) {
Valentin Ilief3c48ec2012-07-14 13:08:29 +000044 pr_err("Failed to create new callback queue.\n");
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070045 return NULL;
46 }
47
Patrick McHardy04f482f2011-03-28 08:39:36 +000048 atomic_set(&cbq->refcnt, 1);
49
50 atomic_inc(&dev->refcnt);
51 cbq->pdev = dev;
52
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -070053 snprintf(cbq->id.name, sizeof(cbq->id.name), "%s", name);
54 memcpy(&cbq->id.id, id, sizeof(struct cb_id));
Patrick McHardy04f482f2011-03-28 08:39:36 +000055 cbq->callback = callback;
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070056 return cbq;
57}
58
Patrick McHardy04f482f2011-03-28 08:39:36 +000059void cn_queue_release_callback(struct cn_callback_entry *cbq)
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070060{
Patrick McHardy04f482f2011-03-28 08:39:36 +000061 if (!atomic_dec_and_test(&cbq->refcnt))
62 return;
63
64 atomic_dec(&cbq->pdev->refcnt);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070065 kfree(cbq);
66}
67
68int cn_cb_equal(struct cb_id *i1, struct cb_id *i2)
69{
70 return ((i1->idx == i2->idx) && (i1->val == i2->val));
71}
72
Joe Perches008536e2011-02-19 15:45:29 -080073int cn_queue_add_callback(struct cn_queue_dev *dev, const char *name,
74 struct cb_id *id,
Valentin Ilief3c48ec2012-07-14 13:08:29 +000075 void (*callback)(struct cn_msg *,
76 struct netlink_skb_parms *))
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070077{
78 struct cn_callback_entry *cbq, *__cbq;
79 int found = 0;
80
Patrick McHardy04f482f2011-03-28 08:39:36 +000081 cbq = cn_queue_alloc_callback_entry(dev, name, id, callback);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070082 if (!cbq)
83 return -ENOMEM;
84
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070085 spin_lock_bh(&dev->queue_lock);
86 list_for_each_entry(__cbq, &dev->queue_list, callback_entry) {
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -070087 if (cn_cb_equal(&__cbq->id.id, id)) {
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070088 found = 1;
89 break;
90 }
91 }
92 if (!found)
93 list_add_tail(&cbq->callback_entry, &dev->queue_list);
94 spin_unlock_bh(&dev->queue_lock);
95
96 if (found) {
Patrick McHardy04f482f2011-03-28 08:39:36 +000097 cn_queue_release_callback(cbq);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070098 return -EINVAL;
99 }
100
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700101 cbq->seq = 0;
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -0700102 cbq->group = cbq->id.id.idx;
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700103
104 return 0;
105}
106
107void cn_queue_del_callback(struct cn_queue_dev *dev, struct cb_id *id)
108{
109 struct cn_callback_entry *cbq, *n;
110 int found = 0;
111
112 spin_lock_bh(&dev->queue_lock);
113 list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry) {
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -0700114 if (cn_cb_equal(&cbq->id.id, id)) {
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700115 list_del(&cbq->callback_entry);
116 found = 1;
117 break;
118 }
119 }
120 spin_unlock_bh(&dev->queue_lock);
121
Patrick McHardy04f482f2011-03-28 08:39:36 +0000122 if (found)
123 cn_queue_release_callback(cbq);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700124}
125
Joe Perches008536e2011-02-19 15:45:29 -0800126struct cn_queue_dev *cn_queue_alloc_dev(const char *name, struct sock *nls)
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700127{
128 struct cn_queue_dev *dev;
129
130 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
131 if (!dev)
132 return NULL;
133
134 snprintf(dev->name, sizeof(dev->name), "%s", name);
135 atomic_set(&dev->refcnt, 0);
136 INIT_LIST_HEAD(&dev->queue_list);
137 spin_lock_init(&dev->queue_lock);
138
139 dev->nls = nls;
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700140
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700141 return dev;
142}
143
144void cn_queue_free_dev(struct cn_queue_dev *dev)
145{
146 struct cn_callback_entry *cbq, *n;
147
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700148 spin_lock_bh(&dev->queue_lock);
149 list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry)
150 list_del(&cbq->callback_entry);
151 spin_unlock_bh(&dev->queue_lock);
152
153 while (atomic_read(&dev->refcnt)) {
Valentin Ilief3c48ec2012-07-14 13:08:29 +0000154 pr_info("Waiting for %s to become free: refcnt=%d.\n",
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700155 dev->name, atomic_read(&dev->refcnt));
156 msleep(1000);
157 }
158
159 kfree(dev);
160 dev = NULL;
161}