net: wwan: Allow WWAN drivers to provide blocking tx and poll function
authorStephan Gerhold <stephan@gerhold.net>
Fri, 18 Jun 2021 17:36:11 +0000 (19:36 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 18 Jun 2021 20:13:40 +0000 (13:13 -0700)
At the moment, the WWAN core provides wwan_port_txon/off() to implement
blocking writes. The tx() port operation should not block, instead
wwan_port_txon/off() should be called when the TX queue is full or has
free space again.

However, in some cases it is not straightforward to make use of that
functionality. For example, the RPMSG API used by rpmsg_wwan_ctrl.c
does not provide any way to be notified when the TX queue has space
again. Instead, it only provides the following operations:

  - rpmsg_send(): blocking write (wait until there is space)
  - rpmsg_trysend(): non-blocking write (return error if no space)
  - rpmsg_poll(): set poll flags depending on TX queue state

Generally that's totally sufficient for implementing a char device,
but it does not fit well to the currently provided WWAN port ops.

Most of the time, using the non-blocking rpmsg_trysend() in the
WWAN tx() port operation works just fine. However, with high-frequent
writes to the char device it is possible to trigger a situation
where this causes issues. For example, consider the following
(somewhat unrealistic) example:

 # dd if=/dev/zero bs=1000 of=/dev/wwan0qmi0
 dd: error writing '/dev/wwan0qmi0': Resource temporarily unavailable
 1+0 records out

This fails immediately after writing the first record. It's likely
only a matter of time until this triggers issues for some real application
(e.g. ModemManager sending a lot of large QMI packets).

The rpmsg_char device does not have this problem, because it uses
rpmsg_trysend() and rpmsg_poll() to support non-blocking operations.
Make it possible to use the same in the RPMSG WWAN driver by adding
two new optional wwan_port_ops:

  - tx_blocking(): send data blocking if allowed
  - tx_poll(): set additional TX poll flags

This integrates nicely with the RPMSG API and does not require
any change in existing WWAN drivers.

With these changes, the dd example above blocks instead of exiting
with an error.

Cc: Loic Poulain <loic.poulain@linaro.org>
Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wwan/rpmsg_wwan_ctrl.c
drivers/net/wwan/wwan_core.c
include/linux/wwan.h

index de226cd..31c2442 100644 (file)
@@ -67,10 +67,33 @@ static int rpmsg_wwan_ctrl_tx(struct wwan_port *port, struct sk_buff *skb)
        return 0;
 }
 
+static int rpmsg_wwan_ctrl_tx_blocking(struct wwan_port *port, struct sk_buff *skb)
+{
+       struct rpmsg_wwan_dev *rpwwan = wwan_port_get_drvdata(port);
+       int ret;
+
+       ret = rpmsg_send(rpwwan->ept, skb->data, skb->len);
+       if (ret)
+               return ret;
+
+       consume_skb(skb);
+       return 0;
+}
+
+static __poll_t rpmsg_wwan_ctrl_tx_poll(struct wwan_port *port,
+                                       struct file *filp, poll_table *wait)
+{
+       struct rpmsg_wwan_dev *rpwwan = wwan_port_get_drvdata(port);
+
+       return rpmsg_poll(rpwwan->ept, filp, wait);
+}
+
 static const struct wwan_port_ops rpmsg_wwan_pops = {
        .start = rpmsg_wwan_ctrl_start,
        .stop = rpmsg_wwan_ctrl_stop,
        .tx = rpmsg_wwan_ctrl_tx,
+       .tx_blocking = rpmsg_wwan_ctrl_tx_blocking,
+       .tx_poll = rpmsg_wwan_ctrl_tx_poll,
 };
 
 static struct device *rpmsg_wwan_find_parent(struct device *dev)
index 7e72804..165afec 100644 (file)
@@ -500,7 +500,8 @@ static void wwan_port_op_stop(struct wwan_port *port)
        mutex_unlock(&port->ops_lock);
 }
 
-static int wwan_port_op_tx(struct wwan_port *port, struct sk_buff *skb)
+static int wwan_port_op_tx(struct wwan_port *port, struct sk_buff *skb,
+                          bool nonblock)
 {
        int ret;
 
@@ -510,7 +511,10 @@ static int wwan_port_op_tx(struct wwan_port *port, struct sk_buff *skb)
                goto out_unlock;
        }
 
-       ret = port->ops->tx(port, skb);
+       if (nonblock || !port->ops->tx_blocking)
+               ret = port->ops->tx(port, skb);
+       else
+               ret = port->ops->tx_blocking(port, skb);
 
 out_unlock:
        mutex_unlock(&port->ops_lock);
@@ -637,7 +641,7 @@ static ssize_t wwan_port_fops_write(struct file *filp, const char __user *buf,
                return -EFAULT;
        }
 
-       ret = wwan_port_op_tx(port, skb);
+       ret = wwan_port_op_tx(port, skb, !!(filp->f_flags & O_NONBLOCK));
        if (ret) {
                kfree_skb(skb);
                return ret;
@@ -653,12 +657,16 @@ static __poll_t wwan_port_fops_poll(struct file *filp, poll_table *wait)
 
        poll_wait(filp, &port->waitqueue, wait);
 
-       if (!is_write_blocked(port))
+       mutex_lock(&port->ops_lock);
+       if (port->ops && port->ops->tx_poll)
+               mask |= port->ops->tx_poll(port, filp, wait);
+       else if (!is_write_blocked(port))
                mask |= EPOLLOUT | EPOLLWRNORM;
        if (!is_read_blocked(port))
                mask |= EPOLLIN | EPOLLRDNORM;
        if (!port->ops)
                mask |= EPOLLHUP | EPOLLERR;
+       mutex_unlock(&port->ops_lock);
 
        return mask;
 }
index 430a3a0..3422223 100644 (file)
@@ -6,6 +6,7 @@
 
 #include <linux/device.h>
 #include <linux/kernel.h>
+#include <linux/poll.h>
 #include <linux/skbuff.h>
 #include <linux/netlink.h>
 
@@ -40,15 +41,23 @@ struct wwan_port;
 /** struct wwan_port_ops - The WWAN port operations
  * @start: The routine for starting the WWAN port device.
  * @stop: The routine for stopping the WWAN port device.
- * @tx: The routine that sends WWAN port protocol data to the device.
+ * @tx: Non-blocking routine that sends WWAN port protocol data to the device.
+ * @tx_blocking: Optional blocking routine that sends WWAN port protocol data
+ *               to the device.
+ * @tx_poll: Optional routine that sets additional TX poll flags.
  *
  * The wwan_port_ops structure contains a list of low-level operations
- * that control a WWAN port device. All functions are mandatory.
+ * that control a WWAN port device. All functions are mandatory unless specified.
  */
 struct wwan_port_ops {
        int (*start)(struct wwan_port *port);
        void (*stop)(struct wwan_port *port);
        int (*tx)(struct wwan_port *port, struct sk_buff *skb);
+
+       /* Optional operations */
+       int (*tx_blocking)(struct wwan_port *port, struct sk_buff *skb);
+       __poll_t (*tx_poll)(struct wwan_port *port, struct file *filp,
+                           poll_table *wait);
 };
 
 /**