1
0
mirror of https://code.semirocket.science/wrapsix synced 2024-09-19 23:11:04 +03:00
wrapsix/src/transmitter.c

164 lines
4.5 KiB
C
Raw Normal View History

2012-03-26 13:53:58 +03:00
/*
* WrapSix
* Copyright (C) 2008-2012 Michal Zima <xhire@mujmalysvet.cz>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2012-03-26 13:58:18 +03:00
#include <net/if.h> /* struct ifreq */
2012-03-26 13:53:58 +03:00
#include <netinet/if_ether.h> /* {P,A}F_PACKET, ETH_P_*, socket, SOCK_RAW,
2012-07-03 12:15:10 +03:00
* setsockopt, SOL_SOCKET, SO_BINDTODEVICE,
* sendto */
2012-03-26 13:53:58 +03:00
#include <netinet/in.h> /* htons */
#include <netpacket/packet.h> /* sockaddr_ll, PACKET_OTHERHOST */
#include <stdio.h> /* fprintf, stderr, perror */
#include <string.h> /* memcpy */
2012-03-26 13:53:58 +03:00
#include <unistd.h> /* close */
#include "ipv4.h"
#include "transmitter.h"
#include "wrapper.h"
struct sockaddr_ll socket_address;
struct sockaddr_in socket_address_ipv4;
int sock, sock_ipv4;
2012-03-26 13:53:58 +03:00
/**
2012-07-03 12:15:10 +03:00
* Initialize sockets and all needed properties. Should be called only once on
* program startup.
2012-03-26 13:53:58 +03:00
*
* @return 0 for success
* @return 1 for failure
*/
int transmission_init(void)
{
unsigned char on = 1;
/** RAW socket **/
2012-03-26 13:53:58 +03:00
/* prepare settings for RAW socket */
2012-07-03 12:15:10 +03:00
socket_address.sll_family = PF_PACKET; /* raw communication */
socket_address.sll_protocol = htons(ETH_P_IP); /* L3 proto */
socket_address.sll_ifindex = interface.ifr_ifindex;
socket_address.sll_pkttype = PACKET_OTHERHOST;
2012-03-26 13:53:58 +03:00
/* initialize RAW socket */
if ((sock = socket(AF_PACKET, SOCK_RAW, htons(ETH_P_ALL))) == -1) {
fprintf(stderr, "[Error] Couldn't open RAW socket.\n");
perror("socket()");
return 1;
}
/* bind the socket to the interface */
2012-07-03 12:15:10 +03:00
if (setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, &interface,
sizeof(struct ifreq)) == -1) {
fprintf(stderr, "[Error] Couldn't bind the socket to the "
"interface.\n");
2012-03-26 13:53:58 +03:00
perror("setsockopt()");
return 1;
}
/** IPv4 socket **/
/* prepare settings for RAW IPv4 socket */
socket_address_ipv4.sin_family = AF_INET;
socket_address_ipv4.sin_port = 0x0;
/* initialize RAW IPv4 socket */
if ((sock_ipv4 = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) == -1) {
fprintf(stderr, "[Error] Couldn't open RAW IPv4 socket.\n");
perror("socket()");
return 1;
}
/* we will provide our own IPv4 header */
2012-07-03 12:15:10 +03:00
if (setsockopt(sock_ipv4, IPPROTO_IP, IP_HDRINCL, &on,
sizeof(on)) == -1) {
fprintf(stderr, "[Error] Couldn't apply the socket "
"settings.\n");
perror("setsockopt()");
return 1;
}
2012-03-26 13:53:58 +03:00
return 0;
}
/**
2012-07-03 12:15:10 +03:00
* Close sockets. Should be called only once on program shutdown.
2012-03-26 13:53:58 +03:00
*
* @return 0 for success
* @return 1 for failure
*/
int transmission_quit(void)
{
/* close the socket */
if (close(sock) || close(sock_ipv4)) {
2012-07-03 12:15:10 +03:00
fprintf(stderr, "[Error] Couldn't close the transmission "
"sockets.\n");
2012-03-26 13:53:58 +03:00
perror("close()");
return 1;
} else {
return 0;
}
}
/**
* Send raw packet -- not doing any modifications to it.
*
* @param data Raw packet data, including ethernet header
* @param length Length of the whole packet in bytes
*
* @return 0 for success
* @return 1 for failure
*/
int transmit_raw(unsigned char *data, unsigned int length)
2012-03-26 13:53:58 +03:00
{
2012-07-03 12:15:10 +03:00
if (sendto(sock, data, length, 0, (struct sockaddr *) &socket_address,
sizeof(struct sockaddr_ll)) != (int) length) {
2012-03-26 13:53:58 +03:00
fprintf(stderr, "[Error] Couldn't send a RAW packet.\n");
perror("sendto()");
return 1;
}
return 0;
}
/**
* Send IPv4 packet with IPv4 header supplied. Ethernet header is added by OS.
*
* @param ip Destination IPv4 address
2012-07-03 12:15:10 +03:00
* @param data Raw packet data, excluding ethernet header, but
* including IPv4 header
* @param length Length of the whole packet in bytes
*
* @return 0 for success
* @return 1 for failure
*/
2012-07-03 12:15:10 +03:00
int transmit_ipv4(struct s_ipv4_addr *ip, unsigned char *data,
unsigned int length)
{
/* set the destination IPv4 address */
2012-07-03 12:15:10 +03:00
memcpy(&socket_address_ipv4.sin_addr.s_addr, ip,
sizeof(struct s_ipv4_addr));
2012-07-03 12:15:10 +03:00
if (sendto(sock_ipv4, data, length, 0,
(struct sockaddr *) &socket_address_ipv4,
sizeof(struct sockaddr)) != (int) length) {
fprintf(stderr, "[Error] Couldn't send an IPv4 packet.\n");
perror("sendto()");
return 1;
}
return 0;
}