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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
|
/* $EPIC: crypt.c,v 1.17 2003/10/31 08:19:24 crazyed Exp $ */
/*
* crypt.c: handles some encryption of messages stuff.
*
* Copyright (c) 1990 Michael Sandroff.
* Copyright (c) 1991, 1992 Troy Rollo.
* Copyright (c) 1992-1996 Matthew Green.
* Copyright 1995, 2003 EPIC Software Labs
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notices, the above paragraph (the one permitting redistribution),
* this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The names of the author(s) may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "irc.h"
#include "sedcrypt.h"
#include "ctcp.h"
#include "ircaux.h"
#include "list.h"
#include "output.h"
#include "vars.h"
#include "words.h"
#define CRYPT_BUFFER_SIZE (IRCD_BUFFER_SIZE - 50) /* Make this less than
* the transmittable
* buffer */
/* crypt_list: the list of nicknames and encryption keys */
static Crypt *crypt_list = (Crypt *) 0;
/*
* add_to_crypt: adds the nickname and key pair to the crypt_list. If the
* nickname is already in the list, then the key is changed the the supplied
* key.
*/
static void add_to_crypt(char *nick, char *key, char* prog)
{
Crypt *new_crypt;
if ((new_crypt = (Crypt *) remove_from_list((List **)&crypt_list, nick)) != NULL)
{
new_free((char **)&(new_crypt->nick));
new_free((char **)&(new_crypt->key));
new_free((char **)&(new_crypt->prog));
new_free((char **)&new_crypt);
}
new_crypt = (Crypt *) new_malloc(sizeof(Crypt));
new_crypt->nick = (char *) 0;
new_crypt->key = (char *) 0;
new_crypt->prog = (char *) 0;
malloc_strcpy(&(new_crypt->nick), nick);
malloc_strcpy(&(new_crypt->key), key);
if (prog && *prog) malloc_strcpy(&(new_crypt->prog), prog);
add_to_list((List **)&crypt_list, (List *)new_crypt);
}
/*
* remove_crypt: removes the given nickname from the crypt_list, returning 0
* if successful, and 1 if not (because the nickname wasn't in the list)
*/
static int remove_crypt (char *nick)
{
Crypt *tmp;
if ((tmp = (Crypt *) list_lookup((List **)&crypt_list, nick, !USE_WILDCARDS,
REMOVE_FROM_LIST)) != NULL)
{
new_free((char **)&(tmp->nick));
new_free((char **)&(tmp->key));
new_free((char **)&(tmp->prog));
new_free((char **)&tmp);
return (0);
}
return (1);
}
/*
* is_crypted: looks up nick in the crypt_list and returns the encryption key
* if found in the list. If not found in the crypt_list, null is returned.
*/
Crypt *is_crypted (const char *nick)
{
Crypt *tmp;
if (!crypt_list)
return NULL;
if ((tmp = (Crypt *) list_lookup((List **)&crypt_list, nick,
!!strchr(nick, ','), !REMOVE_FROM_LIST)) != NULL) {
return tmp;
} else {
return NULL;
}
}
/*
* encrypt_cmd: the ENCRYPT command. Adds the given nickname and key to the
* encrypt list, or removes it, or list the list, you know.
*/
BUILT_IN_COMMAND(encrypt_cmd)
{
char *nick, *key, *prog;
if ((nick = next_arg(args, &args)) != NULL)
{
if ((key = next_arg(args, &args)) != NULL)
{
prog = next_arg(args, &args);
add_to_crypt(nick, key, prog);
say("%s added to the crypt with key %s and program %s",
nick, key, prog?prog:"[none]");
}
else
{
if (remove_crypt(nick))
say("No such nickname in the crypt: %s", nick);
else
say("%s removed from the crypt", nick);
}
}
else
{
if (crypt_list)
{
Crypt *tmp;
say("The crypt:");
for (tmp = crypt_list; tmp; tmp = tmp->next)
put_it("%s with key %s and program %s",
tmp->nick, tmp->key, tmp->prog?tmp->prog:"[none]");
}
else
say("The crypt is empty");
}
}
void my_encrypt (char *str, int len, char *key)
{
int key_len,
key_pos,
i;
char mix,
tmp;
if (!key)
return; /* no encryption */
key_len = strlen(key);
key_pos = 0;
mix = 0;
for (i = 0; i < len; i++)
{
tmp = str[i];
str[i] = mix ^ tmp ^ key[key_pos];
mix ^= tmp;
key_pos = (key_pos + 1) % key_len;
}
str[i] = (char) 0;
}
void my_decrypt (char *str, int len, char *key)
{
int key_len,
key_pos,
i;
char mix,
tmp;
if (!key)
return; /* no decryption */
key_len = strlen(key);
key_pos = 0;
mix = 0;
for (i = 0; i < len; i++)
{
tmp = mix ^ str[i] ^ key[key_pos];
str[i] = tmp;
mix ^= tmp;
key_pos = (key_pos + 1) % key_len;
}
str[i] = (char) 0;
}
static char * prog_crypt (char *str, size_t *len, Crypt *key, int flag)
{
char *ret = NULL, *input;
char * args[3];
int iplen;
args[0] = malloc_strdup(key->prog);
args[1] = malloc_strdup(flag ? "encrypt" : "decrypt");
args[2] = NULL;
input = malloc_strdup2(key->key, "\n");
iplen = strlen(input);
new_realloc((void**)&input, *len + iplen);
memmove(input + iplen, str, *len);
*len += iplen;
ret = exec_pipe(key->prog, input, len, args);
new_free(&args[0]);
new_free(&args[1]);
new_free((char**)&input);
new_realloc((void**)&ret, 1+*len);
ret[*len] = 0;
return ret;
}
char *do_crypt (char *str, Crypt *key, int flag)
{
size_t c;
char *free_it = NULL;
c = strlen(str);
if (flag)
{
if (key->prog)
free_it = str = (char*)prog_crypt(str, &c, key, flag);
else
my_encrypt(str, c, key->key);
str = enquote_it(str, c);
}
else
{
str = dequote_it(str, &c);
if (key->prog)
str = (char*)prog_crypt(free_it = str, &c, key, flag);
else
my_decrypt(str, c, key->key);
}
new_free(&free_it);
return (str);
}
/*
* crypt_msg: Given plaintext 'str', constructs a body suitable for sending
* via PRIVMSG or DCC CHAT.
*/
char *crypt_msg (char *str, Crypt *key)
{
char buffer[CRYPT_BUFFER_SIZE + 1];
char thing[6];
char *ptr;
snprintf(thing, 6, "%cSED ", CTCP_DELIM_CHAR);
*buffer = 0;
if ((ptr = do_crypt(str, key, 1)))
{
if (!*ptr) {
yell("WARNING: Empty encrypted message, but message "
"sent anyway. Bug?");
}
strlcat(buffer, thing, sizeof buffer);
strlcat(buffer, ptr, sizeof buffer);
strlcat(buffer, CTCP_DELIM_STR, sizeof buffer);
new_free(&ptr);
}
else
strlcat(buffer, str, sizeof buffer);
return malloc_strdup(buffer);
}
/*
* Given a CTCP SED argument 'str', it attempts to unscramble the text
* into something more sane. If the 'key' is not the one used to scramble
* the text, the results are unpredictable. This is probably the point.
*
* Note that the retval MUST be at least 'BIG_BUFFER_SIZE + 1'. This is
* not an oversight -- the retval is passed is to do_ctcp() which requires
* a big buffer to scratch around (The decrypted text could be a CTCP UTC
* which could expand to a larger string of text.)
*/
char *decrypt_msg (char *str, Crypt *key)
{
char *buffer = (char *)new_malloc(BIG_BUFFER_SIZE + 1);
char *ptr;
if ((ptr = do_crypt(str, key, 0)) != NULL)
{
strlcpy(buffer, ptr, CRYPT_BUFFER_SIZE + 1);
new_free(&ptr);
}
else
strlcat(buffer, str, CRYPT_BUFFER_SIZE + 1);
return buffer;
}
|