4 * 2004+ Copyright (c) Evgeniy Polyakov <zbr@ioremap.net>
7 * 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.
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.
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
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>
34 static struct cn_callback_entry *
35 cn_queue_alloc_callback_entry(struct cn_queue_dev *dev, const char *name,
37 void (*callback)(struct cn_msg *,
38 struct netlink_skb_parms *))
40 struct cn_callback_entry *cbq;
42 cbq = kzalloc(sizeof(*cbq), GFP_KERNEL);
44 pr_err("Failed to create new callback queue.\n");
48 atomic_set(&cbq->refcnt, 1);
50 atomic_inc(&dev->refcnt);
53 snprintf(cbq->id.name, sizeof(cbq->id.name), "%s", name);
54 memcpy(&cbq->id.id, id, sizeof(struct cb_id));
55 cbq->callback = callback;
59 void cn_queue_release_callback(struct cn_callback_entry *cbq)
61 if (!atomic_dec_and_test(&cbq->refcnt))
64 atomic_dec(&cbq->pdev->refcnt);
68 int cn_cb_equal(struct cb_id *i1, struct cb_id *i2)
70 return ((i1->idx == i2->idx) && (i1->val == i2->val));
73 int cn_queue_add_callback(struct cn_queue_dev *dev, const char *name,
75 void (*callback)(struct cn_msg *,
76 struct netlink_skb_parms *))
78 struct cn_callback_entry *cbq, *__cbq;
81 cbq = cn_queue_alloc_callback_entry(dev, name, id, callback);
85 spin_lock_bh(&dev->queue_lock);
86 list_for_each_entry(__cbq, &dev->queue_list, callback_entry) {
87 if (cn_cb_equal(&__cbq->id.id, id)) {
93 list_add_tail(&cbq->callback_entry, &dev->queue_list);
94 spin_unlock_bh(&dev->queue_lock);
97 cn_queue_release_callback(cbq);
102 cbq->group = cbq->id.id.idx;
107 void cn_queue_del_callback(struct cn_queue_dev *dev, struct cb_id *id)
109 struct cn_callback_entry *cbq, *n;
112 spin_lock_bh(&dev->queue_lock);
113 list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry) {
114 if (cn_cb_equal(&cbq->id.id, id)) {
115 list_del(&cbq->callback_entry);
120 spin_unlock_bh(&dev->queue_lock);
123 cn_queue_release_callback(cbq);
126 struct cn_queue_dev *cn_queue_alloc_dev(const char *name, struct sock *nls)
128 struct cn_queue_dev *dev;
130 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
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);
144 void cn_queue_free_dev(struct cn_queue_dev *dev)
146 struct cn_callback_entry *cbq, *n;
148 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);
153 while (atomic_read(&dev->refcnt)) {
154 pr_info("Waiting for %s to become free: refcnt=%d.\n",
155 dev->name, atomic_read(&dev->refcnt));