1 /* $NetBSD: main.c,v 1.21 2009/06/10 03:24:27 ginsbach Exp $ */
3 /* main.c: This file contains the main control and user-interface routines
4 for the ed line editor. */
6 * Copyright (c) 1993 Andrew Moore, Talke Studio.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 #include <sys/cdefs.h>
34 "@(#) Copyright (c) 1993 Andrew Moore, Talke Studio.\
35 All rights reserved.");
40 static char *rcsid
= "@(#)main.c,v 1.1 1994/02/01 00:34:42 alm Exp";
42 __RCSID("$NetBSD: main.c,v 1.21 2009/06/10 03:24:27 ginsbach Exp $");
49 * This program is based on the editor algorithm described in
50 * Brian W. Kernighan and P. J. Plauger's book "Software Tools
51 * in Pascal," Addison-Wesley, 1981.
53 * The buffering algorithm is attributed to Rodney Ruddock of
54 * the University of Guelph, Guelph, Ontario.
56 * The cbc.c encryption code is adapted from
57 * the bdes program by Matt Bishop of Dartmouth College,
62 #include <sys/ioctl.h>
79 char stdinbuf
[1]; /* stdin buffer */
80 char *shcmd
; /* shell command buffer */
81 int shcmdsz
; /* shell command buffer size */
82 int shcmdi
; /* shell command buffer index */
83 char *ibuf
; /* ed command-line buffer */
84 int ibufsz
; /* ed command-line buffer size */
85 char *ibufp
; /* pointer to ed command-line buffer */
88 int des
= 0; /* if set, use crypt(3) for i/o */
89 int garrulous
= 0; /* if set, print all error messages */
90 int isbinary
; /* if set, buffer contains ASCII NULs */
91 int isglobal
; /* if set, doing a global command */
92 int modified
; /* if set, buffer modified since last write */
93 int mutex
= 0; /* if set, signals set "sigflags" */
94 int red
= 0; /* if set, restrict shell/directory access */
95 int ere
= 0; /* if set, use extended regexes */
96 int scripted
= 0; /* if set, suppress diagnostics */
97 int sigflags
= 0; /* if set, signals received while mutex set */
98 int sigactive
= 0; /* if set, signal handlers are enabled */
100 char old_filename
[MAXPATHLEN
+ 1] = ""; /* default filename */
101 long current_addr
; /* current address in editor buffer */
102 long addr_last
; /* last address in editor buffer */
103 int lineno
; /* script line number */
104 const char *prompt
; /* command-line prompt */
105 const char *dps
= "*"; /* default command-line prompt */
107 const char *usage
= "usage: %s [-] [-sxE] [-p string] [name]\n";
109 /* ed: line editor */
111 main(int ac
, char *av
[])
115 volatile int argc
= ac
;
116 char ** volatile argv
= av
;
118 red
= (n
= strlen(argv
[0])) > 2 && argv
[0][n
- 3] == 'r';
120 while ((c
= getopt(argc
, argv
, "p:sxE")) != -1)
122 case 'p': /* set prompt */
125 case 's': /* run script */
128 case 'x': /* use crypt */
132 fprintf(stderr
, "crypt unavailable\n?\n");
140 fprintf(stderr
, usage
, argv
[0]);
146 if (argc
&& **argv
== '-') {
155 /* assert: reliable signals! */
157 handle_winch(SIGWINCH
);
158 if (isatty(0)) signal(SIGWINCH
, handle_winch
);
160 signal(SIGHUP
, signal_hup
);
161 signal(SIGQUIT
, SIG_IGN
);
162 signal(SIGINT
, signal_int
);
164 if ((status
= sigsetjmp(env
, 1)) != 0)
166 if ((status
= setjmp(env
)) != 0)
169 fputs("\n?\n", stderr
);
170 sprintf(errmsg
, "interrupt");
173 sigactive
= 1; /* enable signal handlers */
174 if (argc
&& **argv
&& is_legal_filename(*argv
)) {
175 if (read_file(*argv
, 0) < 0 && !isatty(0))
177 else if (**argv
!= '!')
178 strlcpy(old_filename
, *argv
,
179 sizeof(old_filename
) - 2);
181 fputs("?\n", stderr
);
183 sprintf(errmsg
, "invalid filename");
189 if (status
< 0 && garrulous
)
190 fprintf(stderr
, "%s\n", errmsg
);
192 printf("%s", prompt
);
195 if ((n
= get_tty_line()) < 0) {
199 if (modified
&& !scripted
) {
200 fputs("?\n", stderr
);
201 sprintf(errmsg
, "warning: file modified");
203 fprintf(stderr
, garrulous
?
204 "script, line %d: %s\n" :
214 } else if (ibuf
[n
- 1] != '\n') {
216 sprintf(errmsg
, "unexpected end-of-file");
222 if ((status
= extract_addr_range()) >= 0 &&
223 (status
= exec_command()) >= 0)
224 if (!status
|| (status
&&
225 (status
= display_lines(current_addr
, current_addr
,
233 fputs("?\n", stderr
); /* give warning */
234 sprintf(errmsg
, "warning: file modified");
236 fprintf(stderr
, garrulous
?
237 "script, line %d: %s\n" :
244 fprintf(stderr
, garrulous
?
245 "script, line %d: %s\n" : "",
248 fprintf(stderr
, garrulous
? "%s\n" : "",
252 fputs("?\n", stderr
);
254 fprintf(stderr
, garrulous
?
255 "script, line %d: %s\n" : "",
265 long first_addr
, second_addr
, addr_cnt
;
267 /* extract_addr_range: get line addresses from the command buffer until an
268 illegal address is seen; return status */
270 extract_addr_range(void)
275 first_addr
= second_addr
= current_addr
;
276 while ((addr
= next_addr()) >= 0) {
278 first_addr
= second_addr
;
280 if (*ibufp
!= ',' && *ibufp
!= ';')
282 else if (*ibufp
++ == ';')
285 if ((addr_cnt
= min(addr_cnt
, 2)) == 1 || second_addr
!= addr
)
286 first_addr
= second_addr
;
287 return (addr
== ERR
) ? ERR
: 0;
291 #define SKIP_BLANKS() while (isspace((unsigned char)*ibufp) && *ibufp != '\n') \
294 #define MUST_BE_FIRST() \
295 if (!first) { sprintf(errmsg, "invalid address"); return ERR; }
297 /* next_addr: return the next line address in the command buffer */
302 long addr
= current_addr
;
308 for (hd
= ibufp
;; first
= 0)
309 switch (c
= *ibufp
) {
317 if (isdigit((unsigned char)*ibufp
)) {
319 addr
+= (c
== '-' || c
== '^') ? -n
: n
;
320 } else if (!isspace((unsigned char)c
))
321 addr
+= (c
== '-' || c
== '^') ? -1 : 1;
323 case '0': case '1': case '2':
324 case '3': case '4': case '5':
325 case '6': case '7': case '8': case '9':
333 addr
= (c
== '.') ? current_addr
: addr_last
;
338 if ((addr
= get_matching_node_addr(
339 get_compiled_pattern(), c
== '/')) < 0)
341 else if (c
== *ibufp
)
347 if ((addr
= get_marked_node_addr((unsigned char)*ibufp
++)) < 0)
356 second_addr
= (c
== ';') ? current_addr
: 1;
364 else if (addr
< 0 || addr_last
< addr
) {
365 sprintf(errmsg
, "invalid address");
375 /* GET_THIRD_ADDR: get a legal address from the command buffer */
376 #define GET_THIRD_ADDR(addr) \
380 ol1 = first_addr, ol2 = second_addr; \
381 if (extract_addr_range() < 0) \
383 else if (addr_cnt == 0) { \
384 sprintf(errmsg, "destination expected"); \
386 } else if (second_addr < 0 || addr_last < second_addr) { \
387 sprintf(errmsg, "invalid address"); \
390 addr = second_addr; \
391 first_addr = ol1, second_addr = ol2; \
393 #else /* BACKWARDS */
394 /* GET_THIRD_ADDR: get a legal address from the command buffer */
395 #define GET_THIRD_ADDR(addr) \
399 ol1 = first_addr, ol2 = second_addr; \
400 if (extract_addr_range() < 0) \
402 if (second_addr < 0 || addr_last < second_addr) { \
403 sprintf(errmsg, "invalid address"); \
406 addr = second_addr; \
407 first_addr = ol1, second_addr = ol2; \
412 /* GET_COMMAND_SUFFIX: verify the command suffix in the command buffer */
413 #define GET_COMMAND_SUFFIX() { \
418 gflag |= GPR, ibufp++; \
421 gflag |= GLS, ibufp++; \
424 gflag |= GNP, ibufp++; \
430 if (*ibufp++ != '\n') { \
431 sprintf(errmsg, "invalid command suffix"); \
438 #define SGG 001 /* complement previous global substitute suffix */
439 #define SGP 002 /* complement previous print suffix */
440 #define SGR 004 /* use last regex instead of last pat */
441 #define SGF 010 /* repeat last substitution */
443 int patlock
= 0; /* if set, pattern not freed by get_compiled_pattern() */
445 long rows
= 22; /* scroll length: ws_row - 2 */
447 /* exec_command: execute the next command in command buffer; return print
452 static pattern_t
*pat
= NULL
;
453 static int sgflag
= 0;
454 static long sgnum
= 0;
465 switch(c
= *ibufp
++) {
467 GET_COMMAND_SUFFIX();
468 if (!isglobal
) clear_undo_stack();
469 if (append_lines(second_addr
) < 0)
473 if (check_addr_range(current_addr
, current_addr
) < 0)
475 GET_COMMAND_SUFFIX();
476 if (!isglobal
) clear_undo_stack();
477 if (delete_lines(first_addr
, second_addr
) < 0 ||
478 append_lines(current_addr
) < 0)
482 if (check_addr_range(current_addr
, current_addr
) < 0)
484 GET_COMMAND_SUFFIX();
485 if (!isglobal
) clear_undo_stack();
486 if (delete_lines(first_addr
, second_addr
) < 0)
488 else if ((addr
= INC_MOD(current_addr
, addr_last
)) != 0)
492 if (modified
&& !scripted
)
497 sprintf(errmsg
, "unexpected address");
499 } else if (!isspace((unsigned char)*ibufp
)) {
500 sprintf(errmsg
, "unexpected command suffix");
502 } else if ((fnp
= get_filename()) == NULL
)
504 GET_COMMAND_SUFFIX();
505 if (delete_lines(1, addr_last
) < 0)
508 if (close_sbuf() < 0)
510 else if (open_sbuf() < 0)
512 if (*fnp
&& *fnp
!= '!') strlcpy(old_filename
, fnp
,
513 sizeof(old_filename
) - 2);
515 if (*fnp
== '\0' && *old_filename
== '\0') {
516 sprintf(errmsg
, "no current filename");
520 if (read_file(*fnp
? fnp
: old_filename
, 0) < 0)
524 u_current_addr
= u_addr_last
= -1;
528 sprintf(errmsg
, "unexpected address");
530 } else if (!isspace((unsigned char)*ibufp
)) {
531 sprintf(errmsg
, "unexpected command suffix");
533 } else if ((fnp
= get_filename()) == NULL
)
535 else if (*fnp
== '!') {
536 sprintf(errmsg
, "invalid redirection");
539 GET_COMMAND_SUFFIX();
540 if (*fnp
) strlcpy(old_filename
, fnp
, sizeof(old_filename
) - 2);
541 printf("%s\n", strip_escapes(old_filename
));
548 sprintf(errmsg
, "cannot nest global commands");
550 } else if (check_addr_range(1, addr_last
) < 0)
552 else if (build_active_list(c
== 'g' || c
== 'G') < 0)
554 else if ((n
= (c
== 'G' || c
== 'V')) != 0)
555 GET_COMMAND_SUFFIX();
557 if (exec_global(n
, gflag
) < 0)
562 sprintf(errmsg
, "unexpected address");
565 GET_COMMAND_SUFFIX();
566 if (*errmsg
) fprintf(stderr
, "%s\n", errmsg
);
570 sprintf(errmsg
, "unexpected address");
573 GET_COMMAND_SUFFIX();
574 if ((garrulous
= 1 - garrulous
) && *errmsg
)
575 fprintf(stderr
, "%s\n", errmsg
);
578 if (second_addr
== 0) {
579 sprintf(errmsg
, "invalid address");
582 GET_COMMAND_SUFFIX();
583 if (!isglobal
) clear_undo_stack();
584 if (append_lines(second_addr
- 1) < 0)
588 if (check_addr_range(current_addr
, current_addr
+ 1) < 0)
590 GET_COMMAND_SUFFIX();
591 if (!isglobal
) clear_undo_stack();
592 if (first_addr
!= second_addr
&&
593 join_lines(first_addr
, second_addr
) < 0)
598 if (second_addr
== 0) {
599 sprintf(errmsg
, "invalid address");
602 GET_COMMAND_SUFFIX();
603 if (mark_line_node(get_addressed_line_node(second_addr
), (unsigned char)c
) < 0)
607 if (check_addr_range(current_addr
, current_addr
) < 0)
609 GET_COMMAND_SUFFIX();
610 if (display_lines(first_addr
, second_addr
, gflag
| GLS
) < 0)
615 if (check_addr_range(current_addr
, current_addr
) < 0)
617 GET_THIRD_ADDR(addr
);
618 if (first_addr
<= addr
&& addr
< second_addr
) {
619 sprintf(errmsg
, "invalid destination");
622 GET_COMMAND_SUFFIX();
623 if (!isglobal
) clear_undo_stack();
624 if (move_lines(addr
) < 0)
628 if (check_addr_range(current_addr
, current_addr
) < 0)
630 GET_COMMAND_SUFFIX();
631 if (display_lines(first_addr
, second_addr
, gflag
| GNP
) < 0)
636 if (check_addr_range(current_addr
, current_addr
) < 0)
638 GET_COMMAND_SUFFIX();
639 if (display_lines(first_addr
, second_addr
, gflag
| GPR
) < 0)
645 sprintf(errmsg
, "unexpected address");
648 GET_COMMAND_SUFFIX();
649 prompt
= prompt
? NULL
: optarg
? optarg
: dps
;
654 sprintf(errmsg
, "unexpected address");
657 GET_COMMAND_SUFFIX();
658 gflag
= (modified
&& !scripted
&& c
== 'q') ? EMOD
: EOF
;
661 if (!isspace((unsigned char)*ibufp
)) {
662 sprintf(errmsg
, "unexpected command suffix");
664 } else if (addr_cnt
== 0)
665 second_addr
= addr_last
;
666 if ((fnp
= get_filename()) == NULL
)
668 GET_COMMAND_SUFFIX();
669 if (!isglobal
) clear_undo_stack();
670 if (*old_filename
== '\0' && *fnp
!= '!')
671 strlcpy(old_filename
, fnp
, sizeof(old_filename
) - 2);
673 if (*fnp
== '\0' && *old_filename
== '\0') {
674 sprintf(errmsg
, "no current filename");
678 if ((addr
= read_file(*fnp
? fnp
: old_filename
, second_addr
)) < 0)
680 else if (addr
&& addr
!= addr_last
)
701 case '0': case '1': case '2': case '3': case '4':
702 case '5': case '6': case '7': case '8': case '9':
703 STRTOL(sgnum
, ibufp
);
705 sgflag
&= ~GSG
; /* override GSG */
709 sprintf(errmsg
, "invalid command suffix");
713 } while (sflags
&& *ibufp
!= '\n');
714 if (sflags
&& !pat
) {
715 sprintf(errmsg
, "no previous substitution");
717 } else if (sflags
& SGG
)
718 sgnum
= 0; /* override numeric arg */
719 if (*ibufp
!= '\n' && *(ibufp
+ 1) == '\n') {
720 sprintf(errmsg
, "invalid pattern delimiter");
725 if ((!sflags
|| (sflags
& SGR
)) &&
726 (tpat
= get_compiled_pattern()) == NULL
) {
729 } else if (tpat
!= pat
) {
735 patlock
= 1; /* reserve pattern */
738 if (!sflags
&& extract_subst_tail(&sgflag
, &sgnum
) < 0)
747 sgflag
^= GPR
, sgflag
&= ~(GLS
| GNP
);
751 sgflag
|= GPR
, ibufp
++;
754 sgflag
|= GLS
, ibufp
++;
757 sgflag
|= GNP
, ibufp
++;
763 if (check_addr_range(current_addr
, current_addr
) < 0)
765 GET_COMMAND_SUFFIX();
766 if (!isglobal
) clear_undo_stack();
767 if (search_and_replace(pat
, sgflag
, sgnum
) < 0)
771 if (check_addr_range(current_addr
, current_addr
) < 0)
773 GET_THIRD_ADDR(addr
);
774 GET_COMMAND_SUFFIX();
775 if (!isglobal
) clear_undo_stack();
776 if (copy_lines(addr
) < 0)
781 sprintf(errmsg
, "unexpected address");
784 GET_COMMAND_SUFFIX();
785 if (pop_undo_stack() < 0)
790 if ((n
= *ibufp
) == 'q' || n
== 'Q') {
794 if (!isspace((unsigned char)*ibufp
)) {
795 sprintf(errmsg
, "unexpected command suffix");
797 } else if ((fnp
= get_filename()) == NULL
)
799 if (addr_cnt
== 0 && !addr_last
)
800 first_addr
= second_addr
= 0;
801 else if (check_addr_range(1, addr_last
) < 0)
803 GET_COMMAND_SUFFIX();
804 if (*old_filename
== '\0' && *fnp
!= '!')
805 strlcpy(old_filename
, fnp
, sizeof(old_filename
) - 2);
807 if (*fnp
== '\0' && *old_filename
== '\0') {
808 sprintf(errmsg
, "no current filename");
812 if ((addr
= write_file(*fnp
? fnp
: old_filename
,
813 (c
== 'W') ? "a" : "w", first_addr
, second_addr
)) < 0)
815 else if (addr
== addr_last
)
817 else if (modified
&& !scripted
&& n
== 'q')
822 sprintf(errmsg
, "unexpected address");
825 GET_COMMAND_SUFFIX();
829 sprintf(errmsg
, "crypt unavailable");
835 if (check_addr_range(first_addr
= 1, current_addr
+ 1) < 0)
837 if (check_addr_range(first_addr
= 1, current_addr
+ !isglobal
) < 0)
840 else if ('0' < *ibufp
&& *ibufp
<= '9')
842 GET_COMMAND_SUFFIX();
843 if (display_lines(second_addr
, min(addr_last
,
844 second_addr
+ rows
), gflag
) < 0)
849 GET_COMMAND_SUFFIX();
850 printf("%ld\n", addr_cnt
? second_addr
: addr_last
);
854 sprintf(errmsg
, "unexpected address");
856 } else if ((sflags
= get_shell_command()) < 0)
858 GET_COMMAND_SUFFIX();
859 if (sflags
) printf("%s\n", shcmd
+ 1);
861 if (!scripted
) printf("!\n");
865 if (check_addr_range(first_addr
= 1, current_addr
+ 1) < 0
867 if (check_addr_range(first_addr
= 1, current_addr
+ !isglobal
) < 0
869 || display_lines(second_addr
, second_addr
, 0) < 0)
873 sprintf(errmsg
, "unknown command");
880 /* check_addr_range: return status of address range check */
882 check_addr_range(long n
, long m
)
888 if (first_addr
> second_addr
|| 1 > first_addr
||
889 second_addr
> addr_last
) {
890 sprintf(errmsg
, "invalid address");
897 /* get_matching_node_addr: return the address of the next line matching a
898 pattern in a given direction. wrap around begin/end of editor buffer if
901 get_matching_node_addr(pattern_t
*pat
, int dir
)
904 long n
= current_addr
;
907 if (!pat
) return ERR
;
909 if ((n
= dir
? INC_MOD(n
, addr_last
) :
910 DEC_MOD(n
, addr_last
)) != 0) {
911 lp
= get_addressed_line_node(n
);
912 if ((s
= get_sbuf_line(lp
)) == NULL
)
915 NUL_TO_NEWLINE(s
, lp
->len
);
916 if (!regexec(pat
, s
, 0, NULL
, 0))
919 } while (n
!= current_addr
);
920 sprintf(errmsg
, "no match");
925 /* get_filename: return pointer to copy of filename in the command buffer */
929 static char *file
= NULL
;
930 static int filesz
= 0;
934 if (*ibufp
!= '\n') {
936 if (*ibufp
== '\n') {
937 sprintf(errmsg
, "invalid filename");
939 } else if ((ibufp
= get_extended_line(&n
, 1)) == NULL
)
941 else if (*ibufp
== '!') {
943 if ((n
= get_shell_command()) < 0)
945 if (n
) printf("%s\n", shcmd
+ 1);
947 } else if (n
- 1 > MAXPATHLEN
) {
948 sprintf(errmsg
, "filename too long");
953 else if (*old_filename
== '\0') {
954 sprintf(errmsg
, "no current filename");
958 REALLOC(file
, filesz
, MAXPATHLEN
+ 1, NULL
);
959 for (n
= 0; *ibufp
!= '\n';)
960 file
[n
++] = *ibufp
++;
962 return is_legal_filename(file
) ? file
: NULL
;
966 /* get_shell_command: read a shell command from stdin; return substitution
969 get_shell_command(void)
971 static char *buf
= NULL
;
974 char *s
; /* substitution char pointer */
979 sprintf(errmsg
, "shell access restricted");
981 } else if ((s
= ibufp
= get_extended_line(&j
, 1)) == NULL
)
983 REALLOC(buf
, n
, j
+ 1, ERR
);
984 buf
[i
++] = '!'; /* prefix command w/ bang */
985 while (*ibufp
!= '\n')
988 REALLOC(buf
, n
, i
+ 2, ERR
);
990 if (*ibufp
++ == '\\')
995 REALLOC(buf
, n
, i
+ 1, ERR
);
999 else if (shcmd
== NULL
|| *(shcmd
+ 1) == '\0')
1001 else if (shcmd
== NULL
)
1004 sprintf(errmsg
, "no previous command");
1007 REALLOC(buf
, n
, i
+ shcmdi
, ERR
);
1008 for (s
= shcmd
+ 1; s
< shcmd
+ shcmdi
;)
1014 if (*old_filename
== '\0') {
1015 sprintf(errmsg
, "no current filename");
1018 j
= strlen(s
= strip_escapes(old_filename
));
1019 REALLOC(buf
, n
, i
+ j
, ERR
);
1025 REALLOC(shcmd
, shcmdsz
, i
+ 1, ERR
);
1026 memcpy(shcmd
, buf
, i
);
1027 shcmd
[shcmdi
= i
] = '\0';
1028 return *s
== '!' || *s
== '%';
1032 /* append_lines: insert text from stdin to after line n; stop when either a
1033 single period is read or EOF; return status */
1035 append_lines(long n
)
1042 for (current_addr
= n
;;) {
1044 if ((l
= get_tty_line()) < 0)
1046 else if (l
== 0 || ibuf
[l
- 1] != '\n') {
1051 } else if (*(lp
= ibufp
) == '\0')
1054 while (*ibufp
++ != '\n')
1058 if (l
== 2 && lp
[0] == '.' && lp
[1] == '\n') {
1064 if ((lp
= put_sbuf_line(lp
)) == NULL
) {
1068 up
->t
= get_addressed_line_node(current_addr
);
1069 else if ((up
= push_undo_stack(UADD
, current_addr
,
1070 current_addr
)) == NULL
) {
1074 } while (lp
!= eot
);
1082 /* join_lines: replace a range of lines with the joined text of those lines */
1084 join_lines(long from
, long to
)
1086 static char *buf
= NULL
;
1093 ep
= get_addressed_line_node(INC_MOD(to
, addr_last
));
1094 bp
= get_addressed_line_node(from
);
1095 for (; bp
!= ep
; bp
= bp
->q_forw
) {
1096 if ((s
= get_sbuf_line(bp
)) == NULL
)
1098 REALLOC(buf
, n
, size
+ bp
->len
, ERR
);
1099 memcpy(buf
+ size
, s
, bp
->len
);
1102 REALLOC(buf
, n
, size
+ 2, ERR
);
1103 memcpy(buf
+ size
, "\n", 2);
1104 if (delete_lines(from
, to
) < 0)
1106 current_addr
= from
- 1;
1108 if (put_sbuf_line(buf
) == NULL
||
1109 push_undo_stack(UADD
, current_addr
, current_addr
) == NULL
) {
1119 /* move_lines: move a range of lines */
1121 move_lines(long addr
)
1123 line_t
*b1
, *a1
, *b2
, *a2
;
1124 long n
= INC_MOD(second_addr
, addr_last
);
1125 long p
= first_addr
- 1;
1126 int done
= (addr
== first_addr
- 1 || addr
== second_addr
);
1130 a2
= get_addressed_line_node(n
);
1131 b2
= get_addressed_line_node(p
);
1132 current_addr
= second_addr
;
1133 } else if (push_undo_stack(UMOV
, p
, n
) == NULL
||
1134 push_undo_stack(UMOV
, addr
, INC_MOD(addr
, addr_last
)) == NULL
) {
1138 a1
= get_addressed_line_node(n
);
1139 if (addr
< first_addr
) {
1140 b1
= get_addressed_line_node(p
);
1141 b2
= get_addressed_line_node(addr
);
1142 /* this get_addressed_line_node last! */
1144 b2
= get_addressed_line_node(addr
);
1145 b1
= get_addressed_line_node(p
);
1146 /* this get_addressed_line_node last! */
1149 REQUE(b2
, b1
->q_forw
);
1150 REQUE(a1
->q_back
, a2
);
1152 current_addr
= addr
+ ((addr
< first_addr
) ?
1153 second_addr
- first_addr
+ 1 : 0);
1156 unset_active_nodes(b2
->q_forw
, a2
);
1163 /* copy_lines: copy a range of lines; return status */
1165 copy_lines(long addr
)
1167 line_t
*lp
, *np
= get_addressed_line_node(first_addr
);
1169 long n
= second_addr
- first_addr
+ 1;
1172 current_addr
= addr
;
1173 if (first_addr
<= addr
&& addr
< second_addr
) {
1174 n
= addr
- first_addr
+ 1;
1175 m
= second_addr
- addr
;
1177 for (; n
> 0; n
=m
, m
=0, np
= get_addressed_line_node(current_addr
+ 1))
1178 for (; n
-- > 0; np
= np
->q_forw
) {
1180 if ((lp
= dup_line_node(np
)) == NULL
) {
1187 else if ((up
= push_undo_stack(UADD
, current_addr
,
1188 current_addr
)) == NULL
) {
1199 /* delete_lines: delete a range of lines */
1201 delete_lines(long from
, long to
)
1206 if (push_undo_stack(UDEL
, from
, to
) == NULL
) {
1210 n
= get_addressed_line_node(INC_MOD(to
, addr_last
));
1211 p
= get_addressed_line_node(from
- 1);
1212 /* this get_addressed_line_node last! */
1214 unset_active_nodes(p
->q_forw
, n
);
1216 addr_last
-= to
- from
+ 1;
1217 current_addr
= from
- 1;
1224 /* display_lines: print a range of lines to stdout */
1226 display_lines(long from
, long to
, int gflag
)
1233 sprintf(errmsg
, "invalid address");
1236 ep
= get_addressed_line_node(INC_MOD(to
, addr_last
));
1237 bp
= get_addressed_line_node(from
);
1238 for (; bp
!= ep
; bp
= bp
->q_forw
) {
1239 if ((s
= get_sbuf_line(bp
)) == NULL
)
1241 if (put_tty_line(s
, bp
->len
, current_addr
= from
++, gflag
) < 0)
1248 #define MAXMARK 26 /* max number of marks */
1250 line_t
*mark
[MAXMARK
]; /* line markers */
1251 int markno
; /* line marker count */
1253 /* mark_line_node: set a line node mark */
1255 mark_line_node(line_t
*lp
, int n
)
1258 sprintf(errmsg
, "invalid mark character");
1260 } else if (mark
[n
- 'a'] == NULL
)
1267 /* get_marked_node_addr: return address of a marked line */
1269 get_marked_node_addr(int n
)
1272 sprintf(errmsg
, "invalid mark character");
1275 return get_line_node_addr(mark
[n
- 'a']);
1279 /* unmark_line_node: clear line node mark */
1281 unmark_line_node(line_t
*lp
)
1285 for (i
= 0; markno
&& i
< MAXMARK
; i
++)
1286 if (mark
[i
] == lp
) {
1293 /* dup_line_node: return a pointer to a copy of a line node */
1295 dup_line_node(line_t
*lp
)
1299 if ((np
= (line_t
*) malloc(sizeof(line_t
))) == NULL
) {
1300 fprintf(stderr
, "%s\n", strerror(errno
));
1301 sprintf(errmsg
, "out of memory");
1304 np
->seek
= lp
->seek
;
1310 /* has_trailing_escape: return the parity of escapes preceding a character
1313 has_trailing_escape(char *s
, char *t
)
1315 return (s
== t
|| *(t
- 1) != '\\') ? 0 : !has_trailing_escape(s
, t
- 1);
1319 /* strip_escapes: return copy of escaped string of at most length MAXPATHLEN */
1321 strip_escapes(const char *s
)
1323 static char *file
= NULL
;
1324 static int filesz
= 0;
1328 REALLOC(file
, filesz
, MAXPATHLEN
+ 1, NULL
);
1329 while ((i
< (filesz
- 1)) &&
1330 (file
[i
++] = (*s
== '\\') != '\0' ? *++s
: *s
))
1332 file
[filesz
- 1] = '\0';
1338 signal_hup(int signo
)
1341 sigflags
|= (1 << (signo
- 1));
1342 else handle_hup(signo
);
1347 signal_int(int signo
)
1350 sigflags
|= (1 << (signo
- 1));
1351 else handle_int(signo
);
1356 handle_hup(int signo
)
1358 char *hup
= NULL
; /* hup filename */
1364 sigflags
&= ~(1 << (signo
- 1));
1365 if (addr_last
&& write_file("ed.hup", "w", 1, addr_last
) < 0 &&
1366 (s
= getenv("HOME")) != NULL
&&
1367 (n
= strlen(s
)) + 8 <= MAXPATHLEN
&& /* "ed.hup" + '/' */
1368 (hup
= (char *) malloc(n
+ 10)) != NULL
) {
1370 if (hup
[n
- 1] != '/')
1371 hup
[n
] = '/', hup
[n
+1] = '\0';
1372 strcat(hup
, "ed.hup");
1373 write_file(hup
, "w", 1, addr_last
);
1380 handle_int(int signo
)
1384 sigflags
&= ~(1 << (signo
- 1));
1385 #ifdef _POSIX_SOURCE
1386 siglongjmp(env
, -1);
1393 int cols
= 72; /* wrap column */
1396 handle_winch(int signo
)
1398 struct winsize ws
; /* window size structure */
1400 sigflags
&= ~(1 << (signo
- 1));
1401 if (ioctl(0, TIOCGWINSZ
, (char *) &ws
) >= 0) {
1402 if (ws
.ws_row
> 2) rows
= ws
.ws_row
- 2;
1403 if (ws
.ws_col
> 8) cols
= ws
.ws_col
- 8;
1408 /* is_legal_filename: return a legal filename */
1410 is_legal_filename(char *s
)
1412 if (red
&& (*s
== '!' || !strcmp(s
, "..") || strchr(s
, '/'))) {
1413 sprintf(errmsg
, "shell access restricted");