]>
diplodocus.org Git - nmh/blob - uip/rcvtty.c
3 * rcvtty.c -- a rcvmail program (a lot like rcvalert) handling IPC ttys
7 * This code is Copyright (c) 2002, by the authors of nmh. See the
8 * COPYRIGHT file in the root directory of the nmh distribution for
9 * complete copyright information.
12 /* Changed to use getutent() and friends. Assumes that when getutent() exists,
13 * a number of other things also exist. Please check.
14 * Ruud de Rooij <ruud@ruud.org> Sun, 28 May 2000 17:28:55 +0200
18 #include <h/signals.h>
19 #include <h/rcvmail.h>
20 #include <h/scansbr.h>
31 # define UTMP_FILE _PATH_UTMP
33 # define UTMP_FILE "/etc/utmp"
39 "%2(hour{dtimenow}):%02(min{dtimenow}): %<(size)%5(size) %>%<{encrypted}E%>\
40 %<(mymbox{from})%<{to}To:%14(friendly{to})%>%>%<(zero)%17(friendly{from})%> \
41 %{subject}%<{body}<<%{body}>>%>"
43 static struct swit switches
[] = {
47 { "form formatfile", 0 },
49 { "format string", 5 },
51 { "width columns", 0 },
69 static int newline
= 1;
72 static char *form
= NULL
;
73 static char *format
= NULL
;
78 char *getusername(void);
83 static RETSIGTYPE
alrmser (int);
84 static int message_fd (char **);
85 static int header_fd (void);
86 static void alert (char *, int);
90 main (int argc
, char **argv
)
93 char *cp
, *user
, buf
[BUFSIZ
], tty
[BUFSIZ
];
94 char **argp
, **arguments
, *vec
[MAXARGS
];
103 setlocale(LC_ALL
, "");
105 invo_name
= r1bindex (argv
[0], '/');
107 /* read user profile/context */
110 mts_init (invo_name
);
111 arguments
= getarguments (invo_name
, argc
, argv
, 1);
114 while ((cp
= *argp
++)) {
116 switch (smatch (++cp
, switches
)) {
118 ambigsw (cp
, switches
);
125 snprintf (buf
, sizeof(buf
), "%s [command ...]", invo_name
);
126 print_help (buf
, switches
, 1);
129 print_version(invo_name
);
137 if (!(form
= *argp
++) || *form
== '-')
138 adios (NULL
, "missing argument to %s", argp
[-2]);
142 if (!(format
= *argp
++) || *format
== '-')
143 adios (NULL
, "missing argument to %s", argp
[-2]);
148 if (!(cp
= *argp
++) || *cp
== '-')
149 adios(NULL
, "missing argument to %s", argp
[-2]);
171 if ((md
= vecp
? message_fd (vec
) : header_fd ()) == NOTOK
)
174 user
= getusername();
178 while ((utp
= getutent()) != NULL
) {
180 #ifdef HAVE_STRUCT_UTMP_UT_TYPE
181 utp
->ut_type
== USER_PROCESS
185 && utp
->ut_line
[0] != 0
186 && strncmp (user
, utp
->ut_name
, sizeof(utp
->ut_name
)) == 0) {
187 strncpy (tty
, utp
->ut_line
, sizeof(utp
->ut_line
));
193 if ((uf
= fopen (UTMP_FILE
, "r")) == NULL
)
195 while (fread ((char *) &ut
, sizeof(ut
), 1, uf
) == 1)
196 if (ut
.ut_name
[0] != 0
197 && strncmp (user
, ut
.ut_name
, sizeof(ut
.ut_name
)) == 0) {
198 strncpy (tty
, ut
.ut_line
, sizeof(ut
.ut_line
));
205 return 0; /* dead code to satisfy the compiler */
212 #ifndef RELIABLE_SIGNALS
213 SIGNAL (SIGALRM
, alrmser
);
221 message_fd (char **vec
)
224 int bytes
, fd
, seconds
;
229 fd
= mkstemp (strncpy (tmpfil
, "/tmp/rcvttyXXXXX", sizeof(tmpfil
)));
231 unlink (mktemp (strncpy (tmpfil
, "/tmp/rcvttyXXXXX", sizeof(tmpfil
))));
232 if ((fd
= open (tmpfil
, O_RDWR
| O_CREAT
| O_TRUNC
, 0600)) == NOTOK
)
237 if ((child_id
= vfork()) == NOTOK
) {
241 } else if (child_id
) {
243 if (!setjmp (myctx
)) {
244 SIGNAL (SIGALRM
, alrmser
);
245 bytes
= fstat(fileno (stdin
), &st
) != NOTOK
? (int) st
.st_size
: 100;
247 /* amount of time to wait depends on message size */
249 /* give at least 5 minutes */
251 } else if (bytes
>= 90000) {
252 /* but 30 minutes should be long enough */
255 seconds
= (bytes
/ 60) + 300;
257 alarm ((unsigned int) seconds
);
258 pidwait(child_id
, OK
);
261 if (fstat (fd
, &st
) != NOTOK
&& st
.st_size
> (off_t
) 0)
265 * Ruthlessly kill the child and anything
266 * else in its process group.
268 KILLPG(child_id
, SIGKILL
);
276 if (dup2 (fd
, 1) == NOTOK
|| dup2 (fd
, 2) == NOTOK
)
279 setpgid ((pid_t
) 0, getpid ()); /* put in own process group */
280 execvp (vec
[0], vec
);
282 return 1; /* dead code to satisfy compiler */
290 char *nfs
, tmpfil
[BUFSIZ
];
292 strncpy (tmpfil
, m_tmpfil (invo_name
), sizeof(tmpfil
));
293 if ((fd
= open (tmpfil
, O_RDWR
| O_CREAT
| O_TRUNC
, 0600)) == NOTOK
)
299 /* get new format string */
300 nfs
= new_fs (form
, format
, SCANFMT
);
301 scan (stdin
, 0, 0, nfs
, width
, 0, 0, NULL
, 0L, 0);
303 write (fd
, "\n\r", 2);
304 write (fd
, scanl
, strlen (scanl
));
306 write (fd
, "\007", 1);
313 alert (char *tty
, int md
)
316 char buffer
[BUFSIZ
], ttyspec
[BUFSIZ
];
319 snprintf (ttyspec
, sizeof(ttyspec
), "/dev/%s", tty
);
322 * The mask depends on whether we are checking for
323 * write permission based on `biff' or `mesg'.
325 mask
= biff
? S_IEXEC
: (S_IWRITE
>> 3);
326 if (stat (ttyspec
, &st
) == NOTOK
|| (st
.st_mode
& mask
) == 0)
329 if (!setjmp (myctx
)) {
330 SIGNAL (SIGALRM
, alrmser
);
332 td
= open (ttyspec
, O_WRONLY
);
341 lseek (md
, (off_t
) 0, SEEK_SET
);
343 while ((i
= read (md
, buffer
, sizeof(buffer
))) > 0)
344 if (write (td
, buffer
, i
) != i
)