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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
|
/*
* random.c --
*
* Implementation of a random Tcl file channel
*
* The PRNG in use here is the ISAAC PRNG. See
* http://www.burtleburtle.net/bob/rand/isaacafa.html
* for details. This generator _is_ suitable for cryptographic use
*
* Copyright (C) 2004 Pat Thoyts <patthoyts@users.sourceforge.net>
*
* Permission is hereby granted, without written agreement and without
* license or royalty fees, to use, copy, modify, and distribute this
* software and its documentation for any purpose, provided that the
* above copyright notice and the following two paragraphs appear in
* all copies of this software.
*
* IN NO EVENT SHALL I BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
* INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
* SOFTWARE AND ITS DOCUMENTATION, EVEN IF I HAVE BEEN ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* I SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND
* I HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
* ENHANCEMENTS, OR MODIFICATIONS.
*
* CVS: $Id: random.c,v 1.5 2004/11/10 00:07:01 patthoyts Exp $
*/
#include "memchanInt.h"
#include "../isaac/rand.h"
#include <time.h>
/*
* Forward declarations of internal procedures.
*/
static int Close _ANSI_ARGS_((ClientData instanceData,
Tcl_Interp *interp));
static int Input _ANSI_ARGS_((ClientData instanceData,
char *buf, int toRead, int *errorCodePtr));
static int Output _ANSI_ARGS_((ClientData instanceData,
CONST84 char *buf, int toWrite, int *errorCodePtr));
static void WatchChannel _ANSI_ARGS_((ClientData instanceData, int mask));
static void ChannelReady _ANSI_ARGS_((ClientData instanceData));
static int GetFile _ANSI_ARGS_((ClientData instanceData,
int direction,
ClientData* handlePtr));
static int BlockMode _ANSI_ARGS_((ClientData instanceData,
int mode));
static int GetOption _ANSI_ARGS_((ClientData instanceData,
Tcl_Interp* interp,
CONST84 char *optionName,
Tcl_DString *dsPtr));
static int SetOption _ANSI_ARGS_((ClientData instanceData,
Tcl_Interp* interp,
CONST char *optionName,
CONST char *newValue));
/*
* This structure describes the channel type structure for random channels:
* random channels are not seekable. They have no options.
*/
static Tcl_ChannelType channelType = {
"random", /* Type name. */
(Tcl_ChannelTypeVersion)BlockMode, /* Set blocking behaviour. */
Close, /* Close channel, clean instance data */
Input, /* Handle read request */
Output, /* Handle write request */
NULL, /* Move location of access point. NULL'able */
SetOption, /* Set options. NULL'able */
GetOption, /* Get options. NULL'able */
WatchChannel, /* Initialize notifier */
#if GT81
GetFile, /* Get OS handle from the channel. */
NULL /* Close2Proc, not available, no partial close
* possible */
#else
GetFile /* Get OS handle from the channel. */
#endif
};
/*
* This structure describes the per-instance state of a in-memory random channel.
*/
typedef struct ChannelInstance {
Tcl_Channel chan; /* Backreference to generic channel information */
Tcl_TimerToken timer; /* Timer used to link the channel into the
* notifier. */
struct randctx state; /* PRNG state */
int delay; /* fileevent notification interval (in ms) */
} ChannelInstance;
/*
*----------------------------------------------------------------------
*
* BlockMode --
*
* Helper procedure to set blocking and nonblocking modes on a
* memory channel. Invoked by generic IO level code.
*
* Results:
* 0 if successful, errno when failed.
*
* Side effects:
* Sets the device into blocking or non-blocking mode.
*
*----------------------------------------------------------------------
*/
static int
BlockMode (instanceData, mode)
ClientData instanceData;
int mode;
{
return 0;
}
/*
*------------------------------------------------------*
*
* Close --
*
* ------------------------------------------------*
* This procedure is called from the generic IO
* level to perform channel-type-specific cleanup
* when an in-memory random channel is closed.
* ------------------------------------------------*
*
* Sideeffects:
* Closes the device of the channel.
*
* Result:
* 0 if successful, errno if failed.
*
*------------------------------------------------------*
*/
/* ARGSUSED */
static int
Close (instanceData, interp)
ClientData instanceData; /* The instance information of the channel to
* close */
Tcl_Interp* interp; /* unused */
{
ChannelInstance* chan;
chan = (ChannelInstance*) instanceData;
if (chan->timer != (Tcl_TimerToken) NULL) {
Tcl_DeleteTimerHandler (chan->timer);
}
Tcl_Free ((char*) chan);
return 0;
}
/*
*------------------------------------------------------*
*
* Input --
*
* ------------------------------------------------*
* This procedure is invoked from the generic IO
* level to read input from an in-memory random channel.
* ------------------------------------------------*
*
* Sideeffects:
* Reads input from the input device of the
* channel.
*
* Result:
* The number of bytes read is returned or
* -1 on error. An output argument contains
* a POSIX error code if an error occurs, or
* zero.
*
*------------------------------------------------------*
*/
static int
Input (instanceData, buf, toRead, errorCodePtr)
ClientData instanceData; /* The channel to read from */
char* buf; /* Buffer to fill */
int toRead; /* Requested number of bytes */
int* errorCodePtr; /* Location of error flag */
{
ChannelInstance *chan = (ChannelInstance *)instanceData;
size_t n = 0, i = sizeof(unsigned long);
unsigned long rnd;
for (n = 0; toRead - n > i; n += i) {
rnd = rand(&chan->state);
memcpy(&buf[n], (char *)&rnd, i);
}
if (toRead - n > 0) {
rnd = rand(&chan->state);
memcpy(&buf[n], (char *)&rnd, toRead-n);
n += (toRead-n);
}
return n;
}
/*
*------------------------------------------------------*
*
* Output --
*
* ------------------------------------------------*
* This procedure is invoked from the generic IO
* level to write output to a file channel.
* ------------------------------------------------*
*
* Sideeffects:
* Writes output on the output device of
* the channel.
*
* Result:
* The number of bytes written is returned
* or -1 on error. An output argument
* contains a POSIX error code if an error
* occurred, or zero.
*
*------------------------------------------------------*
*/
static int
Output (instanceData, buf, toWrite, errorCodePtr)
ClientData instanceData; /* The channel to write to */
CONST84 char* buf; /* Data to be stored. */
int toWrite; /* Number of bytes to write. */
int* errorCodePtr; /* Location of error flag. */
{
ChannelInstance *chan = (ChannelInstance *)instanceData;
ub4 rnd, n = 0;
ub4 *s = (ub4 *)buf;
ub4 *p = chan->state.randrsl;
while (n < RANDSIZ && n < (ub4)(toWrite/4)) {
p[n] ^= s[n]; n++;
}
/* mix the state */
rnd = rand(&chan->state);
/*
* If we filled the state with data, there is no advantage to
* adding in additional data. So lets save time.
*/
return toWrite;
}
/*
*------------------------------------------------------*
*
* WatchChannel --
*
* ------------------------------------------------*
* Initialize the notifier to watch Tcl_Files from
* this channel.
* ------------------------------------------------*
*
* Sideeffects:
* Sets up the notifier so that a future
* event on the channel will be seen by Tcl.
*
* Result:
* None.
*
*------------------------------------------------------*
*/
/* ARGSUSED */
static void
WatchChannel (instanceData, mask)
ClientData instanceData; /* Channel to watch */
int mask; /* Events of interest */
{
/*
* random channels are not based on files.
* They are always writable, and always readable.
* We could call Tcl_NotifyChannel immediately, but this
* would starve other sources, so a timer is set up instead.
*/
ChannelInstance* chan = (ChannelInstance*) instanceData;
if (mask) {
if (chan->timer == (Tcl_TimerToken) NULL) {
chan->timer = Tcl_CreateTimerHandler(chan->delay, ChannelReady,
instanceData);
}
} else {
Tcl_DeleteTimerHandler (chan->timer);
chan->timer = (Tcl_TimerToken) NULL;
}
}
/*
*------------------------------------------------------*
*
* ChannelReady --
*
* ------------------------------------------------*
* Called by the notifier (-> timer) to check whether
* the channel is readable or writable.
* ------------------------------------------------*
*
* Sideeffects:
* As of 'Tcl_NotifyChannel'.
*
* Result:
* None.
*
*------------------------------------------------------*
*/
static void
ChannelReady (instanceData)
ClientData instanceData; /* Channel to query */
{
/*
* In-memory random channels are always writable (fileevent
* writable) and they are also always readable.
*/
ChannelInstance* chan = (ChannelInstance*) instanceData;
int mask = TCL_READABLE | TCL_WRITABLE;
/*
* Timer fired, our token is useless now.
*/
chan->timer = (Tcl_TimerToken) NULL;
/* Tell Tcl about the possible events.
* This will regenerate the timer too, via 'WatchChannel'.
*/
Tcl_NotifyChannel (chan->chan, mask);
}
/*
*------------------------------------------------------*
*
* GetFile --
*
* ------------------------------------------------*
* Called from Tcl_GetChannelHandle to retrieve
* OS handles from inside a in-memory random channel.
* ------------------------------------------------*
*
* Sideeffects:
* None.
*
* Result:
* The appropriate OS handle or NULL if not
* present.
*
*------------------------------------------------------*
*/
static int
GetFile (instanceData, direction, handlePtr)
ClientData instanceData; /* Channel to query */
int direction; /* Direction of interest */
ClientData* handlePtr; /* Space to the handle into */
{
/*
* In-memory random channels are not based on files.
*/
/* *handlePtr = (ClientData) NULL; */
return TCL_ERROR;
}
/*
*------------------------------------------------------*
*
* SetOption --
*
* ------------------------------------------------*
* Set a channel option
* ------------------------------------------------*
*
* Sideeffects:
* Channel parameters may be modified.
*
* Result:
* A standard Tcl result. The new value of the
* specified option is returned as the interpeter
* result
*
*------------------------------------------------------*
*/
static int
SetOption (instanceData, interp, optionName, newValue)
ClientData instanceData; /* Channel to query */
Tcl_Interp *interp; /* Interpreter to leave error messages in */
CONST char *optionName; /* Name of requested option */
CONST char *newValue; /* The new value */
{
ChannelInstance *chan = (ChannelInstance*) instanceData;
CONST char *options = "delay";
int result = TCL_OK;
if (!strcmp("-delay", optionName)) {
int delay = DELAY;
result = Tcl_GetInt(interp, (CONST84 char *)newValue, &delay);
if (result == TCL_OK) {
chan->delay = delay;
Tcl_SetObjResult(interp, Tcl_NewIntObj(delay));
}
} else {
result = Tcl_BadChannelOption(interp,
(CONST84 char *)optionName, (CONST84 char *)options);
}
return result;
}
/*
*------------------------------------------------------*
*
* GetOption --
*
* ------------------------------------------------*
* Computes an option value for a zero
* channel, or a list of all options and their values.
* ------------------------------------------------*
*
* Sideeffects:
* None.
*
* Result:
* A standard Tcl result. The value of the
* specified option or a list of all options
* and their values is returned in the
* supplied DString.
*
*------------------------------------------------------*
*/
static int
GetOption (instanceData, interp, optionName, dsPtr)
ClientData instanceData; /* Channel to query */
Tcl_Interp* interp; /* Interpreter to leave error messages in */
CONST84 char* optionName; /* Name of reuqested option */
Tcl_DString* dsPtr; /* String to place the result into */
{
ChannelInstance *chan = (ChannelInstance*) instanceData;
char buffer [50];
/* Known options:
* -delay: Number of milliseconds between readable fileevents.
*/
if ((optionName != (char*) NULL) &&
(0 != strcmp (optionName, "-delay"))) {
Tcl_SetErrno (EINVAL);
return Tcl_BadChannelOption (interp, optionName, "delay");
}
if (optionName == (char*) NULL) {
/*
* optionName == NULL
* => a list of options and their values was requested,
* so append the optionName before the retrieved value.
*/
Tcl_DStringAppendElement (dsPtr, "-delay");
LTOA (chan->delay, buffer);
Tcl_DStringAppendElement (dsPtr, buffer);
} else if (0 == strcmp (optionName, "-delay")) {
LTOA (chan->delay, buffer);
Tcl_DStringAppendElement (dsPtr, buffer);
}
return TCL_OK;
}
/*
*------------------------------------------------------
*
* Memchan_CreateRandomChannel -
*
* Mint a new 'random' channel.
*
* Result:
* Returns the new channel.
*
*------------------------------------------------------
*/
Tcl_Channel
Memchan_CreateRandomChannel(interp)
Tcl_Interp *interp; /* current interpreter */
{
Tcl_Channel chan;
Tcl_Obj *channelHandle;
ChannelInstance *instance;
unsigned long seed;
instance = (ChannelInstance*) Tcl_Alloc (sizeof (ChannelInstance));
channelHandle = MemchanGenHandle ("random");
chan = Tcl_CreateChannel (&channelType,
Tcl_GetStringFromObj (channelHandle, NULL),
(ClientData) instance,
TCL_READABLE | TCL_WRITABLE);
instance->chan = chan;
instance->timer = (Tcl_TimerToken) NULL;
instance->delay = DELAY;
/*
* Basic initialization of the PRNG state
*/
seed = time(NULL) + ((long)Tcl_GetCurrentThread() << 12);
memcpy(&instance->state.randrsl, &seed, sizeof(seed));
randinit(&instance->state, TRUE);
Tcl_RegisterChannel (interp, chan);
Tcl_SetChannelOption (interp, chan, "-buffering", "none");
Tcl_SetChannelOption (interp, chan, "-blocking", "0");
return chan;
}
/*
*------------------------------------------------------*
*
* MemchanRandomCmd --
*
* ------------------------------------------------*
* This procedure realizes the 'random' command.
* See the manpages for details on what it does.
* ------------------------------------------------*
*
* Sideeffects:
* See the user documentation.
*
* Result:
* A standard Tcl result.
*
*------------------------------------------------------*
*/
/* ARGSUSED */
int
MemchanRandomCmd (notUsed, interp, objc, objv)
ClientData notUsed; /* Not used. */
Tcl_Interp* interp; /* Current interpreter. */
int objc; /* Number of arguments. */
Tcl_Obj*CONST objv[]; /* Argument objects. */
{
Tcl_Channel chan;
if (objc != 1) {
Tcl_AppendResult (interp, "wrong # args: should be \"fifo\"",
(char*) NULL);
return TCL_ERROR;
}
chan = Memchan_CreateRandomChannel(interp);
Tcl_AppendResult(interp, Tcl_GetChannelName(chan), (char *)NULL);
return TCL_OK;
}
|