blob: 6929ab4216e6ca7add31007d741359d057ef0368 [file] [log] [blame]
Lorenzo Colitti9353be22014-12-03 15:18:29 +09001/*
2 * Copyright 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 * ring.c - packet ring buffer functions
17 */
18
19#include <errno.h>
20#include <string.h>
21#include <arpa/inet.h>
22#include <sys/socket.h>
23#include <sys/mman.h>
24#include <linux/if.h>
25#include <linux/if_packet.h>
26
27#include "logging.h"
28#include "ring.h"
29#include "translate.h"
30#include "tun.h"
31
Subash Abhinov Kasiviswanathan5c5b5342015-10-26 18:45:04 -060032#define TP_STATUS_CSUM_UNNECESSARY (1 << 7)
33
Lorenzo Colitti9353be22014-12-03 15:18:29 +090034int ring_create(struct tun_data *tunnel) {
35 int packetsock = socket(AF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6));
36 if (packetsock < 0) {
37 logmsg(ANDROID_LOG_FATAL, "packet socket failed: %s", strerror(errno));
38 return -1;
39 }
40
41 int ver = TPACKET_V2;
42 if (setsockopt(packetsock, SOL_PACKET, PACKET_VERSION, (void *) &ver, sizeof(ver))) {
43 logmsg(ANDROID_LOG_FATAL, "setsockopt(PACKET_VERSION, %d) failed: %s", ver, strerror(errno));
44 return -1;
45 }
46
47 int on = 1;
48 if (setsockopt(packetsock, SOL_PACKET, PACKET_LOSS, (void *) &on, sizeof(on))) {
49 logmsg(ANDROID_LOG_WARN, "PACKET_LOSS failed: %s", strerror(errno));
50 }
51
52 struct packet_ring *ring = &tunnel->ring;
53 ring->numblocks = TP_NUM_BLOCKS;
54
55 int total_frames = TP_FRAMES * ring->numblocks;
56
57 struct tpacket_req req = {
58 .tp_frame_size = TP_FRAME_SIZE, // Frame size.
59 .tp_block_size = TP_BLOCK_SIZE, // Frames per block.
60 .tp_block_nr = ring->numblocks, // Number of blocks.
61 .tp_frame_nr = total_frames, // Total frames.
62 };
63
64 if (setsockopt(packetsock, SOL_PACKET, PACKET_RX_RING, &req, sizeof(req)) < 0) {
65 logmsg(ANDROID_LOG_FATAL, "PACKET_RX_RING failed: %s", strerror(errno));
66 return -1;
67 }
68
69 size_t buflen = TP_BLOCK_SIZE * ring->numblocks;
70 ring->base = mmap(NULL, buflen, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_LOCKED|MAP_POPULATE,
71 packetsock, 0);
72 if (ring->base == MAP_FAILED) {
73 logmsg(ANDROID_LOG_FATAL, "mmap %lu failed: %s", buflen, strerror(errno));
74 return -1;
75 }
76
77 ring->block = 0;
78 ring->slot = 0;
79 ring->numslots = TP_BLOCK_SIZE / TP_FRAME_SIZE;
80 ring->next = (struct tpacket2_hdr *) ring->base;
81
82 logmsg(ANDROID_LOG_INFO, "Using ring buffer with %d frames (%d bytes) at %p",
83 total_frames, buflen, ring->base);
84
85 return packetsock;
86}
87
88/* function: ring_advance
89 * advances to the next position in the packet ring
90 * ring - packet ring buffer
91 */
92static struct tpacket2_hdr* ring_advance(struct packet_ring *ring) {
93 uint8_t *next = (uint8_t *) ring->next;
94
95 ring->slot++;
96 next += TP_FRAME_SIZE;
97
98 if (ring->slot == ring->numslots) {
99 ring->slot = 0;
100 ring->block++;
101
102 if (ring->block < ring->numblocks) {
103 next += TP_FRAME_GAP;
104 } else {
105 ring->block = 0;
106 next = (uint8_t *) ring->base;
107 }
108 }
109
110 ring->next = (struct tpacket2_hdr *) next;
111 return ring->next;
112}
113
114/* function: ring_read
115 * reads a packet from the ring buffer and translates it
116 * read_fd - file descriptor to read original packet from
117 * write_fd - file descriptor to write translated packet to
118 * to_ipv6 - whether the packet is to be translated to ipv6 or ipv4
119 */
120void ring_read(struct packet_ring *ring, int write_fd, int to_ipv6) {
121 struct tpacket2_hdr *tp = ring->next;
Subash Abhinov Kasiviswanathan5c5b5342015-10-26 18:45:04 -0600122 uint16_t val = TP_CSUM_NONE;
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900123 if (tp->tp_status & TP_STATUS_USER) {
Subash Abhinov Kasiviswanathan5c5b5342015-10-26 18:45:04 -0600124 //We expect only GRO coalesced packets to have TP_STATUS_CSUMNOTREADY
125 //(ip_summed = CHECKSUM_PARTIAL) in this path. Note that these packets have already gone
126 //through checksum validation in GRO engine. CHECKSUM_PARTIAL is defined to be 3 while
127 //CHECKSUM_UNNECESSARY is defined to be 1.
128 //Kernel only checks for CHECKSUM_UNNECESSARY (TP_CSUM_UNNECESSARY) bit while processing a
129 //packet, so its ok to pass only this bit rather than the full ip_summed field.
130 if ((tp->tp_status & TP_STATUS_CSUMNOTREADY) || (tp->tp_status & TP_STATUS_CSUM_UNNECESSARY)) {
131 val = TP_CSUM_UNNECESSARY;
132 }
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900133 uint8_t *packet = ((uint8_t *) tp) + tp->tp_net;
Subash Abhinov Kasiviswanathan5c5b5342015-10-26 18:45:04 -0600134 translate_packet(write_fd, to_ipv6, packet, tp->tp_len, val);
Lorenzo Colitti9353be22014-12-03 15:18:29 +0900135 tp->tp_status = TP_STATUS_KERNEL;
136 tp = ring_advance(ring);
137 }
138}