-
Notifications
You must be signed in to change notification settings - Fork 2
/
virus.c
4487 lines (4256 loc) · 132 KB
/
virus.c
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
/* vi: set sw=8 ts=8: */
/*
* virus - vi resembling utility skeleton - based on
* tiny vi.c: A small 'vi' clone (from busybox 0.52)
*
* Copyright (C) 2001, 2002 Stefan Koerner <ripclaw@rocklinux.org>
* Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
char *vi_Version = "0.0.2+dgamelaunch " PACKAGE_VERSION;
/*
* To compile:
* gcc -Wall -Os -s -o vi virus.c
* strip vi
*/
/*
* Things To Do:
* EXINIT
* $HOME/.exrc and ./.exrc
* add magic to search /foo.*bar
* add :help command
* :map macros
* how about mode lines: vi: set sw=8 ts=8:
* if mark[] values were line numbers rather than pointers
* it would be easier to change the mark when add/delete lines
* More intelligence in refresh()
* ":r !cmd" and "!cmd" to filter text through an external command
* A true "undo" facility
* An "ex" line oriented mode- maybe using "cmdedit"
*/
//---- Feature -------------- Bytes to immplement
#define BB_FEATURE_VI_COLON // 4288
#define BB_FEATURE_VI_YANKMARK // 1408
#define BB_FEATURE_VI_SEARCH // 1088
// #define BB_FEATURE_VI_USE_SIGNALS // 1056
#define BB_FEATURE_VI_DOT_CMD // 576
#define BB_FEATURE_VI_READONLY // 128
#define BB_FEATURE_VI_SETOPTS // 576
#define BB_FEATURE_VI_SET // 224
#define BB_FEATURE_VI_WIN_RESIZE // 256 WIN_RESIZE
// To test editor using CRASHME:
// vi -C filename
// To stop testing, wait until all to text[] is deleted, or
// Ctrl-Z and kill -9 %1
// while in the editor Ctrl-T will toggle the crashme function on and off.
//#define BB_FEATURE_VI_CRASHME // randomly pick commands to execute
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <fcntl.h>
#include <signal.h>
#include <setjmp.h>
#include <regex.h>
#include <ctype.h>
#include <assert.h>
#include <errno.h>
#include <stdarg.h>
#include "last_char_is.c"
#ifndef TRUE
#define TRUE ((int)1)
#define FALSE ((int)0)
#endif /* TRUE */
#define MAX_SCR_COLS BUFSIZ
// Misc. non-Ascii keys that report an escape sequence
#define VI_K_UP 128 // cursor key Up
#define VI_K_DOWN 129 // cursor key Down
#define VI_K_RIGHT 130 // Cursor Key Right
#define VI_K_LEFT 131 // cursor key Left
#define VI_K_HOME 132 // Cursor Key Home
#define VI_K_END 133 // Cursor Key End
#define VI_K_INSERT 134 // Cursor Key Insert
#define VI_K_PAGEUP 135 // Cursor Key Page Up
#define VI_K_PAGEDOWN 136 // Cursor Key Page Down
#define VI_K_FUN1 137 // Function Key F1
#define VI_K_FUN2 138 // Function Key F2
#define VI_K_FUN3 139 // Function Key F3
#define VI_K_FUN4 140 // Function Key F4
#define VI_K_FUN5 141 // Function Key F5
#define VI_K_FUN6 142 // Function Key F6
#define VI_K_FUN7 143 // Function Key F7
#define VI_K_FUN8 144 // Function Key F8
#define VI_K_FUN9 145 // Function Key F9
#define VI_K_FUN10 146 // Function Key F10
#define VI_K_FUN11 147 // Function Key F11
#define VI_K_FUN12 148 // Function Key F12
static const int YANKONLY = FALSE;
static const int YANKDEL = TRUE;
static const int FORWARD = 1; // code depends on "1" for array index
static const int BACK = -1; // code depends on "-1" for array index
static const int LIMITED = 0; // how much of text[] in char_search
static const int FULL = 1; // how much of text[] in char_search
static const int S_BEFORE_WS = 1; // used in skip_thing() for moving "dot"
static const int S_TO_WS = 2; // used in skip_thing() for moving "dot"
static const int S_OVER_WS = 3; // used in skip_thing() for moving "dot"
static const int S_END_PUNCT = 4; // used in skip_thing() for moving "dot"
static const int S_END_ALNUM = 5; // used in skip_thing() for moving "dot"
typedef unsigned char Byte;
static int editing; // >0 while we are editing a file
static int cmd_mode; // 0=command 1=insert
static int file_modified; // buffer contents changed
static int err_method; // indicate error with beep or flash
static int fn_start; // index of first cmd line file name
static int save_argc; // how many file names on cmd line
static int cmdcnt; // repetition count
static fd_set rfds; // use select() for small sleeps
static struct timeval tv; // use select() for small sleeps
static char erase_char; // the users erase character
static int rows, columns; // the terminal screen is this size
static int crow, ccol, offset; // cursor is on Crow x Ccol with Horz Ofset
static char *SOs, *SOn; // terminal standout start/normal ESC sequence
static char *bell; // terminal bell sequence
static char *Ceol, *Ceos; // Clear-end-of-line and Clear-end-of-screen ESC sequence
static char *CMrc; // Cursor motion arbitrary destination ESC sequence
static char *CMup, *CMdown; // Cursor motion up and down ESC sequence
static Byte *status_buffer; // mesages to the user
static Byte last_input_char; // last char read from user
static Byte last_forward_char; // last char searched for with 'f'
static Byte *cfn; // previous, current, and next file name
static Byte *text, *end, *textend; // pointers to the user data in memory
static Byte *screen; // pointer to the virtual screen buffer
static int screensize; // and its size
static Byte *screenbegin; // index into text[], of top line on the screen
static Byte *dot; // where all the action takes place
static int tabstop;
static struct termios term_orig, term_vi; // remember what the cooked mode was
#ifdef BB_FEATURE_VI_OPTIMIZE_CURSOR
static int last_row; // where the cursor was last moved to
#endif /* BB_FEATURE_VI_OPTIMIZE_CURSOR */
#ifdef BB_FEATURE_VI_USE_SIGNALS
static jmp_buf restart; // catch_sig()
#endif /* BB_FEATURE_VI_USE_SIGNALS */
#ifdef BB_FEATURE_VI_WIN_RESIZE
static struct winsize winsize; // remember the window size
#endif /* BB_FEATURE_VI_WIN_RESIZE */
#ifdef BB_FEATURE_VI_DOT_CMD
static int adding2q; // are we currently adding user input to q
static Byte *last_modifying_cmd; // last modifying cmd for "."
static Byte *ioq, *ioq_start; // pointer to string for get_one_char to "read"
#endif /* BB_FEATURE_VI_DOT_CMD */
#if defined(BB_FEATURE_VI_DOT_CMD) || defined(BB_FEATURE_VI_YANKMARK)
static Byte *modifying_cmds; // cmds that modify text[]
#endif /* BB_FEATURE_VI_DOT_CMD || BB_FEATURE_VI_YANKMARK */
#ifdef BB_FEATURE_VI_READONLY
static int vi_readonly, readonly;
#endif /* BB_FEATURE_VI_READONLY */
#ifdef BB_FEATURE_VI_SETOPTS
static int autoindent;
static int showmatch;
static int ignorecase;
#endif /* BB_FEATURE_VI_SETOPTS */
#ifdef BB_FEATURE_VI_YANKMARK
static Byte *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
static int YDreg, Ureg; // default delete register and orig line for "U"
static Byte *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
static Byte *context_start, *context_end;
#endif /* BB_FEATURE_VI_YANKMARK */
#ifdef BB_FEATURE_VI_SEARCH
static Byte *last_search_pattern; // last pattern from a '/' or '?' search
#endif /* BB_FEATURE_VI_SEARCH */
static void edit_file (Byte *); // edit one file
static void do_cmd (Byte); // execute a command
static void sync_cursor (Byte *, int *, int *); // synchronize the screen cursor to dot
static Byte *begin_line (Byte *); // return pointer to cur line B-o-l
static Byte *end_line (Byte *); // return pointer to cur line E-o-l
static Byte *dollar_line (Byte *); // return pointer to just before NL
static Byte *prev_line (Byte *); // return pointer to prev line B-o-l
static Byte *next_line (Byte *); // return pointer to next line B-o-l
static Byte *end_screen (void); // get pointer to last char on screen
static int count_lines (Byte *, Byte *); // count line from start to stop
static Byte *find_line (int); // find begining of line #li
static Byte *move_to_col (Byte *, int); // move "p" to column l
static int isblnk (Byte); // is the char a blank or tab
static void dot_left (void); // move dot left- dont leave line
static void dot_right (void); // move dot right- dont leave line
static void dot_begin (void); // move dot to B-o-l
static void dot_end (void); // move dot to E-o-l
static void dot_next (void); // move dot to next line B-o-l
static void dot_prev (void); // move dot to prev line B-o-l
static void dot_scroll (int, int); // move the screen up or down
static void dot_skip_over_ws (void); // move dot pat WS
static void dot_delete (void); // delete the char at 'dot'
static Byte *bound_dot (Byte *); // make sure text[0] <= P < "end"
static Byte *new_screen (int, int); // malloc virtual screen memory
static Byte *new_text (int); // malloc memory for text[] buffer
static Byte *char_insert (Byte *, Byte); // insert the char c at 'p'
static Byte *stupid_insert (Byte *, Byte); // stupidly insert the char c at 'p'
static Byte find_range (Byte **, Byte **, Byte); // return pointers for an object
static int st_test (Byte *, int, int, Byte *); // helper for skip_thing()
static Byte *skip_thing (Byte *, int, int, int); // skip some object
static Byte *find_pair (Byte *, Byte); // find matching pair () [] {}
static Byte *text_hole_delete (Byte *, Byte *); // at "p", delete a 'size' byte hole
static Byte *text_hole_make (Byte *, int); // at "p", make a 'size' byte hole
static Byte *yank_delete (Byte *, Byte *, int, int); // yank text[] into register then delete
static void show_help (void); // display some help info
static void print_literal (Byte *, Byte *); // copy s to buf, convert unprintable
static void rawmode (void); // set "raw" mode on tty
static void cookmode (void); // return to "cooked" mode on tty
static int mysleep (int); // sleep for 'h' 1/100 seconds
static Byte readit (void); // read (maybe cursor) key from stdin
static Byte get_one_char (void); // read 1 char from stdin
static int file_size (Byte *); // what is the byte size of "fn"
static int file_insert (Byte *, Byte *, int);
static int file_write (Byte *, Byte *, Byte *);
static void place_cursor (int, int, int);
static void screen_erase ();
static void clear_to_eol (void);
static void clear_to_eos (void);
static void standout_start (void); // send "start reverse video" sequence
static void standout_end (void); // send "end reverse video" sequence
static void flash (int); // flash the terminal screen
static void beep (void); // beep the terminal
static void indicate_error (char); // use flash or beep to indicate error
static void show_status_line (void); // put a message on the bottom line
static void psb (char *, ...); // Print Status Buf
static void psbs (char *, ...); // Print Status Buf in standout mode
static void ni (Byte *); // display messages
static void edit_status (void); // show file status on status line
static void redraw (int); // force a full screen refresh
static void format_line (Byte *, Byte *, int);
static void refresh (int); // update the terminal from screen[]
#ifdef BB_FEATURE_VI_SEARCH
static Byte *char_search (Byte *, Byte *, int, int); // search for pattern starting at p
static int mycmp (Byte *, Byte *, int); // string cmp based in "ignorecase"
#endif /* BB_FEATURE_VI_SEARCH */
#ifdef BB_FEATURE_VI_COLON
static void Hit_Return (void);
static Byte *get_one_address (Byte *, int *); // get colon addr, if present
static Byte *get_address (Byte *, int *, int *); // get two colon addrs, if present
static void colon (Byte *); // execute the "colon" mode cmds
#endif /* BB_FEATURE_VI_COLON */
static Byte *get_input_line (Byte *); // get input line- use "status line"
#ifdef BB_FEATURE_VI_USE_SIGNALS
static void winch_sig (int); // catch window size changes
static void suspend_sig (int); // catch ctrl-Z
static void alarm_sig (int); // catch alarm time-outs
static void catch_sig (int); // catch ctrl-C
static void core_sig (int); // catch a core dump signal
#endif /* BB_FEATURE_VI_USE_SIGNALS */
#ifdef BB_FEATURE_VI_DOT_CMD
static void start_new_cmd_q (Byte); // new queue for command
static void end_cmd_q (); // stop saving input chars
#else /* BB_FEATURE_VI_DOT_CMD */
#define end_cmd_q()
#endif /* BB_FEATURE_VI_DOT_CMD */
#ifdef BB_FEATURE_VI_WIN_RESIZE
static void window_size_get (int); // find out what size the window is
#endif /* BB_FEATURE_VI_WIN_RESIZE */
#ifdef BB_FEATURE_VI_SETOPTS
static void showmatching (Byte *); // show the matching pair () [] {}
#endif /* BB_FEATURE_VI_SETOPTS */
#if defined(BB_FEATURE_VI_YANKMARK) || defined(BB_FEATURE_VI_COLON) || defined(BB_FEATURE_VI_CRASHME)
static Byte *string_insert (Byte *, Byte *); // insert the string at 'p'
#endif /* BB_FEATURE_VI_YANKMARK || BB_FEATURE_VI_COLON || BB_FEATURE_VI_CRASHME */
#ifdef BB_FEATURE_VI_YANKMARK
static Byte *text_yank (Byte *, Byte *, int); // save copy of "p" into a register
static Byte what_reg (void); // what is letter of current YDreg
static void check_context (Byte); // remember context for '' command
static Byte *swap_context (Byte *); // goto new context for '' command
#endif /* BB_FEATURE_VI_YANKMARK */
#ifdef BB_FEATURE_VI_CRASHME
static void crash_dummy ();
static void crash_test ();
static int crashme = 0;
#endif /* BB_FEATURE_VI_CRASHME */
extern int
main (int argc, char **argv)
{
#ifdef BB_FEATURE_VI_YANKMARK
int i;
#endif /* BB_FEATURE_VI_YANKMARK */
CMrc = "\033[%d;%dH"; // Terminal Crusor motion ESC sequence
CMup = "\033[A"; // move cursor up one line, same col
CMdown = "\n"; // move cursor down one line, same col
Ceol = "\033[0K"; // Clear from cursor to end of line
Ceos = "\033[0J"; // Clear from cursor to end of screen
SOs = "\033[7m"; // Terminal standout mode on
SOn = "\033[0m"; // Terminal standout mode off
bell = "\007"; // Terminal bell sequence
#ifdef BB_FEATURE_VI_CRASHME
(void) srand ((long) getpid ());
#endif /* BB_FEATURE_VI_CRASHME */
status_buffer = (Byte *) malloc (200); // hold messages to user
#ifdef BB_FEATURE_VI_READONLY
vi_readonly = readonly = FALSE;
if (strncmp (argv[0], "view", 4) == 0)
{
readonly = TRUE;
vi_readonly = TRUE;
}
#endif /* BB_FEATURE_VI_READONLY */
#ifdef BB_FEATURE_VI_SETOPTS
autoindent = 1;
ignorecase = 1;
showmatch = 1;
#endif /* BB_FEATURE_VI_SETOPTS */
#ifdef BB_FEATURE_VI_YANKMARK
for (i = 0; i < 28; i++)
{
reg[i] = 0;
} // init the yank regs
#endif /* BB_FEATURE_VI_YANKMARK */
#ifdef BB_FEATURE_VI_DOT_CMD
modifying_cmds = (Byte *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[]
#endif /* BB_FEATURE_VI_DOT_CMD */
if (argc >= 2)
{
cfn = (Byte *) strdup (argv[1]);
edit_file (cfn);
}
else
{
fprintf (stderr, "%s: no file to edit, bailing out\n", argv[0]);
exit (-20);
}
//-----------------------------------------------------------
/* set these back to defaults. this was the infamous screen resize crash bug */
signal (SIGWINCH, SIG_DFL);
signal (SIGTSTP, SIG_DFL);
return (0);
}
static void
edit_file (Byte * fn)
{
char c;
int cnt, size, ch;
#ifdef BB_FEATURE_VI_USE_SIGNALS
char *msg;
int sig;
#endif /* BB_FEATURE_VI_USE_SIGNALS */
#ifdef BB_FEATURE_VI_YANKMARK
static Byte *cur_line;
#endif /* BB_FEATURE_VI_YANKMARK */
rawmode ();
rows = 24;
columns = 80;
ch = -1;
#ifdef BB_FEATURE_VI_WIN_RESIZE
window_size_get (0);
#endif /* BB_FEATURE_VI_WIN_RESIZE */
new_screen (rows, columns); // get memory for virtual screen
cnt = file_size (fn); // file size
size = 2 * cnt; // 200% of file size
new_text (size); // get a text[] buffer
screenbegin = dot = end = text;
if (fn != 0)
{
ch = file_insert (fn, text, cnt);
}
if (ch < 1)
{
(void) char_insert (text, '\n'); // start empty buf with dummy line
}
file_modified = FALSE;
#ifdef BB_FEATURE_VI_YANKMARK
YDreg = 26; // default Yank/Delete reg
Ureg = 27; // hold orig line for "U" cmd
for (cnt = 0; cnt < 28; cnt++)
{
mark[cnt] = 0;
} // init the marks
mark[26] = mark[27] = text; // init "previous context"
#endif /* BB_FEATURE_VI_YANKMARK */
err_method = 1; // flash
last_forward_char = last_input_char = '\0';
crow = 0;
ccol = 0;
edit_status ();
#ifdef BB_FEATURE_VI_USE_SIGNALS
signal (SIGHUP, catch_sig);
signal (SIGINT, catch_sig);
signal (SIGALRM, alarm_sig);
signal (SIGTERM, catch_sig);
signal (SIGQUIT, core_sig);
signal (SIGILL, core_sig);
signal (SIGTRAP, core_sig);
signal (SIGIOT, core_sig);
signal (SIGABRT, core_sig);
signal (SIGFPE, core_sig);
signal (SIGBUS, core_sig);
signal (SIGSEGV, core_sig);
#ifdef SIGSYS
signal (SIGSYS, core_sig);
#endif
signal (SIGWINCH, winch_sig);
signal (SIGTSTP, suspend_sig);
sig = setjmp (restart);
if (sig != 0)
{
msg = "";
if (sig == SIGWINCH)
msg = "(window resize)";
if (sig == SIGHUP)
msg = "(hangup)";
if (sig == SIGINT)
msg = "(interrupt)";
if (sig == SIGTERM)
msg = "(terminate)";
if (sig == SIGBUS)
msg = "(bus error)";
if (sig == SIGSEGV)
msg = "(I tried to touch invalid memory)";
if (sig == SIGALRM)
msg = "(alarm)";
psbs ("-- caught signal %d %s--", sig, msg);
screenbegin = dot = text;
}
#endif /* BB_FEATURE_VI_USE_SIGNALS */
editing = 1;
cmd_mode = 0; // 0=command 1=insert 2='R'eplace
cmdcnt = 0;
tabstop = 8;
offset = 0; // no horizontal offset
c = '\0';
#ifdef BB_FEATURE_VI_DOT_CMD
if (last_modifying_cmd != 0)
free (last_modifying_cmd);
if (ioq_start != NULL)
free (ioq_start);
ioq = ioq_start = last_modifying_cmd = 0;
adding2q = 0;
#endif /* BB_FEATURE_VI_DOT_CMD */
redraw (FALSE); // dont force every col re-draw
show_status_line ();
//------This is the main Vi cmd handling loop -----------------------
while (editing > 0)
{
#ifdef BB_FEATURE_VI_CRASHME
if (crashme > 0)
{
if ((end - text) > 1)
{
crash_dummy (); // generate a random command
}
else
{
crashme = 0;
dot = string_insert (text, (Byte *) "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
refresh (FALSE);
}
}
#endif /* BB_FEATURE_VI_CRASHME */
last_input_char = c = get_one_char (); // get a cmd from user
#ifdef BB_FEATURE_VI_YANKMARK
// save a copy of the current line- for the 'U" command
if (begin_line (dot) != cur_line)
{
cur_line = begin_line (dot);
text_yank (begin_line (dot), end_line (dot), Ureg);
}
#endif /* BB_FEATURE_VI_YANKMARK */
#ifdef BB_FEATURE_VI_DOT_CMD
// These are commands that change text[].
// Remember the input for the "." command
if (!adding2q && ioq_start == 0
&& strchr ((char *) modifying_cmds, c) != NULL)
{
start_new_cmd_q (c);
}
#endif /* BB_FEATURE_VI_DOT_CMD */
do_cmd (c); // execute the user command
//
// poll to see if there is input already waiting. if we are
// not able to display output fast enough to keep up, skip
// the display update until we catch up with input.
if (mysleep (0) == 0)
{
// no input pending- so update output
refresh (FALSE);
show_status_line ();
}
#ifdef BB_FEATURE_VI_CRASHME
if (crashme > 0)
crash_test (); // test editor variables
#endif /* BB_FEATURE_VI_CRASHME */
}
//-------------------------------------------------------------------
place_cursor (rows, 0, FALSE); // go to bottom of screen
clear_to_eol (); // Erase to end of line
cookmode ();
}
static Byte readbuffer[BUFSIZ];
#ifdef BB_FEATURE_VI_CRASHME
static int totalcmds = 0;
static int Mp = 85; // Movement command Probability
static int Np = 90; // Non-movement command Probability
static int Dp = 96; // Delete command Probability
static int Ip = 97; // Insert command Probability
static int Yp = 98; // Yank command Probability
static int Pp = 99; // Put command Probability
static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
char chars[20] = "\t012345 abcdABCD-=.$";
char *words[20] = { "this", "is", "a", "test",
"broadcast", "the", "emergency", "of",
"system", "quick", "brown", "fox",
"jumped", "over", "lazy", "dogs",
"back", "January", "Febuary", "March"
};
char *lines[20] = {
"You should have received a copy of the GNU General Public License\n",
"char c, cm, *cmd, *cmd1;\n",
"generate a command by percentages\n",
"Numbers may be typed as a prefix to some commands.\n",
"Quit, discarding changes!\n",
"Forced write, if permission originally not valid.\n",
"In general, any ex or ed command (such as substitute or delete).\n",
"I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
"Please get w/ me and I will go over it with you.\n",
"The following is a list of scheduled, committed changes.\n",
"1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
"Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
"Any question about transactions please contact Sterling Huxley.\n",
"I will try to get back to you by Friday, December 31.\n",
"This Change will be implemented on Friday.\n",
"Let me know if you have problems accessing this;\n",
"Sterling Huxley recently added you to the access list.\n",
"Would you like to go to lunch?\n",
"The last command will be automatically run.\n",
"This is too much english for a computer geek.\n",
};
char *multilines[20] = {
"You should have received a copy of the GNU General Public License\n",
"char c, cm, *cmd, *cmd1;\n",
"generate a command by percentages\n",
"Numbers may be typed as a prefix to some commands.\n",
"Quit, discarding changes!\n",
"Forced write, if permission originally not valid.\n",
"In general, any ex or ed command (such as substitute or delete).\n",
"I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
"Please get w/ me and I will go over it with you.\n",
"The following is a list of scheduled, committed changes.\n",
"1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
"Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
"Any question about transactions please contact Sterling Huxley.\n",
"I will try to get back to you by Friday, December 31.\n",
"This Change will be implemented on Friday.\n",
"Let me know if you have problems accessing this;\n",
"Sterling Huxley recently added you to the access list.\n",
"Would you like to go to lunch?\n",
"The last command will be automatically run.\n",
"This is too much english for a computer geek.\n",
};
// create a random command to execute
static void
crash_dummy ()
{
static int sleeptime; // how long to pause between commands
char c, cm, *cmd, *cmd1;
int i, cnt, thing, rbi, startrbi, percent;
// "dot" movement commands
cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
// is there already a command running?
if (strlen ((char *) readbuffer) > 0)
goto cd1;
cd0:
startrbi = rbi = 0;
sleeptime = 0; // how long to pause between commands
memset (readbuffer, '\0', BUFSIZ - 1); // clear the read buffer
// generate a command by percentages
percent = (int) lrand48 () % 100; // get a number from 0-99
if (percent < Mp)
{ // Movement commands
// available commands
cmd = cmd1;
M++;
}
else if (percent < Np)
{ // non-movement commands
cmd = "mz<>\'\""; // available commands
N++;
}
else if (percent < Dp)
{ // Delete commands
cmd = "dx"; // available commands
D++;
}
else if (percent < Ip)
{ // Inset commands
cmd = "iIaAsrJ"; // available commands
I++;
}
else if (percent < Yp)
{ // Yank commands
cmd = "yY"; // available commands
Y++;
}
else if (percent < Pp)
{ // Put commands
cmd = "pP"; // available commands
P++;
}
else
{
// We do not know how to handle this command, try again
U++;
goto cd0;
}
// randomly pick one of the available cmds from "cmd[]"
i = (int) lrand48 () % strlen (cmd);
cm = cmd[i];
if (strchr (":\024", cm))
goto cd0; // dont allow colon or ctrl-T commands
readbuffer[rbi++] = cm; // put cmd into input buffer
// now we have the command-
// there are 1, 2, and multi char commands
// find out which and generate the rest of command as necessary
if (strchr ("dmryz<>\'\"", cm))
{ // 2-char commands
cmd1 = " \n\r0$^-+wWeEbBhjklHL";
if (cm == 'm' || cm == '\'' || cm == '\"')
{ // pick a reg[]
cmd1 = "abcdefghijklmnopqrstuvwxyz";
}
thing = (int) lrand48 () % strlen (cmd1); // pick a movement command
c = cmd1[thing];
readbuffer[rbi++] = c; // add movement to input buffer
}
if (strchr ("iIaAsc", cm))
{ // multi-char commands
if (cm == 'c')
{
// change some thing
thing = (int) lrand48 () % strlen (cmd1); // pick a movement command
c = cmd1[thing];
readbuffer[rbi++] = c; // add movement to input buffer
}
thing = (int) lrand48 () % 4; // what thing to insert
cnt = (int) lrand48 () % 10; // how many to insert
for (i = 0; i < cnt; i++)
{
if (thing == 0)
{ // insert chars
readbuffer[rbi++] = chars[((int) lrand48 () % strlen (chars))];
}
else if (thing == 1)
{ // insert words
strcat ((char *) readbuffer, words[(int) lrand48 () % 20]);
strcat ((char *) readbuffer, " ");
sleeptime = 0; // how fast to type
}
else if (thing == 2)
{ // insert lines
strcat ((char *) readbuffer, lines[(int) lrand48 () % 20]);
sleeptime = 0; // how fast to type
}
else
{ // insert multi-lines
strcat ((char *) readbuffer, multilines[(int) lrand48 () % 20]);
sleeptime = 0; // how fast to type
}
}
strcat ((char *) readbuffer, "\033");
}
cd1:
totalcmds++;
if (sleeptime > 0)
(void) mysleep (sleeptime); // sleep 1/100 sec
}
// test to see if there are any errors
static void
crash_test ()
{
static time_t oldtim;
time_t tim;
char d[2], buf[BUFSIZ], msg[BUFSIZ];
msg[0] = '\0';
if (end < text)
{
strcat ((char *) msg, "end<text ");
}
if (end > textend)
{
strcat ((char *) msg, "end>textend ");
}
if (dot < text)
{
strcat ((char *) msg, "dot<text ");
}
if (dot > end)
{
strcat ((char *) msg, "dot>end ");
}
if (screenbegin < text)
{
strcat ((char *) msg, "screenbegin<text ");
}
if (screenbegin > end - 1)
{
strcat ((char *) msg, "screenbegin>end-1 ");
}
if (strlen (msg) > 0)
{
// alarm(0);
sprintf (buf, "\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
totalcmds, last_input_char, msg, SOs, SOn);
write (1, buf, strlen (buf));
while (read (0, d, 1) > 0)
{
if (d[0] == '\n' || d[0] == '\r')
break;
}
// alarm(3);
}
tim = (time_t) time ((time_t *) 0);
if (tim >= (oldtim + 3))
{
sprintf ((char *) status_buffer,
"Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
totalcmds, M, N, I, D, Y, P, U, end - text + 1);
oldtim = tim;
}
return;
}
#endif /* BB_FEATURE_VI_CRASHME */
//---------------------------------------------------------------------
//----- the Ascii Chart -----------------------------------------------
//
// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
//---------------------------------------------------------------------
//----- Execute a Vi Command -----------------------------------
static void
do_cmd (Byte c)
{
Byte c1, *p, *q, *msg, buf[9], *save_dot;
int cnt, i, j, dir, yf;
c1 = c; // quiet the compiler
cnt = yf = dir = 0; // quiet the compiler
p = q = save_dot = msg = buf; // quiet the compiler
memset (buf, '\0', 9); // clear buf
if (cmd_mode == 2)
{
// we are 'R'eplacing the current *dot with new char
if (*dot == '\n')
{
// don't Replace past E-o-l
cmd_mode = 1; // convert to insert
}
else
{
if (1 <= c && c <= 127)
{ // only ASCII chars
if (c != 27)
dot = yank_delete (dot, dot, 0, YANKDEL); // delete char
dot = char_insert (dot, c); // insert new char
}
goto dc1;
}
}
if (cmd_mode == 1)
{
// hitting "Insert" twice means "R" replace mode
if (c == VI_K_INSERT)
goto dc5;
// insert the char c at "dot"
if (1 <= c && c <= 127)
{
dot = char_insert (dot, c); // only ASCII chars
}
goto dc1;
}
switch (c)
{
//case 0x01: // soh
//case 0x09: // ht
//case 0x0b: // vt
//case 0x0e: // so
//case 0x0f: // si
//case 0x10: // dle
//case 0x11: // dc1
//case 0x13: // dc3
#ifdef BB_FEATURE_VI_CRASHME
case 0x14: // dc4 ctrl-T
crashme = (crashme == 0) ? 1 : 0;
break;
#endif /* BB_FEATURE_VI_CRASHME */
/*case 0x16: // syn
case 0x17: // etb
case 0x18: // can
case 0x1c: // fs
case 0x1d: // gs
case 0x1e: // rs
case 0x1f: // us
case '!': // !-
case '#': // #-
case '&': // &-
case '(': // (-
case ')': // )-
case '*': // *-
case ',': // ,-
case '=': // =-
case '@': // @-
case 'F': // F-
case 'K': // K-
case 'Q': // Q-
case 'S': // S-
case 'T': // T-
case 'V': // V-
case '[': // [-
case '\\': // \-
case ']': // ]-
case '_': // _-
case '`': // `-
case 'g': // g-
case 'u': // u- FIXME- there is no undo
case 'v': // v- */
default: // unrecognised command
buf[0] = c;
buf[1] = '\0';
if (c <= ' ')
{
buf[0] = '^';
buf[1] = c + '@';
buf[2] = '\0';
}
ni ((Byte *) buf);
end_cmd_q (); // stop adding to q
case 0x00: // nul- ignore
break;
case 2: // ctrl-B scroll up full screen
case VI_K_PAGEUP: // Cursor Key Page Up
dot_scroll (rows - 2, -1);
break;
#ifdef BB_FEATURE_VI_USE_SIGNALS
case 0x03: // ctrl-C interrupt
longjmp (restart, 1);
break;
case 26: // ctrl-Z suspend
suspend_sig (SIGTSTP);
break;
#endif /* BB_FEATURE_VI_USE_SIGNALS */
case 4: // ctrl-D scroll down half screen
dot_scroll ((rows - 2) / 2, 1);
break;
case 5: // ctrl-E scroll down one line
dot_scroll (1, 1);
break;
case 6: // ctrl-F scroll down full screen
case VI_K_PAGEDOWN: // Cursor Key Page Down
dot_scroll (rows - 2, 1);
break;
case 7: // ctrl-G show current status
edit_status ();
break;
case 'h': // h- move left
case VI_K_LEFT: // cursor key Left
case 8: // ctrl-H- move left (This may be ERASE char)
case 127: // DEL- move left (This may be ERASE char)
if (cmdcnt-- > 1)
{
do_cmd (c);
} // repeat cnt
dot_left ();
break;
case 10: // Newline ^J
case 'j': // j- goto next line, same col
case VI_K_DOWN: // cursor key Down
if (cmdcnt-- > 1)
{
do_cmd (c);
} // repeat cnt
dot_next (); // go to next B-o-l
dot = move_to_col (dot, ccol + offset); // try stay in same col
break;
case 12: // ctrl-L force redraw whole screen
case 18: // ctrl-R force redraw
place_cursor (0, 0, FALSE); // put cursor in correct place
clear_to_eos (); // tel terminal to erase display
(void) mysleep (10);
screen_erase (); // erase the internal screen buffer
refresh (TRUE); // this will redraw the entire display
break;
case 13: // Carriage Return ^M
case '+': // +- goto next line
if (cmdcnt-- > 1)
{
do_cmd (c);
} // repeat cnt
dot_next ();
dot_skip_over_ws ();
break;
case 21: // ctrl-U scroll up half screen
dot_scroll ((rows - 2) / 2, -1);
break;
case 25: // ctrl-Y scroll up one line
dot_scroll (1, -1);
break;
case 27: // esc
if (cmd_mode == 0)
indicate_error (c);
cmd_mode = 0; // stop insrting
end_cmd_q ();
*status_buffer = '\0'; // clear status buffer
break;
case ' ': // move right
case 'l': // move right
case VI_K_RIGHT: // Cursor Key Right
if (cmdcnt-- > 1)
{
do_cmd (c);
} // repeat cnt
dot_right ();
break;
#ifdef BB_FEATURE_VI_YANKMARK
case '"': // "- name a register to use for Delete/Yank
c1 = get_one_char ();
c1 = tolower (c1);
if (islower (c1))
{
YDreg = c1 - 'a';
}
else
{
indicate_error (c);
}
break;
case '\'': // '- goto a specific mark