zephyr/samples/net/sockets/echo_client
Robert Lubos 54eb4adff9 samples: net: echo_client: Fix bug in workqueue processing
The `start_udp_and_tcp` funcion is a blocking function, therefore it
should not be called from the system workqueue, as it would stall it.
Because it was called in such a way, the retry mechanism, which
also relied on the system workqueue did not work properly.

This commit fixes the issue, by keeping the main application processing
in the main thread, and using a semaphore to synchronize with the
connection manager.

Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
2019-07-25 14:26:27 +03:00
..
boards samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
src samples: net: echo_client: Fix bug in workqueue processing 2019-07-25 14:26:27 +03:00
arduino_101.overlay dts: Replace status = "ok" with status = "okay" 2019-06-14 19:51:13 -05:00
CMakeLists.txt license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
Kconfig Kconfig: Remove redundant $(ZEPHYR_BASE) from 'source's 2018-10-10 11:28:27 -05:00
overlay-802154.conf samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
overlay-bt.conf samples: net: Update overlay-bt.conf in various samples 2019-03-20 11:32:40 -05:00
overlay-cc2520.conf kconfig: remove stale CONFIG_IEEE802154_CC2520_AUTO_ACK 2019-03-07 13:04:29 -06:00
overlay-linux.conf Samples: echo-client: Add overlay when echo-server is running on Linux 2019-03-20 11:31:57 -05:00
overlay-ot.conf samples: openthread: Increase shell stack size 2019-01-18 15:24:16 +02:00
overlay-qemu_802154.conf samples/sockets: Enable 802.15.4 properly for echo apps 2019-01-08 11:25:33 +02:00
overlay-qemu_cortex_m3_eth.conf samples: net: sockets: Add smoke testing support 2019-02-18 15:10:01 -05:00
overlay-tls.conf samples: net: Add DTLS support to socket echo_client/echo_server 2018-08-13 15:24:34 +03:00
overlay-vlan.conf samples: net: sockets: echo-client: Add VLAN support 2018-09-20 11:21:22 +03:00
prj.conf samples: net: echo-client: Start service in correct time 2019-07-12 12:33:19 +03:00
README.rst doc: Cleanup references to cmake 2019-06-17 10:09:57 -07:00
sample.yaml samples: net: quark/arduino 101 do not have ethernet support 2019-07-12 05:54:16 -07:00

.. _sockets-echo-client-sample:

Socket Echo Client
##################

Overview
********

The echo-client sample application for Zephyr implements a UDP/TCP client
that will send IPv4 or IPv6 packets, wait for the data to be sent back,
and then verify it matches the data that was sent.

The source code for this sample application can be found at:
:zephyr_file:`samples/net/sockets/echo_client`.

Requirements
************

- :ref:`networking_with_host`

Building and Running
********************

There are multiple ways to use this application. One of the most common
usage scenario is to run echo-client application inside QEMU. This is
described in :ref:`networking_with_qemu`.

There are configuration files for different boards and setups in the
echo-client directory:

- :file:`prj.conf`
  Generic config file, normally you should use this.

- :file:`overlay-ot.conf`
  This overlay config enables support for OpenThread.

- :file:`overlay-802154.conf`
  This overlay config enables support for native IEEE 802.15.4 connectivity.
  Note, that by default IEEE 802.15.4 L2 uses unacknowledged communication. To
  improve connection reliability, acknowledgments can be enabled with shell
  command: ``ieee802154 ack set``.

- :file:`overlay-bt.conf`
  This overlay config enables support for Bluetooth IPSP connectivity.

- :file:`overlay-qemu_802154.conf`
  This overlay config enables support for two QEMU's when simulating
  IEEE 802.15.4 network that are connected together.

- :file:`overlay-tls.conf`
  This overlay config enables support for TLS.

Build echo-client sample application like this:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_client
   :board: <board to use>
   :conf: <config file to use>
   :goals: build
   :compact:

Example building for the nRF52840_pca10056 with OpenThread support:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_client
   :host-os: unix
   :board: nrf52840_pca10056
   :conf: "prj.conf overlay-ot.conf"
   :goals: run
   :compact:

Enabling TLS support
====================

Enable TLS support in the sample by building the project with the
``overlay-tls.conf`` overlay file enabled, for example, using these commands:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_client
   :board: qemu_x86
   :conf: "prj.conf overlay-tls.conf"
   :goals: build
   :compact:

An alternative way is to specify ``-DOVERLAY_CONFIG=overlay-tls.conf`` when
running ``west build`` or ``cmake``.

The certificate and private key used by the sample can be found in the sample's
``src`` directory. The default certificates used by Socket Echo Client and
:ref:`sockets-echo-server-sample` enable establishing a secure connection
between the samples.

Running echo-server in Linux Host
=================================

There is one useful testing scenario that can be used with Linux host.
Here echo-client is run in QEMU and echo-server is run in Linux host.

To use QEMU for testing, follow the :ref:`networking_with_qemu` guide.

In a terminal window:

.. code-block:: console

    $ sudo ./echo-server -i tap0

Run echo-client application in QEMU:

.. zephyr-app-commands::
   :zephyr-app: samples/net/sockets/echo_client
   :host-os: unix
   :board: qemu_x86
   :conf: "prj.conf overlay-linux.conf"
   :goals: run
   :compact:

Note that echo-server must be running in the Linux host terminal window
before you start the echo-client application in QEMU.

You can verify TLS communication with a Linux host as well. See
https://github.com/zephyrproject-rtos/net-tools documentation for information
on how to test TLS with Linux host samples.

See the :ref:`sockets-echo-server-sample` documentation for an alternate
way of running, with the echo-client on the Linux host and the echo-server
in QEMU.