2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2015-03-22 22:09:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 National Instruments
|
|
|
|
*
|
|
|
|
* (C) Copyright 2015
|
|
|
|
* Joe Hershberger <joe.hershberger@ni.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ETH_RAW_OS_H
|
|
|
|
#define __ETH_RAW_OS_H
|
|
|
|
|
2018-07-02 19:47:50 +00:00
|
|
|
#define IFNAMSIZ 16
|
|
|
|
|
2015-03-22 22:09:21 +00:00
|
|
|
/**
|
|
|
|
* struct eth_sandbox_raw_priv - raw socket session
|
|
|
|
*
|
|
|
|
* sd: socket descriptor - the open socket during a session
|
2018-07-02 19:47:50 +00:00
|
|
|
* host_ifname: interface name on the host to use for sending our packets
|
|
|
|
* host_ifindex: interface index number on the host
|
2015-03-22 22:09:21 +00:00
|
|
|
* device: struct sockaddr_ll - the host interface packets move to/from
|
2015-03-22 22:09:23 +00:00
|
|
|
* local: 1 or 0 to select the local interface ('lo') or not
|
|
|
|
* local_bindsd: socket descriptor to prevent the kernel from sending
|
|
|
|
* a message to the server claiming the port is
|
|
|
|
* unreachable
|
|
|
|
* local_bind_udp_port: The UDP port number that we bound to
|
2015-03-22 22:09:21 +00:00
|
|
|
*/
|
|
|
|
struct eth_sandbox_raw_priv {
|
|
|
|
int sd;
|
2018-07-02 19:47:50 +00:00
|
|
|
char host_ifname[IFNAMSIZ];
|
|
|
|
unsigned int host_ifindex;
|
2015-03-22 22:09:21 +00:00
|
|
|
void *device;
|
2015-03-22 22:09:23 +00:00
|
|
|
int local;
|
|
|
|
int local_bind_sd;
|
|
|
|
unsigned short local_bind_udp_port;
|
2015-03-22 22:09:21 +00:00
|
|
|
};
|
|
|
|
|
2018-07-02 19:47:54 +00:00
|
|
|
/* A struct to mimic if_nameindex but that does not depend on Linux headers */
|
|
|
|
struct sandbox_eth_raw_if_nameindex {
|
|
|
|
unsigned int if_index; /* Index of interface (1, 2, ...) */
|
|
|
|
char *if_name; /* Null-terminated name ("eth0", etc.) */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Enumerate host network interfaces */
|
|
|
|
struct sandbox_eth_raw_if_nameindex *sandbox_eth_raw_if_nameindex(void);
|
|
|
|
/* Free the data structure of enumerated network interfaces */
|
|
|
|
void sandbox_eth_raw_if_freenameindex(struct sandbox_eth_raw_if_nameindex *ptr);
|
|
|
|
|
2018-07-02 19:47:51 +00:00
|
|
|
/*
|
|
|
|
* Check if the interface named "ifname" is a localhost interface or not.
|
|
|
|
* ifname - the interface name on the host to check
|
|
|
|
*
|
|
|
|
* returns - 0 if real interface, 1 if local, negative if error
|
|
|
|
*/
|
|
|
|
int sandbox_eth_raw_os_is_local(const char *ifname);
|
|
|
|
|
2018-07-02 19:47:52 +00:00
|
|
|
/*
|
|
|
|
* Look up the name of the interface based on the ifindex populated in priv.
|
|
|
|
*
|
|
|
|
* Overwrite the host_ifname member in priv based on looking up host_ifindex
|
|
|
|
*
|
|
|
|
* returns - 0 if success, negative if error
|
|
|
|
*/
|
|
|
|
int sandbox_eth_raw_os_idx_to_name(struct eth_sandbox_raw_priv *priv);
|
|
|
|
|
2018-07-02 19:47:50 +00:00
|
|
|
int sandbox_eth_raw_os_start(struct eth_sandbox_raw_priv *priv,
|
|
|
|
unsigned char *ethmac);
|
2015-03-22 22:09:21 +00:00
|
|
|
int sandbox_eth_raw_os_send(void *packet, int length,
|
2015-03-22 22:09:23 +00:00
|
|
|
struct eth_sandbox_raw_priv *priv);
|
2015-03-22 22:09:21 +00:00
|
|
|
int sandbox_eth_raw_os_recv(void *packet, int *length,
|
|
|
|
const struct eth_sandbox_raw_priv *priv);
|
|
|
|
void sandbox_eth_raw_os_stop(struct eth_sandbox_raw_priv *priv);
|
|
|
|
|
|
|
|
#endif /* __ETH_RAW_OS_H */
|