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
|
/* This file is part of the Project Athena Zephyr Notification System.
* It contains functions for the User Locator service.
*
* Created by: John T. Kohl
*
* $Id$
*
* Copyright (c) 1987,1988 by the Massachusetts Institute of Technology.
* For copying and distribution information, see the file
* "mit-copyright.h".
*/
#include <zephyr/mit-copyright.h>
#include "zserver.h"
#include <sys/socket.h>
#ifndef lint
#ifndef SABER
static const char rcsid_uloc_c[] =
"$Id$";
#endif /* SABER */
#endif /* lint */
/*
* The user locator functions.
*
* External functions:
*
* void ulocate_dispatch(notice, auth, who, server)
* ZNotice_t *notice;
* int auth;
* struct sockaddr_in *who;
* Server *server;
*
* void ulogin_dispatch(notice, auth, who, server)
* ZNotice_t *notice;
* int auth;
* struct sockaddr_in *who;
* Server *server;
*
* void uloc_hflush(addr)
* struct in_addr *addr;
*
* void uloc_flush_client(sin)
* struct sockaddr_in *sin;
*
* Code_t uloc_send_locations()
*
* void uloc_dump_locs(fp)
* FILE *fp;
*/
/*
* The user locator.
* We maintain an array of Location sorted by user (so we can do
* binary searches), growing and shrinking it as necessary.
*/
/* WARNING: make sure this is the same as the number of strings you */
/* plan to hand back to the user in response to a locate request, */
/* else you will lose. See ulogin_locate() and uloc_send_locations() */
#define NUM_FIELDS 3
typedef enum _Exposure_type {
NONE,
OPSTAFF_VIS,
REALM_VIS,
REALM_ANN,
NET_VIS,
NET_ANN
} Exposure_type;
typedef struct _Location {
String *user;
String *machine;
char *time; /* in ctime format */
String *tty;
struct sockaddr_in addr; /* IP address and port of location */
Exposure_type exposure;
} Location;
#define NOLOC 1
#define QUIET -1
#define UNAUTH -2
static void ulogin_locate(ZNotice_t *notice, struct sockaddr_in *who,
int auth);
static void ulogin_flush_user(ZNotice_t *notice);
static Location *ulogin_find(char *user, struct in_addr *host,
unsigned int port);
static Location *ulogin_find_user(char *user);
static int ulogin_setup(ZNotice_t *notice, Location *locs,
Exposure_type exposure, struct sockaddr_in *who);
static int ulogin_add_user(ZNotice_t *notice, Exposure_type exposure,
struct sockaddr_in *who);
static int ulogin_parse(ZNotice_t *notice, Location *locs);
static Exposure_type ulogin_remove_user(ZNotice_t *notice,
struct sockaddr_in *who,
int *err_return);
static void login_sendit(ZNotice_t *notice, int auth,
struct sockaddr_in *who, int external);
static char **ulogin_marshal_locs(ZNotice_t *notice, int *found, int auth);
static void free_loc(Location *loc);
static void ulogin_locate_forward(ZNotice_t *notice, struct sockaddr_in *who,
ZRealm *realm);
static Location *locations = NULL; /* ptr to first in array */
static int num_locs = 0; /* number in array */
/*
* Dispatch a LOGIN notice.
*/
Code_t
ulogin_dispatch(ZNotice_t *notice,
int auth,
struct sockaddr_in *who,
Server *server)
{
Exposure_type retval;
int err_ret;
if (strcmp(notice->z_opcode, LOGIN_USER_LOGOUT) == 0) {
retval = ulogin_remove_user(notice, who, &err_ret);
switch (retval) {
case NONE:
if (err_ret == UNAUTH) {
if (server == me_server)
clt_ack(notice, who, AUTH_FAILED);
return ZERR_NONE;
} else if (err_ret == NOLOC) {
if (server == me_server)
clt_ack(notice, who, NOT_FOUND);
return ZERR_NONE;
}
syslog(LOG_ERR,"bogus location exposure NONE, %s",
notice->z_sender);
break;
case OPSTAFF_VIS:
case REALM_VIS:
/* he is not announced to people. Silently ack */
if (server == me_server)
ack(notice, who);
break;
case REALM_ANN:
case NET_VIS:
if (server == me_server)
sendit(notice, 1, who, 0);
break;
case NET_ANN:
/* currently no distinction between these.
just announce */
/* we assume that if this user is at a certain
IP address, we can trust the logout to be
authentic. ulogin_remove_user checks the
ip addrs */
if (server == me_server)
sendit(notice, 1, who, 1);
break;
default:
syslog(LOG_ERR,"bogus location exposure %d/%s",
(int) retval, notice->z_sender);
break;
}
if (server == me_server) /* tell the other servers */
server_forward(notice, auth, who);
return ZERR_NONE;
}
if (!bdumping &&
(!auth || strcmp(notice->z_sender, notice->z_class_inst) != 0)) {
zdbug((LOG_DEBUG,"unauthentic ulogin: %d %s %s", auth,
notice->z_sender, notice->z_class_inst));
if (server == me_server)
clt_ack(notice, who, AUTH_FAILED);
return ZERR_NONE;
}
if (strcmp(notice->z_opcode, LOGIN_USER_FLUSH) == 0) {
ulogin_flush_user(notice);
if (server == me_server)
ack(notice, who);
} else if (strcmp(notice->z_opcode, EXPOSE_NONE) == 0) {
ulogin_remove_user(notice, who, &err_ret);
if (err_ret == UNAUTH) {
if (server == me_server)
clt_ack(notice, who, AUTH_FAILED);
return ZERR_NONE;
} else if (err_ret == NOLOC) {
if (server == me_server)
clt_ack(notice, who, NOT_FOUND);
return ZERR_NONE;
}
if (server == me_server) {
ack(notice, who);
server_forward(notice, auth, who);
}
return ZERR_NONE;
} else if (strcmp(notice->z_opcode, EXPOSE_OPSTAFF) == 0) {
err_ret = ulogin_add_user(notice, OPSTAFF_VIS, who);
if (server == me_server) {
if (err_ret)
nack(notice, who);
else
ack(notice, who);
}
} else if (strcmp(notice->z_opcode, EXPOSE_REALMVIS) == 0) {
err_ret = ulogin_add_user(notice, REALM_VIS, who);
if (server == me_server) { /* realm vis is not broadcast,
so we ack it here */
if (err_ret)
nack(notice, who);
else
ack(notice, who);
}
} else if (!strcmp(notice->z_opcode, EXPOSE_REALMANN)) {
err_ret = ulogin_add_user(notice, REALM_ANN, who);
if (server == me_server) { /* announce to the realm */
if (err_ret)
nack(notice, who);
else
login_sendit(notice, auth, who, 0);
}
} else if (!strcmp(notice->z_opcode, EXPOSE_NETVIS)) {
err_ret = ulogin_add_user(notice, NET_VIS, who);
if (server == me_server) { /* announce to the realm */
if (err_ret)
nack(notice, who);
else
login_sendit(notice, auth, who, 0);
}
} else if (!strcmp(notice->z_opcode, EXPOSE_NETANN)) {
err_ret = ulogin_add_user(notice, NET_ANN, who);
if (server == me_server) { /* tell the world */
if (err_ret)
nack(notice, who);
else
login_sendit(notice, auth, who, 1);
}
} else {
if (!strcmp(notice->z_opcode, LOGIN_USER_LOGIN)) {
zdbug((LOG_DEBUG, "ulog opcode from unknown foreign realm %s",
notice->z_opcode));
} else {
syslog(LOG_ERR, "unknown ulog opcode %s", notice->z_opcode);
}
if (server == me_server)
nack(notice, who);
return ZERR_NONE;
}
if (server == me_server)
server_forward(notice, auth, who);
return ZERR_NONE;
}
static void
login_sendit(ZNotice_t *notice,
int auth,
struct sockaddr_in *who,
int external)
{
ZNotice_t log_notice;
/* we must copy the notice struct here because we need the original
for forwarding. We needn't copy the private data of the notice,
since that isn't modified by sendit and its subroutines. */
log_notice = *notice;
log_notice.z_opcode = LOGIN_USER_LOGIN;
sendit(&log_notice, auth, who, external);
}
/*
* Dispatch a LOCATE notice.
*/
Code_t
ulocate_dispatch(ZNotice_t *notice,
int auth,
struct sockaddr_in *who,
Server *server)
{
char *cp;
ZRealm *realm;
if (!strcmp(notice->z_opcode, LOCATE_LOCATE)) {
/* we are talking to a current-rev client; send an ack */
ack(notice, who);
cp = strchr(notice->z_class_inst, '@');
if (cp && (realm = realm_get_realm_by_name(cp + 1)))
ulogin_locate_forward(notice, who, realm);
else
ulogin_locate(notice, who, auth);
return ZERR_NONE;
} else {
syslog(LOG_ERR, "unknown uloc opcode %s", notice->z_opcode);
if (server == me_server)
nack(notice, who);
return ZERR_NONE;
}
}
/*
* Flush all locations at the address.
*/
void
uloc_hflush(struct in_addr *addr)
{
Location *loc;
int i = 0, new_num = 0;
if (num_locs == 0)
return; /* none to flush */
/* slightly inefficient, assume the worst, and allocate enough space */
loc = (Location *) malloc(num_locs *sizeof(Location));
if (!loc) {
syslog(LOG_CRIT, "uloc_flush alloc");
abort();
}
/* copy entries which don't match */
while (i < num_locs) {
if (locations[i].addr.sin_addr.s_addr != addr->s_addr)
loc[new_num++] = locations[i];
else
free_loc(&locations[i]);
i++;
}
free(locations);
locations = NULL;
if (!new_num) {
free(loc);
loc = NULL;
num_locs = new_num;
return;
}
locations = loc;
num_locs = new_num;
/* all done */
return;
}
void
uloc_flush_client(struct sockaddr_in *sin)
{
Location *loc;
int i = 0, new_num = 0;
if (num_locs == 0)
return; /* none to flush */
/* slightly inefficient, assume the worst, and allocate enough space */
loc = (Location *) malloc(num_locs *sizeof(Location));
if (!loc) {
syslog(LOG_CRIT, "uloc_flush_clt alloc");
abort();
}
/* copy entries which don't match */
while (i < num_locs) {
if ((locations[i].addr.sin_addr.s_addr != sin->sin_addr.s_addr)
|| (locations[i].addr.sin_port != sin->sin_port)) {
loc[new_num++] = locations[i];
} else {
free_loc(&locations[i]);
}
i++;
}
free(locations);
locations = NULL;
if (!new_num) {
free(loc);
loc = NULL;
num_locs = new_num;
return;
}
locations = loc;
num_locs = new_num;
#ifdef DEBUG
if (zdebug) {
int i;
for (i = 0; i < num_locs; i++) {
syslog(LOG_DEBUG, "%s/%d", locations[i].user->string,
(int) locations[i].exposure);
}
}
#endif
/* all done */
return;
}
/*
* Send the locations for host for a brain dump
*/
/*ARGSUSED*/
Code_t
uloc_send_locations(void)
{
Location *loc;
int i;
char *lyst[NUM_FIELDS];
char *exposure_level;
Code_t retval;
for (i = 0, loc = locations; i < num_locs; i++, loc++) {
lyst[0] = (char *) loc->machine->string;
lyst[1] = (char *) loc->time;
lyst[2] = (char *) loc->tty->string;
switch (loc->exposure) {
case OPSTAFF_VIS:
exposure_level = EXPOSE_OPSTAFF;
break;
case REALM_VIS:
exposure_level = EXPOSE_REALMVIS;
break;
case REALM_ANN:
exposure_level = EXPOSE_REALMANN;
break;
case NET_VIS:
exposure_level = EXPOSE_NETVIS;
break;
case NET_ANN:
exposure_level = EXPOSE_NETANN;
break;
default:
syslog(LOG_ERR,"broken location state %s/%d",
loc->user->string, (int) loc->exposure);
exposure_level = EXPOSE_OPSTAFF;
break;
}
retval = bdump_send_list_tcp(ACKED, &loc->addr, LOGIN_CLASS,
loc->user->string, exposure_level, myname,
"", lyst, NUM_FIELDS);
if (retval != ZERR_NONE) {
syslog(LOG_ERR, "uloc_send_locs: %s", error_message(retval));
return(retval);
}
}
return ZERR_NONE;
}
/*
* Add the user to the internal table of locations.
*/
static int
ulogin_add_user(ZNotice_t *notice,
Exposure_type exposure,
struct sockaddr_in *who)
{
Location *loc, *oldlocs, newloc;
int i;
loc = ulogin_find(notice->z_class_inst, &who->sin_addr, notice->z_port);
if (loc) {
/* Update the time, tty, and exposure on the existing location. */
loc->exposure = exposure;
if (ulogin_parse(notice, &newloc) == 0) {
free_string(loc->tty);
loc->tty = dup_string(newloc.tty);
free(loc->time);
loc->time = strsave(newloc.time);
free_loc(&newloc);
}
return 0;
}
oldlocs = locations;
locations = (Location *) malloc((num_locs + 1) * sizeof(Location));
if (!locations) {
syslog(LOG_ERR, "zloc mem alloc");
locations = oldlocs;
return 1;
}
if (num_locs == 0) { /* first one */
if (ulogin_setup(notice, locations, exposure, who)) {
free(locations);
locations = NULL;
return 1;
}
num_locs = 1;
goto dprnt;
}
/* not the first one, insert him */
if (ulogin_setup(notice, &newloc, exposure, who)) {
free(locations);
locations = oldlocs;
return 1;
}
num_locs++;
/* copy old locs */
i = 0;
while ((i < num_locs-1) &&
(comp_string(oldlocs[i].user,newloc.user) < 0)) {
locations[i] = oldlocs[i];
i++;
}
/* add him in here */
locations[i++] = newloc;
/* copy the rest */
while (i < num_locs) {
locations[i] = oldlocs[i - 1];
i++;
}
if (oldlocs)
free(oldlocs);
dprnt:
return 0;
}
/*
* Set up the location locs with the information in the notice.
*/
static int
ulogin_setup(ZNotice_t *notice,
Location *locs,
Exposure_type exposure,
struct sockaddr_in *who)
{
if (ulogin_parse(notice, locs))
return 1;
locs->exposure = exposure;
locs->addr.sin_family = AF_INET;
locs->addr.sin_addr.s_addr = who->sin_addr.s_addr;
locs->addr.sin_port = notice->z_port;
return(0);
}
/*
* Parse the location information in the notice, and fill it into *locs
*/
static int
ulogin_parse(ZNotice_t *notice,
Location *locs)
{
char *cp, *base;
int nulls = 0;
if (!notice->z_message_len) {
syslog(LOG_ERR, "short ulogin");
return 1;
}
base = notice->z_message;
for (cp = base; cp < base + notice->z_message_len; cp++) {
if (!*cp)
nulls++;
}
if (nulls < 3) {
syslog(LOG_ERR, "zloc bad format from user %s (only %d fields)",
notice->z_sender, nulls);
return 1;
}
locs->user = make_string(notice->z_class_inst,0);
cp = base;
locs->machine = make_string(cp,0);
cp += (strlen(cp) + 1);
locs->time = strsave(cp);
/* This field might not be null-terminated */
cp += (strlen(cp) + 1);
locs->tty = make_string(cp, 0);
return 0;
}
static Location *
ulogin_find(char *user,
struct in_addr *host,
unsigned int port)
{
Location *loc;
String *str;
/* Find the first location for this user. */
loc = ulogin_find_user(user);
if (!loc)
return NULL;
/* Look for a location which matches the host and port. */
str = make_string(user, 0);
while (loc < locations + num_locs && loc->user == str) {
if (loc->addr.sin_addr.s_addr == host->s_addr
&& loc->addr.sin_port == port) {
free_string(str);
return loc;
}
loc++;
}
free_string(str);
return NULL;
}
/*
* Return a pointer to the first instance of this user@realm in the
* table.
*/
static Location *
ulogin_find_user(char *user)
{
int i, rlo, rhi;
int compar;
String *str;
if (!locations)
return(NULL);
str = make_string(user, 0);
/* i is the current midpoint location, rlo is the lowest we will
* still check, and rhi is the highest we will still check. */
i = num_locs / 2;
rlo = 0;
rhi = num_locs - 1;
while ((compar = comp_string(locations[i].user, str)) != 0) {
if (compar < 0)
rlo = i + 1;
else
rhi = i - 1;
if (rhi - rlo < 0) {
free_string(str);
return NULL;
}
i = (rhi + rlo) / 2;
}
/* Back up to the first location for this user. */
while (i > 0 && locations[i - 1].user == str)
i--;
free_string(str);
return &locations[i];
}
/*
* remove the user specified in notice from the internal table
*/
static Exposure_type
ulogin_remove_user(ZNotice_t *notice,
struct sockaddr_in *who,
int *err_return)
{
Location *new_locs, *loc;
int i = 0;
Exposure_type quiet;
*err_return = 0;
loc = ulogin_find(notice->z_class_inst, &who->sin_addr, notice->z_port);
if (!loc) {
*err_return = NOLOC;
return NONE;
}
quiet = loc->exposure;
if (--num_locs == 0) { /* last one */
free_loc(locations);
free(locations);
locations = NULL;
return quiet;
}
new_locs = (Location *) malloc(num_locs * sizeof(Location));
if (!new_locs) {
syslog(LOG_CRIT, "ul_rem alloc");
abort();
}
/* copy old entries */
while (i < num_locs && &locations[i] < loc) {
new_locs[i] = locations[i];
i++;
}
/* free up this one */
free_loc(&locations[i]);
i++; /* skip over this one */
/* copy the rest */
while (i <= num_locs) {
new_locs[i - 1] = locations[i];
i++;
}
free(locations);
locations = new_locs;
/* all done */
return quiet;
}
/*
* remove all locs of the user specified in notice from the internal table
*/
static void
ulogin_flush_user(ZNotice_t *notice)
{
Location *loc, *loc2;
int i, j, num_match, num_left;
i = num_match = num_left = 0;
if (!(loc2 = ulogin_find_user(notice->z_class_inst)))
return;
/* compute # locations left in the list, after loc2 (inclusive) */
num_left = num_locs - (loc2 - locations);
while (num_left &&
!strcasecmp(loc2[num_match].user->string,
notice->z_class_inst)) {
/* as long as we keep matching, march up the list */
num_match++;
num_left--;
}
if (num_locs == num_match) { /* no other locations left */
for (j = 0; j < num_match; j++)
free_loc(&locations[j]); /* free storage */
free (locations);
locations = NULL;
num_locs = 0;
return;
}
loc = (Location *) malloc((num_locs - num_match) * sizeof(Location));
if (!loc) {
syslog(LOG_CRIT, "ul_rem alloc");
abort();
}
/* copy old entries */
while (i < num_locs && &locations[i] < loc2) {
loc[i] = locations[i];
i++;
}
for(j = 0; j < num_match; j++) {
free_loc(&locations[i]);
i++;
}
/* copy the rest */
while (i < num_locs) {
loc[i - num_match] = locations[i];
i++;
}
free(locations);
locations = loc;
num_locs -= num_match;
#ifdef DEBUG
if (zdebug) {
int i;
for (i = 0; i < num_locs; i++) {
syslog(LOG_DEBUG, "%s/%d", locations[i].user->string,
(int) locations[i].exposure);
}
}
#endif
}
static void
ulogin_locate(ZNotice_t *notice,
struct sockaddr_in *who,
int auth)
{
char **answer;
int found;
Code_t retval;
struct sockaddr_in send_to_who;
answer = ulogin_marshal_locs(notice, &found, auth);
send_to_who = *who;
send_to_who.sin_port = notice->z_port;
retval = ZSetDestAddr(&send_to_who);
if (retval != ZERR_NONE) {
syslog(LOG_WARNING, "ulogin_locate set addr: %s",
error_message(retval));
if (answer)
free(answer);
return;
}
notice->z_kind = ACKED;
/* use xmit_frag() to send each piece of the notice */
retval = ZSrvSendRawList(notice, answer, found * NUM_FIELDS, xmit_frag);
if (retval != ZERR_NONE)
syslog(LOG_WARNING, "ulog_locate xmit: %s", error_message(retval));
if (answer)
free(answer);
}
/*
* Locate the user and collect the locations into an array. Return the # of
* locations in *found.
*/
static char **
ulogin_marshal_locs(ZNotice_t *notice,
int *found,
int auth)
{
Location **matches = (Location **) 0;
Location *loc;
char **answer;
int i = 0;
String *inst;
int local = (auth && realm_sender_in_realm(ZGetRealm(), notice->z_sender));
*found = 0; /* # of matches */
loc = ulogin_find_user(notice->z_class_inst);
if (!loc)
return(NULL);
i = loc - locations;
inst = make_string(notice->z_class_inst,0);
while (i < num_locs && (inst == locations[i].user)) {
/* these locations match */
switch (locations[i].exposure) {
case OPSTAFF_VIS:
i++;
continue;
case REALM_VIS:
case REALM_ANN:
if (!local) {
i++;
continue;
}
case NET_VIS:
case NET_ANN:
default:
break;
}
if (!*found) {
matches = (Location **) malloc(sizeof(Location *));
if (!matches) {
syslog(LOG_ERR, "ulog_loc: no mem");
break; /* from the while */
}
matches[0] = &locations[i];
(*found)++;
} else {
matches = (Location **) realloc(matches,
++(*found) * sizeof(Location *));
if (!matches) {
syslog(LOG_ERR, "ulog_loc: realloc no mem");
*found = 0;
break; /* from the while */
}
matches[*found - 1] = &locations[i];
}
i++;
}
free_string(inst);
/* OK, now we have a list of user@host's to return to the client
in matches */
#ifdef DEBUG
if (zdebug) {
for (i = 0; i < *found ; i++)
zdbug((LOG_DEBUG,"found %s",
matches[i]->user->string));
}
#endif
/* coalesce the location information into a list of char *'s */
answer = (char **) malloc((*found) * NUM_FIELDS * sizeof(char *));
if (!answer) {
syslog(LOG_ERR, "zloc no mem(answer)");
*found = 0;
} else
for (i = 0; i < *found ; i++) {
answer[i * NUM_FIELDS] = matches[i]->machine->string;
answer[i * NUM_FIELDS + 1] = matches[i]->time;
answer[i * NUM_FIELDS + 2] = matches[i]->tty->string;
}
if (matches)
free(matches);
return answer;
}
void
uloc_dump_locs(FILE *fp)
{
int i;
for (i = 0; i < num_locs; i++) {
fputs("'", fp);
dump_quote(locations[i].user->string, fp);
fputs("' '", fp);
dump_quote(locations[i].machine->string, fp);
fputs("' '", fp);
dump_quote(locations[i].time, fp);
fputs("' '", fp);
dump_quote(locations[i].tty->string, fp);
fputs("' ", fp);
switch (locations[i].exposure) {
case OPSTAFF_VIS:
fputs("OPSTAFF", fp);
break;
case REALM_VIS:
fputs("RLM_VIS", fp);
break;
case REALM_ANN:
fputs("RLM_ANN", fp);
break;
case NET_VIS:
fputs("NET_VIS", fp);
break;
case NET_ANN:
fputs("NET_ANN", fp);
break;
default:
fprintf(fp, "? %d ?", locations[i].exposure);
break;
}
fprintf(fp, " %s/%d\n", inet_ntoa(locations[i].addr.sin_addr),
ntohs(locations[i].addr.sin_port));
}
}
static void
free_loc(Location *loc)
{
free_string(loc->user);
free_string(loc->machine);
free_string(loc->tty);
free(loc->time);
return;
}
static void
ulogin_locate_forward(ZNotice_t *notice,
struct sockaddr_in *who,
ZRealm *realm)
{
ZNotice_t lnotice;
lnotice = *notice;
lnotice.z_opcode = REALM_REQ_LOCATE;
realm_handoff(&lnotice, 1, who, realm, 0);
}
void
ulogin_realm_locate(ZNotice_t *notice,
struct sockaddr_in *who,
ZRealm *realm)
{
char **answer;
int found;
Code_t retval;
ZNotice_t lnotice;
char *pack;
int packlen;
#ifdef DEBUG
if (zdebug)
zdbug((LOG_DEBUG, "ulogin_realm_locate"));
#endif
answer = ulogin_marshal_locs(notice, &found, 0/*AUTH*/);
lnotice = *notice;
lnotice.z_opcode = REALM_ANS_LOCATE;
if ((retval = ZFormatRawNoticeList(&lnotice, answer, found * NUM_FIELDS, &pack, &packlen)) != ZERR_NONE) {
syslog(LOG_WARNING, "ulog_rlm_loc format: %s",
error_message(retval));
if (answer)
free(answer);
return;
}
if (answer)
free(answer);
if ((retval = ZParseNotice(pack, packlen, &lnotice)) != ZERR_NONE) {
syslog(LOG_WARNING, "subscr_rlm_sendit parse: %s",
error_message(retval));
free(pack);
return;
}
realm_handoff(&lnotice, 1, who, realm, 0);
free(pack);
return;
}
void
ulogin_relay_locate(ZNotice_t *notice,
struct sockaddr_in *who)
{
ZNotice_t lnotice;
Code_t retval;
struct sockaddr_in newwho;
char *pack;
int packlen;
notice_extract_address(notice, &newwho);
if ((retval = ZSetDestAddr(&newwho)) != ZERR_NONE) {
syslog(LOG_WARNING, "uloc_relay_loc set addr: %s",
error_message(retval));
return;
}
lnotice = *notice;
lnotice.z_opcode = LOCATE_LOCATE;
lnotice.z_kind = ACKED;
lnotice.z_auth = 0;
lnotice.z_authent_len = 0;
lnotice.z_ascii_authent = "";
lnotice.z_checksum = 0;
lnotice.z_ascii_checksum = "";
if ((retval = ZFormatRawNotice(&lnotice, &pack, &packlen)) != ZERR_NONE) {
syslog(LOG_WARNING, "ulog_relay_loc format: %s",
error_message(retval));
return;
}
if ((retval = ZSendPacket(pack, packlen, 0)) != ZERR_NONE) {
syslog(LOG_WARNING, "ulog_relay_loc xmit: %s",
error_message(retval));
}
free(pack);
}
|