Thomas Gleixner | af873fc | 2019-05-28 09:57:21 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) ST-Ericsson AB 2010 |
sjur.brandeland@stericsson.com | 26ee65e | 2013-04-22 23:57:01 +0000 | [diff] [blame] | 4 | * Authors: Sjur Brendeland |
sjur.brandeland@stericsson.com | c2cd0a5 | 2013-04-22 23:57:02 +0000 | [diff] [blame] | 5 | * Daniel Martensson |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__ |
| 9 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 10 | #include <linux/fs.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/netdevice.h> |
| 14 | #include <linux/if_ether.h> |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 15 | #include <linux/ip.h> |
| 16 | #include <linux/sched.h> |
| 17 | #include <linux/sockios.h> |
| 18 | #include <linux/caif/if_caif.h> |
| 19 | #include <net/rtnetlink.h> |
| 20 | #include <net/caif/caif_layer.h> |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 21 | #include <net/caif/cfpkt.h> |
| 22 | #include <net/caif/caif_dev.h> |
| 23 | |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 24 | /* GPRS PDP connection has MTU to 1500 */ |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 25 | #define GPRS_PDP_MTU 1500 |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 26 | /* 5 sec. connect timeout */ |
| 27 | #define CONNECT_TIMEOUT (5 * HZ) |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 28 | #define CAIF_NET_DEFAULT_QUEUE_LEN 500 |
sjur.brandeland@stericsson.com | e3abcc2 | 2012-03-11 10:28:32 +0000 | [diff] [blame] | 29 | #define UNDEF_CONNID 0xffffffff |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 30 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 31 | /*This list is protected by the rtnl lock. */ |
| 32 | static LIST_HEAD(chnl_net_list); |
| 33 | |
| 34 | MODULE_LICENSE("GPL"); |
| 35 | MODULE_ALIAS_RTNL_LINK("caif"); |
| 36 | |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 37 | enum caif_states { |
| 38 | CAIF_CONNECTED = 1, |
| 39 | CAIF_CONNECTING, |
| 40 | CAIF_DISCONNECTED, |
| 41 | CAIF_SHUTDOWN |
| 42 | }; |
| 43 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 44 | struct chnl_net { |
| 45 | struct cflayer chnl; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 46 | struct caif_connect_request conn_req; |
| 47 | struct list_head list_field; |
| 48 | struct net_device *netdev; |
| 49 | char name[256]; |
| 50 | wait_queue_head_t netmgmt_wq; |
| 51 | /* Flow status to remember and control the transmission. */ |
| 52 | bool flowenabled; |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 53 | enum caif_states state; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 54 | }; |
| 55 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 56 | static int chnl_recv_cb(struct cflayer *layr, struct cfpkt *pkt) |
| 57 | { |
| 58 | struct sk_buff *skb; |
Dan Carpenter | af2ce21 | 2012-02-06 21:20:15 +0000 | [diff] [blame] | 59 | struct chnl_net *priv; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 60 | int pktlen; |
Kumar Sanghvi | d7b92aff | 2011-01-07 01:57:08 +0000 | [diff] [blame] | 61 | const u8 *ip_version; |
| 62 | u8 buf; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 63 | |
| 64 | priv = container_of(layr, struct chnl_net, chnl); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 65 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 66 | skb = (struct sk_buff *) cfpkt_tonative(pkt); |
sjur.brandeland@stericsson.com | 3f874ad | 2011-05-13 02:44:08 +0000 | [diff] [blame] | 67 | |
| 68 | /* Get length of CAIF packet. */ |
| 69 | pktlen = skb->len; |
| 70 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 71 | /* Pass some minimum information and |
| 72 | * send the packet to the net stack. |
| 73 | */ |
| 74 | skb->dev = priv->netdev; |
Kumar Sanghvi | d7b92aff | 2011-01-07 01:57:08 +0000 | [diff] [blame] | 75 | |
| 76 | /* check the version of IP */ |
| 77 | ip_version = skb_header_pointer(skb, 0, 1, &buf); |
Jesper Juhl | d92c7f8 | 2012-08-17 10:33:12 +0000 | [diff] [blame] | 78 | if (!ip_version) { |
| 79 | kfree_skb(skb); |
| 80 | return -EINVAL; |
| 81 | } |
sjur.brandeland@stericsson.com | 576f3cc | 2012-02-03 04:36:20 +0000 | [diff] [blame] | 82 | |
Kumar Sanghvi | d7b92aff | 2011-01-07 01:57:08 +0000 | [diff] [blame] | 83 | switch (*ip_version >> 4) { |
| 84 | case 4: |
| 85 | skb->protocol = htons(ETH_P_IP); |
| 86 | break; |
| 87 | case 6: |
| 88 | skb->protocol = htons(ETH_P_IPV6); |
| 89 | break; |
| 90 | default: |
Tomasz Gregorek | 5c699fb | 2012-04-12 08:18:07 +0000 | [diff] [blame] | 91 | kfree_skb(skb); |
sjur.brandeland@stericsson.com | 576f3cc | 2012-02-03 04:36:20 +0000 | [diff] [blame] | 92 | priv->netdev->stats.rx_errors++; |
Kumar Sanghvi | d7b92aff | 2011-01-07 01:57:08 +0000 | [diff] [blame] | 93 | return -EINVAL; |
| 94 | } |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 95 | |
| 96 | /* If we change the header in loop mode, the checksum is corrupted. */ |
| 97 | if (priv->conn_req.protocol == CAIFPROTO_DATAGRAM_LOOP) |
| 98 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 99 | else |
| 100 | skb->ip_summed = CHECKSUM_NONE; |
| 101 | |
Sebastian Andrzej Siewior | d6d8a24 | 2021-02-13 18:05:14 +0100 | [diff] [blame] | 102 | netif_rx_any_context(skb); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 103 | |
| 104 | /* Update statistics. */ |
| 105 | priv->netdev->stats.rx_packets++; |
| 106 | priv->netdev->stats.rx_bytes += pktlen; |
| 107 | |
sjur.brandeland@stericsson.com | 576f3cc | 2012-02-03 04:36:20 +0000 | [diff] [blame] | 108 | return 0; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | static int delete_device(struct chnl_net *dev) |
| 112 | { |
| 113 | ASSERT_RTNL(); |
| 114 | if (dev->netdev) |
| 115 | unregister_netdevice(dev->netdev); |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | static void close_work(struct work_struct *work) |
| 120 | { |
| 121 | struct chnl_net *dev = NULL; |
| 122 | struct list_head *list_node; |
| 123 | struct list_head *_tmp; |
sjur.brandeland@stericsson.com | 41be5a4 | 2011-06-01 00:55:37 +0000 | [diff] [blame] | 124 | |
| 125 | rtnl_lock(); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 126 | list_for_each_safe(list_node, _tmp, &chnl_net_list) { |
| 127 | dev = list_entry(list_node, struct chnl_net, list_field); |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 128 | if (dev->state == CAIF_SHUTDOWN) |
| 129 | dev_close(dev->netdev); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 130 | } |
sjur.brandeland@stericsson.com | 41be5a4 | 2011-06-01 00:55:37 +0000 | [diff] [blame] | 131 | rtnl_unlock(); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 132 | } |
| 133 | static DECLARE_WORK(close_worker, close_work); |
| 134 | |
sjur.brandeland@stericsson.com | b3ccfbe | 2011-05-13 02:44:04 +0000 | [diff] [blame] | 135 | static void chnl_hold(struct cflayer *lyr) |
| 136 | { |
| 137 | struct chnl_net *priv = container_of(lyr, struct chnl_net, chnl); |
| 138 | dev_hold(priv->netdev); |
| 139 | } |
| 140 | |
| 141 | static void chnl_put(struct cflayer *lyr) |
| 142 | { |
| 143 | struct chnl_net *priv = container_of(lyr, struct chnl_net, chnl); |
| 144 | dev_put(priv->netdev); |
| 145 | } |
| 146 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 147 | static void chnl_flowctrl_cb(struct cflayer *layr, enum caif_ctrlcmd flow, |
Silviu-Mihai Popescu | 3bffc47 | 2013-03-06 19:39:57 +0000 | [diff] [blame] | 148 | int phyid) |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 149 | { |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 150 | struct chnl_net *priv = container_of(layr, struct chnl_net, chnl); |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 151 | pr_debug("NET flowctrl func called flow: %s\n", |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 152 | flow == CAIF_CTRLCMD_FLOW_ON_IND ? "ON" : |
| 153 | flow == CAIF_CTRLCMD_INIT_RSP ? "INIT" : |
| 154 | flow == CAIF_CTRLCMD_FLOW_OFF_IND ? "OFF" : |
| 155 | flow == CAIF_CTRLCMD_DEINIT_RSP ? "CLOSE/DEINIT" : |
| 156 | flow == CAIF_CTRLCMD_INIT_FAIL_RSP ? "OPEN_FAIL" : |
| 157 | flow == CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND ? |
Colin Ian King | 5e84b38 | 2018-04-18 12:00:08 +0100 | [diff] [blame] | 158 | "REMOTE_SHUTDOWN" : "UNKNOWN CTRL COMMAND"); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 159 | |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 160 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 161 | |
| 162 | switch (flow) { |
| 163 | case CAIF_CTRLCMD_FLOW_OFF_IND: |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 164 | priv->flowenabled = false; |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 165 | netif_stop_queue(priv->netdev); |
| 166 | break; |
| 167 | case CAIF_CTRLCMD_DEINIT_RSP: |
| 168 | priv->state = CAIF_DISCONNECTED; |
| 169 | break; |
| 170 | case CAIF_CTRLCMD_INIT_FAIL_RSP: |
| 171 | priv->state = CAIF_DISCONNECTED; |
| 172 | wake_up_interruptible(&priv->netmgmt_wq); |
| 173 | break; |
| 174 | case CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND: |
| 175 | priv->state = CAIF_SHUTDOWN; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 176 | netif_tx_disable(priv->netdev); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 177 | schedule_work(&close_worker); |
| 178 | break; |
| 179 | case CAIF_CTRLCMD_FLOW_ON_IND: |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 180 | priv->flowenabled = true; |
| 181 | netif_wake_queue(priv->netdev); |
| 182 | break; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 183 | case CAIF_CTRLCMD_INIT_RSP: |
sjur.brandeland@stericsson.com | b3ccfbe | 2011-05-13 02:44:04 +0000 | [diff] [blame] | 184 | caif_client_register_refcnt(&priv->chnl, chnl_hold, chnl_put); |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 185 | priv->state = CAIF_CONNECTED; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 186 | priv->flowenabled = true; |
| 187 | netif_wake_queue(priv->netdev); |
| 188 | wake_up_interruptible(&priv->netmgmt_wq); |
| 189 | break; |
| 190 | default: |
| 191 | break; |
| 192 | } |
| 193 | } |
| 194 | |
Yunjian Wang | 99b2292 | 2020-04-30 18:16:16 +0800 | [diff] [blame] | 195 | static netdev_tx_t chnl_net_start_xmit(struct sk_buff *skb, |
| 196 | struct net_device *dev) |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 197 | { |
| 198 | struct chnl_net *priv; |
| 199 | struct cfpkt *pkt = NULL; |
| 200 | int len; |
| 201 | int result = -1; |
| 202 | /* Get our private data. */ |
| 203 | priv = netdev_priv(dev); |
| 204 | |
| 205 | if (skb->len > priv->netdev->mtu) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 206 | pr_warn("Size of skb exceeded MTU\n"); |
Tomasz Gregorek | 5c699fb | 2012-04-12 08:18:07 +0000 | [diff] [blame] | 207 | kfree_skb(skb); |
sjur.brandeland@stericsson.com | 576f3cc | 2012-02-03 04:36:20 +0000 | [diff] [blame] | 208 | dev->stats.tx_errors++; |
Tomasz Gregorek | 5c699fb | 2012-04-12 08:18:07 +0000 | [diff] [blame] | 209 | return NETDEV_TX_OK; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | if (!priv->flowenabled) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 213 | pr_debug("dropping packets flow off\n"); |
Tomasz Gregorek | 5c699fb | 2012-04-12 08:18:07 +0000 | [diff] [blame] | 214 | kfree_skb(skb); |
sjur.brandeland@stericsson.com | 576f3cc | 2012-02-03 04:36:20 +0000 | [diff] [blame] | 215 | dev->stats.tx_dropped++; |
Tomasz Gregorek | 5c699fb | 2012-04-12 08:18:07 +0000 | [diff] [blame] | 216 | return NETDEV_TX_OK; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | if (priv->conn_req.protocol == CAIFPROTO_DATAGRAM_LOOP) |
| 220 | swap(ip_hdr(skb)->saddr, ip_hdr(skb)->daddr); |
| 221 | |
| 222 | /* Store original SKB length. */ |
| 223 | len = skb->len; |
| 224 | |
| 225 | pkt = cfpkt_fromnative(CAIF_DIR_OUT, (void *) skb); |
| 226 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 227 | /* Send the packet down the stack. */ |
| 228 | result = priv->chnl.dn->transmit(priv->chnl.dn, pkt); |
| 229 | if (result) { |
sjur.brandeland@stericsson.com | 576f3cc | 2012-02-03 04:36:20 +0000 | [diff] [blame] | 230 | dev->stats.tx_dropped++; |
Tomasz Gregorek | 5c699fb | 2012-04-12 08:18:07 +0000 | [diff] [blame] | 231 | return NETDEV_TX_OK; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | /* Update statistics. */ |
| 235 | dev->stats.tx_packets++; |
| 236 | dev->stats.tx_bytes += len; |
| 237 | |
| 238 | return NETDEV_TX_OK; |
| 239 | } |
| 240 | |
| 241 | static int chnl_net_open(struct net_device *dev) |
| 242 | { |
| 243 | struct chnl_net *priv = NULL; |
| 244 | int result = -1; |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 245 | int llifindex, headroom, tailroom, mtu; |
| 246 | struct net_device *lldev; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 247 | ASSERT_RTNL(); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 248 | priv = netdev_priv(dev); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 249 | if (!priv) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 250 | pr_debug("chnl_net_open: no priv\n"); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 251 | return -ENODEV; |
| 252 | } |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 253 | |
| 254 | if (priv->state != CAIF_CONNECTING) { |
| 255 | priv->state = CAIF_CONNECTING; |
sjur.brandeland@stericsson.com | bee925d | 2011-05-13 02:44:05 +0000 | [diff] [blame] | 256 | result = caif_connect_client(dev_net(dev), &priv->conn_req, |
| 257 | &priv->chnl, &llifindex, |
| 258 | &headroom, &tailroom); |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 259 | if (result != 0) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 260 | pr_debug("err: " |
| 261 | "Unable to register and open device," |
| 262 | " Err:%d\n", |
| 263 | result); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 264 | goto error; |
| 265 | } |
| 266 | |
Ying Xue | a74e942 | 2014-01-15 10:23:43 +0800 | [diff] [blame] | 267 | lldev = __dev_get_by_index(dev_net(dev), llifindex); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 268 | |
| 269 | if (lldev == NULL) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 270 | pr_debug("no interface?\n"); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 271 | result = -ENODEV; |
| 272 | goto error; |
| 273 | } |
| 274 | |
| 275 | dev->needed_tailroom = tailroom + lldev->needed_tailroom; |
| 276 | dev->hard_header_len = headroom + lldev->hard_header_len + |
| 277 | lldev->needed_tailroom; |
| 278 | |
| 279 | /* |
| 280 | * MTU, head-room etc is not know before we have a |
| 281 | * CAIF link layer device available. MTU calculation may |
| 282 | * override initial RTNL configuration. |
| 283 | * MTU is minimum of current mtu, link layer mtu pluss |
| 284 | * CAIF head and tail, and PDP GPRS contexts max MTU. |
| 285 | */ |
| 286 | mtu = min_t(int, dev->mtu, lldev->mtu - (headroom + tailroom)); |
| 287 | mtu = min_t(int, GPRS_PDP_MTU, mtu); |
| 288 | dev_set_mtu(dev, mtu); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 289 | |
| 290 | if (mtu < 100) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 291 | pr_warn("CAIF Interface MTU too small (%d)\n", mtu); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 292 | result = -ENODEV; |
| 293 | goto error; |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 294 | } |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 295 | } |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 296 | |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 297 | rtnl_unlock(); /* Release RTNL lock during connect wait */ |
| 298 | |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 299 | result = wait_event_interruptible_timeout(priv->netmgmt_wq, |
| 300 | priv->state != CAIF_CONNECTING, |
| 301 | CONNECT_TIMEOUT); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 302 | |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 303 | rtnl_lock(); |
| 304 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 305 | if (result == -ERESTARTSYS) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 306 | pr_debug("wait_event_interruptible woken by a signal\n"); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 307 | result = -ERESTARTSYS; |
| 308 | goto error; |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 309 | } |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 310 | |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 311 | if (result == 0) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 312 | pr_debug("connect timeout\n"); |
sjur.brandeland@stericsson.com | bee925d | 2011-05-13 02:44:05 +0000 | [diff] [blame] | 313 | caif_disconnect_client(dev_net(dev), &priv->chnl); |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 314 | priv->state = CAIF_DISCONNECTED; |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 315 | pr_debug("state disconnected\n"); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 316 | result = -ETIMEDOUT; |
| 317 | goto error; |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 318 | } |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 319 | |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 320 | if (priv->state != CAIF_CONNECTED) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 321 | pr_debug("connect failed\n"); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 322 | result = -ECONNREFUSED; |
| 323 | goto error; |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 324 | } |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 325 | pr_debug("CAIF Netdevice connected\n"); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 326 | return 0; |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 327 | |
| 328 | error: |
sjur.brandeland@stericsson.com | bee925d | 2011-05-13 02:44:05 +0000 | [diff] [blame] | 329 | caif_disconnect_client(dev_net(dev), &priv->chnl); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 330 | priv->state = CAIF_DISCONNECTED; |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 331 | pr_debug("state disconnected\n"); |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 332 | return result; |
| 333 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | static int chnl_net_stop(struct net_device *dev) |
| 337 | { |
| 338 | struct chnl_net *priv; |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 339 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 340 | ASSERT_RTNL(); |
| 341 | priv = netdev_priv(dev); |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 342 | priv->state = CAIF_DISCONNECTED; |
sjur.brandeland@stericsson.com | bee925d | 2011-05-13 02:44:05 +0000 | [diff] [blame] | 343 | caif_disconnect_client(dev_net(dev), &priv->chnl); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 344 | return 0; |
| 345 | } |
| 346 | |
| 347 | static int chnl_net_init(struct net_device *dev) |
| 348 | { |
| 349 | struct chnl_net *priv; |
| 350 | ASSERT_RTNL(); |
| 351 | priv = netdev_priv(dev); |
| 352 | strncpy(priv->name, dev->name, sizeof(priv->name)); |
Eric Dumazet | 550ac9c | 2021-09-13 11:08:36 -0700 | [diff] [blame] | 353 | INIT_LIST_HEAD(&priv->list_field); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 354 | return 0; |
| 355 | } |
| 356 | |
| 357 | static void chnl_net_uninit(struct net_device *dev) |
| 358 | { |
| 359 | struct chnl_net *priv; |
| 360 | ASSERT_RTNL(); |
| 361 | priv = netdev_priv(dev); |
Eric Dumazet | 550ac9c | 2021-09-13 11:08:36 -0700 | [diff] [blame] | 362 | list_del_init(&priv->list_field); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | static const struct net_device_ops netdev_ops = { |
| 366 | .ndo_open = chnl_net_open, |
| 367 | .ndo_stop = chnl_net_stop, |
| 368 | .ndo_init = chnl_net_init, |
| 369 | .ndo_uninit = chnl_net_uninit, |
| 370 | .ndo_start_xmit = chnl_net_start_xmit, |
| 371 | }; |
| 372 | |
sjur.brandeland@stericsson.com | b3ccfbe | 2011-05-13 02:44:04 +0000 | [diff] [blame] | 373 | static void chnl_net_destructor(struct net_device *dev) |
| 374 | { |
| 375 | struct chnl_net *priv = netdev_priv(dev); |
| 376 | caif_free_client(&priv->chnl); |
sjur.brandeland@stericsson.com | b3ccfbe | 2011-05-13 02:44:04 +0000 | [diff] [blame] | 377 | } |
| 378 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 379 | static void ipcaif_net_setup(struct net_device *dev) |
| 380 | { |
| 381 | struct chnl_net *priv; |
| 382 | dev->netdev_ops = &netdev_ops; |
David S. Miller | cf124db | 2017-05-08 12:52:56 -0400 | [diff] [blame] | 383 | dev->needs_free_netdev = true; |
| 384 | dev->priv_destructor = chnl_net_destructor; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 385 | dev->flags |= IFF_NOARP; |
| 386 | dev->flags |= IFF_POINTOPOINT; |
Sjur Braendeland | 2aa40ae | 2010-06-17 06:55:40 +0000 | [diff] [blame] | 387 | dev->mtu = GPRS_PDP_MTU; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 388 | dev->tx_queue_len = CAIF_NET_DEFAULT_QUEUE_LEN; |
| 389 | |
| 390 | priv = netdev_priv(dev); |
| 391 | priv->chnl.receive = chnl_recv_cb; |
| 392 | priv->chnl.ctrlcmd = chnl_flowctrl_cb; |
| 393 | priv->netdev = dev; |
| 394 | priv->conn_req.protocol = CAIFPROTO_DATAGRAM; |
| 395 | priv->conn_req.link_selector = CAIF_LINK_HIGH_BANDW; |
| 396 | priv->conn_req.priority = CAIF_PRIO_LOW; |
| 397 | /* Insert illegal value */ |
sjur.brandeland@stericsson.com | e3abcc2 | 2012-03-11 10:28:32 +0000 | [diff] [blame] | 398 | priv->conn_req.sockaddr.u.dgm.connection_id = UNDEF_CONNID; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 399 | priv->flowenabled = false; |
| 400 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 401 | init_waitqueue_head(&priv->netmgmt_wq); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | |
| 405 | static int ipcaif_fill_info(struct sk_buff *skb, const struct net_device *dev) |
| 406 | { |
| 407 | struct chnl_net *priv; |
| 408 | u8 loop; |
| 409 | priv = netdev_priv(dev); |
David S. Miller | 2809cec | 2012-04-01 20:48:13 -0400 | [diff] [blame] | 410 | if (nla_put_u32(skb, IFLA_CAIF_IPV4_CONNID, |
| 411 | priv->conn_req.sockaddr.u.dgm.connection_id) || |
| 412 | nla_put_u32(skb, IFLA_CAIF_IPV6_CONNID, |
| 413 | priv->conn_req.sockaddr.u.dgm.connection_id)) |
| 414 | goto nla_put_failure; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 415 | loop = priv->conn_req.protocol == CAIFPROTO_DATAGRAM_LOOP; |
David S. Miller | 2809cec | 2012-04-01 20:48:13 -0400 | [diff] [blame] | 416 | if (nla_put_u8(skb, IFLA_CAIF_LOOPBACK, loop)) |
| 417 | goto nla_put_failure; |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 418 | return 0; |
| 419 | nla_put_failure: |
| 420 | return -EMSGSIZE; |
| 421 | |
| 422 | } |
| 423 | |
| 424 | static void caif_netlink_parms(struct nlattr *data[], |
Silviu-Mihai Popescu | 3bffc47 | 2013-03-06 19:39:57 +0000 | [diff] [blame] | 425 | struct caif_connect_request *conn_req) |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 426 | { |
| 427 | if (!data) { |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 428 | pr_warn("no params data found\n"); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 429 | return; |
| 430 | } |
| 431 | if (data[IFLA_CAIF_IPV4_CONNID]) |
| 432 | conn_req->sockaddr.u.dgm.connection_id = |
| 433 | nla_get_u32(data[IFLA_CAIF_IPV4_CONNID]); |
| 434 | if (data[IFLA_CAIF_IPV6_CONNID]) |
| 435 | conn_req->sockaddr.u.dgm.connection_id = |
| 436 | nla_get_u32(data[IFLA_CAIF_IPV6_CONNID]); |
| 437 | if (data[IFLA_CAIF_LOOPBACK]) { |
| 438 | if (nla_get_u8(data[IFLA_CAIF_LOOPBACK])) |
| 439 | conn_req->protocol = CAIFPROTO_DATAGRAM_LOOP; |
| 440 | else |
| 441 | conn_req->protocol = CAIFPROTO_DATAGRAM; |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | static int ipcaif_newlink(struct net *src_net, struct net_device *dev, |
Matthias Schiffer | 7a3f4a1 | 2017-06-25 23:55:59 +0200 | [diff] [blame] | 446 | struct nlattr *tb[], struct nlattr *data[], |
| 447 | struct netlink_ext_ack *extack) |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 448 | { |
| 449 | int ret; |
| 450 | struct chnl_net *caifdev; |
| 451 | ASSERT_RTNL(); |
| 452 | caifdev = netdev_priv(dev); |
| 453 | caif_netlink_parms(data, &caifdev->conn_req); |
Sjur Braendeland | 8391c4a | 2010-04-28 08:54:39 +0000 | [diff] [blame] | 454 | |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 455 | ret = register_netdevice(dev); |
| 456 | if (ret) |
Joe Perches | b31fa5b | 2010-09-05 21:31:11 +0000 | [diff] [blame] | 457 | pr_warn("device rtml registration failed\n"); |
David S. Miller | b2df5a84 | 2011-02-08 14:31:31 -0800 | [diff] [blame] | 458 | else |
| 459 | list_add(&caifdev->list_field, &chnl_net_list); |
sjur.brandeland@stericsson.com | b3ccfbe | 2011-05-13 02:44:04 +0000 | [diff] [blame] | 460 | |
sjur.brandeland@stericsson.com | e3abcc2 | 2012-03-11 10:28:32 +0000 | [diff] [blame] | 461 | /* Use ifindex as connection id, and use loopback channel default. */ |
| 462 | if (caifdev->conn_req.sockaddr.u.dgm.connection_id == UNDEF_CONNID) { |
sjur.brandeland@stericsson.com | b3ccfbe | 2011-05-13 02:44:04 +0000 | [diff] [blame] | 463 | caifdev->conn_req.sockaddr.u.dgm.connection_id = dev->ifindex; |
sjur.brandeland@stericsson.com | e3abcc2 | 2012-03-11 10:28:32 +0000 | [diff] [blame] | 464 | caifdev->conn_req.protocol = CAIFPROTO_DATAGRAM_LOOP; |
| 465 | } |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 466 | return ret; |
| 467 | } |
| 468 | |
| 469 | static int ipcaif_changelink(struct net_device *dev, struct nlattr *tb[], |
Matthias Schiffer | ad744b2 | 2017-06-25 23:56:00 +0200 | [diff] [blame] | 470 | struct nlattr *data[], |
| 471 | struct netlink_ext_ack *extack) |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 472 | { |
| 473 | struct chnl_net *caifdev; |
| 474 | ASSERT_RTNL(); |
| 475 | caifdev = netdev_priv(dev); |
| 476 | caif_netlink_parms(data, &caifdev->conn_req); |
| 477 | netdev_state_change(dev); |
| 478 | return 0; |
| 479 | } |
| 480 | |
| 481 | static size_t ipcaif_get_size(const struct net_device *dev) |
| 482 | { |
| 483 | return |
| 484 | /* IFLA_CAIF_IPV4_CONNID */ |
| 485 | nla_total_size(4) + |
| 486 | /* IFLA_CAIF_IPV6_CONNID */ |
| 487 | nla_total_size(4) + |
| 488 | /* IFLA_CAIF_LOOPBACK */ |
| 489 | nla_total_size(2) + |
| 490 | 0; |
| 491 | } |
| 492 | |
| 493 | static const struct nla_policy ipcaif_policy[IFLA_CAIF_MAX + 1] = { |
| 494 | [IFLA_CAIF_IPV4_CONNID] = { .type = NLA_U32 }, |
| 495 | [IFLA_CAIF_IPV6_CONNID] = { .type = NLA_U32 }, |
| 496 | [IFLA_CAIF_LOOPBACK] = { .type = NLA_U8 } |
| 497 | }; |
| 498 | |
| 499 | |
| 500 | static struct rtnl_link_ops ipcaif_link_ops __read_mostly = { |
| 501 | .kind = "caif", |
| 502 | .priv_size = sizeof(struct chnl_net), |
| 503 | .setup = ipcaif_net_setup, |
| 504 | .maxtype = IFLA_CAIF_MAX, |
| 505 | .policy = ipcaif_policy, |
| 506 | .newlink = ipcaif_newlink, |
| 507 | .changelink = ipcaif_changelink, |
| 508 | .get_size = ipcaif_get_size, |
| 509 | .fill_info = ipcaif_fill_info, |
| 510 | |
| 511 | }; |
| 512 | |
| 513 | static int __init chnl_init_module(void) |
| 514 | { |
| 515 | return rtnl_link_register(&ipcaif_link_ops); |
| 516 | } |
| 517 | |
| 518 | static void __exit chnl_exit_module(void) |
| 519 | { |
| 520 | struct chnl_net *dev = NULL; |
| 521 | struct list_head *list_node; |
| 522 | struct list_head *_tmp; |
| 523 | rtnl_link_unregister(&ipcaif_link_ops); |
| 524 | rtnl_lock(); |
| 525 | list_for_each_safe(list_node, _tmp, &chnl_net_list) { |
| 526 | dev = list_entry(list_node, struct chnl_net, list_field); |
Eric Dumazet | 550ac9c | 2021-09-13 11:08:36 -0700 | [diff] [blame] | 527 | list_del_init(list_node); |
Sjur Braendeland | cc36a07 | 2010-03-30 13:56:27 +0000 | [diff] [blame] | 528 | delete_device(dev); |
| 529 | } |
| 530 | rtnl_unlock(); |
| 531 | } |
| 532 | |
| 533 | module_init(chnl_init_module); |
| 534 | module_exit(chnl_exit_module); |