-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSeSubs.c
544 lines (446 loc) · 9.76 KB
/
SeSubs.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
/*
* This file is part of the Seyon, Copyright (c) 1992-1993 by Muhammad M.
* Saggaf. All rights reserved.
*
* See the file COPYING (1-COPYING) or the manual page seyon(1) for a full
* statement of rights and permissions for this program.
*/
/* -*- Mode: C -*-
* SeSubs.c --- Misc subroutines
* Author : Muhammad M. Saggaf
* Created On : sometime in 1992
* Last Modified By: system admin
* Last Modified On: Wed Jun 9 20:07:26 1993
* Update Count : 11
* Status : Mostly OK, needs some cleaning up
*/
#include "config.h"
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/time.h>
#include "seyon.h"
#include "SeDecl.h"
#include "SeSig.h"
extern FILE *tfp;
extern int tfd;
/*
* miscellaneous routines
*/
/*
* a simple toggle
*/
void
toggle_flag(flag)
Boolean *flag;
{
*flag = !*flag;
}
/*
* print a message to the tty
*/
void
show(msg)
char *msg;
{
fprintf(tfp, "%s\r\n", msg);
fflush(tfp);
}
/*
* print a formatted message to the tty
*/
void
showf(fmt, a, b, c)
char *fmt,
*a,
*b,
*c;
{
fprintf(tfp, fmt, a, b, c);
fprintf(tfp, "\r\n");
}
void
SeError(msg)
char *msg;
{
char buf[REG_BUF];
sprintf(buf, "\r>> Error: %s.", msg);
show(buf);
}
void
SeErrorF(fmt, a, b, c)
char *fmt,
*a,
*b,
*c;
{
char buf[REG_BUF];
sprintf(buf, fmt, a, b, c);
SeError(buf);
}
void
se_warning(msg)
char *msg;
{
char buf[REG_BUF];
sprintf(buf, "\r>> Warning: %s.", msg);
show(buf);
}
void
se_warningf(fmt, a, b, c)
char *fmt,
*a,
*b,
*c;
{
char buf[REG_BUF];
sprintf(buf, fmt, a, b, c);
se_warning(buf);
}
void
SeNotice(msg)
char *msg;
{
char buf[REG_BUF];
sprintf(buf, "\r>> Notice: %s.", msg);
show(buf);
}
void
SeNoticeF(fmt, a, b, c)
char *fmt,
*a,
*b,
*c;
{
char buf[REG_BUF];
sprintf(buf, fmt, a, b, c);
SeNotice(buf);
}
void
SePError(msg)
char *msg;
{
char buf[REG_BUF];
sprintf(buf, "%s: %s", msg, strerror(errno));
SeError(buf);
}
void
SePErrorF(fmt, a, b, c)
char *fmt,
*a,
*b,
*c;
{
char buf[REG_BUF];
sprintf(buf, fmt, a, b, c);
SePError(buf);
}
/* ------------------------------------------------------------
* Routines that have to do with forking or executing external commands
*/
/*
* SeFork: fork a process and print an error message in case of failure.
*/
int
SeFork()
{
pid_t pid;
if ((pid = fork()) < 0)
SePError("Faild to fork process");
return pid;
}
/*
* execute an external command though a shell
*/
void
ShellCommandHandler(sig, fio_p)
int sig;
XtPointer fio_p;
{
void PostExecPrep();
if (wait((int*)0) < 0) SePError("ShellCommand wait failed");
XoAppIgnoreSignal(app_con, SIGCHLD);
set_tty_mode();
set_modem_fio(*(int *)fio_p);
SeyonMessage("Shell Command Completed");
PostExecPrep();
inhibit_child = False;
}
void
ShellCommand(command)
char *command;
{
ExecShellCommand(command, 1);
}
void
ExecShellCommand(command, top)
char *command;
int top;
{
static char *shell = NULL;
char cmd[REG_BUF],
*scmd;
static int fio=0;
pid_t forkRes;
if (command == NULL) return;
if (shell == NULL) {
shell = (char*)getenv("SHELL");
if (!shell) shell = "/bin/sh";
}
if (top) PreExecPrep();
io_set_attr(tfd, &oldmode);
fio = get_modem_fio();
if (top)
XoAppAddSignal(app_con, SIGCHLD, ShellCommandHandler, (XtPointer)&fio);
else signal(SIGCHLD, SIG_IGN);
forkRes = SeFork();
if (forkRes == 0) {
scmd = str_stripspc_copy(cmd, command);
show("");
if (*scmd == '$') {
SeNotice("Redirecting stdin/stdout");
mattach(); /* Attach modem to stdin/stdout */
scmd++;
}
if (setuid(getuid()) < 0)
SePError("Failed to set effective uid");
if (*scmd == CNULL) {
SeNotice(FmtString1("Executing the shell `%s'", shell));
execl(shell, shell, (char*)NULL);
SeError(FmtString1("Execution of the shell `%s' failed", shell));
exit(1);
}
SeNotice(FmtString1("Executing the command `%s'", scmd));
execl(shell, shell, "-c", scmd, (char*)NULL);
SePError(FmtString1("Execution of the command `%s' failed", scmd));
exit(1);
}
else if (forkRes > 0) {
if (top) inhibit_child = True;
else {
wait((int*)0); /* Wait for the child process to terminate */
set_tty_mode();
set_modem_fio(fio);
}
} /* if (forkRes == 0)... */
}
void
PreProcessPrep()
{
SuspContTerminal(TERM_SUSPEND);
SetKillButtonSens(True);
}
void
PostProcessPrep()
{
SuspContTerminal(TERM_CONTINUE);
SetKillButtonSens(False);
}
void
PreExecPrep()
{
SuspContTerminal(0);
w_exit_up(False);
}
void
PostExecPrep()
{
SuspContTerminal(1);
w_exit_up(True);
}
/*
* routines related to file handling
*/
/*
* expand '~' in a file name
*/
char *
expand_fname(fname, buffer)
char *fname,
*buffer;
{
char *home,
*buf,
name[REG_BUF];
int i;
str_stripspc_copy(name, fname);
buf = buffer;
for (i = 0; name[i]; i++) {
if (name[i] == '~') {
if ((home = (char *) getenv("HOME")) == NULL)
return NULL;
strcpy(buf, home);
buf += strlen(home);
}
else {
*buf = name[i];
buf++;
}
}
*buf = '\0';
return buffer;
}
/*
* open a file for reading by searching the current, then default, then
* home directories
*/
FILE*
open_file(fname, directory)
char *fname,
*directory;
{
return open_file_va(fname, directory, NULL);
}
/*
* similar to the above, but accepts more than one default directory
*/
FILE*
open_file_va(fname, dir1, dir2)
char *fname,
*dir1,
*dir2;
{
FILE *fp;
char name[REG_BUF],
fullname[REG_BUF],
buffer[REG_BUF];
str_stripspc_copy(name, fname);
if (dir1) {
sprintf(fullname, "%s/%s", expand_fname(dir1, buffer), name);
if ((fp = fopen(fullname, "r")) != NULL) {
strcpy(fname, fullname);
return fp;
}
if (dir2) {
sprintf(fullname, "%s/%s", expand_fname(dir2, buffer), name);
if ((fp = fopen(fullname, "r")) != NULL) {
strcpy(fname, fullname);
return fp;
}
}
} /* if (dir1)... */
if ((fp = fopen(name, "r")) != NULL) {
strcpy(fname, name);
return fp;
}
SeErrorF("/OFV/ Could not open the file `%s'", name, "", "");
if (dir1) {
SeNoticeF("Tried the default directory `%s'", dir1, "", "");
if (dir2)
SeNoticeF("Tried the default directory `%s'", dir2, "", "");
}
SeNotice("Tried the current directory");
return NULL;
}
/*
* another implementation of the above using varargs, currently not used
*/
/*FILE *open_file_va(args)
va_list args;
va_decl
{
FILE *fp;
char *name, *dir, fullname[REG_BUF];
char buffer[REG_BUF];
va_start(args);
name = va_arg(args, char *);
if (fp = fopen(name, "r"))
return fp;
while(dir = va_arg(args, char *))
{
sprintf(fullname, "%s/%s", expand_fname(SSpc(dir), buffer), name);
if (fp = fopen(fullname, "r"))
return fp;
}
va_end(args);
if (dir = (char *) getenv("HOME")) {
sprintf(fullname, "%s/%s", dir, name);
if (fp = fopen(fullname, "r"))
return fp;
}
showf("<< Seyon: file '%s' not in current, default, or home directory >>",
name, "", "");
return NULL;
}*/
/*
* read a file into a buffer
*/
void
read_file(fp, line)
FILE *fp;
char *line[];
{
char buffer[REG_BUF + 1];
int i;
for (i = 0; i < MAX_ENT && fgets(buffer, REG_BUF, fp) != NULL; i++)
line[i] = strcpy((char *)malloc(sizeof(buffer)), SSpc(buffer));
line[i] = NULL;
}
/*
* similar to the above, but closes the file after readsing it
*/
void
read_close_file(fp, line)
FILE *fp;
char *line[];
{
read_file(fp, line);
fclose(fp);
}
/*
* writes data to a pipe
*/
void
write_pipe_data(pd, data, size)
int *pd;
char *data;
int size;
{
if (write(pd[1], data, size) < 0)
show("<< Could not write to pipe >>");
}
/*
* reads data from a pipe
*/
void
read_pipe_data(pd, data, size)
int *pd;
char *data;
int size;
{
read(pd[0], data, size);
}
/*
* misc functions
*/
void
IdleGuard()
{
struct stat statBuf;
time_t idleTime;
static time_t totalIdleTime;
int timeToNextCall;
if (qres.idleGuard && !inhibit_child) {
if (fstat(tfd, &statBuf) < 0) {
SePError("/IG/ Could not stat the tty");
return;
}
if ((idleTime = time((time_t *) 0) - statBuf.st_mtime) >=
qres.idleGuardInterval * 0.99) {
MdmPutString(qres.idleGuardString);
timeToNextCall = qres.idleGuardInterval;
totalIdleTime += idleTime;
SeyonMessagef("Idle for %d minutes", (totalIdleTime + 30) / 60);
}
else {
timeToNextCall = qres.idleGuardInterval - (int)idleTime;
totalIdleTime = 0;
}
XtAppAddTimeOut(app_con, timeToNextCall * 1000,
(XtTimerCallbackProc) IdleGuard, (XtPointer) app_con);
}
}