10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 50Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 60Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 70Sstevel@tonic-gate * with the License. 80Sstevel@tonic-gate * 90Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 100Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 110Sstevel@tonic-gate * See the License for the specific language governing permissions 120Sstevel@tonic-gate * and limitations under the License. 130Sstevel@tonic-gate * 140Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 150Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 160Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 170Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 180Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 190Sstevel@tonic-gate * 200Sstevel@tonic-gate * CDDL HEADER END 210Sstevel@tonic-gate */ 220Sstevel@tonic-gate /* 23*500Sceastha * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 240Sstevel@tonic-gate * Use is subject to license terms. 250Sstevel@tonic-gate */ 260Sstevel@tonic-gate 270Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 280Sstevel@tonic-gate /* All Rights Reserved */ 290Sstevel@tonic-gate 300Sstevel@tonic-gate 310Sstevel@tonic-gate /* Copyright (c) 1979 Regents of the University of California */ 320Sstevel@tonic-gate 330Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 340Sstevel@tonic-gate 350Sstevel@tonic-gate #include "ex.h" 360Sstevel@tonic-gate #include "ex_temp.h" 370Sstevel@tonic-gate #include "ex_tty.h" 380Sstevel@tonic-gate #include "ex_vis.h" 390Sstevel@tonic-gate 400Sstevel@tonic-gate extern char getchar(); 410Sstevel@tonic-gate /* 420Sstevel@tonic-gate * Unix escapes, filtering 430Sstevel@tonic-gate */ 440Sstevel@tonic-gate 450Sstevel@tonic-gate /* 460Sstevel@tonic-gate * First part of a shell escape, 470Sstevel@tonic-gate * parse the line, expanding # and % and ! and printing if implied. 480Sstevel@tonic-gate */ 49*500Sceastha void 50*500Sceastha unix0(bool warn, int contcmd) 510Sstevel@tonic-gate { 52*500Sceastha unsigned char *up, *fp; 53*500Sceastha short c; 540Sstevel@tonic-gate char multic[MB_LEN_MAX + 1]; 550Sstevel@tonic-gate int len; 56*500Sceastha int contread = 0; 570Sstevel@tonic-gate wchar_t wc; 580Sstevel@tonic-gate unsigned char printub, puxb[UXBSIZE + sizeof (int)]; 59*500Sceastha const char *specialchars = (contcmd ? "%#!\n" : "%#!"); 600Sstevel@tonic-gate 610Sstevel@tonic-gate printub = 0; 620Sstevel@tonic-gate CP(puxb, uxb); 630Sstevel@tonic-gate c = peekchar(); 640Sstevel@tonic-gate if (c == '\n' || c == EOF) { 650Sstevel@tonic-gate (void) getchar(); 660Sstevel@tonic-gate error(value(vi_TERSE) ? 670Sstevel@tonic-gate gettext("Incomplete shell escape command") : 680Sstevel@tonic-gate gettext("Incomplete shell escape command - use 'shell' to get a shell")); 690Sstevel@tonic-gate } 700Sstevel@tonic-gate up = (unsigned char *)uxb; 710Sstevel@tonic-gate 720Sstevel@tonic-gate for (;;) { 730Sstevel@tonic-gate if (!isascii(c)) { 740Sstevel@tonic-gate if (c == EOF) 750Sstevel@tonic-gate break; 760Sstevel@tonic-gate if ((len = _mbftowc(multic, &wc, getchar, &peekc)) > 0) { 770Sstevel@tonic-gate if ((up + len) >= (unsigned char *)&uxb[UXBSIZE]) { 780Sstevel@tonic-gate uxb[0] = 0; 790Sstevel@tonic-gate error(gettext("Command too long")); 800Sstevel@tonic-gate } 810Sstevel@tonic-gate strncpy(up, multic, len); 820Sstevel@tonic-gate up += len; 830Sstevel@tonic-gate goto loop_check; 840Sstevel@tonic-gate } 850Sstevel@tonic-gate } 860Sstevel@tonic-gate 870Sstevel@tonic-gate (void) getchar(); 880Sstevel@tonic-gate switch (c) { 890Sstevel@tonic-gate 900Sstevel@tonic-gate case '\\': 91*500Sceastha if (any(peekchar(), specialchars)) { 920Sstevel@tonic-gate c = getchar(); 93*500Sceastha /* 94*500Sceastha * If we encountered a backslash-escaped 95*500Sceastha * newline, and we're processing a continuation 96*500Sceastha * command, then continue processing until 97*500Sceastha * non-backslash-escaped newline is reached. 98*500Sceastha */ 99*500Sceastha if (contcmd && (c == '\n')) { 100*500Sceastha contread = 1; 101*500Sceastha } 102*500Sceastha } 1030Sstevel@tonic-gate default: 1040Sstevel@tonic-gate if (up >= (unsigned char *)&uxb[UXBSIZE]) { 1050Sstevel@tonic-gate tunix: 1060Sstevel@tonic-gate uxb[0] = 0; 1070Sstevel@tonic-gate error(gettext("Command too long")); 1080Sstevel@tonic-gate } 1090Sstevel@tonic-gate *up++ = c; 1100Sstevel@tonic-gate break; 1110Sstevel@tonic-gate 1120Sstevel@tonic-gate case '!': 1130Sstevel@tonic-gate if (up != (unsigned char *)uxb && *puxb != 0) { 1140Sstevel@tonic-gate fp = puxb; 1150Sstevel@tonic-gate if (*fp == 0) { 1160Sstevel@tonic-gate uxb[0] = 0; 1170Sstevel@tonic-gate error(value(vi_TERSE) ? 1180Sstevel@tonic-gate gettext("No previous command") : 1190Sstevel@tonic-gate gettext("No previous command to substitute for !")); 1200Sstevel@tonic-gate } 1210Sstevel@tonic-gate printub++; 1220Sstevel@tonic-gate while (*fp) { 1230Sstevel@tonic-gate if (up >= (unsigned char *)&uxb[UXBSIZE]) 1240Sstevel@tonic-gate goto tunix; 1250Sstevel@tonic-gate *up++ = *fp++; 1260Sstevel@tonic-gate } 1270Sstevel@tonic-gate } else if (up == (unsigned char *)uxb) { 1280Sstevel@tonic-gate /* If up = uxb it means we are on the first 1290Sstevel@tonic-gate * character inside the shell command. 1300Sstevel@tonic-gate * (i.e., after the ":!") 1310Sstevel@tonic-gate * 1320Sstevel@tonic-gate * The user has just entered ":!!" which 1330Sstevel@tonic-gate * means that though there is only technically 1340Sstevel@tonic-gate * one '!' we know he really meant ":!!!". So 1350Sstevel@tonic-gate * substitute the last command for him. 1360Sstevel@tonic-gate */ 1370Sstevel@tonic-gate fp = puxb; 1380Sstevel@tonic-gate if (*fp == 0) { 1390Sstevel@tonic-gate uxb[0] = 0; 1400Sstevel@tonic-gate error(value(vi_TERSE) ? 1410Sstevel@tonic-gate gettext("No previous command") : 1420Sstevel@tonic-gate gettext("No previous command to substitute for !")); 1430Sstevel@tonic-gate } 1440Sstevel@tonic-gate printub++; 1450Sstevel@tonic-gate while (*fp) { 1460Sstevel@tonic-gate if (up >= (unsigned char *)&uxb[UXBSIZE]) 1470Sstevel@tonic-gate goto tunix; 1480Sstevel@tonic-gate *up++ = *fp++; 1490Sstevel@tonic-gate } 1500Sstevel@tonic-gate } else { 1510Sstevel@tonic-gate /* 1520Sstevel@tonic-gate * Treat a lone "!" as just a regular character 1530Sstevel@tonic-gate * so commands like "mail machine!login" will 1540Sstevel@tonic-gate * work as usual (i.e., the user doesn't need 1550Sstevel@tonic-gate * to dereference the "!" with "\!"). 1560Sstevel@tonic-gate */ 1570Sstevel@tonic-gate if (up >= (unsigned char *)&uxb[UXBSIZE]) { 1580Sstevel@tonic-gate uxb[0] = 0; 1590Sstevel@tonic-gate error(gettext("Command too long")); 1600Sstevel@tonic-gate } 1610Sstevel@tonic-gate *up++ = c; 1620Sstevel@tonic-gate } 1630Sstevel@tonic-gate break; 1640Sstevel@tonic-gate 1650Sstevel@tonic-gate case '#': 1660Sstevel@tonic-gate fp = (unsigned char *)altfile; 1670Sstevel@tonic-gate if (*fp == 0) { 1680Sstevel@tonic-gate uxb[0] = 0; 1690Sstevel@tonic-gate error(value(vi_TERSE) ? 1700Sstevel@tonic-gate gettext("No alternate filename") : 1710Sstevel@tonic-gate gettext("No alternate filename to substitute for #")); 1720Sstevel@tonic-gate } 1730Sstevel@tonic-gate goto uexp; 1740Sstevel@tonic-gate 1750Sstevel@tonic-gate case '%': 1760Sstevel@tonic-gate fp = savedfile; 1770Sstevel@tonic-gate if (*fp == 0) { 1780Sstevel@tonic-gate uxb[0] = 0; 1790Sstevel@tonic-gate error(value(vi_TERSE) ? 1800Sstevel@tonic-gate gettext("No filename") : 1810Sstevel@tonic-gate gettext("No filename to substitute for %%")); 1820Sstevel@tonic-gate } 1830Sstevel@tonic-gate uexp: 1840Sstevel@tonic-gate printub++; 1850Sstevel@tonic-gate while (*fp) { 1860Sstevel@tonic-gate if (up >= (unsigned char *)&uxb[UXBSIZE]) 1870Sstevel@tonic-gate goto tunix; 1880Sstevel@tonic-gate *up++ = *fp++; 1890Sstevel@tonic-gate } 1900Sstevel@tonic-gate break; 1910Sstevel@tonic-gate } 1920Sstevel@tonic-gate 1930Sstevel@tonic-gate loop_check: 1940Sstevel@tonic-gate c = peekchar(); 195*500Sceastha if (c == '"' || c == '|' || (contread > 0) || !endcmd(c)) { 196*500Sceastha /* 197*500Sceastha * If contread was set, then the newline just 198*500Sceastha * processed was preceeded by a backslash, and 199*500Sceastha * not considered the end of the command. Reset 200*500Sceastha * it here in case another backslash-escaped 201*500Sceastha * newline is processed. 202*500Sceastha */ 203*500Sceastha contread = 0; 2040Sstevel@tonic-gate continue; 2050Sstevel@tonic-gate } else { 2060Sstevel@tonic-gate (void) getchar(); 2070Sstevel@tonic-gate break; 2080Sstevel@tonic-gate } 2090Sstevel@tonic-gate } 2100Sstevel@tonic-gate if (c == EOF) 2110Sstevel@tonic-gate ungetchar(c); 2120Sstevel@tonic-gate *up = 0; 2130Sstevel@tonic-gate if (!inopen) 2140Sstevel@tonic-gate resetflav(); 2150Sstevel@tonic-gate if (warn) 2160Sstevel@tonic-gate ckaw(); 2170Sstevel@tonic-gate if (warn && hush == 0 && chng && xchng != chng && value(vi_WARN) && dol > zero) { 2180Sstevel@tonic-gate xchng = chng; 2190Sstevel@tonic-gate vnfl(); 2200Sstevel@tonic-gate printf(mesg(value(vi_TERSE) ? gettext("[No write]") : 2210Sstevel@tonic-gate gettext("[No write since last change]"))); 2220Sstevel@tonic-gate noonl(); 2230Sstevel@tonic-gate flush(); 2240Sstevel@tonic-gate } else 2250Sstevel@tonic-gate warn = 0; 2260Sstevel@tonic-gate if (printub) { 2270Sstevel@tonic-gate if (uxb[0] == 0) 2280Sstevel@tonic-gate error(value(vi_TERSE) ? gettext("No previous command") : 2290Sstevel@tonic-gate gettext("No previous command to repeat")); 2300Sstevel@tonic-gate if (inopen) { 2310Sstevel@tonic-gate splitw++; 2320Sstevel@tonic-gate vclean(); 2330Sstevel@tonic-gate vgoto(WECHO, 0); 2340Sstevel@tonic-gate } 2350Sstevel@tonic-gate if (warn) 2360Sstevel@tonic-gate vnfl(); 2370Sstevel@tonic-gate if (hush == 0) 2380Sstevel@tonic-gate lprintf("!%s", uxb); 2390Sstevel@tonic-gate if (inopen && Outchar != termchar) { 2400Sstevel@tonic-gate vclreol(); 2410Sstevel@tonic-gate vgoto(WECHO, 0); 2420Sstevel@tonic-gate } else 2430Sstevel@tonic-gate putnl(); 2440Sstevel@tonic-gate flush(); 2450Sstevel@tonic-gate } 2460Sstevel@tonic-gate } 2470Sstevel@tonic-gate 2480Sstevel@tonic-gate /* 2490Sstevel@tonic-gate * Do the real work for execution of a shell escape. 2500Sstevel@tonic-gate * Mode is like the number passed to open system calls 2510Sstevel@tonic-gate * and indicates filtering. If input is implied, newstdin 2520Sstevel@tonic-gate * must have been setup already. 2530Sstevel@tonic-gate */ 2540Sstevel@tonic-gate ttymode 2550Sstevel@tonic-gate unixex(opt, up, newstdin, mode) 2560Sstevel@tonic-gate unsigned char *opt, *up; 2570Sstevel@tonic-gate int newstdin, mode; 2580Sstevel@tonic-gate { 2590Sstevel@tonic-gate int pvec[2]; 2600Sstevel@tonic-gate ttymode f; 2610Sstevel@tonic-gate 2620Sstevel@tonic-gate signal(SIGINT, SIG_IGN); 2630Sstevel@tonic-gate #ifdef SIGTSTP 2640Sstevel@tonic-gate if (dosusp) 2650Sstevel@tonic-gate signal(SIGTSTP, SIG_DFL); 2660Sstevel@tonic-gate #endif 2670Sstevel@tonic-gate if (inopen) 2680Sstevel@tonic-gate f = setty(normf); 2690Sstevel@tonic-gate if ((mode & 1) && pipe(pvec) < 0) { 2700Sstevel@tonic-gate /* Newstdin should be io so it will be closed */ 2710Sstevel@tonic-gate if (inopen) 2720Sstevel@tonic-gate setty(f); 2730Sstevel@tonic-gate error(gettext("Can't make pipe for filter")); 2740Sstevel@tonic-gate } 2750Sstevel@tonic-gate #ifndef VFORK 2760Sstevel@tonic-gate pid = fork(); 2770Sstevel@tonic-gate #else 2780Sstevel@tonic-gate pid = vfork(); 2790Sstevel@tonic-gate #endif 2800Sstevel@tonic-gate if (pid < 0) { 2810Sstevel@tonic-gate if (mode & 1) { 2820Sstevel@tonic-gate close(pvec[0]); 2830Sstevel@tonic-gate close(pvec[1]); 2840Sstevel@tonic-gate } 2850Sstevel@tonic-gate setrupt(); 2860Sstevel@tonic-gate if (inopen) 2870Sstevel@tonic-gate setty(f); 2880Sstevel@tonic-gate error(gettext("No more processes")); 2890Sstevel@tonic-gate } 2900Sstevel@tonic-gate if (pid == 0) { 2910Sstevel@tonic-gate if (mode & 2) { 2920Sstevel@tonic-gate close(0); 2930Sstevel@tonic-gate dup(newstdin); 2940Sstevel@tonic-gate close(newstdin); 2950Sstevel@tonic-gate } 2960Sstevel@tonic-gate if (mode & 1) { 2970Sstevel@tonic-gate close(pvec[0]); 2980Sstevel@tonic-gate close(1); 2990Sstevel@tonic-gate dup(pvec[1]); 3000Sstevel@tonic-gate if (inopen) { 3010Sstevel@tonic-gate close(2); 3020Sstevel@tonic-gate dup(1); 3030Sstevel@tonic-gate } 3040Sstevel@tonic-gate close(pvec[1]); 3050Sstevel@tonic-gate } 3060Sstevel@tonic-gate if (io) 3070Sstevel@tonic-gate close(io); 3080Sstevel@tonic-gate if (tfile) 3090Sstevel@tonic-gate close(tfile); 3100Sstevel@tonic-gate signal(SIGHUP, oldhup); 3110Sstevel@tonic-gate signal(SIGQUIT, oldquit); 3120Sstevel@tonic-gate if (ruptible) 3130Sstevel@tonic-gate signal(SIGINT, SIG_DFL); 3140Sstevel@tonic-gate execlp(svalue(vi_SHELL), svalue(vi_SHELL), opt, up, (char *) 0); 3150Sstevel@tonic-gate printf(gettext("Invalid SHELL value: %s\n"), svalue(vi_SHELL)); 3160Sstevel@tonic-gate flush(); 3170Sstevel@tonic-gate error(NOSTR); 3180Sstevel@tonic-gate } 3190Sstevel@tonic-gate if (mode & 1) { 3200Sstevel@tonic-gate io = pvec[0]; 3210Sstevel@tonic-gate close(pvec[1]); 3220Sstevel@tonic-gate } 3230Sstevel@tonic-gate if (newstdin) 3240Sstevel@tonic-gate close(newstdin); 3250Sstevel@tonic-gate return (f); 3260Sstevel@tonic-gate } 3270Sstevel@tonic-gate 3280Sstevel@tonic-gate /* 3290Sstevel@tonic-gate * Wait for the command to complete. 3300Sstevel@tonic-gate * F is for restoration of tty mode if from open/visual. 3310Sstevel@tonic-gate * C flags suppression of printing. 3320Sstevel@tonic-gate */ 3330Sstevel@tonic-gate unixwt(c, f) 3340Sstevel@tonic-gate bool c; 3350Sstevel@tonic-gate ttymode f; 3360Sstevel@tonic-gate { 3370Sstevel@tonic-gate 3380Sstevel@tonic-gate waitfor(); 3390Sstevel@tonic-gate #ifdef SIGTSTP 3400Sstevel@tonic-gate if (dosusp) 3410Sstevel@tonic-gate signal(SIGTSTP, onsusp); 3420Sstevel@tonic-gate #endif 3430Sstevel@tonic-gate if (inopen) 3440Sstevel@tonic-gate setty(f); 3450Sstevel@tonic-gate setrupt(); 3460Sstevel@tonic-gate if (!inopen && c && hush == 0) { 3470Sstevel@tonic-gate printf("!\n"); 3480Sstevel@tonic-gate flush(); 3490Sstevel@tonic-gate termreset(); 3500Sstevel@tonic-gate gettmode(); 3510Sstevel@tonic-gate } 3520Sstevel@tonic-gate } 3530Sstevel@tonic-gate 3540Sstevel@tonic-gate /* 3550Sstevel@tonic-gate * Setup a pipeline for the filtration implied by mode 3560Sstevel@tonic-gate * which is like a open number. If input is required to 3570Sstevel@tonic-gate * the filter, then a child editor is created to write it. 3580Sstevel@tonic-gate * If output is catch it from io which is created by unixex. 3590Sstevel@tonic-gate */ 3600Sstevel@tonic-gate vi_filter(mode) 3610Sstevel@tonic-gate register int mode; 3620Sstevel@tonic-gate { 3630Sstevel@tonic-gate static int pvec[2]; 3640Sstevel@tonic-gate ttymode f; /* was register */ 3650Sstevel@tonic-gate register int nlines = lineDOL(); 3660Sstevel@tonic-gate int status2; 3670Sstevel@tonic-gate pid_t pid2 = 0; 3680Sstevel@tonic-gate 3690Sstevel@tonic-gate mode++; 3700Sstevel@tonic-gate if (mode & 2) { 3710Sstevel@tonic-gate signal(SIGINT, SIG_IGN); 3720Sstevel@tonic-gate signal(SIGPIPE, SIG_IGN); 3730Sstevel@tonic-gate if (pipe(pvec) < 0) 3740Sstevel@tonic-gate error(gettext("Can't make pipe")); 3750Sstevel@tonic-gate pid2 = fork(); 3760Sstevel@tonic-gate io = pvec[0]; 3770Sstevel@tonic-gate if (pid < 0) { 3780Sstevel@tonic-gate setrupt(); 3790Sstevel@tonic-gate close(pvec[1]); 3800Sstevel@tonic-gate error(gettext("No more processes")); 3810Sstevel@tonic-gate } 3820Sstevel@tonic-gate if (pid2 == 0) { 3830Sstevel@tonic-gate extern unsigned char tfname[]; 3840Sstevel@tonic-gate setrupt(); 3850Sstevel@tonic-gate io = pvec[1]; 3860Sstevel@tonic-gate close(pvec[0]); 3870Sstevel@tonic-gate 3880Sstevel@tonic-gate /* To prevent seeking in this process and the 3890Sstevel@tonic-gate parent, we must reopen tfile here */ 3900Sstevel@tonic-gate close(tfile); 3910Sstevel@tonic-gate tfile = open(tfname, 2); 3920Sstevel@tonic-gate 3930Sstevel@tonic-gate putfile(1); 3940Sstevel@tonic-gate exit(errcnt); 3950Sstevel@tonic-gate } 3960Sstevel@tonic-gate close(pvec[1]); 3970Sstevel@tonic-gate io = pvec[0]; 3980Sstevel@tonic-gate setrupt(); 3990Sstevel@tonic-gate } 4000Sstevel@tonic-gate f = unixex("-c", uxb, (mode & 2) ? pvec[0] : 0, mode); 4010Sstevel@tonic-gate if (mode == 3) { 4020Sstevel@tonic-gate delete(0); 4030Sstevel@tonic-gate addr2 = addr1 - 1; 4040Sstevel@tonic-gate } 4050Sstevel@tonic-gate if (mode == 1) 4060Sstevel@tonic-gate deletenone(); 4070Sstevel@tonic-gate if (mode & 1) { 4080Sstevel@tonic-gate if(FIXUNDO) 4090Sstevel@tonic-gate undap1 = undap2 = addr2+1; 4100Sstevel@tonic-gate (void)append(getfile, addr2); 4110Sstevel@tonic-gate #ifdef UNDOTRACE 4120Sstevel@tonic-gate if (trace) 4130Sstevel@tonic-gate vudump(gettext("after append in filter")); 4140Sstevel@tonic-gate #endif 4150Sstevel@tonic-gate } 4160Sstevel@tonic-gate close(io); 4170Sstevel@tonic-gate io = -1; 4180Sstevel@tonic-gate unixwt(!inopen, f); 4190Sstevel@tonic-gate if (pid2) { 4200Sstevel@tonic-gate (void)kill(pid2, 9); 4210Sstevel@tonic-gate do 4220Sstevel@tonic-gate rpid = waitpid(pid2, &status2, 0); 4230Sstevel@tonic-gate while (rpid == (pid_t)-1 && errno == EINTR); 4240Sstevel@tonic-gate } 4250Sstevel@tonic-gate netchHAD(nlines); 4260Sstevel@tonic-gate } 4270Sstevel@tonic-gate 4280Sstevel@tonic-gate /* 4290Sstevel@tonic-gate * Set up to do a recover, getting io to be a pipe from 4300Sstevel@tonic-gate * the recover process. 4310Sstevel@tonic-gate */ 4320Sstevel@tonic-gate recover() 4330Sstevel@tonic-gate { 4340Sstevel@tonic-gate static int pvec[2]; 4350Sstevel@tonic-gate 4360Sstevel@tonic-gate if (pipe(pvec) < 0) 4370Sstevel@tonic-gate error(gettext(" Can't make pipe for recovery")); 4380Sstevel@tonic-gate pid = fork(); 4390Sstevel@tonic-gate io = pvec[0]; 4400Sstevel@tonic-gate if (pid < 0) { 4410Sstevel@tonic-gate close(pvec[1]); 4420Sstevel@tonic-gate error(gettext(" Can't fork to execute recovery")); 4430Sstevel@tonic-gate } 4440Sstevel@tonic-gate if (pid == 0) { 4450Sstevel@tonic-gate unsigned char cryptkey[19]; 4460Sstevel@tonic-gate close(2); 4470Sstevel@tonic-gate dup(1); 4480Sstevel@tonic-gate close(1); 4490Sstevel@tonic-gate dup(pvec[1]); 4500Sstevel@tonic-gate close(pvec[1]); 4510Sstevel@tonic-gate if(xflag) { 4520Sstevel@tonic-gate strcpy(cryptkey, "CrYpTkEy=XXXXXXXXX"); 4530Sstevel@tonic-gate strcpy(cryptkey + 9, key); 4540Sstevel@tonic-gate if(putenv((char *)cryptkey) != 0) 4550Sstevel@tonic-gate smerror(gettext(" Cannot copy key to environment")); 4560Sstevel@tonic-gate execlp(EXRECOVER, "exrecover", "-x", svalue(vi_DIRECTORY), file, (char *) 0); 4570Sstevel@tonic-gate } else 4580Sstevel@tonic-gate execlp(EXRECOVER, "exrecover", svalue(vi_DIRECTORY), file, (char *) 0); 4590Sstevel@tonic-gate close(1); 4600Sstevel@tonic-gate dup(2); 4610Sstevel@tonic-gate error(gettext(" No recovery routine")); 4620Sstevel@tonic-gate } 4630Sstevel@tonic-gate close(pvec[1]); 4640Sstevel@tonic-gate } 4650Sstevel@tonic-gate 4660Sstevel@tonic-gate /* 4670Sstevel@tonic-gate * Wait for the process (pid an external) to complete. 4680Sstevel@tonic-gate */ 4690Sstevel@tonic-gate waitfor() 4700Sstevel@tonic-gate { 4710Sstevel@tonic-gate 4720Sstevel@tonic-gate do 4730Sstevel@tonic-gate rpid = waitpid(pid, &status, 0); 4740Sstevel@tonic-gate while (rpid == (pid_t)-1 && errno != ECHILD); 4750Sstevel@tonic-gate if ((status & 0377) == 0) 4760Sstevel@tonic-gate status = (status >> 8) & 0377; 4770Sstevel@tonic-gate else { 4780Sstevel@tonic-gate /* 4790Sstevel@tonic-gate * TRANSLATION_NOTE 4800Sstevel@tonic-gate * Reference order of arguments must not 4810Sstevel@tonic-gate * be changed using '%digit$', since vi's 4820Sstevel@tonic-gate * printf() does not support it. 4830Sstevel@tonic-gate */ 4840Sstevel@tonic-gate printf(gettext("%d: terminated with signal %d"), pid, status & 0177); 4850Sstevel@tonic-gate if (status & 0200) 4860Sstevel@tonic-gate printf(gettext(" -- core dumped")); 4870Sstevel@tonic-gate putchar('\n'); 4880Sstevel@tonic-gate } 4890Sstevel@tonic-gate } 4900Sstevel@tonic-gate 4910Sstevel@tonic-gate /* 4920Sstevel@tonic-gate * The end of a recover operation. If the process 4930Sstevel@tonic-gate * exits non-zero, force not edited; otherwise force 4940Sstevel@tonic-gate * a write. 4950Sstevel@tonic-gate */ 4960Sstevel@tonic-gate revocer() 4970Sstevel@tonic-gate { 4980Sstevel@tonic-gate 4990Sstevel@tonic-gate waitfor(); 5000Sstevel@tonic-gate if (pid == rpid && status != 0) 5010Sstevel@tonic-gate edited = 0; 5020Sstevel@tonic-gate else 5030Sstevel@tonic-gate change(); 5040Sstevel@tonic-gate } 505