blob: 760f5fbedd1d5a06e13f6a9494b52463c82c07f7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Joe Hershbergera346ca72015-03-22 17:09:21 -05002/*
3 * Copyright (c) 2015 National Instruments
4 *
5 * (C) Copyright 2015
6 * Joe Hershberger <joe.hershberger@ni.com>
Joe Hershbergera346ca72015-03-22 17:09:21 -05007 */
8
9#ifndef __ETH_RAW_OS_H
10#define __ETH_RAW_OS_H
11
Joe Hershberger8c7988b2018-07-02 14:47:50 -050012#define IFNAMSIZ 16
13
Joe Hershbergera346ca72015-03-22 17:09:21 -050014/**
15 * struct eth_sandbox_raw_priv - raw socket session
16 *
17 * sd: socket descriptor - the open socket during a session
Joe Hershberger8c7988b2018-07-02 14:47:50 -050018 * host_ifname: interface name on the host to use for sending our packets
19 * host_ifindex: interface index number on the host
Joe Hershbergera346ca72015-03-22 17:09:21 -050020 * device: struct sockaddr_ll - the host interface packets move to/from
Joe Hershberger22f68522015-03-22 17:09:23 -050021 * local: 1 or 0 to select the local interface ('lo') or not
22 * local_bindsd: socket descriptor to prevent the kernel from sending
23 * a message to the server claiming the port is
24 * unreachable
25 * local_bind_udp_port: The UDP port number that we bound to
Joe Hershbergera346ca72015-03-22 17:09:21 -050026 */
27struct eth_sandbox_raw_priv {
28 int sd;
Joe Hershberger8c7988b2018-07-02 14:47:50 -050029 char host_ifname[IFNAMSIZ];
30 unsigned int host_ifindex;
Joe Hershbergera346ca72015-03-22 17:09:21 -050031 void *device;
Joe Hershberger22f68522015-03-22 17:09:23 -050032 int local;
33 int local_bind_sd;
34 unsigned short local_bind_udp_port;
Joe Hershbergera346ca72015-03-22 17:09:21 -050035};
36
Joe Hershberger8c7988b2018-07-02 14:47:50 -050037int sandbox_eth_raw_os_start(struct eth_sandbox_raw_priv *priv,
38 unsigned char *ethmac);
Joe Hershbergera346ca72015-03-22 17:09:21 -050039int sandbox_eth_raw_os_send(void *packet, int length,
Joe Hershberger22f68522015-03-22 17:09:23 -050040 struct eth_sandbox_raw_priv *priv);
Joe Hershbergera346ca72015-03-22 17:09:21 -050041int sandbox_eth_raw_os_recv(void *packet, int *length,
42 const struct eth_sandbox_raw_priv *priv);
43void sandbox_eth_raw_os_stop(struct eth_sandbox_raw_priv *priv);
44
45#endif /* __ETH_RAW_OS_H */