OpenVPN
comp.h
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single UDP port, with support for SSL/TLS-based
4 * session authentication and key exchange,
5 * packet encryption, packet authentication, and
6 * packet compression.
7 *
8 * Copyright (C) 2002-2024 OpenVPN Inc <sales@openvpn.net>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
23
24/*
25 * Generic compression support. Currently we support
26 * LZO 2 and LZ4.
27 */
28#ifndef OPENVPN_COMP_H
29#define OPENVPN_COMP_H
30
31/* We always parse all compression options, so we include these defines/struct
32 * outside of the USE_COMP define */
33
34/* Compression flags */
35/* Removed
36 #define COMP_F_ADAPTIVE (1<<0) / * COMP_ALG_LZO only * /
37 #define COMP_F_ALLOW_COMPRESS (1<<1) / * not only incoming is compressed but also outgoing * /
38 */
40#define COMP_F_SWAP (1<<2)
42#define COMP_F_ADVERTISE_STUBS_ONLY (1<<3)
45#define COMP_F_ALLOW_STUB_ONLY (1<<4)
47#define COMP_F_MIGRATE (1<<5)
49#define COMP_F_ALLOW_ASYM (1<<6)
51#define COMP_F_ALLOW_NOCOMP_ONLY (1<<7)
52
53/* algorithms */
54#define COMP_ALG_UNDEF 0
56#define COMP_ALG_STUB 1
57#define COMP_ALG_LZO 2
58#define COMP_ALG_SNAPPY 3
59#define COMP_ALG_LZ4 4
62/* algorithm v2 */
63#define COMP_ALGV2_UNCOMPRESSED 10
64#define COMP_ALGV2_LZ4 11
65/*
66 #define COMP_ALGV2_LZO 12
67 #define COMP_ALGV2_SNAPPY 13
68 */
69
70/*
71 * Information that basically identifies a compression
72 * algorithm and related flags.
73 */
75{
76 int alg;
77 unsigned int flags;
78};
79
80static inline bool
82{
83 return info->alg != COMP_ALGV2_UNCOMPRESSED
84 && info->alg != COMP_ALG_STUB
85 && info->alg != COMP_ALG_UNDEF;
86}
87
93bool
94check_compression_settings_valid(struct compress_options *info, int msglevel);
95
96#ifdef USE_COMP
97#include "buffer.h"
98#include "mtu.h"
99#include "common.h"
100#include "status.h"
101
102/*
103 * Length of prepended prefix on compressed packets
104 */
105#define COMP_PREFIX_LEN 1
106
107/*
108 * Prefix bytes
109 */
110
111/* V1 on wire codes */
112/* Initial command byte to tell our peer if we compressed */
113#define LZO_COMPRESS_BYTE 0x66
114#define LZ4_COMPRESS_BYTE 0x69
115#define NO_COMPRESS_BYTE 0xFA
117#define NO_COMPRESS_BYTE_SWAP 0xFB
118
119/* V2 on wire code */
120#define COMP_ALGV2_INDICATOR_BYTE 0x50
121#define COMP_ALGV2_UNCOMPRESSED_BYTE 0
122#define COMP_ALGV2_LZ4_BYTE 1
123#define COMP_ALGV2_LZO_BYTE 2
124#define COMP_ALGV2_SNAPPY_BYTE 3
125
126/*
127 * Compress worst case size expansion (for any algorithm)
128 *
129 * LZO: len + len/8 + 128 + 3
130 * Snappy: len + len/6 + 32
131 * LZ4: len + len/255 + 16 (LZ4_COMPRESSBOUND(len))
132 */
133#define COMP_EXTRA_BUFFER(len) ((len)/6 + 128 + 3 + COMP_PREFIX_LEN)
134
135/*
136 * Don't try to compress any packet smaller than this.
137 */
138#define COMPRESS_THRESHOLD 100
139
140/* Forward declaration of compression context */
141struct compress_context;
142
143/*
144 * Virtual methods and other static info for each compression algorithm
145 */
146struct compress_alg
147{
148 const char *name;
149 void (*compress_init)(struct compress_context *compctx);
150 void (*compress_uninit)(struct compress_context *compctx);
151 void (*compress)(struct buffer *buf, struct buffer work,
153 const struct frame *frame);
154
155 void (*decompress)(struct buffer *buf, struct buffer work,
157 const struct frame *frame);
158};
159
160/*
161 * Headers for each compression implementation
162 */
163#ifdef ENABLE_LZO
164#include "lzo.h"
165#endif
166
167#ifdef ENABLE_LZ4
168#include "comp-lz4.h"
169#endif
170
171/*
172 * Workspace union of all supported compression algorithms
173 */
174union compress_workspace_union
175{
176#ifdef ENABLE_LZO
177 struct lzo_compress_workspace lzo;
178#endif
179#ifdef ENABLE_LZ4
180 struct lz4_workspace lz4;
181#endif
182};
183
184/*
185 * Context for active compression session
186 */
187struct compress_context
188{
189 unsigned int flags;
190 struct compress_alg alg;
191 union compress_workspace_union wu;
192
193 /* statistics */
194 counter_type pre_decompress;
195 counter_type post_decompress;
196 counter_type pre_compress;
197 counter_type post_compress;
198};
199
200extern const struct compress_alg comp_stub_alg;
201extern const struct compress_alg compv2_stub_alg;
202
203struct compress_context *comp_init(const struct compress_options *opt);
204
205void comp_uninit(struct compress_context *compctx);
206
207void comp_print_stats(const struct compress_context *compctx, struct status_output *so);
208
209void comp_generate_peer_info_string(const struct compress_options *opt, struct buffer *out);
210
211void compv2_escape_data_ifneeded(struct buffer *buf);
212
213static inline bool
214comp_enabled(const struct compress_options *info)
215{
216 return info->alg != COMP_ALG_UNDEF;
217}
218#endif /* USE_COMP */
219#endif /* ifndef OPENVPN_COMP_H */
uint64_t counter_type
Definition common.h:30
#define COMP_ALGV2_UNCOMPRESSED
Definition comp.h:63
#define COMP_ALG_STUB
support compression command byte and framing without actual compression
Definition comp.h:56
static bool comp_non_stub_enabled(const struct compress_options *info)
Definition comp.h:81
bool check_compression_settings_valid(struct compress_options *info, int msglevel)
Checks if the compression settings are valid.
Definition comp.c:163
#define COMP_ALG_UNDEF
Definition comp.h:54
Data Channel Compression module header file.
Wrapper structure for dynamically allocated memory.
Definition buffer.h:61
int len
Length in bytes of the actual content within the allocated memory.
Definition buffer.h:66
unsigned int flags
Definition comp.h:77
Packet geometry parameters.
Definition mtu.h:98