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 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
|
/*
* ignore.c: handles the ingore command for irc
*
* 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.
*/
/*
* Here's the plan...
*
* IGNORE THEORY: There are times when we want to single out a particular
* person, server, or channel for special handling. The process of
* identifying another target on irc for special handling (see below),
* and the descriptions and dispositions of what you want epic to do when
* that target sends you a message, is known as "IGNORING" them. Any
* particular message may be subject to one or more "IGNORE" rules.
*
* Each Ignore rule may either "pass" (do nothing) on a message or terminate
* the disposition of a message. There are three dispositions available:
*
* 1) Suppressive ignore (IGNORE_SUPPRESS) - A message from this person
* shall be discarded and shall not generate any direct output.
* 2) Exceptive ignore (IGNORE_DONT) - A message from this person shall be
* considered important enough to be exempt from all other ignore rules.
* Ignores of this type are "exceptions" to ignores of other types.
*
* Each Ignore type has (currently) many "levels" through which all messages
* are sorted:
* MSGS PRIVMSGs sent to you
* PUBLIC PRIVMSGs sent to a channel you are on
* WALLS PRIVMSGs not covered by MSGS or PUBLIC
* WALLOPS WALLOPs messages sent to anybody.
* INVITES INVITEs sent to you
* NOTICES NOTICEs sent to anybody
* CTCPS CTCP requests or CTCP replies sent to anybody
* TOPICS TOPIC changes by anybody
* NICKS NICK changes by anybody
* JOINS JOINs to any channel by anybody
* PARTS PARTs from any channel by anybody
* OTHER QUITs, MODEs, KICKs and PONGs.
*
* In addition, the user can use these shorthand level descriptions:
* ALL All of the above.
*
* Further in addition, the user can set ancilliary data which have the
* following descriptions:
* REASON "arg" Set the ignore's reason to the double-quoted
* word argument after REASON
* TIMEOUT number Automatically cancel the ignore after "number"
* seconds from now.
*
* Each message that can be ignored fits into one of the above categories.
* For each Ignore item, for each level, the three dispotions are mutually
* exclusive of each other. If you add MSGS to your suppressive ignores,
* it is implied that MSGS will be removed from Exceptive and Highlight
* ignores.
*
* It is not necessary for each ignore to have a disposition for each level.
* If an ignore does not declare a disposition for a level, it "passes" on
* that message and further ignore rules will be checked.
*/
#include "irc.h"
#include "ignore.h"
#include "ircaux.h"
#include "list.h"
#include "vars.h"
#include "output.h"
#include "parse.h"
#include "timer.h"
#include "functions.h"
#include "window.h"
#include "reg.h"
#define IGNORE_REMOVE -1
#define IGNORE_SUPPRESS 0
#define IGNORE_DONT 1
/*
* Ignore: the ignore list structure, consists of the nickname, and the type
* of ignorance which is to take place
*/
typedef struct IgnoreStru
{
#if 0
List l;
#endif
#if 0
struct IgnoreStru *next;
char *nick; /* What is being ignored */
#endif
int refnum; /* The refnum for internal use */
Mask type; /* Suppressive ignores */
Mask dont; /* Exceptional ignores */
int counter; /* How many times it has triggered */
Timeval creation; /* When it was created */
Timeval last_used; /* When it was last ``triggered'' */
Timeval expiration; /* When this ignore expires */
char *reason;
int enabled;
} Ignore;
/* ignored_nicks: pointer to the head of the ignore list */
static List * ignored_nicks = NULL;
static int global_ignore_refnum = 0;
static int ignores_are_suspended = 0;
static void expire_ignores (void);
static const char * get_ignore_types (List *item, int);
static int change_ignore_mask_by_desc (const char *type, Mask *do_mask, Mask *dont_mask, char **reason, Timeval *expire);
static int ignore_change (List *, int, void *);
static int ignore_list (List *, int, void *);
static int foreach_ignore (const char *, int,
int (*)(List *, int, void *),
int, void *);
static int remove_ignore (const char *);
/*****************************************************************************/
#define IGNORE(l) ((Ignore *)(l->d))
static List *new_ignore (const char *new_nick)
{
List *item;
Ignore *d;
item = (List *)new_malloc(sizeof(List));
item->name = malloc_strdup(new_nick);
upper(item->name);
d = (Ignore *)new_malloc(sizeof(Ignore));
d->reason = NULL;
d->refnum = ++global_ignore_refnum;
mask_unsetall(&d->type);
mask_unsetall(&d->dont);
d->counter = 0;
get_time(&d->creation);
d->last_used.tv_sec = 0;
d->last_used.tv_usec = 0;
d->expiration.tv_sec = 0;
d->expiration.tv_usec = 0;
d->enabled = 1;
item->d = d;
add_item_to_list(&ignored_nicks, item);
return item;
}
/*
* get_ignore_by_refnum: When all you have is a refnum, all the world's
* a linked list...
*
* Arguments:
* 'refnum' -- The refnum of an ignore allegedly in use
*
* Return Value:
* If 'refnum' is actually in use, that Ignore item is returned,
* otherwise NULL is returned.
*/
static List * get_ignore_by_refnum (int refnum)
{
List *item;
for (item = ignored_nicks; item; item = item->next)
if (IGNORE(item)->refnum == refnum)
return item;
return NULL;
}
/****************************************************************************/
/*
* do_expire_ignores: TIMER callback for when ignores should be reaped
*
* Arguments:
* 'ignored' -- Not used.
*
* Return Value:
* No return value
*/
int do_expire_ignores (void *ignored)
{
expire_ignores();
return 0;
}
/*
* expire_ignores: find and destroy any timers which have reached the end
* of their useful lifetime.
*
* Arguments:
* No arguments
*
* Return Value:
* No return value
*/
static void expire_ignores (void)
{
List *item, *next;
Timeval right_now;
if (!ignored_nicks)
return;
get_time(&right_now);
for (item = ignored_nicks; item; item = next)
{
next = item->next;
if (IGNORE(item)->expiration.tv_sec != 0 &&
time_diff(right_now, IGNORE(item)->expiration) < 0)
remove_ignore(item->name);
}
}
/*
* remove_ignore: Delete one or more Ignore items by description.
*
* Arguments:
* 'nick' - A string containing either the exact value of an Ignore item
* (ie, a nick!user@host, server name, or channel name), or
* a wildcard pattern that matches one or more values of Ignore
* items. If it is an exact value, that ignore item is deleted.
* If it is a wildcard pattern, then all ignore items that are
* matched by the pattern are deleted.
*
* Return value:
* This function returns the number of ignore items deleted.
*
* Notes:
* This function may delete more than one item!
*
* This function tells the user what the changes are. If you do not want
* the output to occur, set window_display to 0 before calling.
*/
static int remove_ignore (const char *nick)
{
List *item;
char new_nick[IRCD_BUFFER_SIZE + 1];
int count = 0;
char *mnick, *user, *host;
if (is_number(nick))
{
List *last;
int refnum = my_atol(nick);
for (last = NULL, item = ignored_nicks; item; item = item->next)
{
if (IGNORE(item)->refnum == refnum)
{
if (last)
last->next = item->next;
else
ignored_nicks = item->next;
say("%s removed from ignorance list (ignore refnum %d)",
item->name, IGNORE(item)->refnum);
new_free(&(item->name));
new_free(&(IGNORE(item)->reason));
new_free((char **)&(item->d));
new_free((char **)&item);
return 1;
}
last = item;
}
say("Ignore refnum [%d] is not in use!", refnum);
return 0;
}
if (figure_out_address(nick, &mnick, &user, &host))
strlcpy(new_nick, nick, IRCD_BUFFER_SIZE);
else
snprintf(new_nick, IRCD_BUFFER_SIZE, "%s!%s@%s",
*mnick ? mnick : star,
*user ? user : star,
*host ? host : star);
/*
* Look for an exact match first.
*/
while ((item = remove_from_list(&ignored_nicks, new_nick)))
{
say("%s removed from ignorance list (ignore refnum %d)",
item->name, IGNORE(item)->refnum);
new_free(&(item->name));
new_free(&(IGNORE(item)->reason));
new_free((char **)&item->d);
new_free((char **)&item);
count++;
}
if (!count)
say("%s is not in the ignorance list!", new_nick);
return count;
}
/***************************************************************************/
/*
* get_ignore_types: Summarize the effects of an Ignore rule.
*
* Arguments:
* 'item' - The Ignore item whose dispositions shall be summarized
*
* Return value:
* This function returns a static, temporary string that contains a summary
* of the effects of the Ignore rule 'item'. This string will be destroyed
* the next time someone calls this function so if you want to keep it, you
* must make a copy of it. You must not try to write to the string.
*/
#define HANDLE_TYPE(x,y) \
if (mask_isset(&IGNORE(item)->dont, LEVEL_ ## x)) \
{ \
if ((y) == 1) \
strlcat(buffer, " DONT-" #x, sizeof buffer); \
else if ((y) == 2) \
strlcat(buffer, " ^" #x, sizeof buffer); \
} \
else if (mask_isset(&IGNORE(item)->type, LEVEL_ ## x)) \
{ \
if ((y) == 1) \
strlcat(buffer, " " #x, sizeof buffer); \
else if ((y) == 2) \
strlcat(buffer, " /" #x, sizeof buffer); \
} \
static const char * get_ignore_types (List *item, int output_type)
{
static char buffer[BIG_BUFFER_SIZE + 1];
char *retval;
*buffer = 0;
HANDLE_TYPE(ALL, output_type)
else
{
HANDLE_TYPE(PUBLIC, output_type)
HANDLE_TYPE(MSG, output_type)
HANDLE_TYPE(NOTICE, output_type)
HANDLE_TYPE(WALL, output_type)
HANDLE_TYPE(WALLOP, output_type)
HANDLE_TYPE(OPNOTE, output_type)
HANDLE_TYPE(SNOTE, output_type)
HANDLE_TYPE(ACTION, output_type)
HANDLE_TYPE(DCC, output_type)
HANDLE_TYPE(CTCP, output_type)
HANDLE_TYPE(INVITE, output_type)
HANDLE_TYPE(JOIN, output_type)
HANDLE_TYPE(NICK, output_type)
HANDLE_TYPE(TOPIC, output_type)
HANDLE_TYPE(PART, output_type)
HANDLE_TYPE(QUIT, output_type)
HANDLE_TYPE(KICK, output_type)
HANDLE_TYPE(MODE, output_type)
HANDLE_TYPE(OTHER, output_type)
HANDLE_TYPE(OPERWALL, output_type)
HANDLE_TYPE(SYSERR, output_type)
HANDLE_TYPE(USER1, output_type)
HANDLE_TYPE(USER2, output_type)
HANDLE_TYPE(USER4, output_type)
HANDLE_TYPE(USER5, output_type)
HANDLE_TYPE(USER6, output_type)
HANDLE_TYPE(USER7, output_type)
HANDLE_TYPE(USER8, output_type)
HANDLE_TYPE(USER9, output_type)
HANDLE_TYPE(USER10, output_type)
}
retval = buffer;
while (isspace(*retval))
retval++;
return retval; /* Eh! */
}
/*
* change_ignore_mask_by_desc: Change ignore mask and ancilliary data in
* the manner provided by a user description ignore-dispensation list.
*
* Arguments:
* 'type' - A comma-and-space separated list of ignore levels along with
* dispensations for the list. For each level and dispensation
* included, the following variables will be changed:
* 'do_mask' - Suppressive ignores
* 'dont_mask' - Exceptional ignores
* 'reason' - The reason the ignore was created. May be NULL.
* Expects an argument. If argument not provided or argument
* is a hyphen ("-"), the reason is unset.
* 'expire' - The time the ignore shall expire. May be NULL.
* Expects an argument. If argument not provided or argument
* is a hyphen ("-"), the timeout is unset.
*
* Return value:
* The value 0 is returned.
*
* Notes:
* The following dispositions are supported:
* -<TYPE> Remove <TYPE> from all disposition types
* !<TYPE> Change <TYPE> to an exceptional ignore
* ^<TYPE> Same as !<TYPE>
* /<TYPE> Change <TYPE> to a suppressive ignore
* <TYPE> Same as /<TYPE>
*
* The supported <TYPE>s are defined at the top of this file in the
* "IGNORE THEORY" documentation.
*/
static int change_ignore_mask_by_desc (const char *type, Mask *do_mask, Mask *dont_mask, char **reason, Timeval *expire)
{
char *l1, *l2;
int len;
Mask *mask = NULL, *del1, *del2, *del3;
char * copy;
int bit;
int i;
copy = LOCAL_COPY(type);
while ((l1 = new_next_arg(copy, ©)))
{
while (*l1 && (l2 = next_in_comma_list(l1, &l1)))
{
switch (*l2)
{
case '-':
l2++;
mask = NULL;
del1 = do_mask;
del2 = dont_mask;
del3 = NULL;
break;
case '!':
case '^':
l2++;
mask = dont_mask;
del1 = do_mask;
del2 = NULL;
del3 = NULL;
break;
case '/':
default:
mask = do_mask;
del1 = dont_mask;
del2 = NULL;
del3 = NULL;
break;
}
if (!(len = strlen(l2)))
continue;
if (!my_strnicmp(l2, "REASON", len))
{
char *the_reason;
the_reason = new_next_arg(copy, ©);
if (reason)
{
if (!mask || !the_reason || !*the_reason ||
!strcmp(the_reason, "-"))
new_free(reason);
else
malloc_strcpy(reason, the_reason);
}
continue;
}
else if (!my_strnicmp(l2, "TIMEOUT", len))
{
char *the_timeout;
the_timeout = new_next_arg(copy, ©);
if (expire)
{
if (!mask || !the_timeout || !*the_timeout ||
!strcmp(the_timeout, "-"))
{
expire->tv_sec = 0;
expire->tv_usec = 0;
}
else if (is_real_number(the_timeout))
{
double seconds;
Timeval right_now, interval;
seconds = atof(the_timeout);
interval = double_to_timeval(seconds);
get_time(&right_now);
*expire = time_add(right_now, interval);
add_timer(0, empty_string, seconds, 1,
do_expire_ignores, NULL, NULL,
GENERAL_TIMER, -1, 0, 0);
}
}
continue;
}
/* It's a level of some sort */
if (!my_strnicmp(l2, "NONE", len))
{
mask = NULL;
del1 = do_mask;
del2 = dont_mask;
del3 = NULL;
bit = LEVEL_ALL;
}
else if (!my_strnicmp(l2, "ALL", len))
bit = LEVEL_ALL;
else
{
i = str_to_level(l2);
if (i != -1)
bit = i;
else
{
char *levels = get_all_levels();
say("You must specify one of the following:");
say("\tALL %s NONE REASON \"<reason>\" TIMEOUT <seconds>", levels);
new_free(&levels);
continue;
}
}
if (mask)
mask_set(mask, bit);
if (del1)
mask_unset(del1, bit);
if (del2)
mask_unset(del2, bit);
if (del3)
mask_unset(del3, bit);
}
}
return 0;
}
/*****************************************************************************/
/*
* ignore_change: Change the types of things being ignored for an
* Ignore item.
*
* Arguments:
* 'item' - A particular Ignore item to be operated upon.
* 'type' - Ignored -- should be 1
* 'data' - A pointer to a string containing ignore type changes.
*
* Return value:
* This function returns 0.
*
* Notes:
* This function tells the user what the changes are. If you do not want
* the output to occur, set window_display to 0 before calling.
*/
static int ignore_change (List *item, int type, void *data)
{
char * changes = data;
change_ignore_mask_by_desc(changes, &(IGNORE(item)->type),
&(IGNORE(item)->dont),
&(IGNORE(item)->reason),
&(IGNORE(item)->expiration));
/*
* Tell the user the new state of the ignore.
* Garbage collect this ignore if it is clear.
* remove_ignore() does the output for us here.
*/
if (mask_isnone(&IGNORE(item)->type) && mask_isnone(&IGNORE(item)->dont))
{
remove_ignore(item->name);
return 0;
}
if (IGNORE(item)->reason)
say("Now ignoring %s from %s (refnum %d) because %s",
get_ignore_types(item, 1), item->name, IGNORE(item)->refnum,
IGNORE(item)->reason);
else
say("Now ignoring %s from %s (refnum %d)",
get_ignore_types(item, 1), item->name, IGNORE(item)->refnum);
return 0;
}
/*
* ignore_list: Tell the user about a particular ignore item.
*
* Arguments:
* 'item' - A particular Ignore item to be described.
* 'type' - This value is ignored. Pass the value 1.
* 'data' - This value is ignored. Pass a pointer to an integer.
*
* Return value:
* This function returns 0.
*/
static int ignore_list (List *item, int type, void *data)
{
int expiring = 0;
double time_to_expire = 0;
Timeval right_now;
if (IGNORE(item)->expiration.tv_sec != 0)
{
get_time(&right_now);
time_to_expire = time_diff(right_now, IGNORE(item)->expiration);
expiring = 1;
}
if (IGNORE(item)->reason)
{
if (!expiring)
{
say("[%d] %s:\t%s (%s)", IGNORE(item)->refnum, item->name,
get_ignore_types(item, 1), IGNORE(item)->reason);
}
else
{
say("[%d] %s:\t%s (%s) (%f seconds left)",
IGNORE(item)->refnum, item->name,
get_ignore_types(item, 1), IGNORE(item)->reason,
time_to_expire);
}
}
else
{
if (!expiring)
{
say("[%d] %s:\t%s", IGNORE(item)->refnum, item->name,
get_ignore_types(item, 1));
}
else
{
say("[%d] %s:\t%s (%f seconds left)", IGNORE(item)->refnum,
item->name, get_ignore_types(item, 1),
time_to_expire);
}
}
return 0;
}
/***************************************************************************/
/*
* foreach_ignore: call a function to manipulate one or more ignore items.
*
* Arguments:
* 'nicklist' - A comma-and-space separated list of nicknames, channels,
* and targets, each of which will be operated on.
* 'create' - If 1, items in 'nicklist' which do not exist will be created
* on demand. Otherwise they will be skipped with an error.
* 'callback' - For each (Ignore) item represented by targets in 'nicklist',
* this function will be called passing in the (Ignore) item,
* and the two following data items:
* 'data1' - An integer value to be passed to the callback function.
* The usual mean is 1 to set a value and 0 to unset a value
* 'data2' - A pointer to payload data which shall be passed to the
* callback value. This is usually a pointer to an integer
* or a character string.
*
* Return value:
* This function returns 0.
*
* Notes:
* This function allows you to easily perform the same operation on one or
* more ignore items as requested by the user.
* If a target in "nicklist" is not currently being ignored, and 'create' is
* true, a new entry for that target will be created, and the new item will
* be passed to the callback. This is a preferred way to create new ignore
* items.
*/
static int foreach_ignore (const char *nicklist, int create, int (*callback) (List *, int, void *), int data1, void *data2)
{
char *copy, *arg, *nick;
List *item;
char * mnick;
char * user;
char * host;
char new_nick[IRCD_BUFFER_SIZE + 1];
if (nicklist == NULL)
{
for (item = ignored_nicks; item; item = item->next)
callback(item, data1, data2);
return 0;
}
/*
* Walk over 'nicklist', which separates each target with spaces
* or with commas, ie:
* /ignore "nick1 nick2" ALL
* /ignore nick1,nick2 ALL
*/
copy = LOCAL_COPY(nicklist);
while ((arg = new_next_arg(copy, ©)))
{
while (*arg && (nick = next_in_comma_list(arg, &arg)))
{
if (is_number(nick))
{
int refnum = my_atol(nick);
for (item = ignored_nicks; item; item = item->next)
if (IGNORE(item)->refnum == refnum)
break;
if (!item)
{
say("Ignore refnum [%d] is not in use!", refnum);
continue;
}
}
else
{
/*
* If possible, fill out the address. If it cannot
* be figured out, just use what we were given.
*/
if (figure_out_address(nick, &mnick, &user, &host))
strlcpy(new_nick, nick, sizeof new_nick);
else
snprintf(new_nick, sizeof new_nick, "%s!%s@%s",
*mnick ? mnick : star,
*user ? user : star,
*host ? host : star);
/*
* Create a new ignore item if this one does not exist.
*/
if ((item = find_in_list(ignored_nicks, new_nick)) == NULL)
{
if (create == 0)
{
say("%s is not being ignored!", new_nick);
continue;
}
item = new_ignore(new_nick);
}
}
callback(item, data1, data2);
}
}
return 0;
}
/**************************************************************************/
/*
* ignore: The /IGNORE command
*
* Arguments:
* 'args' - The command line arguments to /IGNORE.
*
* Return value:
* None
*
* Notes:
* /IGNORE
* List all ignore items
* /IGNORE <target-or-refnum-list>
* List one or more particular ignore item by giving the target or
* refnum; separate multiple items by commas or spaces. Surround
* the list with double quotes if it contains spaces.
* /IGNORE <target-or-refnum-list> <level-dispositions>
* Change one or more particular ignore items, assigning the given
* levels to the given dispositions. The target list may be separated
* with spaces or commas. Surround the target list with double quotes
* if it contains spaces. The level dispositions may be separated with
* spaces or commas. It is not necessary to surround the level
* dispositions with double quotes.
*
* Where:
* <target-or-refnum-list> := ["] <target>|<refnum>
* [<delim> <target-or-refnum-list>]* ["]
* <target> := [<nick>][!<user>@<host>]
* <refnum> := <number>*
* <delim> := <space>|<comma>
* <level-dispositions> := <disposition> <level>
* <disposition> := [!|^] Set exclusionary ignore
* | - Remove level from all types
* | [/|<empty string>] Set suppressive ignore
* <level> := MSGS | PUBLIC | WALLS | WALLOPS | INVITES |
* NOTICES | CTCPS | TOPICS | NICKS |
* JOINS | PARTS | OTHER | NONE | ALL |
* REASON "<reason>" | TIMEOUT "<number>"
*
* Examples:
* /IGNORE #EPIC +ALL (Highlight all messages to epic)
* /IGNORE #EPIC -ALL (Delete ignore item for epic)
* /IGNORE #EPIC NONE (Same thing as -ALL)
* /IGNORE (List all ignores)
* /IGNORE 1 NONE (Remove ignore refnum 1)
* /IGNORE 2,3 NONE (Remove ignore refnums 2 and 3)
* /IGNORE "2 3" NONE (Same thing)
*/
BUILT_IN_COMMAND(ignore)
{
char *nick;
nick = new_next_arg(args, &args);
if (nick && !is_string_empty(args))
foreach_ignore(nick, 1, ignore_change, 1, args);
else
{
say("Ignorance List:");
foreach_ignore(nick, 0, ignore_list, 0, NULL);
}
}
/**************************** INTERNAL API ********************************/
/*
* get_ignores_by_pattern: Forward or reverse matching of ignore patterns
* with a list of patterns. The built in $igmask()
* and $rigmask() functions.
*
* Arguments:
* 'patterns' - A space separated list of patterns to use in forward
* or reverse matching the Ignore items.
* 'covered' - If 0, do forward matching ($igmask()),
* if 1, do reverse matching ($rigmask()).
*
* Return value:
* The return value is a MALLOCED word list containing all of the ignore
* wildcard masks covering or covered by the 'patterns'
*
* Notes:
* "Forward" matching means treating each ignore pattern as a literal
* string and the user's input as a wildcard pattern. All ignore
* patterns which are matched by the input are returned.
* "Reverse" matching means treating each ignore pattern as wildcard
* patterns and the user's input as a literal string. All ignore
* patterns which match the input are returned.
* Forward matching asks the question -- "Which ignore patterns contain
* this text in them?"
* Reverse matching asks the question -- "If this was the nick!user@host,
* which ignore patterns apply to that target?"
*/
char *get_ignores_by_pattern (char *patterns, int covered)
{
List *tmp;
char *pattern;
char *retval = NULL;
while ((pattern = new_next_arg(patterns, &patterns)))
{
for (tmp = ignored_nicks; tmp; tmp = tmp->next)
{
if (covered ? wild_match(tmp->name, pattern)
: wild_match(pattern, tmp->name))
malloc_strcat_word(&retval, space, tmp->name, DWORD_NO);
}
}
return retval ? retval : malloc_strdup(empty_string);
}
/*
* get_ignore_types_by_pattern: The $igtype() built in function
*
* Arguments:
* 'pattern' - A single ignore pattern or refnum.
*
* Return value:
* The targets being ignored by the ignore item, suitable for displaying
* to the user.
*/
const char *get_ignore_types_by_pattern (char *pattern)
{
List *tmp;
int number = -1;
if (is_number(pattern))
if ((number = my_atol(pattern)) < 0)
number = -1;
for (tmp = ignored_nicks; tmp; tmp = tmp->next)
{
if (!my_stricmp(tmp->name, pattern))
return get_ignore_types(tmp, 1);
if (number > -1 && IGNORE(tmp)->refnum == number)
return get_ignore_types(tmp, 1);
}
return empty_string;
}
/*
* get_ignore_patterns_by_type: The $rigtype() built in function
*
* Arguments:
* 'ctype' - A comma-and-space separated list of ignore level descriptions
*
* Return value:
* A MALLOCED string containing a word list of all of the targets
* (nick!user@host or #channels) ignoring at least the levels
* described by the argument.
*/
char *get_ignore_patterns_by_type (char *ctype)
{
List *tmp;
Mask do_mask, dont_mask;
char *result = NULL;
mask_unsetall(&do_mask);
mask_unsetall(&dont_mask);
/*
* Convert the user's input into something we can use.
* If the user doesnt specify anything useful, then we
* just punt right here.
*/
change_ignore_mask_by_desc(ctype, &do_mask, &dont_mask, NULL, NULL);
if (mask_isnone(&do_mask) && mask_isnone(&dont_mask))
return malloc_strdup(empty_string);
for (tmp = ignored_nicks; tmp; tmp = tmp->next)
{
int i;
/*
* change_ignore_mask_by_desc is supposed to ensure that
* each bit is set only once in 'do_mask', and 'dont_mask',
* and we already know this is the case
* for the Ignores. So we check each of the three ignore
* types, and if this ignore has all of the levels set in
* all of the right places, it's ok. It could have more
* levels than what the user asked for, but it can't have
* levels with different dispositions.
*/
for (i = 1; BIT_VALID(i); i++)
{
if (mask_isset(&dont_mask, i) && !mask_isset(&IGNORE(tmp)->dont, i))
goto bail;
if (mask_isset(&do_mask, i) && !mask_isset(&IGNORE(tmp)->type, i))
goto bail;
}
/* Add it to the fray */
malloc_strcat_word(&result, space, tmp->name, DWORD_NO);
bail:
continue;
}
return result;
}
/*
* Here's the plan:
*
* $ignorectl(REFNUMS)
* $ignorectl(REFNUM <ignore-pattern>)
* $ignorectl(ADD <ignore-pattern> [level-desc])
* $ignorectl(CHANGE <refnum> [level-desc])
* $ignorectl(DELETE <refnum>)
* $ignorectl(PATTERN <pattern>)
* $ignorectl(RPATTERN <pattern>)
* $ignorectl(WITH_TYPES <pattern>)
* $ignorectl(GET <refnum> [LIST])
* $ignorectl(SET <refnum> [ITEM] [VALUE])
*
* [LIST] and [ITEM] are one of the following
* NICK The pattern being ignored. Changing this is dangerous.
* LEVELS A parsable summary of what is being ignored
* TYPE An integer representing the suppressive ignores
* DONT An integer representing the exceptional ignores
* EXPIRATION The time the ignore will expire
* REASON The reason why we're ignoring this pattern.
*/
char * ignorectl (char *input)
{
char * refstr;
char * listc;
List * i;
int len;
int owd;
GET_FUNC_ARG(listc, input);
len = strlen(listc);
if (!my_strnicmp(listc, "REFNUM", len)) {
if ((i = find_in_list(ignored_nicks, input)) == NULL)
RETURN_EMPTY;
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "REFNUMS", len)) {
char * retval = NULL;
for (i = ignored_nicks; i; i = i->next)
malloc_strcat_word(&retval, space, ltoa(IGNORE(i)->refnum), DWORD_NO);
RETURN_MSTR(retval);
} else if (!my_strnicmp(listc, "SUSPEND", len)) {
ignores_are_suspended++;
} else if (!my_strnicmp(listc, "UNSUSPEND", len)) {
ignores_are_suspended--;
} else if (!my_strnicmp(listc, "RESET_SUSPEND", len)) {
ignores_are_suspended = 0;
} else if (!my_strnicmp(listc, "ADD", len)) {
char * pattern;
GET_FUNC_ARG(pattern, input);
owd = swap_window_display(0);
i = new_ignore(pattern);
ignore_change(i, 1, input);
swap_window_display(owd);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "CHANGE", len)) {
int refnum;
GET_FUNC_ARG(refstr, input);
if (!is_number(refstr))
RETURN_EMPTY;
refnum = my_atol(refstr);
if (!(i = get_ignore_by_refnum(refnum)))
RETURN_EMPTY;
owd = swap_window_display(0);
ignore_change(i, 1, input);
swap_window_display(owd);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "DELETE", len)) {
int retval;
owd = swap_window_display(0);
retval = remove_ignore(input);
swap_window_display(owd);
RETURN_INT(retval);
} else if (!my_strnicmp(listc, "PATTERN", len)) {
RETURN_MSTR(get_ignores_by_pattern(input, 0));
} else if (!my_strnicmp(listc, "RPATTERN", len)) {
RETURN_MSTR(get_ignores_by_pattern(input, 1));
} else if (!my_strnicmp(listc, "WITH_TYPES", len)) {
RETURN_MSTR(get_ignore_patterns_by_type(input));
} else if (!my_strnicmp(listc, "GET", len)) {
int refnum;
GET_FUNC_ARG(refstr, input);
if (!is_number(refstr))
RETURN_EMPTY;
refnum = my_atol(refstr);
if (!(i = get_ignore_by_refnum(refnum)))
RETURN_EMPTY;
GET_FUNC_ARG(listc, input);
len = strlen(listc);
if (!my_strnicmp(listc, "NICK", len)) {
RETURN_STR(i->name);
} else if (!my_strnicmp(listc, "LEVELS", len)) {
RETURN_STR(get_ignore_types(i, 2));
} else if (!my_strnicmp(listc, "SUPPRESS", len)) {
RETURN_INT(IGNORE(i)->type.__bits[0]);
} else if (!my_strnicmp(listc, "EXCEPT", len)) {
RETURN_INT(IGNORE(i)->dont.__bits[0]);
} else if (!my_strnicmp(listc, "EXPIRATION", len)) {
char *ptr = NULL;
return malloc_sprintf(&ptr, "%ld %ld",
(long) (IGNORE(i)->expiration.tv_sec),
(long) (IGNORE(i)->expiration.tv_usec));
} else if (!my_strnicmp(listc, "REASON", len)) {
RETURN_STR(IGNORE(i)->reason);
} else if (!my_strnicmp(listc, "COUNTER", len)) {
RETURN_INT(IGNORE(i)->counter);
} else if (!my_strnicmp(listc, "CREATION", len)) {
char *ptr = NULL;
return malloc_sprintf(&ptr, "%ld %ld",
(long) (IGNORE(i)->creation.tv_sec),
(long) (IGNORE(i)->creation.tv_usec));
} else if (!my_strnicmp(listc, "LAST_USED", len)) {
char *ptr = NULL;
return malloc_sprintf(&ptr, "%ld %ld",
(long) (IGNORE(i)->last_used.tv_sec),
(long) (IGNORE(i)->last_used.tv_usec));
} else if (!my_strnicmp(listc, "ENABLED", len)) {
RETURN_INT(IGNORE(i)->enabled);
}
} else if (!my_strnicmp(listc, "SET", len)) {
int refnum;
GET_FUNC_ARG(refstr, input);
if (!is_number(refstr))
RETURN_EMPTY;
refnum = my_atol(refstr);
if (!(i = get_ignore_by_refnum(refnum)))
RETURN_EMPTY;
GET_FUNC_ARG(listc, input);
len = strlen(listc);
if (!my_strnicmp(listc, "NICK", len)) {
malloc_strcpy(&i->name, input);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "LEVELS", len)) {
mask_unsetall(&IGNORE(i)->type);
mask_unsetall(&IGNORE(i)->dont);
ignore_change(i, 1, input);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "SUPPRESS", len)) {
GET_INT_ARG(IGNORE(i)->type.__bits[0], input);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "EXCEPT", len)) {
GET_INT_ARG(IGNORE(i)->dont.__bits[0], input);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "EXPIRATION", len)) {
Timeval to;
Timeval right_now;
double seconds;
GET_INT_ARG(to.tv_sec, input);
GET_INT_ARG(to.tv_usec, input);
IGNORE(i)->expiration = to;
get_time(&right_now);
seconds = time_diff(right_now, to);
add_timer(0, empty_string, seconds, 1,
do_expire_ignores, NULL, NULL,
GENERAL_TIMER, -1, 0, 0);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "REASON", len)) {
if (is_string_empty(input))
new_free(&IGNORE(i)->reason);
else
malloc_strcpy(&IGNORE(i)->reason, input);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "CREATION", len)) {
Timeval to;
GET_INT_ARG(to.tv_sec, input);
GET_INT_ARG(to.tv_usec, input);
IGNORE(i)->creation = to;
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "LAST_USED", len)) {
Timeval to;
GET_INT_ARG(to.tv_sec, input);
GET_INT_ARG(to.tv_usec, input);
IGNORE(i)->last_used = to;
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "COUNTER", len)) {
GET_INT_ARG(IGNORE(i)->counter, input);
RETURN_INT(IGNORE(i)->refnum);
} else if (!my_strnicmp(listc, "ENABLED", len)) {
GET_INT_ARG(IGNORE(i)->enabled, input);
RETURN_INT(IGNORE(i)->refnum);
}
}
/* We get here if something is not implemented. */
RETURN_EMPTY;
}
/***************************** BACK END *************************************/
/*
* check_ignore -- replaces the old double_ignore
* Why did i change the name?
* * double_ignore isnt really applicable any more becuase it doesnt
* do two ignore lookups, it only does one.
* * This function doesnt look anything like the old double_ignore
* * This function works for the new *!*@* patterns stored by
* ignore instead of the old nick and userhost patterns.
* (jfn may 1995)
*/
int check_ignore (const char *nick, const char *uh, int mask)
{
return check_ignore_channel(nick, uh, NULL, mask);
}
/*
* "check_ignore_channel" is kind of a bad name for this function, but
* i was not inspired with a better name. This function is simply the
* old 'check_ignore', only it has an additional check for a channel target.
*/
int check_ignore_channel (const char *nick, const char *uh, const char *channel, int level)
{
char nuh[IRCD_BUFFER_SIZE];
List *tmp;
int count = 0;
int bestimatch = 0;
List *i_match = NULL;
int bestcmatch = 0;
List *c_match = NULL;
if (!ignored_nicks)
return NOT_IGNORED;
if (ignores_are_suspended)
return NOT_IGNORED;
/*
* If the userhost is the empty string (but not NULL)
* then because of how ParseArgs() works, we know that
* 'nick' contains a (remote) server name. Yes, you
* can ignore (remote) servers.
*/
if (nick && strchr(nick, '.') && uh && !*uh)
snprintf(nuh, IRCD_BUFFER_SIZE - 1, "%s", nick);
else
snprintf(nuh, IRCD_BUFFER_SIZE - 1, "%s!%s",
nick ? nick : star,
uh ? uh : star);
for (tmp = ignored_nicks; tmp; tmp = tmp->next)
{
if (!IGNORE(tmp)->enabled)
continue;
/*
* Always check for exact matches first...
*/
if (!strcmp(tmp->name, nuh))
{
i_match = tmp;
break;
}
/*
* Then check for wildcard matches...
*/
count = wild_match(tmp->name, nuh);
if (count > bestimatch)
{
bestimatch = count;
i_match = tmp;
}
/*
* Then check for channels...
*/
if (channel)
{
count = wild_match(tmp->name, channel);
if (count > bestcmatch)
{
bestcmatch = count;
c_match = tmp;
}
}
}
/*
* We've found something... Always prefer a nickuserhost match
* over a channel match, and always prefer an exact match over
* a wildcard match...
*/
if (i_match)
{
tmp = i_match;
if (mask_isset(&IGNORE(tmp)->dont, level))
{
IGNORE(tmp)->counter++;
get_time(&IGNORE(tmp)->last_used);
return NOT_IGNORED;
}
if (mask_isset(&IGNORE(tmp)->type, level))
{
IGNORE(tmp)->counter++;
get_time(&IGNORE(tmp)->last_used);
return IGNORED;
}
}
/*
* If the nickuserhost match did not say anything about the level
* that we are interested in, then try a channel ignore next.
*/
/*
* Commenting out the 'else' is an experimental change requested
* by some folks who think that channel ignores should apply when
* there is a nickuserhost ignore, but it does not cover the
* level we're checking for here. As an example:
* ignore hop msgs
* ignore #epic joins
* When "else" is uncommented (old behavior), you would see
* joins from hop because /ignore hop suppresses /ignore #epic.
* When "else" is commented out (new behavior), you will not
* see joins from hop since /ignore hop doesn't cover joins.
* To get the old behavior, you would have to explicitly put
* an exception-ignore, a la /ignore hop msgs,!joins
*
* XXX This breaks backwards compatability, but it seems
* like a beneficial change with the breakage only happening
* in pathological situations. Before complaining, please
* demonstrate how something that was working in a sensible
* way is now not behaving sensibly.
*/
/* else */ if (c_match)
{
tmp = c_match;
if (mask_isset(&IGNORE(tmp)->dont, level))
{
IGNORE(tmp)->counter++;
get_time(&IGNORE(tmp)->last_used);
return NOT_IGNORED;
}
if (mask_isset(&IGNORE(tmp)->type, level))
{
IGNORE(tmp)->counter++;
get_time(&IGNORE(tmp)->last_used);
return IGNORED;
}
}
/*
* Otherwise i guess we dont ignore them.
*/
return NOT_IGNORED;
}
|