blob: 99f674e82e645f8110ab3f5cae623a128ea5c994 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Joe Hershberger586cbd12015-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 Hershberger586cbd12015-03-22 17:09:21 -05007 */
8
9#ifndef __ETH_RAW_OS_H
10#define __ETH_RAW_OS_H
11
Joe Hershbergere5691402018-07-02 14:47:50 -050012#define IFNAMSIZ 16
13
Joe Hershberger586cbd12015-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 Hershbergere5691402018-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 Hershberger586cbd12015-03-22 17:09:21 -050020 * device: struct sockaddr_ll - the host interface packets move to/from
Joe Hershbergera8921922015-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 Hershberger586cbd12015-03-22 17:09:21 -050026 */
27struct eth_sandbox_raw_priv {
28 int sd;
Joe Hershbergere5691402018-07-02 14:47:50 -050029 char host_ifname[IFNAMSIZ];
30 unsigned int host_ifindex;
Joe Hershberger586cbd12015-03-22 17:09:21 -050031 void *device;
Joe Hershbergera8921922015-03-22 17:09:23 -050032 int local;
33 int local_bind_sd;
34 unsigned short local_bind_udp_port;
Joe Hershberger586cbd12015-03-22 17:09:21 -050035};
36
Joe Hershberger1b312cb2018-07-02 14:47:51 -050037/*
38 * Check if the interface named "ifname" is a localhost interface or not.
39 * ifname - the interface name on the host to check
40 *
41 * returns - 0 if real interface, 1 if local, negative if error
42 */
43int sandbox_eth_raw_os_is_local(const char *ifname);
44
Joe Hershberger144e14b2018-07-02 14:47:52 -050045/*
46 * Look up the name of the interface based on the ifindex populated in priv.
47 *
48 * Overwrite the host_ifname member in priv based on looking up host_ifindex
49 *
50 * returns - 0 if success, negative if error
51 */
52int sandbox_eth_raw_os_idx_to_name(struct eth_sandbox_raw_priv *priv);
53
Joe Hershbergere5691402018-07-02 14:47:50 -050054int sandbox_eth_raw_os_start(struct eth_sandbox_raw_priv *priv,
55 unsigned char *ethmac);
Joe Hershberger586cbd12015-03-22 17:09:21 -050056int sandbox_eth_raw_os_send(void *packet, int length,
Joe Hershbergera8921922015-03-22 17:09:23 -050057 struct eth_sandbox_raw_priv *priv);
Joe Hershberger586cbd12015-03-22 17:09:21 -050058int sandbox_eth_raw_os_recv(void *packet, int *length,
59 const struct eth_sandbox_raw_priv *priv);
60void sandbox_eth_raw_os_stop(struct eth_sandbox_raw_priv *priv);
61
62#endif /* __ETH_RAW_OS_H */