1 /*
2  * Copyright 1987, 1988 by MIT Student Information Processing Board
3  *
4  * Permission to use, copy, modify, and distribute this software and
5  * its documentation for any purpose is hereby granted, provided that
6  * the names of M.I.T. and the M.I.T. S.I.P.B. not be used in
7  * advertising or publicity pertaining to distribution of the software
8  * without specific, written prior permission.  M.I.T. and the
9  * M.I.T. S.I.P.B. make no representations about the suitability of
10  * this software for any purpose.  It is provided "as is" without
11  * express or implied warranty.
12  */
13 
14 #include "config.h"
15 #ifdef HAVE_UNISTD_H
16 #include <unistd.h>
17 #endif
18 #ifdef HAVE_STDLIB_H
19 #include <stdlib.h>
20 #endif
21 #ifdef HAVE_ERRNO_H
22 #include <errno.h>
23 #else
24 extern int errno;
25 #endif
26 #include <fcntl.h>
27 #include <sys/param.h>
28 #include <sys/types.h>
29 #include <sys/file.h>
30 #ifdef NEED_SYS_FCNTL_H
31 /* just for O_* */
32 #include <sys/fcntl.h>
33 #endif
34 #ifdef HAVE_SYS_WAIT_H
35 #include <sys/wait.h>
36 #endif
37 #include "ss_internal.h"
38 
ss_help(int argc,char const * const * argv,int sci_idx,pointer info_ptr)39 void ss_help(int argc, char const * const *argv, int sci_idx, pointer info_ptr)
40 {
41     char *buffer;
42     char const *request_name;
43     int code;
44     int fd, child;
45     register int idx;
46     register ss_data *info;
47 
48     request_name = ss_current_request(sci_idx, &code);
49     if (code != 0) {
50 	ss_perror(sci_idx, code, "");
51 	return;		/* no ss_abort_line, if invalid invocation */
52     }
53     if (argc == 1) {
54 	ss_list_requests(argc, argv, sci_idx, info_ptr);
55 	return;
56     }
57     else if (argc != 2) {
58 	/* should do something better than this */
59 	buffer = malloc(80+2*strlen(request_name));
60 	if (!buffer) {
61 		ss_perror(sci_idx, 0,
62 			  "couldn't allocate memory to print usage message");
63 		return;
64 	}
65 	sprintf(buffer, "usage:\n\t%s [topic|command]\nor\t%s\n",
66 		request_name, request_name);
67 	ss_perror(sci_idx, 0, buffer);
68 	free(buffer);
69 	return;
70     }
71     info = ss_info(sci_idx);
72     if (info->info_dirs == (char **)NULL) {
73 	ss_perror(sci_idx, SS_ET_NO_INFO_DIR, (char *)NULL);
74 	return;
75     }
76     if (info->info_dirs[0] == (char *)NULL) {
77 	ss_perror(sci_idx, SS_ET_NO_INFO_DIR, (char *)NULL);
78 	return;
79     }
80     for (fd = -1, idx = 0; info->info_dirs[idx] != (char *)NULL; idx++) {
81         buffer = malloc(strlen (info->info_dirs[idx]) + 1 +
82 			strlen (argv[1]) + 6);
83 	if (!buffer) {
84 	    ss_perror(sci_idx, 0,
85 		      "couldn't allocate memory for help filename");
86 	    return;
87 	}
88 	(void) strcpy(buffer, info->info_dirs[idx]);
89 	(void) strcat(buffer, "/");
90 	(void) strcat(buffer, argv[1]);
91 	(void) strcat(buffer, ".info");
92 	fd = open(buffer, O_RDONLY);
93 	free(buffer);
94 	if (fd >= 0)
95 	    break;
96     }
97     if (fd < 0) {
98 #define MSG "No info found for "
99 	char *buf = malloc(strlen (MSG) + strlen (argv[1]) + 1);
100 	if (!buf) {
101 		ss_perror(sci_idx, 0,
102 			  "couldn't allocate memory to print error message");
103 		return;
104 	}
105 	strcpy(buf, MSG);
106 	strcat(buf, argv[1]);
107 	ss_perror(sci_idx, 0, buf);
108 	free(buf);
109 	return;
110     }
111     switch (child = fork()) {
112     case -1:
113 	ss_perror(sci_idx, errno, "Can't fork for pager");
114 	(void) close(fd);
115 	return;
116     case 0:
117 	(void) dup2(fd, 0); /* put file on stdin */
118 	ss_page_stdin();
119     default:
120 	(void) close(fd); /* what can we do if it fails? */
121 	while (wait(NULL) != child) {
122 	    /* do nothing if wrong pid */
123 	};
124     }
125 }
126 
127 #ifndef HAVE_DIRENT_H
128 #include <sys/dir.h>
129 #else
130 #include <dirent.h>
131 #endif
132 
ss_add_info_dir(int sci_idx,char * info_dir,int * code_ptr)133 void ss_add_info_dir(int sci_idx, char *info_dir, int *code_ptr)
134 {
135     register ss_data *info;
136     DIR *d;
137     int n_dirs;
138     register char **dirs;
139 
140     info = ss_info(sci_idx);
141     if (info_dir == NULL || *info_dir == '\0') {
142 	*code_ptr = SS_ET_NO_INFO_DIR;
143 	return;
144     }
145     if ((d = opendir(info_dir)) == (DIR *)NULL) {
146 	*code_ptr = errno;
147 	return;
148     }
149     closedir(d);
150     dirs = info->info_dirs;
151     for (n_dirs = 0; dirs[n_dirs] != (char *)NULL; n_dirs++)
152 	;		/* get number of non-NULL dir entries */
153     dirs = (char **)realloc((char *)dirs,
154 			    (unsigned)(n_dirs + 2)*sizeof(char *));
155     if (dirs == (char **)NULL) {
156 	*code_ptr = ENOMEM;
157 	return;
158     }
159     info->info_dirs = dirs;
160     dirs[n_dirs + 1] = (char *)NULL;
161     dirs[n_dirs] = malloc((unsigned)strlen(info_dir)+1);
162     if (dirs[n_dirs] == (char *)NULL) {
163         *code_ptr = ENOMEM;
164         return;
165     }
166     strcpy(dirs[n_dirs], info_dir);
167     *code_ptr = 0;
168 }
169 
ss_delete_info_dir(int sci_idx,char * info_dir,int * code_ptr)170 void ss_delete_info_dir(int sci_idx, char *info_dir, int *code_ptr)
171 {
172     register char **i_d;
173     register char **info_dirs;
174 
175     info_dirs = ss_info(sci_idx)->info_dirs;
176     for (i_d = info_dirs; *i_d; i_d++) {
177 	if (!strcmp(*i_d, info_dir)) {
178 	    while (*i_d) {
179 		*i_d = *(i_d+1);
180 		i_d++;
181 	    }
182 	    *code_ptr = 0;
183 	    return;
184 	}
185     }
186     *code_ptr = SS_ET_NO_INFO_DIR;
187 }
188