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
|
/*
* whatnowsbr.c -- the WhatNow shell
*
* 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.
*
* Several options have been added to ease the inclusion of attachments
* using the header field name mechanism added to anno and send. The
* -attach option is used to specify the header field name for attachments.
*
* Several commands have been added at the whatnow prompt:
*
* cd [ directory ] This option works just like the shell's
* cd command and lets the user change the
* directory from which attachments are
* taken so that long path names are not
* needed with every file.
*
* ls [ ls-options ] This option works just like the normal
* ls command and exists to allow the user
* to verify file names in the directory.
*
* pwd This option works just like the normal
* pwd command and exists to allow the user
* to verify the directory.
*
* attach [-v] files This option attaches the named files to
* the draft. -v displays the mhbuild
* directive that send(1) will use.
*
* alist [-ln] This option lists the attachments on the
* draft. -l gets long listings, -n gets
* numbered listings.
*
* detach files This option removes attachments from the
* detach -n numbers draft. This can be done by file name or
* by attachment number.
*/
#include <h/mh.h>
#include <fcntl.h>
#include <h/mime.h>
#include <h/utils.h>
#define WHATNOW_SWITCHES \
X("draftfolder +folder", 0, DFOLDSW) \
X("draftmessage msg", 0, DMSGSW) \
X("nodraftfolder", 0, NDFLDSW) \
X("editor editor", 0, EDITRSW) \
X("noedit", 0, NEDITSW) \
X("prompt string", 4, PRMPTSW) \
X("version", 0, VERSIONSW) \
X("help", 0, HELPSW) \
X("attach header-field-name", -6, ATTACHSW) \
X("noattach", -8, NOATTACHSW) \
#define X(sw, minchars, id) id,
DEFINE_SWITCH_ENUM(WHATNOW);
#undef X
#define X(sw, minchars, id) { sw, minchars, id },
DEFINE_SWITCH_ARRAY(WHATNOW, whatnowswitches);
#undef X
/*
* Options at the "whatnow" prompt
*/
#define PROMPT_SWITCHES \
X("edit [<editor> <switches>]", 0, EDITSW) \
X("refile [<switches>] +folder", 0, REFILEOPT) \
X("mime [<switches>]", 0, BUILDMIMESW) \
X("display [<switches>]", 0, DISPSW) \
X("list [<switches>]", 0, LISTSW) \
X("send [<switches>]", 0, SENDSW) \
X("push [<switches>]", 0, PUSHSW) \
X("whom [<switches>]", 0, WHOMSW) \
X("quit [-delete]", 0, QUITSW) \
X("delete", 0, DELETESW) \
X("cd [directory]", 0, CDCMDSW) \
X("pwd", 0, PWDCMDSW) \
X("ls", 2, LSCMDSW) \
X("attach [-v]", 0, ATTACHCMDSW) \
X("detach [-n]", 0, DETACHCMDSW) \
X("alist [-ln] ", 2, ALISTCMDSW) \
#define X(sw, minchars, id) id,
DEFINE_SWITCH_ENUM(PROMPT);
#undef X
#define X(sw, minchars, id) { sw, minchars, id },
DEFINE_SWITCH_ARRAY(PROMPT, aleqs);
#undef X
static char *myprompt = "\nWhat now? ";
/*
* static prototypes
*/
static int editfile (char **, char **, char *, int, struct msgs *,
char *, char *, int, int);
static int sendfile (char **, char *, int);
static void sendit (char *, char **, char *, int);
static int buildfile (char **, char *);
static int whomfile (char **, char *);
static int removefile (char *);
static int checkmimeheader (char *);
static void writelscmd(char *, int, char *, char **);
static void writesomecmd(char *buf, int bufsz, char *cmd, char *trailcmd, char **argp);
static FILE* popen_in_dir(const char *dir, const char *cmd, const char *type);
static int system_in_dir(const char *dir, const char *cmd);
static int copyf (char *, char *);
int
WhatNow (int argc, char **argv)
{
int isdf = 0, nedit = 0, use = 0, atfile = 1;
char *cp, *dfolder = NULL, *dmsg = NULL;
char *ed = NULL, *drft = NULL, *msgnam = NULL;
char buf[BUFSIZ], prompt[BUFSIZ];
char **argp, **arguments;
struct stat st;
char cwd[PATH_MAX + 1]; /* current working directory */
char file[PATH_MAX + 1]; /* file name buffer */
char shell[PATH_MAX + 1]; /* shell response buffer */
FILE *f; /* read pointer for bgnd proc */
char *l; /* set on -l to alist command */
int n; /* set on -n to alist command */
/* Need this if called from what_now(). */
invo_name = r1bindex (argv[0], '/');
arguments = getarguments (invo_name, argc, argv, 1);
argp = arguments;
/*
* Get the initial current working directory.
*/
if (getcwd(cwd, sizeof (cwd)) == (char *)0) {
adios("getcwd", "could not get working directory");
}
while ((cp = *argp++)) {
if (*cp == '-') {
switch (smatch (++cp, whatnowswitches)) {
case AMBIGSW:
ambigsw (cp, whatnowswitches);
done (1);
case UNKWNSW:
adios (NULL, "-%s unknown", cp);
case HELPSW:
snprintf (buf, sizeof(buf), "%s [switches] [file]", invo_name);
print_help (buf, whatnowswitches, 1);
done (0);
case VERSIONSW:
print_version(invo_name);
done (0);
case DFOLDSW:
if (dfolder)
adios (NULL, "only one draft folder at a time!");
if (!(cp = *argp++) || *cp == '-')
adios (NULL, "missing argument to %s", argp[-2]);
dfolder = path (*cp == '+' || *cp == '@' ? cp + 1 : cp,
*cp != '@' ? TFOLDER : TSUBCWF);
continue;
case DMSGSW:
if (dmsg)
adios (NULL, "only one draft message at a time!");
if (!(dmsg = *argp++) || *dmsg == '-')
adios (NULL, "missing argument to %s", argp[-2]);
continue;
case NDFLDSW:
dfolder = NULL;
isdf = NOTOK;
continue;
case EDITRSW:
if (!(ed = *argp++) || *ed == '-')
adios (NULL, "missing argument to %s", argp[-2]);
nedit = 0;
continue;
case NEDITSW:
nedit++;
continue;
case PRMPTSW:
if (!(myprompt = *argp++) || *myprompt == '-')
adios (NULL, "missing argument to %s", argp[-2]);
continue;
case ATTACHSW:
advise(NULL, "The -attach switch is deprecated");
continue;
case NOATTACHSW:
advise(NULL, "The -noattach switch is deprecated");
continue;
}
}
if (drft)
adios (NULL, "only one draft at a time!");
else
drft = cp;
}
if ((drft == NULL && (drft = getenv ("mhdraft")) == NULL) || *drft == 0)
drft = getcpy (m_draft (dfolder, dmsg, 1, &isdf));
msgnam = (cp = getenv ("mhaltmsg")) && *cp ? getcpy (cp) : NULL;
if ((cp = getenv ("mhatfile")) && *cp)
atfile = atoi(cp);
if ((cp = getenv ("mhuse")) && *cp)
use = atoi (cp);
if (ed == NULL && ((ed = getenv ("mheditor")) == NULL || *ed == 0)) {
ed = NULL;
nedit++;
}
/* start editing the draft, unless -noedit was given */
if (!nedit && editfile (&ed, NULL, drft, use, NULL, msgnam,
NULL, 1, atfile) < 0)
done (1);
snprintf (prompt, sizeof(prompt), myprompt, invo_name);
for (;;) {
#ifdef READLINE_SUPPORT
if (!(argp = getans_via_readline (prompt, aleqs))) {
#else /* ! READLINE_SUPPORT */
if (!(argp = getans (prompt, aleqs))) {
#endif /* READLINE_SUPPORT */
(void) m_unlink (LINK);
done (1);
}
switch (smatch (*argp, aleqs)) {
case DISPSW:
/* display the message being replied to, or distributed */
if (msgnam)
showfile (++argp, msgnam);
else
advise (NULL, "no alternate message to display");
break;
case BUILDMIMESW:
/* Translate MIME composition file */
buildfile (++argp, drft);
break;
case EDITSW:
/* Call an editor on the draft file */
if (*++argp)
ed = *argp++;
if (editfile (&ed, argp, drft, NOUSE, NULL, msgnam,
NULL, 1, atfile) == NOTOK)
done (1);
break;
case LISTSW:
/* display the draft file */
showfile (++argp, drft);
break;
case WHOMSW:
/* Check to whom the draft would be sent */
whomfile (++argp, drft);
break;
case QUITSW:
/* Quit, and possibly delete the draft */
if (*++argp && (*argp[0] == 'd' ||
((*argp)[0] == '-' && (*argp)[1] == 'd'))) {
removefile (drft);
} else {
if (stat (drft, &st) != NOTOK)
advise (NULL, "draft left on %s", drft);
}
done (1);
case DELETESW:
/* Delete draft and exit */
removefile (drft);
done (1);
case PUSHSW:
/* Send draft in background */
if (sendfile (++argp, drft, 1))
done (1);
break;
case SENDSW:
/* Send draft */
sendfile (++argp, drft, 0);
break;
case REFILEOPT:
/* Refile the draft */
if (refile (++argp, drft) == 0)
done (0);
break;
case CDCMDSW:
/* Change the working directory for attachments
*
* Run the directory through the user's shell so that
* we can take advantage of any syntax that the user
* is accustomed to. Read back the absolute path.
*/
if (*(argp+1) == (char *)0) {
(void)sprintf(buf, "$SHELL -c \"cd&&pwd\"");
}
else {
writesomecmd(buf, BUFSIZ, "cd", "pwd", argp);
}
if ((f = popen_in_dir(cwd, buf, "r")) != (FILE *)0) {
fgets(cwd, sizeof (cwd), f);
if (strchr(cwd, '\n') != (char *)0)
*strchr(cwd, '\n') = '\0';
pclose(f);
}
else {
advise("popen", "could not get directory");
}
break;
case PWDCMDSW:
/* Print the working directory for attachments */
printf("%s\n", cwd);
break;
case LSCMDSW:
/* List files in the current attachment working directory
*
* Use the user's shell so that we can take advantage of any
* syntax that the user is accustomed to.
*/
writelscmd(buf, sizeof(buf), "", argp);
(void)system_in_dir(cwd, buf);
break;
case ALISTCMDSW:
/*
* List attachments on current draft. Options are:
*
* -l long listing (full path names)
* -n numbers listing
*/
if (checkmimeheader(drft))
break;
l = (char *)0;
n = 0;
while (*++argp != (char *)0) {
if (strcmp(*argp, "-l") == 0)
l = "/";
else if (strcmp(*argp, "-n") == 0)
n = 1;
else if (strcmp(*argp, "-ln") == 0 || strcmp(*argp, "-nl") == 0) {
l = "/";
n = 1;
}
else {
n = -1;
break;
}
}
if (n == -1)
advise((char *)0, "usage is alist [-ln].");
else
annolist(drft, ATTACH_FIELD, l, n);
break;
case ATTACHCMDSW: {
/*
* Attach files to current draft.
*/
int verbose = 0;
char **ap;
if (checkmimeheader(drft))
break;
for (ap = argp+1; *ap; ++ap) {
if (strcmp(*ap, "-v") == 0) {
++argp;
verbose = 1;
} else if (*ap[0] != '-') {
break;
}
}
if (*(argp+1) == (char *)0) {
advise(NULL, "attach command requires file argument(s).");
break;
}
/*
* Build a command line that causes the user's shell to list the file name
* arguments. This handles and wildcard expansion, tilde expansion, etc.
*/
writelscmd(buf, sizeof(buf), "-d --", argp);
/*
* Read back the response from the shell, which contains a number of lines
* with one file name per line. Remove off the newline. Determine whether
* we have an absolute or relative path name. Prepend the current working
* directory to relative path names. Add the attachment annotation to the
* draft.
*/
if ((f = popen_in_dir(cwd, buf, "r")) != (FILE *)0) {
while (fgets(shell, sizeof (shell), f) != (char *)0) {
char *ctype;
*(strchr(shell, '\n')) = '\0';
if (*shell == '/') {
strncpy(file, shell, sizeof(file));
file[sizeof(file) - 1] = '\0';
} else {
snprintf(file, sizeof(file), "%s/%s", cwd, shell);
}
annotate(drft, ATTACH_FIELD, file, 1, 0, -2, 1);
if (verbose) {
ctype = mime_type(file);
}
if (verbose) {
printf ("Attaching %s as a %s\n", file, ctype);
free (ctype);
}
}
pclose(f);
}
else {
advise("popen", "could not get file from shell");
}
break;
}
case DETACHCMDSW:
/*
* Detach files from current draft.
*/
/*
* Scan the arguments for a -n. Mixed file names and numbers aren't allowed,
* so this catches a -n anywhere in the argument list.
*/
if (checkmimeheader(drft))
break;
for (n = 0, arguments = argp + 1; *arguments != (char *)0; arguments++) {
if (strcmp(*arguments, "-n") == 0) {
n = 1;
break;
}
}
/*
* A -n was found so interpret the arguments as attachment numbers.
* Decrement any remaining argument number that is greater than the one
* just processed after processing each one so that the numbering stays
* correct.
*/
if (n == 1) {
for (arguments = argp + 1; *arguments != (char *)0; arguments++) {
if (strcmp(*arguments, "-n") == 0)
continue;
if (**arguments != '\0') {
n = atoi(*arguments);
annotate(drft, ATTACH_FIELD, (char *)0, 1, 0, n, 1);
for (argp = arguments + 1; *argp != (char *)0; argp++) {
if (atoi(*argp) > n) {
if (atoi(*argp) == 1)
*argp = "";
else
(void)sprintf(*argp, "%d", atoi(*argp) - 1);
}
}
}
}
}
/*
* The arguments are interpreted as file names. Run them through the
* user's shell for wildcard expansion and other goodies. Do this from
* the current working directory if the argument is not an absolute path
* name (does not begin with a /).
*
* We feed all the file names to the shell at once, otherwise you can't
* provide a file name with a space in it.
*/
writelscmd(buf, sizeof(buf), "-d --", argp);
if ((f = popen_in_dir(cwd, buf, "r")) != (FILE *)0) {
while (fgets(shell, sizeof (shell), f) != (char *)0) {
*(strchr(shell, '\n')) = '\0';
annotate(drft, ATTACH_FIELD, shell, 1, 0, 0, 1);
}
pclose(f);
} else {
advise("popen", "could not get file from shell");
}
break;
default:
/* Unknown command */
advise (NULL, "say what?");
break;
}
}
/*NOTREACHED*/
}
/* Build a command line of the form $SHELL -c "cd 'cwd'; cmd argp ... ; trailcmd". */
static void
writesomecmd(char *buf, int bufsz, char *cmd, char *trailcmd, char **argp)
{
char *cp;
/* Note that we do not quote -- the argp from the user
* is assumed to be quoted as they desire. (We can't treat
* it as pure literal as that would prevent them using ~,
* wildcards, etc.) The buffer produced by this function
* should be given to popen_in_dir() or system_in_dir() so
* that the current working directory is set correctly.
*/
int ln = snprintf(buf, bufsz, "$SHELL -c \"%s", cmd);
/* NB that some snprintf() return -1 on overflow rather than the
* new C99 mandated 'number of chars that would have been written'
*/
/* length checks here and inside the loop allow for the
* trailing "&&", trailcmd, '"' and NUL
*/
int trailln = strlen(trailcmd) + 4;
if (ln < 0 || ln + trailln > bufsz)
adios((char *)0, "arguments too long");
cp = buf + ln;
while (*argp && *++argp) {
ln = strlen(*argp);
/* +1 for leading space */
if (ln + trailln + 1 > bufsz - (cp-buf))
adios((char *)0, "arguments too long");
*cp++ = ' ';
memcpy(cp, *argp, ln+1);
cp += ln;
}
if (*trailcmd) {
*cp++ = '&'; *cp++ = '&';
strcpy(cp, trailcmd);
cp += trailln - 4;
}
*cp++ = '"';
*cp = 0;
}
/*
* Build a command line that causes the user's shell to list the file name
* arguments. This handles and wildcard expansion, tilde expansion, etc.
*/
static void
writelscmd(char *buf, int bufsz, char *lsoptions, char **argp)
{
char *lscmd = concat ("ls ", lsoptions, NULL);
writesomecmd(buf, bufsz, lscmd, "", argp);
free (lscmd);
}
/* Like system(), but run the command in directory dir.
* This assumes the program is single-threaded!
*/
static int
system_in_dir(const char *dir, const char *cmd)
{
char olddir[BUFSIZ];
int r;
/* ensure that $SHELL exists, as the cmd was written relying on
a non-blank $SHELL... */
setenv("SHELL","/bin/sh",0); /* don't overwrite */
if (getcwd(olddir, sizeof(olddir)) == 0)
adios("getcwd", "could not get working directory");
if (chdir(dir) != 0)
adios("chdir", "could not change working directory");
r = system(cmd);
if (chdir(olddir) != 0)
adios("chdir", "could not change working directory");
return r;
}
/* ditto for popen() */
static FILE*
popen_in_dir(const char *dir, const char *cmd, const char *type)
{
char olddir[BUFSIZ];
FILE *f;
/* ensure that $SHELL exists, as the cmd was written relying on
a non-blank $SHELL... */
setenv("SHELL","/bin/sh",0); /* don't overwrite */
if (getcwd(olddir, sizeof(olddir)) == 0)
adios("getcwd", "could not get working directory");
if (chdir(dir) != 0)
adios("chdir", "could not change working directory");
f = popen(cmd, type);
if (chdir(olddir) != 0)
adios("chdir", "could not change working directory");
return f;
}
/*
* EDIT
*/
static int reedit = 0; /* have we been here before? */
static char *edsave = NULL; /* the editor we used previously */
static int
editfile (char **ed, char **arg, char *file, int use, struct msgs *mp,
char *altmsg, char *cwd, int save_editor, int atfile)
{
int pid, status, vecp;
char altpath[BUFSIZ], linkpath[BUFSIZ];
char *cp, *prog, **vec;
struct stat st;
int slinked = 0;
/* Was there a previous edit session? */
if (reedit && (*ed || edsave)) {
if (!*ed) { /* no explicit editor */
*ed = edsave; /* so use the previous one */
if ((cp = r1bindex (*ed, '/')) == NULL)
cp = *ed;
/* unless we've specified it via "editor-next" */
cp = concat (cp, "-next", NULL);
if ((cp = context_find (cp)) != NULL)
*ed = cp;
}
} else {
/* set initial editor */
if (*ed == NULL)
*ed = get_default_editor();
}
if (altmsg) {
if (mp == NULL || *altmsg == '/' || cwd == NULL)
strncpy (altpath, altmsg, sizeof(altpath));
else
snprintf (altpath, sizeof(altpath), "%s/%s", mp->foldpath, altmsg);
if (cwd == NULL)
strncpy (linkpath, LINK, sizeof(linkpath));
else
snprintf (linkpath, sizeof(linkpath), "%s/%s", cwd, LINK);
if (atfile) {
(void) m_unlink (linkpath);
if (link (altpath, linkpath) == NOTOK) {
symlink (altpath, linkpath);
slinked = 1;
} else {
slinked = 0;
}
}
}
context_save (); /* save the context file */
fflush (stdout);
switch (pid = fork()) {
case NOTOK:
advise ("fork", "unable to");
status = NOTOK;
break;
case OK:
if (cwd)
chdir (cwd);
if (altmsg) {
if (mp)
m_putenv ("mhfolder", mp->foldpath);
m_putenv ("editalt", altpath);
}
vec = argsplit(*ed, &prog, &vecp);
if (arg)
while (*arg)
vec[vecp++] = *arg++;
vec[vecp++] = file;
vec[vecp] = NULL;
execvp (prog, vec);
fprintf (stderr, "unable to exec ");
perror (*ed);
_exit (-1);
default:
if ((status = pidwait (pid, NOTOK))) {
if (((status & 0xff00) != 0xff00)
&& (!reedit || (status & 0x00ff))) {
if (!use && (status & 0xff00) &&
(rename (file, cp = m_backup (file)) != NOTOK)) {
advise (NULL, "problems with edit--draft left in %s", cp);
} else {
advise (NULL, "problems with edit--%s preserved", file);
}
}
status = -2; /* maybe "reedit ? -2 : -1"? */
break;
}
reedit++;
if (altmsg
&& mp
&& !is_readonly(mp)
&& (slinked
? lstat (linkpath, &st) != NOTOK
&& S_ISREG(st.st_mode)
&& copyf (linkpath, altpath) == NOTOK
: stat (linkpath, &st) != NOTOK
&& st.st_nlink == 1
&& (m_unlink (altpath) == NOTOK
|| link (linkpath, altpath) == NOTOK)))
advise (linkpath, "unable to update %s from", altmsg);
}
/* normally, we remember which editor we used */
if (save_editor)
edsave = getcpy (*ed);
*ed = NULL;
if (altmsg && atfile)
(void) m_unlink (linkpath);
return status;
}
static int
copyf (char *ifile, char *ofile)
{
int i, in, out;
char buffer[BUFSIZ];
if ((in = open (ifile, O_RDONLY)) == NOTOK)
return NOTOK;
if ((out = open (ofile, O_WRONLY | O_TRUNC)) == NOTOK) {
admonish (ofile, "unable to open and truncate");
close (in);
return NOTOK;
}
while ((i = read (in, buffer, sizeof(buffer))) > OK)
if (write (out, buffer, i) != i) {
advise (ofile, "may have damaged");
i = NOTOK;
break;
}
close (in);
close (out);
return i;
}
/*
* SEND
*/
static int
sendfile (char **arg, char *file, int pushsw)
{
pid_t child_id;
int i, vecp;
char *cp, *sp, **vec, *program;
/*
* If the sendproc is the nmh command `send', then we call
* those routines directly rather than exec'ing the command.
*/
if (strcmp (sp = r1bindex (sendproc, '/'), "send") == 0) {
cp = invo_name;
sendit (invo_name = sp, arg, file, pushsw);
invo_name = cp;
return 1;
}
context_save (); /* save the context file */
fflush (stdout);
for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++)
sleep (5);
switch (child_id) {
case NOTOK:
advise (NULL, "unable to fork, so sending directly...");
case OK:
vec = argsplit(sendproc, &program, &vecp);
if (pushsw)
vec[vecp++] = "-push";
if (arg)
while (*arg)
vec[vecp++] = *arg++;
vec[vecp++] = file;
vec[vecp] = NULL;
execvp (program, vec);
fprintf (stderr, "unable to exec ");
perror (sendproc);
_exit (-1);
default:
if (pidwait(child_id, OK) == 0)
done (0);
return 1;
}
}
/*
* Translate MIME composition file (call buildmimeproc)
*/
static int
buildfile (char **argp, char *file)
{
int i;
char **args, *ed;
ed = buildmimeproc;
/* allocate space for arguments */
i = 0;
if (argp) {
while (argp[i])
i++;
}
args = (char **) mh_xmalloc((i + 2) * sizeof(char *));
/*
* For backward compatibility, we need to add -build
* if we are using mhn as buildmimeproc
*/
i = 0;
if (strcmp (r1bindex (ed, '/'), "mhn") == 0)
args[i++] = "-build";
/* copy any other arguments */
while (argp && *argp)
args[i++] = *argp++;
args[i] = NULL;
i = editfile (&ed, args, file, NOUSE, NULL, NULL, NULL, 0, 0);
free (args);
return (i ? NOTOK : OK);
}
#ifndef CYRUS_SASL
# define SASLminc(a) (a)
#else /* CYRUS_SASL */
# define SASLminc(a) 0
#endif /* CYRUS_SASL */
#ifndef TLS_SUPPORT
# define TLSminc(a) (a)
#else /* TLS_SUPPORT */
# define TLSminc(a) 0
#endif /* TLS_SUPPORT */
#define SEND_SWITCHES \
X("alias aliasfile", 0, ALIASW) \
X("debug", -5, DEBUGSW) \
X("filter filterfile", 0, FILTSW) \
X("nofilter", 0, NFILTSW) \
X("format", 0, FRMTSW) \
X("noformat", 0, NFRMTSW) \
X("forward", 0, FORWSW) \
X("noforward", 0, NFORWSW) \
X("mime", 0, MIMESW) \
X("nomime", 0, NMIMESW) \
X("msgid", 0, MSGDSW) \
X("nomsgid", 0, NMSGDSW) \
X("push", 0, SPSHSW) \
X("nopush", 0, NSPSHSW) \
X("split seconds", 0, SPLITSW) \
X("unique", -6, UNIQSW) \
X("nounique", -8, NUNIQSW) \
X("verbose", 0, VERBSW) \
X("noverbose", 0, NVERBSW) \
X("watch", 0, WATCSW) \
X("nowatch", 0, NWATCSW) \
X("width columns", 0, WIDTHSW) \
X("version", 0, SVERSIONSW) \
X("help", 0, SHELPSW) \
X("dashstuffing", -12, BITSTUFFSW) \
X("nodashstuffing", -14, NBITSTUFFSW) \
X("client host", -6, CLIESW) \
X("server host", 6, SERVSW) \
X("snoop", -5, SNOOPSW) \
X("draftfolder +folder", -6, SDRFSW) \
X("draftmessage msg", -6, SDRMSW) \
X("nodraftfolder", -3, SNDRFSW) \
X("sasl", SASLminc(-4), SASLSW) \
X("nosasl", SASLminc(-6), NOSASLSW) \
X("saslmaxssf", SASLminc(-10), SASLMXSSFSW) \
X("saslmech", SASLminc(-5), SASLMECHSW) \
X("user", SASLminc(-4), USERSW) \
X("attach fieldname", 6, SNDATTACHSW) \
X("noattach", 0, SNDNOATTACHSW) \
X("attachformat", 7, SNDATTACHFORMAT) \
X("port server-port-name/number", 4, PORTSW) \
X("tls", TLSminc(-3), TLSSW) \
X("initialtls", TLSminc(-10), INITTLSSW) \
X("notls", TLSminc(-5), NTLSSW) \
X("mts smtp|sendmail/smtp|sendmail/pipe", 2, MTSSW) \
X("messageid localname|random", 2, MESSAGEIDSW) \
#define X(sw, minchars, id) id,
DEFINE_SWITCH_ENUM(SEND);
#undef X
#define X(sw, minchars, id) { sw, minchars, id },
DEFINE_SWITCH_ARRAY(SEND, sendswitches);
#undef X
extern int debugsw; /* from sendsbr.c */
extern int forwsw;
extern int inplace;
extern int pushsw;
extern int splitsw;
extern int unique;
extern int verbsw;
extern char *altmsg; /* .. */
extern char *annotext;
extern char *distfile;
static void
sendit (char *sp, char **arg, char *file, int pushed)
{
int vecp, n = 1;
char *cp, buf[BUFSIZ], **argp, *program;
char **arguments, *savearg[MAXARGS], **vec;
struct stat st;
#ifndef lint
int distsw = 0;
#endif
/*
* Make sure these are defined. In particular, we need
* savearg[1] to be NULL, in case "arg" is NULL below. It
* doesn't matter what is the value of savearg[0], but we
* set it to NULL, to help catch "off-by-one" errors.
*/
savearg[0] = NULL;
savearg[1] = NULL;
/*
* Temporarily copy arg to savearg, since the brkstring() call in
* getarguments() will wipe it out before it is merged in.
* Also, we skip the first element of savearg, since getarguments()
* skips it. Then we count the number of arguments
* copied. The value of "n" will be one greater than
* this in order to simulate the standard argc/argv.
*/
if (arg) {
char **bp;
copyip (arg, savearg+1, MAXARGS-1);
bp = savearg+1;
while (*bp++)
n++;
}
/*
* Merge any arguments from command line (now in savearg)
* and arguments from profile.
*/
arguments = getarguments (sp, n, savearg, 1);
argp = arguments;
debugsw = 0;
forwsw = 1;
inplace = 1;
unique = 0;
altmsg = NULL;
annotext = NULL;
distfile = NULL;
/*
* Get our initial arguments for postproc now
*/
vec = argsplit(postproc, &program, &vecp);
vec[vecp++] = "-library";
vec[vecp++] = getcpy (m_maildir (""));
if ((cp = context_find ("fileproc"))) {
vec[vecp++] = "-fileproc";
vec[vecp++] = cp;
}
if ((cp = context_find ("mhlproc"))) {
vec[vecp++] = "-mhlproc";
vec[vecp++] = cp;
}
if ((cp = context_find ("credentials"))) {
/* post doesn't read context so need to pass credentials. */
vec[vecp++] = "-credentials";
vec[vecp++] = cp;
}
while ((cp = *argp++)) {
if (*cp == '-') {
switch (smatch (++cp, sendswitches)) {
case AMBIGSW:
ambigsw (cp, sendswitches);
return;
case UNKWNSW:
advise (NULL, "-%s unknown\n", cp);
return;
case SHELPSW:
snprintf (buf, sizeof(buf), "%s [switches]", sp);
print_help (buf, sendswitches, 1);
return;
case SVERSIONSW:
print_version (invo_name);
return;
case SPSHSW:
pushed++;
continue;
case NSPSHSW:
pushed = 0;
continue;
case SPLITSW:
if (!(cp = *argp++) || sscanf (cp, "%d", &splitsw) != 1) {
advise (NULL, "missing argument to %s", argp[-2]);
return;
}
continue;
case UNIQSW:
unique++;
continue;
case NUNIQSW:
unique = 0;
continue;
case FORWSW:
forwsw++;
continue;
case NFORWSW:
forwsw = 0;
continue;
case VERBSW:
verbsw++;
vec[vecp++] = --cp;
continue;
case NVERBSW:
verbsw = 0;
vec[vecp++] = --cp;
continue;
case DEBUGSW:
debugsw++; /* fall */
case NFILTSW:
case FRMTSW:
case NFRMTSW:
case BITSTUFFSW:
case NBITSTUFFSW:
case MIMESW:
case NMIMESW:
case MSGDSW:
case NMSGDSW:
case WATCSW:
case NWATCSW:
case SNOOPSW:
case SASLSW:
case NOSASLSW:
case TLSSW:
case INITTLSSW:
case NTLSSW:
vec[vecp++] = --cp;
continue;
case ALIASW:
case FILTSW:
case WIDTHSW:
case CLIESW:
case SERVSW:
case SASLMXSSFSW:
case SASLMECHSW:
case USERSW:
case PORTSW:
case MTSSW:
case MESSAGEIDSW:
vec[vecp++] = --cp;
if (!(cp = *argp++) || *cp == '-') {
advise (NULL, "missing argument to %s", argp[-2]);
return;
}
vec[vecp++] = cp;
continue;
case SDRFSW:
case SDRMSW:
if (!(cp = *argp++) || *cp == '-') {
advise (NULL, "missing argument to %s", argp[-2]);
return;
}
case SNDRFSW:
continue;
case SNDATTACHSW:
advise(NULL, "The -attach switch is deprecated");
continue;
case SNDNOATTACHSW:
advise(NULL, "The -noattach switch is deprecated");
continue;
case SNDATTACHFORMAT:
advise(NULL, "The -attachformat switch is deprecated");
continue;
}
}
advise (NULL, "usage: %s [switches]", sp);
return;
}
/* allow Aliasfile: profile entry */
if ((cp = context_find ("Aliasfile"))) {
char **ap, *dp;
dp = getcpy (cp);
for (ap = brkstring (dp, " ", "\n"); ap && *ap; ap++) {
vec[vecp++] = "-alias";
vec[vecp++] = *ap;
}
}
if ((cp = getenv ("SIGNATURE")) == NULL || *cp == 0)
if ((cp = context_find ("signature")) && *cp)
m_putenv ("SIGNATURE", cp);
if ((annotext = getenv ("mhannotate")) == NULL || *annotext == 0)
annotext = NULL;
if ((altmsg = getenv ("mhaltmsg")) == NULL || *altmsg == 0)
altmsg = NULL;
if (annotext && ((cp = getenv ("mhinplace")) != NULL && *cp != 0))
inplace = atoi (cp);
if ((cp = getenv ("mhdist"))
&& *cp
#ifndef lint
&& (distsw = atoi (cp))
#endif /* not lint */
&& altmsg) {
vec[vecp++] = "-dist";
if ((cp = m_mktemp2(altmsg, invo_name, NULL, NULL)) == NULL) {
adios(NULL, "unable to create temporary file in %s",
get_temp_dir());
}
distfile = getcpy (cp);
(void) m_unlink(distfile);
if (link (altmsg, distfile) == NOTOK)
adios (distfile, "unable to link %s to", altmsg);
} else {
distfile = NULL;
}
if (altmsg == NULL || stat (altmsg, &st) == NOTOK) {
st.st_mtime = 0;
st.st_dev = 0;
st.st_ino = 0;
}
if ((pushsw = pushed))
push ();
closefds (3);
if (sendsbr (vec, vecp, program, file, &st, 1) == OK)
done (0);
}
/*
* WHOM
*/
static int
whomfile (char **arg, char *file)
{
pid_t pid;
int vecp;
char **vec, *program;
context_save (); /* save the context file */
fflush (stdout);
switch (pid = fork()) {
case NOTOK:
advise ("fork", "unable to");
return 1;
case OK:
vec = argsplit(whomproc, &program, &vecp);
vec[vecp++] = file;
if (arg)
while (*arg)
vec[vecp++] = *arg++;
vec[vecp] = NULL;
execvp (program, vec);
fprintf (stderr, "unable to exec ");
perror (whomproc);
_exit (-1); /* NOTREACHED */
default:
return (pidwait (pid, NOTOK) & 0377 ? 1 : 0);
}
}
/*
* Remove the draft file
*/
static int
removefile (char *drft)
{
if (m_unlink (drft) == NOTOK)
adios (drft, "unable to unlink");
return OK;
}
/*
* Return 1 if we already have a MIME-Verson header, 0 otherwise.
*/
static int
checkmimeheader (char *drft)
{
FILE *f;
m_getfld_state_t gstate = 0;
char buf[BUFSIZ], name[NAMESZ];
int state, retval = 0;
if ((f = fopen(drft, "r")) == NULL) {
admonish(drft, "unable to read draft");
return (0);
}
for (;;) {
int bufsz = sizeof(buf);
switch (state = m_getfld(&gstate, name, buf, &bufsz, f)) {
case FLD:
case FLDPLUS:
if (strcasecmp(name, VRSN_FIELD) == 0) {
advise(NULL, "Cannot use attach commands with already-"
"formatted MIME message \"%s\"", drft);
retval = 1;
break;
}
continue;
default:
break;
}
break;
}
m_getfld_state_destroy(&gstate);
fclose(f);
return retval;
}
|