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
|
/*
* popsbr.c -- POP client subroutines
*
* $Id: popsbr.c,v 1.19 2007/11/08 02:28:39 jjr Exp $
*
* This code is Copyright (c) 2002, by the authors of nmh. See the
* COPYRIGHT file in the root directory of the nmh distribution for
* complete copyright information.
*/
#include <h/mh.h>
#include <h/utils.h>
extern int client(char *args, char *protocol, char *service, int rproto,
char *response, int len_response);
#if defined(NNTP) && !defined(PSHSBR)
# undef NNTP
#endif
#ifdef NNTP /* building pshsbr.o from popsbr.c */
# include <h/nntp.h>
#endif /* NNTP */
#if !defined(NNTP) && defined(APOP)
# include <h/md5.h>
#endif
#ifdef CYRUS_SASL
# include <sasl/sasl.h>
# include <sasl/saslutil.h>
#endif /* CYRUS_SASL */
#include <h/popsbr.h>
#include <h/signals.h>
#include <signal.h>
#include <errno.h>
#define TRM "."
#define TRMLEN (sizeof TRM - 1)
static int poprint = 0;
static int pophack = 0;
char response[BUFSIZ];
static FILE *input;
static FILE *output;
#define targ_t char *
#if !defined(NNTP) && defined(MPOP)
# define command pop_command
# define multiline pop_multiline
#endif
#ifdef NNTP
# ifdef BPOP /* stupid */
static int xtnd_last = -1;
static int xtnd_first = 0;
static char xtnd_name[512]; /* INCREDIBLE HACK!! */
# endif
#endif /* NNTP */
#ifdef CYRUS_SASL
static sasl_conn_t *conn; /* SASL connection state */
static int sasl_complete = 0; /* Has sasl authentication succeeded? */
static int maxoutbuf; /* Maximum output buffer size */
static sasl_ssf_t sasl_ssf = 0; /* Security strength factor */
static int sasl_get_user(void *, int, const char **, unsigned *);
static int sasl_get_pass(sasl_conn_t *, void *, int, sasl_secret_t **);
struct pass_context {
char *user;
char *host;
};
static sasl_callback_t callbacks[] = {
{ SASL_CB_USER, sasl_get_user, NULL },
#define POP_SASL_CB_N_USER 0
{ SASL_CB_PASS, sasl_get_pass, NULL },
#define POP_SASL_CB_N_PASS 1
{ SASL_CB_LOG, NULL, NULL },
{ SASL_CB_LIST_END, NULL, NULL },
};
#else /* CYRUS_SASL */
# define sasl_fgetc fgetc
#endif /* CYRUS_SASL */
/*
* static prototypes
*/
#if !defined(NNTP) && defined(APOP)
static char *pop_auth (char *, char *);
#endif
#if defined(NNTP) || !defined(MPOP)
/* otherwise they are not static functions */
static int command(const char *, ...);
static int multiline(void);
#endif
#ifdef CYRUS_SASL
static int pop_auth_sasl(char *, char *, char *);
static int sasl_fgetc(FILE *);
#endif /* CYRUS_SASL */
static int traverse (int (*)(char *), const char *, ...);
static int vcommand(const char *, va_list);
static int sasl_getline (char *, int, FILE *);
static int putline (char *, FILE *);
#if !defined(NNTP) && defined(APOP)
static char *
pop_auth (char *user, char *pass)
{
int len, buflen;
char *cp, *lp;
unsigned char *dp, *ep, digest[16];
MD5_CTX mdContext;
static char buffer[BUFSIZ];
if ((cp = strchr (response, '<')) == NULL
|| (lp = strchr (cp, '>')) == NULL) {
snprintf (buffer, sizeof(buffer), "APOP not available: %s", response);
strncpy (response, buffer, sizeof(response));
return NULL;
}
*(++lp) = '\0';
snprintf (buffer, sizeof(buffer), "%s%s", cp, pass);
MD5Init (&mdContext);
MD5Update (&mdContext, (unsigned char *) buffer,
(unsigned int) strlen (buffer));
MD5Final (digest, &mdContext);
cp = buffer;
buflen = sizeof(buffer);
snprintf (cp, buflen, "%s ", user);
len = strlen (cp);
cp += len;
buflen -= len;
for (ep = (dp = digest) + sizeof(digest) / sizeof(digest[0]); dp < ep; ) {
snprintf (cp, buflen, "%02x", *dp++ & 0xff);
cp += 2;
buflen -= 2;
}
*cp = '\0';
return buffer;
}
#endif /* !NNTP && APOP */
#ifdef CYRUS_SASL
/*
* This function implements the AUTH command for various SASL mechanisms
*
* We do the whole SASL dialog here. If this completes, then we've
* authenticated successfully and have (possibly) negotiated a security
* layer.
*/
int
pop_auth_sasl(char *user, char *host, char *mech)
{
int result, status, sasl_capability = 0;
unsigned int buflen, outlen;
char server_mechs[256], *buf, outbuf[BUFSIZ];
const char *chosen_mech;
sasl_security_properties_t secprops;
struct pass_context p_context;
sasl_ssf_t *ssf;
int *moutbuf;
/*
* First off, we're going to send the CAPA command to see if we can
* even support the AUTH command, and if we do, then we'll get a
* list of mechanisms the server supports. If we don't support
* the CAPA command, then it's unlikely that we will support
* SASL
*/
if (command("CAPA") == NOTOK) {
snprintf(response, sizeof(response),
"The POP CAPA command failed; POP server does not "
"support SASL");
return NOTOK;
}
while ((status = multiline()) != DONE)
switch (status) {
case NOTOK:
return NOTOK;
break;
case DONE: /* Shouldn't be possible, but just in case */
break;
case OK:
if (strncasecmp(response, "SASL ", 5) == 0) {
/*
* We've seen the SASL capability. Grab the mech list
*/
sasl_capability++;
strncpy(server_mechs, response + 5, sizeof(server_mechs));
}
break;
}
if (!sasl_capability) {
snprintf(response, sizeof(response), "POP server does not support "
"SASL");
return NOTOK;
}
/*
* If we received a preferred mechanism, see if the server supports it.
*/
if (mech && stringdex(mech, server_mechs) == -1) {
snprintf(response, sizeof(response), "Requested SASL mech \"%s\" is "
"not in list of supported mechanisms:\n%s",
mech, server_mechs);
return NOTOK;
}
/*
* Start the SASL process. First off, initialize the SASL library.
*/
callbacks[POP_SASL_CB_N_USER].context = user;
p_context.user = user;
p_context.host = host;
callbacks[POP_SASL_CB_N_PASS].context = &p_context;
result = sasl_client_init(callbacks);
if (result != SASL_OK) {
snprintf(response, sizeof(response), "SASL library initialization "
"failed: %s", sasl_errstring(result, NULL, NULL));
return NOTOK;
}
result = sasl_client_new("pop", host, NULL, NULL, NULL, 0, &conn);
if (result != SASL_OK) {
snprintf(response, sizeof(response), "SASL client initialization "
"failed: %s", sasl_errstring(result, NULL, NULL));
return NOTOK;
}
/*
* Initialize the security properties
*/
memset(&secprops, 0, sizeof(secprops));
secprops.maxbufsize = BUFSIZ;
secprops.max_ssf = UINT_MAX;
result = sasl_setprop(conn, SASL_SEC_PROPS, &secprops);
if (result != SASL_OK) {
snprintf(response, sizeof(response), "SASL security property "
"initialization failed: %s", sasl_errdetail(conn));
return NOTOK;
}
/*
* Start the actual protocol. Feed the mech list into the library
* and get out a possible initial challenge
*/
result = sasl_client_start(conn,
(const char *) (mech ? mech : server_mechs),
NULL, (const char **) &buf,
&buflen, &chosen_mech);
if (result != SASL_OK && result != SASL_CONTINUE) {
snprintf(response, sizeof(response), "SASL client start failed: %s",
sasl_errdetail(conn));
return NOTOK;
}
if (buflen) {
status = sasl_encode64(buf, buflen, outbuf, sizeof(outbuf), NULL);
if (status != SASL_OK) {
snprintf(response, sizeof(response), "SASL base64 encode "
"failed: %s", sasl_errstring(status, NULL, NULL));
return NOTOK;
}
status = command("AUTH %s %s", chosen_mech, outbuf);
} else
status = command("AUTH %s", chosen_mech);
while (result == SASL_CONTINUE) {
if (status == NOTOK)
return NOTOK;
/*
* If we get a "+OK" prefix to our response, then we should
* exit out of this exchange now (because authenticated should
* have succeeded)
*/
if (strncmp(response, "+OK", 3) == 0)
break;
/*
* Otherwise, make sure the server challenge is correctly formatted
*/
if (strncmp(response, "+ ", 2) != 0) {
command("*");
snprintf(response, sizeof(response),
"Malformed authentication message from server");
return NOTOK;
}
result = sasl_decode64(response + 2, strlen(response + 2),
outbuf, sizeof(outbuf), &outlen);
if (result != SASL_OK) {
command("*");
snprintf(response, sizeof(response), "SASL base64 decode "
"failed: %s", sasl_errstring(result, NULL, NULL));
return NOTOK;
}
result = sasl_client_step(conn, outbuf, outlen, NULL,
(const char **) &buf, &buflen);
if (result != SASL_OK && result != SASL_CONTINUE) {
command("*");
snprintf(response, sizeof(response), "SASL client negotiaton "
"failed: %s", sasl_errdetail(conn));
return NOTOK;
}
status = sasl_encode64(buf, buflen, outbuf, sizeof(outbuf), NULL);
if (status != SASL_OK) {
command("*");
snprintf(response, sizeof(response), "SASL base64 encode "
"failed: %s", sasl_errstring(status, NULL, NULL));
return NOTOK;
}
status = command(outbuf);
}
/*
* If we didn't get a positive final response, then error out
* (that probably means we failed an authorization check).
*/
if (status != OK)
return NOTOK;
/*
* We _should_ be okay now. Get a few properties now that negotiation
* has completed.
*/
result = sasl_getprop(conn, SASL_MAXOUTBUF, (const void **) &moutbuf);
if (result != SASL_OK) {
snprintf(response, sizeof(response), "Cannot retrieve SASL negotiated "
"output buffer size: %s", sasl_errdetail(conn));
return NOTOK;
}
maxoutbuf = *moutbuf;
result = sasl_getprop(conn, SASL_SSF, (const void **) &ssf);
sasl_ssf = *ssf;
if (result != SASL_OK) {
snprintf(response, sizeof(response), "Cannot retrieve SASL negotiated "
"security strength factor: %s", sasl_errdetail(conn));
return NOTOK;
}
/*
* Limit this to what we can deal with.
*/
if (maxoutbuf == 0 || maxoutbuf > BUFSIZ)
maxoutbuf = BUFSIZ;
sasl_complete = 1;
return status;
}
/*
* Callback to return the userid sent down via the user parameter
*/
static int
sasl_get_user(void *context, int id, const char **result, unsigned *len)
{
char *user = (char *) context;
if (! result || id != SASL_CB_USER)
return SASL_BADPARAM;
*result = user;
if (len)
*len = strlen(user);
return SASL_OK;
}
/*
* Callback to return the password (we call ruserpass, which can get it
* out of the .netrc
*/
static int
sasl_get_pass(sasl_conn_t *conn, void *context, int id, sasl_secret_t **psecret)
{
struct pass_context *p_context = (struct pass_context *) context;
char *pass = NULL;
int len;
if (! psecret || id != SASL_CB_PASS)
return SASL_BADPARAM;
ruserpass(p_context->user, &(p_context->host), &pass);
len = strlen(pass);
*psecret = (sasl_secret_t *) mh_xmalloc(sizeof(sasl_secret_t) + len);
(*psecret)->len = len;
strcpy((char *) (*psecret)->data, pass);
return SASL_OK;
}
#endif /* CYRUS_SASL */
/*
* Split string containing proxy command into an array of arguments
* suitable for passing to exec. Returned array must be freed. Shouldn't
* be possible to call this with host set to NULL.
*/
char **
parse_proxy(char *proxy, char *host)
{
char **pargv, **p;
int pargc = 2;
int hlen = strlen(host);
int plen = 1;
unsigned char *cur, *pro;
char *c;
/* skip any initial space */
for (pro = proxy; isspace(*pro); pro++)
continue;
/* calculate required size for argument array */
for (cur = pro; *cur; cur++) {
if (isspace(*cur) && cur[1] && !isspace(cur[1]))
plen++, pargc++;
else if (*cur == '%' && cur[1] == 'h') {
plen += hlen;
cur++;
} else if (!isspace(*cur))
plen++;
}
/* put together list of arguments */
p = pargv = mh_xmalloc(pargc * sizeof(char *));
c = *pargv = mh_xmalloc(plen * sizeof(char));
for (cur = pro; *cur; cur++) {
if (isspace(*cur) && cur[1] && !isspace(cur[1])) {
*c++ = '\0';
*++p = c;
} else if (*cur == '%' && cur[1] == 'h') {
strcpy (c, host);
c += hlen;
cur++;
} else if (!isspace(*cur))
*c++ = *cur;
}
*++p = NULL;
return pargv;
}
int
pop_init (char *host, char *user, char *pass, char *proxy, int snoop,
int rpop, int kpop, int sasl, char *mech)
{
int fd1, fd2;
char buffer[BUFSIZ];
#ifdef APOP
int apop;
if ((apop = rpop) < 0)
rpop = 0;
#endif
if (proxy && *proxy) {
int pid;
int inpipe[2]; /* for reading from the server */
int outpipe[2]; /* for sending to the server */
/* first give up any root priviledges we may have for rpop */
setuid(getuid());
pipe(inpipe);
pipe(outpipe);
pid=fork();
if (pid==0) {
char **argv;
/* in child */
close(0);
close(1);
dup2(outpipe[0],0); /* connect read end of connection */
dup2(inpipe[1], 1); /* connect write end of connection */
if(inpipe[0]>1) close(inpipe[0]);
if(inpipe[1]>1) close(inpipe[1]);
if(outpipe[0]>1) close(outpipe[0]);
if(outpipe[1]>1) close(outpipe[1]);
/* run the proxy command */
argv=parse_proxy(proxy, host);
execvp(argv[0],argv);
perror(argv[0]);
close(0);
close(1);
free(*argv);
free(argv);
exit(10);
}
/* okay in the parent we do some stuff */
close(inpipe[1]); /* child uses this */
close(outpipe[0]); /* child uses this */
/* we read on fd1 */
fd1=inpipe[0];
/* and write on fd2 */
fd2=outpipe[1];
} else {
#ifndef NNTP
if ( kpop ) {
# ifdef KPOP
snprintf (buffer, sizeof(buffer), "%s/%s", KPOP_PRINCIPAL, "kpop");
if ((fd1 = client (host, "tcp", buffer, 0, response, sizeof(response))) == NOTOK) {
return NOTOK;
}
# else /* KPOP */
snprintf (response, sizeof(response), "this version of nmh compiled without KPOP support");
return NOTOK;
# endif /* KPOP */
} else {
if ((fd1 = client (host, "tcp", POPSERVICE, rpop, response, sizeof(response))) == NOTOK) {
return NOTOK;
}
}
#else /* NNTP */
if ((fd1 = client (host, "tcp", "nntp", rpop, response, sizeof(response))) == NOTOK)
return NOTOK;
#endif
if ((fd2 = dup (fd1)) == NOTOK) {
char *s;
if ((s = strerror(errno)))
snprintf (response, sizeof(response),
"unable to dup connection descriptor: %s", s);
else
snprintf (response, sizeof(response),
"unable to dup connection descriptor: unknown error");
close (fd1);
return NOTOK;
}
}
#ifndef NNTP
if (pop_set (fd1, fd2, snoop) == NOTOK)
#else /* NNTP */
if (pop_set (fd1, fd2, snoop, (char *)0) == NOTOK)
#endif /* NNTP */
return NOTOK;
SIGNAL (SIGPIPE, SIG_IGN);
switch (sasl_getline (response, sizeof response, input)) {
case OK:
if (poprint)
fprintf (stderr, "<--- %s\n", response);
#ifndef NNTP
if (*response == '+') {
# ifndef KPOP
# ifdef APOP
if (apop < 0) {
char *cp = pop_auth (user, pass);
if (cp && command ("APOP %s", cp) != NOTOK)
return OK;
}
else
# endif /* APOP */
# ifdef CYRUS_SASL
if (sasl) {
if (pop_auth_sasl(user, host, mech) != NOTOK)
return OK;
} else
# endif /* CYRUS_SASL */
if (command ("USER %s", user) != NOTOK
&& command ("%s %s", rpop ? "RPOP" : (pophack++, "PASS"),
pass) != NOTOK)
return OK;
# else /* KPOP */
if (command ("USER %s", user) != NOTOK
&& command ("PASS %s", pass) != NOTOK)
return OK;
# endif
}
#else /* NNTP */
if (*response < CHAR_ERR) {
command ("MODE READER");
return OK;
}
#endif
strncpy (buffer, response, sizeof(buffer));
command ("QUIT");
strncpy (response, buffer, sizeof(response));
/* and fall */
case NOTOK:
case DONE:
if (poprint)
fprintf (stderr, "%s\n", response);
fclose (input);
fclose (output);
return NOTOK;
}
return NOTOK; /* NOTREACHED */
}
#ifdef NNTP
int
pop_set (int in, int out, int snoop, char *myname)
#else
int
pop_set (int in, int out, int snoop)
#endif
{
#ifdef NNTP
if (myname && *myname) {
/* interface from bbc to msh */
strncpy (xtnd_name, myname, sizeof(xtnd_name));
}
#endif /* NNTP */
if ((input = fdopen (in, "r")) == NULL
|| (output = fdopen (out, "w")) == NULL) {
strncpy (response, "fdopen failed on connection descriptor", sizeof(response));
if (input)
fclose (input);
else
close (in);
close (out);
return NOTOK;
}
poprint = snoop;
return OK;
}
int
pop_fd (char *in, int inlen, char *out, int outlen)
{
snprintf (in, inlen, "%d", fileno (input));
snprintf (out, outlen, "%d", fileno (output));
return OK;
}
/*
* Find out number of messages available
* and their total size.
*/
int
pop_stat (int *nmsgs, int *nbytes)
{
#ifdef NNTP
char **ap;
#endif /* NNTP */
#ifndef NNTP
if (command ("STAT") == NOTOK)
return NOTOK;
*nmsgs = *nbytes = 0;
sscanf (response, "+OK %d %d", nmsgs, nbytes);
#else /* NNTP */
if (xtnd_last < 0) { /* in msh, xtnd_name is set from myname */
if (command("GROUP %s", xtnd_name) == NOTOK)
return NOTOK;
ap = brkstring (response, " ", "\n"); /* "211 nart first last ggg" */
xtnd_first = atoi (ap[2]);
xtnd_last = atoi (ap[3]);
}
/* nmsgs is not the real nart, but an incredible simuation */
if (xtnd_last > 0)
*nmsgs = xtnd_last - xtnd_first + 1; /* because of holes... */
else
*nmsgs = 0;
*nbytes = xtnd_first; /* for subtracting offset in msh() */
#endif /* NNTP */
return OK;
}
#ifdef NNTP
int
pop_exists (int (*action)())
{
#ifdef XMSGS /* hacked into NNTP 1.5 */
if (traverse (action, "XMSGS %d-%d", (targ_t) xtnd_first, (targ_t) xtnd_last) == OK)
return OK;
#endif
/* provided by INN 1.4 */
if (traverse (action, "LISTGROUP") == OK)
return OK;
return traverse (action, "XHDR NONAME %d-%d", (targ_t) xtnd_first, (targ_t) xtnd_last);
}
#endif /* NNTP */
#ifdef BPOP
int
pop_list (int msgno, int *nmsgs, int *msgs, int *bytes, int *ids)
#else
int
pop_list (int msgno, int *nmsgs, int *msgs, int *bytes)
#endif
{
int i;
#ifndef BPOP
int *ids = NULL;
#endif
if (msgno) {
#ifndef NNTP
if (command ("LIST %d", msgno) == NOTOK)
return NOTOK;
*msgs = *bytes = 0;
if (ids) {
*ids = 0;
sscanf (response, "+OK %d %d %d", msgs, bytes, ids);
}
else
sscanf (response, "+OK %d %d", msgs, bytes);
#else /* NNTP */
*msgs = *bytes = 0;
if (command ("STAT %d", msgno) == NOTOK)
return NOTOK;
if (ids) {
*ids = msgno;
}
#endif /* NNTP */
return OK;
}
#ifndef NNTP
if (command ("LIST") == NOTOK)
return NOTOK;
for (i = 0; i < *nmsgs; i++)
switch (multiline ()) {
case NOTOK:
return NOTOK;
case DONE:
*nmsgs = ++i;
return OK;
case OK:
*msgs = *bytes = 0;
if (ids) {
*ids = 0;
sscanf (response, "%d %d %d",
msgs++, bytes++, ids++);
}
else
sscanf (response, "%d %d", msgs++, bytes++);
break;
}
for (;;)
switch (multiline ()) {
case NOTOK:
return NOTOK;
case DONE:
return OK;
case OK:
break;
}
#else /* NNTP */
return NOTOK;
#endif /* NNTP */
}
int
pop_retr (int msgno, int (*action)(char *))
{
#ifndef NNTP
return traverse (action, "RETR %d", (targ_t) msgno);
#else /* NNTP */
return traverse (action, "ARTICLE %d", (targ_t) msgno);
#endif /* NNTP */
}
static int
traverse (int (*action)(char *), const char *fmt, ...)
{
int result;
va_list ap;
char buffer[sizeof(response)];
va_start(ap, fmt);
result = vcommand (fmt, ap);
va_end(ap);
if (result == NOTOK)
return NOTOK;
strncpy (buffer, response, sizeof(buffer));
for (;;)
switch (multiline ()) {
case NOTOK:
return NOTOK;
case DONE:
strncpy (response, buffer, sizeof(response));
return OK;
case OK:
(*action) (response);
break;
}
}
int
pop_dele (int msgno)
{
return command ("DELE %d", msgno);
}
int
pop_noop (void)
{
return command ("NOOP");
}
#if defined(MPOP) && !defined(NNTP)
int
pop_last (void)
{
return command ("LAST");
}
#endif
int
pop_rset (void)
{
return command ("RSET");
}
int
pop_top (int msgno, int lines, int (*action)(char *))
{
#ifndef NNTP
return traverse (action, "TOP %d %d", (targ_t) msgno, (targ_t) lines);
#else /* NNTP */
return traverse (action, "HEAD %d", (targ_t) msgno);
#endif /* NNTP */
}
#ifdef BPOP
int
pop_xtnd (int (*action)(), char *fmt, ...)
{
int result;
va_list ap;
char buffer[BUFSIZ];
#ifdef NNTP
char **ap;
#endif
va_start(ap, fmt);
#ifndef NNTP
/* needs to be fixed... va_end needs to be added */
snprintf (buffer, sizeof(buffer), "XTND %s", fmt);
result = traverse (action, buffer, a, b, c, d);
va_end(ap);
return result;
#else /* NNTP */
snprintf (buffer, sizeof(buffer), fmt, a, b, c, d);
ap = brkstring (buffer, " ", "\n"); /* a hack, i know... */
if (!mh_strcasecmp(ap[0], "x-bboards")) { /* XTND "X-BBOARDS group */
/* most of these parameters are meaningless under NNTP.
* bbc.c was modified to set AKA and LEADERS as appropriate,
* the rest are left blank.
*/
return OK;
}
if (!mh_strcasecmp (ap[0], "archive") && ap[1]) {
snprintf (xtnd_name, sizeof(xtnd_name), "%s", ap[1]); /* save the name */
xtnd_last = 0;
xtnd_first = 1; /* setup to fail in pop_stat */
return OK;
}
if (!mh_strcasecmp (ap[0], "bboards")) {
if (ap[1]) { /* XTND "BBOARDS group" */
snprintf (xtnd_name, sizeof(xtnd_name), "%s", ap[1]); /* save the name */
if (command("GROUP %s", xtnd_name) == NOTOK)
return NOTOK;
/* action must ignore extra args */
strncpy (buffer, response, sizeof(buffer));
ap = brkstring (response, " ", "\n");/* "211 nart first last g" */
xtnd_first = atoi (ap[2]);
xtnd_last = atoi (ap[3]);
(*action) (buffer);
return OK;
} else { /* XTND "BBOARDS" */
return traverse (action, "LIST", a, b, c, d);
}
}
return NOTOK; /* unknown XTND command */
#endif /* NNTP */
}
#endif /* BPOP */
int
pop_quit (void)
{
int i;
i = command ("QUIT");
pop_done ();
return i;
}
int
pop_done (void)
{
#ifdef CYRUS_SASL
if (conn)
sasl_dispose(&conn);
#endif /* CYRUS_SASL */
fclose (input);
fclose (output);
return OK;
}
#if !defined(MPOP) || defined(NNTP)
static
#endif
int
command(const char *fmt, ...)
{
va_list ap;
int result;
va_start(ap, fmt);
result = vcommand(fmt, ap);
va_end(ap);
return result;
}
static int
vcommand (const char *fmt, va_list ap)
{
char *cp, buffer[BUFSIZ];
vsnprintf (buffer, sizeof(buffer), fmt, ap);
if (poprint) {
#ifdef CYRUS_SASL
if (sasl_ssf)
fprintf(stderr, "(encrypted) ");
#endif /* CYRUS_SASL */
if (pophack) {
if ((cp = strchr (buffer, ' ')))
*cp = 0;
fprintf (stderr, "---> %s ********\n", buffer);
if (cp)
*cp = ' ';
pophack = 0;
}
else
fprintf (stderr, "---> %s\n", buffer);
}
if (putline (buffer, output) == NOTOK)
return NOTOK;
#ifdef CYRUS_SASL
if (poprint && sasl_ssf)
fprintf(stderr, "(decrypted) ");
#endif /* CYRUS_SASL */
switch (sasl_getline (response, sizeof response, input)) {
case OK:
if (poprint)
fprintf (stderr, "<--- %s\n", response);
#ifndef NNTP
return (*response == '+' ? OK : NOTOK);
#else /* NNTP */
return (*response < CHAR_ERR ? OK : NOTOK);
#endif /* NNTP */
case NOTOK:
case DONE:
if (poprint)
fprintf (stderr, "%s\n", response);
return NOTOK;
}
return NOTOK; /* NOTREACHED */
}
#if defined(MPOP) && !defined(NNTP)
int
multiline (void)
#else
static int
multiline (void)
#endif
{
char buffer[BUFSIZ + TRMLEN];
if (sasl_getline (buffer, sizeof buffer, input) != OK)
return NOTOK;
#ifdef DEBUG
if (poprint) {
#ifdef CYRUS_SASL
if (sasl_ssf)
fprintf(stderr, "(decrypted) ");
#endif /* CYRUS_SASL */
fprintf (stderr, "<--- %s\n", response);
}
#endif /* DEBUG */
if (strncmp (buffer, TRM, TRMLEN) == 0) {
if (buffer[TRMLEN] == 0)
return DONE;
else
strncpy (response, buffer + TRMLEN, sizeof(response));
}
else
strncpy (response, buffer, sizeof(response));
return OK;
}
/*
* Note that these functions have been modified to deal with layer encryption
* in the SASL case
*/
static int
sasl_getline (char *s, int n, FILE *iop)
{
int c;
char *p;
p = s;
while (--n > 0 && (c = sasl_fgetc (iop)) != EOF && c != -2)
if ((*p++ = c) == '\n')
break;
if (c == -2)
return NOTOK;
if (ferror (iop) && c != EOF) {
strncpy (response, "error on connection", sizeof(response));
return NOTOK;
}
if (c == EOF && p == s) {
strncpy (response, "connection closed by foreign host", sizeof(response));
return DONE;
}
*p = 0;
if (*--p == '\n')
*p = 0;
if (*--p == '\r')
*p = 0;
return OK;
}
static int
putline (char *s, FILE *iop)
{
#ifdef CYRUS_SASL
char outbuf[BUFSIZ], *buf;
int result;
unsigned int buflen;
if (!sasl_complete) {
#endif /* CYRUS_SASL */
fprintf (iop, "%s\r\n", s);
#ifdef CYRUS_SASL
} else {
/*
* Build an output buffer, encrypt it using sasl_encode, and
* squirt out the results.
*/
strncpy(outbuf, s, sizeof(outbuf) - 3);
outbuf[sizeof(outbuf) - 3] = '\0'; /* Just in case */
strcat(outbuf, "\r\n");
result = sasl_encode(conn, outbuf, strlen(outbuf),
(const char **) &buf, &buflen);
if (result != SASL_OK) {
snprintf(response, sizeof(response), "SASL encoding error: %s",
sasl_errdetail(conn));
return NOTOK;
}
fwrite(buf, buflen, 1, iop);
}
#endif /* CYRUS_SASL */
fflush (iop);
if (ferror (iop)) {
strncpy (response, "lost connection", sizeof(response));
return NOTOK;
}
return OK;
}
#ifdef CYRUS_SASL
/*
* Okay, our little fgetc replacement. Hopefully this is a little more
* efficient than the last one.
*/
static int
sasl_fgetc(FILE *f)
{
static unsigned char *buffer = NULL, *ptr;
static int size = 0;
static int cnt = 0;
unsigned int retbufsize = 0;
int cc, result;
char *retbuf, tmpbuf[BUFSIZ];
/*
* If we have some leftover data, return that
*/
if (cnt) {
cnt--;
return (int) *ptr++;
}
/*
* Otherwise, fill our buffer until we have some data to return.
*/
while (retbufsize == 0) {
cc = read(fileno(f), tmpbuf, sizeof(tmpbuf));
if (cc == 0)
return EOF;
if (cc < 0) {
snprintf(response, sizeof(response), "Error during read from "
"network: %s", strerror(errno));
return -2;
}
/*
* We're not allowed to call sasl_decode until sasl_complete is
* true, so we do these gyrations ...
*/
if (!sasl_complete) {
retbuf = tmpbuf;
retbufsize = cc;
} else {
result = sasl_decode(conn, tmpbuf, cc,
(const char **) &retbuf, &retbufsize);
if (result != SASL_OK) {
snprintf(response, sizeof(response), "Error during SASL "
"decoding: %s", sasl_errdetail(conn));
return -2;
}
}
}
if (retbufsize > size) {
buffer = mh_xrealloc(buffer, retbufsize);
size = retbufsize;
}
memcpy(buffer, retbuf, retbufsize);
ptr = buffer + 1;
cnt = retbufsize - 1;
return (int) buffer[0];
}
#endif /* CYRUS_SASL */
|