LCOV - code coverage report
Current view: top level - drivers/connector - cn_queue.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 35 71 49.3 %
Date: 2022-04-01 14:58:12 Functions: 3 7 42.9 %
Branches: 6 34 17.6 %

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

Generated by: LCOV version 1.14