cn_queue.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * cn_queue.c
  3. *
  4. * 2004-2005 Copyright (c) Evgeniy Polyakov <johnpol@2ka.mipt.ru>
  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.work);
  36. struct cn_callback_data *d = &cbq->data;
  37. d->callback(d->callback_priv);
  38. d->destruct_data(d->ddata);
  39. d->ddata = NULL;
  40. kfree(d->free);
  41. }
  42. static struct cn_callback_entry *cn_queue_alloc_callback_entry(char *name, struct cb_id *id, void (*callback)(void *))
  43. {
  44. struct cn_callback_entry *cbq;
  45. cbq = kzalloc(sizeof(*cbq), GFP_KERNEL);
  46. if (!cbq) {
  47. printk(KERN_ERR "Failed to create new callback queue.\n");
  48. return NULL;
  49. }
  50. snprintf(cbq->id.name, sizeof(cbq->id.name), "%s", name);
  51. memcpy(&cbq->id.id, id, sizeof(struct cb_id));
  52. cbq->data.callback = callback;
  53. INIT_DELAYED_WORK(&cbq->work, &cn_queue_wrapper);
  54. return cbq;
  55. }
  56. static void cn_queue_free_callback(struct cn_callback_entry *cbq)
  57. {
  58. cancel_delayed_work(&cbq->work);
  59. flush_workqueue(cbq->pdev->cn_queue);
  60. kfree(cbq);
  61. }
  62. int cn_cb_equal(struct cb_id *i1, struct cb_id *i2)
  63. {
  64. return ((i1->idx == i2->idx) && (i1->val == i2->val));
  65. }
  66. int cn_queue_add_callback(struct cn_queue_dev *dev, char *name, struct cb_id *id, void (*callback)(void *))
  67. {
  68. struct cn_callback_entry *cbq, *__cbq;
  69. int found = 0;
  70. cbq = cn_queue_alloc_callback_entry(name, id, callback);
  71. if (!cbq)
  72. return -ENOMEM;
  73. atomic_inc(&dev->refcnt);
  74. cbq->pdev = dev;
  75. spin_lock_bh(&dev->queue_lock);
  76. list_for_each_entry(__cbq, &dev->queue_list, callback_entry) {
  77. if (cn_cb_equal(&__cbq->id.id, id)) {
  78. found = 1;
  79. break;
  80. }
  81. }
  82. if (!found)
  83. list_add_tail(&cbq->callback_entry, &dev->queue_list);
  84. spin_unlock_bh(&dev->queue_lock);
  85. if (found) {
  86. atomic_dec(&dev->refcnt);
  87. cn_queue_free_callback(cbq);
  88. return -EINVAL;
  89. }
  90. cbq->nls = dev->nls;
  91. cbq->seq = 0;
  92. cbq->group = cbq->id.id.idx;
  93. return 0;
  94. }
  95. void cn_queue_del_callback(struct cn_queue_dev *dev, struct cb_id *id)
  96. {
  97. struct cn_callback_entry *cbq, *n;
  98. int found = 0;
  99. spin_lock_bh(&dev->queue_lock);
  100. list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry) {
  101. if (cn_cb_equal(&cbq->id.id, id)) {
  102. list_del(&cbq->callback_entry);
  103. found = 1;
  104. break;
  105. }
  106. }
  107. spin_unlock_bh(&dev->queue_lock);
  108. if (found) {
  109. cn_queue_free_callback(cbq);
  110. atomic_dec(&dev->refcnt);
  111. }
  112. }
  113. struct cn_queue_dev *cn_queue_alloc_dev(char *name, struct sock *nls)
  114. {
  115. struct cn_queue_dev *dev;
  116. dev = kzalloc(sizeof(*dev), GFP_KERNEL);
  117. if (!dev)
  118. return NULL;
  119. snprintf(dev->name, sizeof(dev->name), "%s", name);
  120. atomic_set(&dev->refcnt, 0);
  121. INIT_LIST_HEAD(&dev->queue_list);
  122. spin_lock_init(&dev->queue_lock);
  123. dev->nls = nls;
  124. dev->netlink_groups = 0;
  125. dev->cn_queue = create_workqueue(dev->name);
  126. if (!dev->cn_queue) {
  127. kfree(dev);
  128. return NULL;
  129. }
  130. return dev;
  131. }
  132. void cn_queue_free_dev(struct cn_queue_dev *dev)
  133. {
  134. struct cn_callback_entry *cbq, *n;
  135. flush_workqueue(dev->cn_queue);
  136. destroy_workqueue(dev->cn_queue);
  137. spin_lock_bh(&dev->queue_lock);
  138. list_for_each_entry_safe(cbq, n, &dev->queue_list, callback_entry)
  139. list_del(&cbq->callback_entry);
  140. spin_unlock_bh(&dev->queue_lock);
  141. while (atomic_read(&dev->refcnt)) {
  142. printk(KERN_INFO "Waiting for %s to become free: refcnt=%d.\n",
  143. dev->name, atomic_read(&dev->refcnt));
  144. msleep(1000);
  145. }
  146. kfree(dev);
  147. dev = NULL;
  148. }