blob: 55653aba6735ae18662d2f23aa056e8605b14c60 [file] [log] [blame]
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -07001/*
2 * 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
David Howellsc4028952006-11-22 14:57:56 +000034void cn_queue_wrapper(struct work_struct *work)
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070035{
David Howellsc4028952006-11-22 14:57:56 +000036 struct cn_callback_entry *cbq =
Evgeniy Polyakova240d9f2006-12-18 01:53:58 -080037 container_of(work, struct cn_callback_entry, work);
David Howellsc4028952006-11-22 14:57:56 +000038 struct cn_callback_data *d = &cbq->data;
Philipp Reisner293500a2009-10-02 02:40:04 +000039 struct cn_msg *msg = NLMSG_DATA(nlmsg_hdr(d->skb));
Philipp Reisner70693312009-10-02 02:40:05 +000040 struct netlink_skb_parms *nsp = &NETLINK_CB(d->skb);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070041
Philipp Reisner70693312009-10-02 02:40:05 +000042 d->callback(msg, nsp);
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -070043
Philipp Reisnerf1489cf2009-10-02 02:40:07 +000044 kfree_skb(d->skb);
45 d->skb = NULL;
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -070046
47 kfree(d->free);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070048}
49
Mike Frysinger07412412009-07-17 10:13:21 -070050static struct cn_callback_entry *
Joe Perches008536e2011-02-19 15:45:29 -080051cn_queue_alloc_callback_entry(const char *name, struct cb_id *id,
Philipp Reisner70693312009-10-02 02:40:05 +000052 void (*callback)(struct cn_msg *, struct netlink_skb_parms *))
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070053{
54 struct cn_callback_entry *cbq;
55
56 cbq = kzalloc(sizeof(*cbq), GFP_KERNEL);
57 if (!cbq) {
58 printk(KERN_ERR "Failed to create new callback queue.\n");
59 return NULL;
60 }
61
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -070062 snprintf(cbq->id.name, sizeof(cbq->id.name), "%s", name);
63 memcpy(&cbq->id.id, id, sizeof(struct cb_id));
64 cbq->data.callback = callback;
Frederic Weisbecker1a5645b2009-02-02 23:22:04 -080065
Evgeniy Polyakova240d9f2006-12-18 01:53:58 -080066 INIT_WORK(&cbq->work, &cn_queue_wrapper);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070067 return cbq;
68}
69
70static void cn_queue_free_callback(struct cn_callback_entry *cbq)
71{
Tejun Heo6cebb172010-10-14 23:55:22 +000072 flush_workqueue(cbq->pdev->cn_queue);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070073 kfree(cbq);
74}
75
76int cn_cb_equal(struct cb_id *i1, struct cb_id *i2)
77{
78 return ((i1->idx == i2->idx) && (i1->val == i2->val));
79}
80
Joe Perches008536e2011-02-19 15:45:29 -080081int cn_queue_add_callback(struct cn_queue_dev *dev, const char *name,
82 struct cb_id *id,
Philipp Reisner70693312009-10-02 02:40:05 +000083 void (*callback)(struct cn_msg *, struct netlink_skb_parms *))
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070084{
85 struct cn_callback_entry *cbq, *__cbq;
86 int found = 0;
87
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -070088 cbq = cn_queue_alloc_callback_entry(name, id, callback);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070089 if (!cbq)
90 return -ENOMEM;
91
92 atomic_inc(&dev->refcnt);
93 cbq->pdev = dev;
94
95 spin_lock_bh(&dev->queue_lock);
96 list_for_each_entry(__cbq, &dev->queue_list, callback_entry) {
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -070097 if (cn_cb_equal(&__cbq->id.id, id)) {
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -070098 found = 1;
99 break;
100 }
101 }
102 if (!found)
103 list_add_tail(&cbq->callback_entry, &dev->queue_list);
104 spin_unlock_bh(&dev->queue_lock);
105
106 if (found) {
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700107 cn_queue_free_callback(cbq);
Li Zefancf585ae2008-01-08 23:44:44 -0800108 atomic_dec(&dev->refcnt);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700109 return -EINVAL;
110 }
111
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700112 cbq->seq = 0;
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -0700113 cbq->group = cbq->id.id.idx;
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700114
115 return 0;
116}
117
118void cn_queue_del_callback(struct cn_queue_dev *dev, struct cb_id *id)
119{
120 struct cn_callback_entry *cbq, *n;
121 int found = 0;
122
123 spin_lock_bh(&dev->queue_lock);
124 list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry) {
Evgeniy Polyakovacd042b2005-09-26 15:06:50 -0700125 if (cn_cb_equal(&cbq->id.id, id)) {
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700126 list_del(&cbq->callback_entry);
127 found = 1;
128 break;
129 }
130 }
131 spin_unlock_bh(&dev->queue_lock);
132
133 if (found) {
134 cn_queue_free_callback(cbq);
Andreas Schwabcec6f7f2006-06-05 21:21:57 -0700135 atomic_dec(&dev->refcnt);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700136 }
137}
138
Joe Perches008536e2011-02-19 15:45:29 -0800139struct cn_queue_dev *cn_queue_alloc_dev(const char *name, struct sock *nls)
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700140{
141 struct cn_queue_dev *dev;
142
143 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
144 if (!dev)
145 return NULL;
146
147 snprintf(dev->name, sizeof(dev->name), "%s", name);
148 atomic_set(&dev->refcnt, 0);
149 INIT_LIST_HEAD(&dev->queue_list);
150 spin_lock_init(&dev->queue_lock);
151
152 dev->nls = nls;
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700153
Tejun Heo6cebb172010-10-14 23:55:22 +0000154 dev->cn_queue = alloc_ordered_workqueue(dev->name, 0);
155 if (!dev->cn_queue) {
156 kfree(dev);
157 return NULL;
158 }
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700159
160 return dev;
161}
162
163void cn_queue_free_dev(struct cn_queue_dev *dev)
164{
165 struct cn_callback_entry *cbq, *n;
166
Tejun Heo6cebb172010-10-14 23:55:22 +0000167 flush_workqueue(dev->cn_queue);
168 destroy_workqueue(dev->cn_queue);
Evgeniy Polyakov7672d0b2005-09-11 19:15:07 -0700169
170 spin_lock_bh(&dev->queue_lock);
171 list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry)
172 list_del(&cbq->callback_entry);
173 spin_unlock_bh(&dev->queue_lock);
174
175 while (atomic_read(&dev->refcnt)) {
176 printk(KERN_INFO "Waiting for %s to become free: refcnt=%d.\n",
177 dev->name, atomic_read(&dev->refcnt));
178 msleep(1000);
179 }
180
181 kfree(dev);
182 dev = NULL;
183}