cn_queue.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * cn_queue.c
  3. *
  4. * 2004+ Copyright (c) Evgeniy Polyakov <zbr@ioremap.net>
  5. * All rights reserved.
  6. *
  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.
  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. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #include <linux/list.h>
  25. #include <linux/workqueue.h>
  26. #include <linux/spinlock.h>
  27. #include <linux/slab.h>
  28. #include <linux/skbuff.h>
  29. #include <linux/suspend.h>
  30. #include <linux/connector.h>
  31. #include <linux/delay.h>
  32. void cn_queue_wrapper(struct work_struct *work)
  33. {
  34. struct cn_callback_entry *cbq =
  35. container_of(work, struct cn_callback_entry, work);
  36. struct cn_callback_data *d = &cbq->data;
  37. struct cn_msg *msg = NLMSG_DATA(nlmsg_hdr(d->skb));
  38. struct netlink_skb_parms *nsp = &NETLINK_CB(d->skb);
  39. d->callback(msg, nsp);
  40. kfree_skb(d->skb);
  41. d->skb = NULL;
  42. kfree(d->free);
  43. }
  44. static struct cn_callback_entry *
  45. cn_queue_alloc_callback_entry(const char *name, struct cb_id *id,
  46. void (*callback)(struct cn_msg *, struct netlink_skb_parms *))
  47. {
  48. struct cn_callback_entry *cbq;
  49. cbq = kzalloc(sizeof(*cbq), GFP_KERNEL);
  50. if (!cbq) {
  51. printk(KERN_ERR "Failed to create new callback queue.\n");
  52. return NULL;
  53. }
  54. snprintf(cbq->id.name, sizeof(cbq->id.name), "%s", name);
  55. memcpy(&cbq->id.id, id, sizeof(struct cb_id));
  56. cbq->data.callback = callback;
  57. INIT_WORK(&cbq->work, &cn_queue_wrapper);
  58. return cbq;
  59. }
  60. static void cn_queue_free_callback(struct cn_callback_entry *cbq)
  61. {
  62. flush_workqueue(cbq->pdev->cn_queue);
  63. kfree(cbq);
  64. }
  65. int cn_cb_equal(struct cb_id *i1, struct cb_id *i2)
  66. {
  67. return ((i1->idx == i2->idx) && (i1->val == i2->val));
  68. }
  69. int cn_queue_add_callback(struct cn_queue_dev *dev, const char *name,
  70. struct cb_id *id,
  71. void (*callback)(struct cn_msg *, struct netlink_skb_parms *))
  72. {
  73. struct cn_callback_entry *cbq, *__cbq;
  74. int found = 0;
  75. cbq = cn_queue_alloc_callback_entry(name, id, callback);
  76. if (!cbq)
  77. return -ENOMEM;
  78. atomic_inc(&dev->refcnt);
  79. cbq->pdev = dev;
  80. spin_lock_bh(&dev->queue_lock);
  81. list_for_each_entry(__cbq, &dev->queue_list, callback_entry) {
  82. if (cn_cb_equal(&__cbq->id.id, id)) {
  83. found = 1;
  84. break;
  85. }
  86. }
  87. if (!found)
  88. list_add_tail(&cbq->callback_entry, &dev->queue_list);
  89. spin_unlock_bh(&dev->queue_lock);
  90. if (found) {
  91. cn_queue_free_callback(cbq);
  92. atomic_dec(&dev->refcnt);
  93. return -EINVAL;
  94. }
  95. cbq->seq = 0;
  96. cbq->group = cbq->id.id.idx;
  97. return 0;
  98. }
  99. void cn_queue_del_callback(struct cn_queue_dev *dev, struct cb_id *id)
  100. {
  101. struct cn_callback_entry *cbq, *n;
  102. int found = 0;
  103. spin_lock_bh(&dev->queue_lock);
  104. list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry) {
  105. if (cn_cb_equal(&cbq->id.id, id)) {
  106. list_del(&cbq->callback_entry);
  107. found = 1;
  108. break;
  109. }
  110. }
  111. spin_unlock_bh(&dev->queue_lock);
  112. if (found) {
  113. cn_queue_free_callback(cbq);
  114. atomic_dec(&dev->refcnt);
  115. }
  116. }
  117. struct cn_queue_dev *cn_queue_alloc_dev(const char *name, struct sock *nls)
  118. {
  119. struct cn_queue_dev *dev;
  120. dev = kzalloc(sizeof(*dev), GFP_KERNEL);
  121. if (!dev)
  122. return NULL;
  123. snprintf(dev->name, sizeof(dev->name), "%s", name);
  124. atomic_set(&dev->refcnt, 0);
  125. INIT_LIST_HEAD(&dev->queue_list);
  126. spin_lock_init(&dev->queue_lock);
  127. dev->nls = nls;
  128. dev->cn_queue = alloc_ordered_workqueue(dev->name, 0);
  129. if (!dev->cn_queue) {
  130. kfree(dev);
  131. return NULL;
  132. }
  133. return dev;
  134. }
  135. void cn_queue_free_dev(struct cn_queue_dev *dev)
  136. {
  137. struct cn_callback_entry *cbq, *n;
  138. flush_workqueue(dev->cn_queue);
  139. destroy_workqueue(dev->cn_queue);
  140. spin_lock_bh(&dev->queue_lock);
  141. list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry)
  142. list_del(&cbq->callback_entry);
  143. spin_unlock_bh(&dev->queue_lock);
  144. while (atomic_read(&dev->refcnt)) {
  145. printk(KERN_INFO "Waiting for %s to become free: refcnt=%d.\n",
  146. dev->name, atomic_read(&dev->refcnt));
  147. msleep(1000);
  148. }
  149. kfree(dev);
  150. dev = NULL;
  151. }