1 /* $Header: /p/tcsh/cvsroot/tcsh/tw.init.c,v 3.39 2006/03/02 18:46:45 christos Exp $ */
3 * tw.init.c: Handle lists of things to complete
6 * Copyright (c) 1980, 1991 The Regents of the University of California.
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.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 RCSID("$tcsh: tw.init.c,v 3.39 2006/03/02 18:46:45 christos Exp $")
45 Char
**list
, /* List of command names */
46 *buff
; /* Space holding command names */
47 size_t nlist
, /* Number of items */
48 nbuff
, /* Current space in name buf */
49 tlist
, /* Total space in list */
50 tbuff
; /* Total space in name buf */
54 static struct varent
*tw_vptr
= NULL
; /* Current shell variable */
55 static Char
**tw_env
= NULL
; /* Current environment variable */
56 static const Char
*tw_word
; /* Current word pointer */
57 static struct KeyFuncs
*tw_bind
= NULL
; /* List of the bindings */
59 static struct limits
*tw_limit
= NULL
; /* List of the resource limits */
60 #endif /* HAVENOLIMIT */
61 static int tw_index
= 0; /* signal and job index */
62 static DIR *tw_dir_fd
= NULL
; /* Current directory descriptor */
63 static int tw_cmd_got
= 0; /* What we need to do */
64 static stringlist_t tw_cmd
= { NULL
, NULL
, 0, 0, 0, 0 };
65 static stringlist_t tw_item
= { NULL
, NULL
, 0, 0, 0, 0 };
66 #define TW_FL_CMD 0x01
67 #define TW_FL_ALIAS 0x02
68 #define TW_FL_BUILTIN 0x04
69 #define TW_FL_SORT 0x08
70 #define TW_FL_REL 0x10
72 static struct { /* Current element pointer */
73 size_t cur
; /* Current element number */
74 Char
**pathv
; /* Current element in path */
75 DIR *dfd
; /* Current directory descriptor */
82 if (tw_dir_fd != NULL) \
83 rewinddir(tw_dir_fd); \
91 disabled_cleanup(&pintr_disabled); \
94 static Char
*tw_str_add (stringlist_t
*, size_t);
95 static void tw_str_free (stringlist_t
*);
96 static int tw_dir_next (struct Strbuf
*, DIR *);
97 static void tw_cmd_add (const Char
*name
);
98 static void tw_cmd_cmd (void);
99 static void tw_cmd_builtin (void);
100 static void tw_cmd_alias (void);
101 static void tw_cmd_sort (void);
102 static void tw_vptr_start (struct varent
*);
106 * Add an item to the string list
109 tw_str_add(stringlist_t
*sl
, size_t len
)
113 if (sl
->tlist
<= sl
->nlist
) {
115 sl
->tlist
+= TW_INCR
;
116 sl
->list
= xrealloc(sl
->list
, sl
->tlist
* sizeof(Char
*));
117 disabled_cleanup(&pintr_disabled
);
119 if (sl
->tbuff
<= sl
->nbuff
+ len
) {
124 sl
->tbuff
+= TW_INCR
+ len
;
125 sl
->buff
= xrealloc(sl
->buff
, sl
->tbuff
* sizeof(Char
));
126 /* Re-thread the new pointer list, if changed */
127 if (ptr
!= NULL
&& ptr
!= sl
->buff
) {
128 intptr_t offs
= sl
->buff
- ptr
;
129 for (i
= 0; i
< sl
->nlist
; i
++)
132 disabled_cleanup(&pintr_disabled
);
134 ptr
= sl
->list
[sl
->nlist
++] = &sl
->buff
[sl
->nbuff
];
144 tw_str_free(stringlist_t
*sl
)
150 sl
->tlist
= sl
->nlist
= 0;
155 sl
->tbuff
= sl
->nbuff
= 0;
157 disabled_cleanup(&pintr_disabled
);
158 } /* end tw_str_free */
162 tw_dir_next(struct Strbuf
*res
, DIR *dfd
)
169 if ((dirp
= readdir(dfd
)) != NULL
) {
170 Strbuf_append(res
, str2short(dirp
->d_name
));
174 } /* end tw_dir_next */
178 * Add the name to the command list
181 tw_cmd_add(const Char
*name
)
185 len
= Strlen(name
) + 2;
186 (void) Strcpy(tw_str_add(&tw_cmd
, len
), name
);
187 } /* end tw_cmd_add */
191 * Free the command list
197 tw_str_free(&tw_cmd
);
199 } /* end tw_cmd_free */
202 * Add system commands to the command list
209 Char
*dir
= NULL
, *name
;
211 struct varent
*v
= adrof(STRpath
);
212 struct varent
*recexec
= adrof(STRrecognize_only_executables
);
216 if (v
== NULL
|| v
->vec
== NULL
) /* if no path */
219 for (pv
= v
->vec
; *pv
; pv
++) {
220 if (pv
[0][0] != '/') {
221 tw_cmd_got
|= TW_FL_REL
;
225 if ((dirp
= opendir(short2str(*pv
))) == NULL
)
228 cleanup_push(dirp
, opendir_cleanup
);
230 dir
= Strspl(*pv
, STRslash
);
231 cleanup_push(dir
, xfree
);
233 while ((dp
= readdir(dirp
)) != NULL
) {
234 #if defined(_UWIN) || defined(__CYGWIN__)
235 /* Turn foo.{exe,com,bat} into foo since UWIN's readdir returns
236 * the file with the .exe, .com, .bat extension
238 len
= strlen(dp
->d_name
);
239 if (len
> 4 && (strcmp(&dp
->d_name
[len
- 4], ".exe") == 0 ||
240 strcmp(&dp
->d_name
[len
- 4], ".bat") == 0 ||
241 strcmp(&dp
->d_name
[len
- 4], ".com") == 0))
242 dp
->d_name
[len
- 4] = '\0';
243 #endif /* _UWIN || __CYGWIN__ */
244 /* the call to executable() may make this a bit slow */
245 name
= str2short(dp
->d_name
);
246 if (dp
->d_ino
== 0 || (recexec
&& !executable(dir
, name
, 0)))
249 if (name
[0] == '#' || /* emacs temp files */
250 name
[0] == '.' || /* .files */
251 name
[len
- 1] == '~' || /* emacs backups */
252 name
[len
- 1] == '%') /* textedit backups */
253 continue; /* Ignore! */
258 } /* end tw_cmd_cmd */
262 * Add builtins to the command list
267 const struct biltins
*bptr
;
269 for (bptr
= bfunc
; bptr
< &bfunc
[nbfunc
]; bptr
++)
271 tw_cmd_add(str2short(bptr
->bname
));
273 for (bptr
= nt_bfunc
; bptr
< &nt_bfunc
[nt_nbfunc
]; bptr
++)
275 tw_cmd_add(str2short(bptr
->bname
));
276 #endif /* WINNT_NATIVE*/
277 } /* end tw_cmd_builtin */
281 * Add aliases to the command list
294 if (p
->v_parent
== 0) /* is it the header? */
297 tw_cmd_add(p
->v_name
);
305 } while (p
->v_right
== c
);
308 } /* end tw_cmd_alias */
312 * Sort the command list removing duplicate elements
321 qsort(tw_cmd
.list
, tw_cmd
.nlist
, sizeof(Char
*), fcompare
);
323 /* get rid of multiple entries */
324 for (i
= 0, fwd
= 0; i
+ 1 < tw_cmd
.nlist
; i
++) {
325 if (Strcmp(tw_cmd
.list
[i
], tw_cmd
.list
[i
+ 1]) == 0) /* garbage */
326 fwd
++; /* increase the forward ref. count */
328 tw_cmd
.list
[i
- fwd
] = tw_cmd
.list
[i
];
330 /* Fix fencepost error -- Theodore Ts'o <tytso@athena.mit.edu> */
332 tw_cmd
.list
[i
- fwd
] = tw_cmd
.list
[i
];
334 disabled_cleanup(&pintr_disabled
);
335 } /* end tw_cmd_sort */
339 * Get the command list and sort it, if not done yet.
340 * Reset the current pointer to the beginning of the command list
344 tw_cmd_start(DIR *dfd
, const Char
*pat
)
346 static Char
*defpath
[] = { STRNULL
, 0 };
349 if ((tw_cmd_got
& TW_FL_CMD
) == 0) {
352 tw_cmd_got
|= TW_FL_CMD
;
354 if ((tw_cmd_got
& TW_FL_ALIAS
) == 0) {
356 tw_cmd_got
&= ~TW_FL_SORT
;
357 tw_cmd_got
|= TW_FL_ALIAS
;
359 if ((tw_cmd_got
& TW_FL_BUILTIN
) == 0) {
361 tw_cmd_got
&= ~TW_FL_SORT
;
362 tw_cmd_got
|= TW_FL_BUILTIN
;
364 if ((tw_cmd_got
& TW_FL_SORT
) == 0) {
366 tw_cmd_got
|= TW_FL_SORT
;
369 tw_cmd_state
.cur
= 0;
370 CLRDIR(tw_cmd_state
.dfd
)
371 if (tw_cmd_got
& TW_FL_REL
) {
372 struct varent
*vp
= adrof(STRpath
);
374 tw_cmd_state
.pathv
= vp
->vec
;
376 tw_cmd_state
.pathv
= defpath
;
379 tw_cmd_state
.pathv
= defpath
;
384 * Return the next element in the command list or
385 * Look for commands in the relative path components
388 tw_cmd_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
393 if (tw_cmd_state
.cur
< tw_cmd
.nlist
) {
395 Strbuf_append(res
, tw_cmd
.list
[tw_cmd_state
.cur
++]);
400 * We need to process relatives in the path.
402 while ((tw_cmd_state
.dfd
== NULL
||
403 (ret
= tw_dir_next(res
, tw_cmd_state
.dfd
)) == 0) &&
404 *tw_cmd_state
.pathv
!= NULL
) {
406 CLRDIR(tw_cmd_state
.dfd
)
408 while (*tw_cmd_state
.pathv
&& tw_cmd_state
.pathv
[0][0] == '/')
409 tw_cmd_state
.pathv
++;
410 if ((ptr
= *tw_cmd_state
.pathv
) != 0) {
411 Strbuf_append(res
, ptr
);
414 * We complete directories only on '.' should that
418 if (ptr
[0] == '\0' || (ptr
[0] == '.' && ptr
[1] == '\0')) {
419 tw_cmd_state
.dfd
= opendir(".");
420 *flags
= TW_DIR_OK
| TW_EXEC_CHK
;
423 Strbuf_append(dir
, *tw_cmd_state
.pathv
);
424 Strbuf_append1(dir
, '/');
425 tw_cmd_state
.dfd
= opendir(short2str(*tw_cmd_state
.pathv
));
426 *flags
= TW_EXEC_CHK
;
428 Strbuf_terminate(dir
);
429 tw_cmd_state
.pathv
++;
433 } /* end tw_cmd_next */
437 * Find the first variable in the variable list
440 tw_vptr_start(struct varent
*c
)
442 tw_vptr
= c
; /* start at beginning of variable list */
445 while (tw_vptr
->v_left
)
446 tw_vptr
= tw_vptr
->v_left
;
448 if (tw_vptr
->v_parent
== 0) { /* is it the header? */
453 return; /* found first one */
454 if (tw_vptr
->v_right
) {
455 tw_vptr
= tw_vptr
->v_right
;
460 tw_vptr
= tw_vptr
->v_parent
;
461 } while (tw_vptr
->v_right
== c
);
464 } /* end tw_shvar_start */
468 * Return the next shell variable
472 tw_shvar_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
479 if ((p
= tw_vptr
) == NULL
)
480 return 0; /* just in case */
482 Strbuf_append(res
, p
->v_name
); /* we know that this name is here now */
484 /* now find the next one */
486 if (p
->v_right
) { /* if we can go right */
491 else { /* else go up */
495 } while (p
->v_right
== c
);
497 if (p
->v_parent
== 0) { /* is it the header? */
502 tw_vptr
= p
; /* save state for the next call */
506 } /* end tw_shvar_next */
510 * Return the next environment variable
514 tw_envvar_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
520 if (tw_env
== NULL
|| *tw_env
== NULL
)
522 for (ps
= *tw_env
; *ps
&& *ps
!= '='; ps
++)
524 Strbuf_appendn(res
, *tw_env
, ps
- *tw_env
);
527 } /* end tw_envvar_next */
531 * Begin the list of the shell and environment variables
535 tw_var_start(DIR *dfd
, const Char
*pat
)
539 tw_vptr_start(&shvhed
);
540 tw_env
= STR_environ
;
541 } /* end tw_var_start */
545 * Begin the list of the shell aliases
549 tw_alias_start(DIR *dfd
, const Char
*pat
)
553 tw_vptr_start(&aliases
);
555 } /* tw_alias_start */
558 /* tw_complete_start():
559 * Begin the list of completions
563 tw_complete_start(DIR *dfd
, const Char
*pat
)
567 tw_vptr_start(&completions
);
569 } /* end tw_complete_start */
573 * Return the next shell or environment variable
576 tw_var_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
581 ret
= tw_shvar_next(res
, dir
, flags
);
582 if (ret
== 0 && tw_env
)
583 ret
= tw_envvar_next(res
, dir
, flags
);
585 } /* end tw_var_next */
588 /* tw_logname_start():
589 * Initialize lognames to the beginning of the list
593 tw_logname_start(DIR *dfd
, const Char
*pat
)
598 (void) setpwent(); /* Open passwd file */
600 } /* end tw_logname_start */
603 /* tw_logname_next():
604 * Return the next entry from the passwd file
608 tw_logname_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
613 * We don't want to get interrupted inside getpwent()
614 * because the yellow pages code is not interruptible,
615 * and if we call endpwent() immediatetely after
616 * (in pintr()) we may be freeing an invalid pointer
626 disabled_cleanup(&pintr_disabled
);
634 Strbuf_append(res
, str2short(pw
->pw_name
));
636 } /* end tw_logname_next */
640 * Close the passwd file to finish the logname list
651 } /* end tw_logname_end */
654 /* tw_grpname_start():
655 * Initialize grpnames to the beginning of the list
659 tw_grpname_start(DIR *dfd
, const Char
*pat
)
663 #if !defined(_VMS_POSIX) && !defined(_OSD_POSIX) && !defined(WINNT_NATIVE)
664 (void) setgrent(); /* Open group file */
665 #endif /* !_VMS_POSIX && !_OSD_POSIX && !WINNT_NATIVE */
666 } /* end tw_grpname_start */
669 /* tw_grpname_next():
670 * Return the next entry from the group file
674 tw_grpname_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
679 * We don't want to get interrupted inside getgrent()
680 * because the yellow pages code is not interruptible,
681 * and if we call endgrent() immediatetely after
682 * (in pintr()) we may be freeing an invalid pointer
687 #if !defined(_VMS_POSIX) && !defined(_OSD_POSIX) && !defined(WINNT_NATIVE)
689 while ((gr
= getgrent()) == NULL
&& errno
== EINTR
) {
690 handle_pending_signals();
693 #else /* _VMS_POSIX || _OSD_POSIX || WINNT_NATIVE */
695 #endif /* !_VMS_POSIX && !_OSD_POSIX && !WINNT_NATIVE */
696 disabled_cleanup(&pintr_disabled
);
704 Strbuf_append(res
, str2short(gr
->gr_name
));
706 } /* end tw_grpname_next */
710 * Close the group file to finish the groupname list
718 #if !defined(_VMS_POSIX) && !defined(_OSD_POSIX) && !defined(WINNT_NATIVE)
720 #endif /* !_VMS_POSIX && !_OSD_POSIX && !WINNT_NATIVE */
721 } /* end tw_grpname_end */
724 * Initialize the directory for the file list
728 tw_file_start(DIR *dfd
, const Char
*pat
)
733 if ((vp
= adrof(STRcdpath
)) != NULL
)
735 } /* end tw_file_start */
739 * Return the next file in the directory
742 tw_file_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
744 int ret
= tw_dir_next(res
, tw_dir_fd
);
745 if (ret
== 0 && (*flags
& TW_DIR_OK
) != 0) {
747 while (tw_env
&& *tw_env
)
748 if ((tw_dir_fd
= opendir(short2str(*tw_env
))) != NULL
)
755 Strbuf_append(dir
, *tw_env
++);
756 Strbuf_append1(dir
, '/');
757 Strbuf_terminate(dir
);
758 ret
= tw_dir_next(res
, tw_dir_fd
);
762 } /* end tw_file_next */
766 * Clear directory related lists
772 CLRDIR(tw_cmd_state
.dfd
)
773 } /* end tw_dir_end */
782 tw_str_free(&tw_item
);
783 } /* end tw_item_free */
787 * Return the list of items
793 } /* end tw_item_get */
797 * Return a new item for a Strbuf_terminate()'d s
800 tw_item_add(const struct Strbuf
*s
)
804 p
= tw_str_add(&tw_item
, s
->len
+ 1);
810 * Find the string if it exists in the item list
814 tw_item_find(Char
*str
)
818 if (tw_item
.list
== NULL
|| str
== NULL
)
821 for (i
= 0; i
< tw_item
.nlist
; i
++)
822 if (tw_item
.list
[i
] != NULL
&& Strcmp(tw_item
.list
[i
], str
) == 0)
823 return tw_item
.list
[i
];
825 } /* end tw_item_find */
829 * Initialize a variable list
832 tw_vl_start(DIR *dfd
, const Char
*pat
)
835 if ((tw_vptr
= adrof(pat
)) != NULL
) {
836 tw_env
= tw_vptr
->vec
;
841 } /* end tw_vl_start */
845 * Initialize a word list
848 tw_wl_start(DIR *dfd
, const Char
*pat
)
852 } /* end tw_wl_start */
856 * Return the next word from the word list
860 tw_wl_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
866 if (tw_word
== NULL
|| tw_word
[0] == '\0')
869 while (*tw_word
&& Isspace(*tw_word
)) tw_word
++;
871 for (p
= tw_word
; *tw_word
&& !Isspace(*tw_word
); tw_word
++)
875 Strbuf_appendn(res
, p
, tw_word
- p
);
879 } /* end tw_wl_next */
883 * Begin the list of the shell bindings
887 tw_bind_start(DIR *dfd
, const Char
*pat
)
892 } /* end tw_bind_start */
896 * Begin the list of the shell bindings
900 tw_bind_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
904 if (tw_bind
&& tw_bind
->name
) {
907 for (ptr
= tw_bind
->name
; *ptr
!= '\0'; ptr
++)
908 Strbuf_append1(res
, *ptr
);
913 } /* end tw_bind_next */
917 * Begin the list of the shell limitings
921 tw_limit_start(DIR *dfd
, const Char
*pat
)
927 #endif /* ! HAVENOLIMIT */
928 } /* end tw_limit_start */
932 * Begin the list of the shell limitings
936 tw_limit_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
941 if (tw_limit
&& tw_limit
->limname
) {
944 for (ptr
= tw_limit
->limname
; *ptr
!= '\0'; ptr
++)
945 Strbuf_append1(res
, *ptr
);
949 #endif /* ! HAVENOLIMIT */
951 } /* end tw_limit_next */
955 * Begin the list of the shell sigings
959 tw_sig_start(DIR *dfd
, const Char
*pat
)
964 } /* end tw_sig_start */
968 * Begin the list of the shell sigings
972 tw_sig_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
976 for (;tw_index
< nsig
; tw_index
++) {
979 if (mesg
[tw_index
].iname
== NULL
)
982 for (ptr
= mesg
[tw_index
].iname
; *ptr
!= '\0'; ptr
++)
983 Strbuf_append1(res
, *ptr
);
988 } /* end tw_sig_next */
992 * Begin the list of the shell jobings
996 tw_job_start(DIR *dfd
, const Char
*pat
)
1001 } /* end tw_job_start */
1005 * Begin the list of the shell jobings
1009 tw_job_next(struct Strbuf
*res
, struct Strbuf
*dir
, int *flags
)
1015 for (;tw_index
<= pmaxindex
; tw_index
++) {
1016 for (j
= proclist
.p_next
; j
!= NULL
; j
= j
->p_next
)
1017 if (j
->p_index
== tw_index
&& j
->p_procid
== j
->p_jobid
)
1021 Strbuf_append(res
, j
->p_command
);
1026 } /* end tw_job_next */