1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
/*
* ProFTPD - mod_sftp traffic analysis protection
* Copyright (c) 2008-2011 TJ Saunders
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
*
* As a special exemption, TJ Saunders and other respective copyright holders
* give permission to link this program with OpenSSL, and distribute the
* resulting executable, without including the source code for OpenSSL in the
* source distribution.
*
* $Id: tap.c,v 1.11 2011/05/23 21:03:12 castaglia Exp $
*/
#include "mod_sftp.h"
#include "ssh2.h"
#include "packet.h"
#include "msg.h"
#include "tap.h"
#include "interop.h"
extern module sftp_module;
static pool *tap_pool = NULL;
static int tap_timerno = -1;
static const char *trace_channel = "ssh2";
struct sftp_tap_policy {
const char *policy;
unsigned int chance_max;
unsigned int chance;
unsigned int min_datalen;
unsigned int max_datalen;
int check_interval;
unsigned long min_secs;
unsigned long max_secs;
};
static struct sftp_tap_policy tap_policies[] = {
{ "none", 0, 0, 0, 0, 0, 0, 0 },
{ "low", 1000, 0, 64, 256, 5, 15, 300 },
{ "medium", 100, 0, 32, 768, 5, 10, 60 },
{ "high", 10, 0, 16, 2048, 1, 5, 15 },
{ "paranoid", 1, 0, 0, 0, 1, 1, 5 },
{ "rogaway", 1, 0, 64, 256, 0, 0, 0 },
{ NULL, 0, 0, 0, 0, 0, 0, 0 }
};
static struct sftp_tap_policy curr_policy = { NULL, 0, 0, 0, 0, 0, 0, 0 };
/* This only checks whether to TRY to send a TAP packet; it does not force
* a TAP packet to be sent. The request to send a TAP packet, if we try,
* is still subject to the 1-in-N chance of sending a packet as set by
* the selected policy.
*/
static int check_packet_times_cb(CALLBACK_FRAME) {
time_t last_recvd, last_sent, now;
unsigned long since_recvd, since_sent;
int chance;
/* Always return 1 so that this timer is rescheduled. */
sftp_ssh2_packet_get_last_recvd(&last_recvd);
sftp_ssh2_packet_get_last_sent(&last_sent);
time(&now);
since_recvd = now - last_recvd;
since_sent = now - last_sent;
/* If it's been less than min_secs, do NOT send a packet. */
if (since_recvd <= curr_policy.min_secs &&
since_sent <= curr_policy.max_secs) {
return 1;
}
/* If it's been more than max_secs, DO attempt send a packet. */
if (since_recvd >= curr_policy.max_secs &&
since_sent >= curr_policy.max_secs) {
pr_trace_msg(trace_channel, 15, "too much inactivity, attempting "
"to send TAP packet");
if (sftp_tap_send_packet() < 0) {
pr_trace_msg(trace_channel, 3, "error sending TAP packet: %s",
strerror(errno));
}
return 1;
}
/* Otherwise, pick a random number, see if it's time to send a packet. */
if (curr_policy.chance_max != 1) {
chance = (int) (rand() / (RAND_MAX / curr_policy.chance_max + 1));
} else {
chance = 1;
}
if (chance == curr_policy.chance) {
pr_trace_msg(trace_channel, 15, "perhaps too inactive, attempting to send "
"a TAP packet");
if (sftp_tap_send_packet() < 0) {
pr_trace_msg(trace_channel, 3, "error sending TAP packet: %s",
strerror(errno));
}
return 1;
}
return 1;
}
static void copy_policy(struct sftp_tap_policy *dst,
struct sftp_tap_policy *src) {
dst->policy = src->policy;
dst->chance_max = src->chance_max;
dst->min_datalen = src->min_datalen;
dst->max_datalen = src->max_datalen;
}
static void set_policy_chance(struct sftp_tap_policy *policy) {
if (policy->chance_max == 0) {
/* This is the 'none' policy; no need to do anything. */
return;
}
if (policy->chance_max != 1) {
policy->chance = (int) (rand() / (RAND_MAX / policy->chance_max + 1));
} else {
policy->chance = 1;
}
}
static void set_policy_timer(struct sftp_tap_policy *policy) {
/* Start a timer which checks the last times we received and sent packets.
* From there, we may want to inject a TAP message, depending on the
* policy.
*/
if (policy->check_interval > 0) {
tap_timerno = pr_timer_add(policy->check_interval, -1,
&sftp_module, check_packet_times_cb, "SFTP TAP check");
}
}
int sftp_tap_have_policy(const char *policy) {
register unsigned int i;
for (i = 0; tap_policies[i].policy; i++) {
if (strcasecmp(tap_policies[i].policy, policy) == 0) {
return 0;
}
}
errno = ENOENT;
return -1;
}
int sftp_tap_send_packet(void) {
int chance;
if (!sftp_interop_supports_feature(SFTP_SSH2_FEAT_IGNORE_MSG)) {
pr_trace_msg(trace_channel, 3,
"unable to send TAP packet: IGNORE not supported by client");
return 0;
}
if (curr_policy.chance_max == 0) {
/* The "none" policy is in effect; nothing to do. */
return 0;
}
/* Calculate our odds of sending a tap packet, based on the configured
* policy.
*/
if (curr_policy.chance_max != 1) {
chance = (int) (rand() / (RAND_MAX / curr_policy.chance_max + 1));
} else {
chance = 1;
}
if (chance == curr_policy.chance) {
unsigned char *rand_data;
char *buf, *ptr;
uint32_t bufsz, buflen, rand_datalen;
struct ssh2_packet *pkt;
unsigned int max_datalen = 8192;
if (curr_policy.max_datalen) {
max_datalen = curr_policy.max_datalen;
}
rand_datalen = (uint32_t) (curr_policy.min_datalen + rand() /
(RAND_MAX / (max_datalen - curr_policy.min_datalen) + 1));
pr_trace_msg(trace_channel, 20, "sending random SSH2_MSG_IGNORE message "
"(%lu bytes) based on '%s' TAP policy", (unsigned long) rand_datalen,
curr_policy.policy);
pkt = sftp_ssh2_packet_create(tap_pool);
bufsz = buflen = rand_datalen + 32;
ptr = buf = palloc(pkt->pool, bufsz);
rand_data = palloc(pkt->pool, rand_datalen);
/* We don't need cryptographically secure random bytes here, just
* pseudo-random data.
*/
RAND_pseudo_bytes(rand_data, rand_datalen);
sftp_msg_write_byte(&buf, &buflen, SFTP_SSH2_MSG_IGNORE);
sftp_msg_write_data(&buf, &buflen, (char *) rand_data, rand_datalen, TRUE);
pkt->payload = ptr;
pkt->payload_len = (bufsz - buflen);
if (sftp_ssh2_packet_send(sftp_conn->wfd, pkt) < 0) {
int xerrno = errno;
pr_trace_msg(trace_channel, 12,
"error writing TAP packet: %s", strerror(xerrno));
}
destroy_pool(pkt->pool);
}
return 0;
}
int sftp_tap_set_policy(const char *policy) {
register unsigned int i;
if (tap_pool) {
/* Special case: IFF the existing policy is 'none' AND the given
* policy is 'rogaway', just return. The 'none' policy must have been
* explicitly configured, and it should override the automatic use of
* the 'rogaway' policy.
*/
if (strncmp(curr_policy.policy, "none", 5) == 0 &&
strncasecmp(policy, "rogaway", 8) == 0) {
(void) pr_log_writefile(sftp_logfd, MOD_SFTP_VERSION,
"'none' traffic policy explicitly configured, ignoring '%s' policy",
policy);
return 0;
}
destroy_pool(tap_pool);
if (tap_timerno > 0) {
pr_timer_remove(tap_timerno, &sftp_module);
tap_timerno = -1;
}
}
tap_pool = make_sub_pool(sftp_pool);
pr_pool_tag(tap_pool, "SFTP TAP Pool");
memset(&curr_policy, 0, sizeof(struct sftp_tap_policy));
for (i = 0; tap_policies[i].policy; i++) {
if (strcasecmp(tap_policies[i].policy, policy) == 0) {
copy_policy(&curr_policy, &(tap_policies[i]));
set_policy_chance(&curr_policy);
set_policy_timer(&curr_policy);
return 0;
}
}
errno = ENOENT;
return -1;
}
|