comsat.c revision 1.6 1 1.1 cgd /*
2 1.6 jtc * Copyright (c) 1980, 1993
3 1.6 jtc * The Regents of the University of California. All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.6 jtc static char copyright[] =
36 1.6 jtc "@(#) Copyright (c) 1980, 1993\n\
37 1.6 jtc The Regents of the University of California. All rights reserved.\n";
38 1.1 cgd #endif /* not lint */
39 1.1 cgd
40 1.1 cgd #ifndef lint
41 1.6 jtc /*static char sccsid[] = "from: @(#)comsat.c 8.1 (Berkeley) 6/4/93";*/
42 1.6 jtc static char rcsid[] = "$Id: comsat.c,v 1.6 1994/08/06 23:26:39 jtc Exp $";
43 1.1 cgd #endif /* not lint */
44 1.1 cgd
45 1.1 cgd #include <sys/param.h>
46 1.1 cgd #include <sys/socket.h>
47 1.1 cgd #include <sys/stat.h>
48 1.1 cgd #include <sys/file.h>
49 1.1 cgd #include <sys/wait.h>
50 1.1 cgd
51 1.1 cgd #include <netinet/in.h>
52 1.1 cgd
53 1.6 jtc #include <ctype.h>
54 1.6 jtc #include <errno.h>
55 1.6 jtc #include <netdb.h>
56 1.6 jtc #include <paths.h>
57 1.6 jtc #include <pwd.h>
58 1.6 jtc #include <sgtty.h>
59 1.6 jtc #include <signal.h>
60 1.1 cgd #include <stdio.h>
61 1.5 jtc #include <stdlib.h>
62 1.6 jtc #include <string.h>
63 1.1 cgd #include <syslog.h>
64 1.5 jtc #include <unistd.h>
65 1.6 jtc #include <utmp.h>
66 1.1 cgd
67 1.1 cgd int debug = 0;
68 1.1 cgd #define dsyslog if (debug) syslog
69 1.1 cgd
70 1.1 cgd #define MAXIDLE 120
71 1.1 cgd
72 1.1 cgd char hostname[MAXHOSTNAMELEN];
73 1.1 cgd struct utmp *utmp = NULL;
74 1.6 jtc time_t lastmsgtime;
75 1.1 cgd int nutmp, uf;
76 1.1 cgd
77 1.6 jtc void jkfprintf __P((FILE *, char[], off_t));
78 1.6 jtc void mailfor __P((char *));
79 1.6 jtc void notify __P((struct utmp *, off_t));
80 1.6 jtc void onalrm __P((int));
81 1.6 jtc void reapchildren __P((int));
82 1.6 jtc
83 1.6 jtc int
84 1.1 cgd main(argc, argv)
85 1.1 cgd int argc;
86 1.6 jtc char *argv[];
87 1.1 cgd {
88 1.6 jtc struct sockaddr_in from;
89 1.1 cgd register int cc;
90 1.6 jtc int fromlen;
91 1.1 cgd char msgbuf[100];
92 1.1 cgd
93 1.1 cgd /* verify proper invocation */
94 1.1 cgd fromlen = sizeof(from);
95 1.1 cgd if (getsockname(0, (struct sockaddr *)&from, &fromlen) < 0) {
96 1.1 cgd (void)fprintf(stderr,
97 1.1 cgd "comsat: getsockname: %s.\n", strerror(errno));
98 1.1 cgd exit(1);
99 1.1 cgd }
100 1.1 cgd openlog("comsat", LOG_PID, LOG_DAEMON);
101 1.1 cgd if (chdir(_PATH_MAILDIR)) {
102 1.1 cgd syslog(LOG_ERR, "chdir: %s: %m", _PATH_MAILDIR);
103 1.6 jtc (void) recv(0, msgbuf, sizeof(msgbuf) - 1, 0);
104 1.1 cgd exit(1);
105 1.1 cgd }
106 1.1 cgd if ((uf = open(_PATH_UTMP, O_RDONLY, 0)) < 0) {
107 1.6 jtc syslog(LOG_ERR, "open: %s: %m", _PATH_UTMP);
108 1.1 cgd (void) recv(0, msgbuf, sizeof(msgbuf) - 1, 0);
109 1.1 cgd exit(1);
110 1.1 cgd }
111 1.1 cgd (void)time(&lastmsgtime);
112 1.1 cgd (void)gethostname(hostname, sizeof(hostname));
113 1.6 jtc onalrm(0);
114 1.1 cgd (void)signal(SIGALRM, onalrm);
115 1.1 cgd (void)signal(SIGTTOU, SIG_IGN);
116 1.1 cgd (void)signal(SIGCHLD, reapchildren);
117 1.1 cgd for (;;) {
118 1.1 cgd cc = recv(0, msgbuf, sizeof(msgbuf) - 1, 0);
119 1.1 cgd if (cc <= 0) {
120 1.1 cgd if (errno != EINTR)
121 1.1 cgd sleep(1);
122 1.1 cgd errno = 0;
123 1.1 cgd continue;
124 1.1 cgd }
125 1.1 cgd if (!nutmp) /* no one has logged in yet */
126 1.1 cgd continue;
127 1.1 cgd sigblock(sigmask(SIGALRM));
128 1.4 cgd msgbuf[cc] = '\0';
129 1.1 cgd (void)time(&lastmsgtime);
130 1.1 cgd mailfor(msgbuf);
131 1.1 cgd sigsetmask(0L);
132 1.1 cgd }
133 1.1 cgd }
134 1.1 cgd
135 1.1 cgd void
136 1.6 jtc reapchildren(signo)
137 1.6 jtc int signo;
138 1.1 cgd {
139 1.6 jtc while (wait3(NULL, WNOHANG, NULL) > 0);
140 1.1 cgd }
141 1.1 cgd
142 1.1 cgd void
143 1.6 jtc onalrm(signo)
144 1.6 jtc int signo;
145 1.1 cgd {
146 1.1 cgd static u_int utmpsize; /* last malloced size for utmp */
147 1.1 cgd static u_int utmpmtime; /* last modification time for utmp */
148 1.1 cgd struct stat statbf;
149 1.1 cgd
150 1.6 jtc if (time(NULL) - lastmsgtime >= MAXIDLE)
151 1.1 cgd exit(0);
152 1.1 cgd (void)alarm((u_int)15);
153 1.1 cgd (void)fstat(uf, &statbf);
154 1.1 cgd if (statbf.st_mtime > utmpmtime) {
155 1.1 cgd utmpmtime = statbf.st_mtime;
156 1.1 cgd if (statbf.st_size > utmpsize) {
157 1.1 cgd utmpsize = statbf.st_size + 10 * sizeof(struct utmp);
158 1.6 jtc if ((utmp = realloc(utmp, utmpsize)) == NULL) {
159 1.6 jtc syslog(LOG_ERR, "%s", strerror(errno));
160 1.1 cgd exit(1);
161 1.1 cgd }
162 1.1 cgd }
163 1.6 jtc (void)lseek(uf, (off_t)0, L_SET);
164 1.1 cgd nutmp = read(uf, utmp, (int)statbf.st_size)/sizeof(struct utmp);
165 1.1 cgd }
166 1.1 cgd }
167 1.1 cgd
168 1.6 jtc void
169 1.1 cgd mailfor(name)
170 1.1 cgd char *name;
171 1.1 cgd {
172 1.1 cgd register struct utmp *utp = &utmp[nutmp];
173 1.1 cgd register char *cp;
174 1.1 cgd off_t offset;
175 1.1 cgd
176 1.6 jtc if (!(cp = strchr(name, '@')))
177 1.1 cgd return;
178 1.1 cgd *cp = '\0';
179 1.1 cgd offset = atoi(cp + 1);
180 1.1 cgd while (--utp >= utmp)
181 1.1 cgd if (!strncmp(utp->ut_name, name, sizeof(utmp[0].ut_name)))
182 1.1 cgd notify(utp, offset);
183 1.1 cgd }
184 1.1 cgd
185 1.1 cgd static char *cr;
186 1.1 cgd
187 1.6 jtc void
188 1.1 cgd notify(utp, offset)
189 1.1 cgd register struct utmp *utp;
190 1.1 cgd off_t offset;
191 1.1 cgd {
192 1.4 cgd FILE *tp;
193 1.4 cgd struct stat stb;
194 1.1 cgd struct sgttyb gttybuf;
195 1.4 cgd char tty[20], name[sizeof(utmp[0].ut_name) + 1];
196 1.1 cgd
197 1.4 cgd (void)snprintf(tty, sizeof(tty), "%s%.*s",
198 1.4 cgd _PATH_DEV, (int)sizeof(utp->ut_line), utp->ut_line);
199 1.6 jtc if (strchr(tty + sizeof(_PATH_DEV) - 1, '/')) {
200 1.4 cgd /* A slash is an attempt to break security... */
201 1.4 cgd syslog(LOG_AUTH | LOG_NOTICE, "'/' in \"%s\"", tty);
202 1.4 cgd return;
203 1.4 cgd }
204 1.1 cgd if (stat(tty, &stb) || !(stb.st_mode & S_IEXEC)) {
205 1.1 cgd dsyslog(LOG_DEBUG, "%s: wrong mode on %s", utp->ut_name, tty);
206 1.1 cgd return;
207 1.1 cgd }
208 1.1 cgd dsyslog(LOG_DEBUG, "notify %s on %s\n", utp->ut_name, tty);
209 1.1 cgd if (fork())
210 1.1 cgd return;
211 1.1 cgd (void)signal(SIGALRM, SIG_DFL);
212 1.1 cgd (void)alarm((u_int)30);
213 1.1 cgd if ((tp = fopen(tty, "w")) == NULL) {
214 1.6 jtc dsyslog(LOG_ERR, "%s: %s", tty, strerror(errno));
215 1.1 cgd _exit(-1);
216 1.1 cgd }
217 1.1 cgd (void)ioctl(fileno(tp), TIOCGETP, >tybuf);
218 1.1 cgd cr = (gttybuf.sg_flags&CRMOD) && !(gttybuf.sg_flags&RAW) ?
219 1.1 cgd "\n" : "\n\r";
220 1.1 cgd (void)strncpy(name, utp->ut_name, sizeof(utp->ut_name));
221 1.1 cgd name[sizeof(name) - 1] = '\0';
222 1.1 cgd (void)fprintf(tp, "%s\007New mail for %s@%.*s\007 has arrived:%s----%s",
223 1.6 jtc cr, name, (int)sizeof(hostname), hostname, cr, cr);
224 1.1 cgd jkfprintf(tp, name, offset);
225 1.1 cgd (void)fclose(tp);
226 1.1 cgd _exit(0);
227 1.1 cgd }
228 1.1 cgd
229 1.6 jtc void
230 1.1 cgd jkfprintf(tp, name, offset)
231 1.1 cgd register FILE *tp;
232 1.1 cgd char name[];
233 1.1 cgd off_t offset;
234 1.1 cgd {
235 1.1 cgd register char *cp, ch;
236 1.1 cgd register FILE *fi;
237 1.1 cgd register int linecnt, charcnt, inheader;
238 1.4 cgd register struct passwd *p;
239 1.1 cgd char line[BUFSIZ];
240 1.1 cgd
241 1.4 cgd /* Set effective uid to user in case mail drop is on nfs */
242 1.6 jtc if ((p = getpwnam(name)) != NULL)
243 1.4 cgd (void) setuid(p->pw_uid);
244 1.4 cgd
245 1.1 cgd if ((fi = fopen(name, "r")) == NULL)
246 1.1 cgd return;
247 1.6 jtc
248 1.1 cgd (void)fseek(fi, offset, L_SET);
249 1.1 cgd /*
250 1.1 cgd * Print the first 7 lines or 560 characters of the new mail
251 1.1 cgd * (whichever comes first). Skip header crap other than
252 1.1 cgd * From, Subject, To, and Date.
253 1.1 cgd */
254 1.1 cgd linecnt = 7;
255 1.1 cgd charcnt = 560;
256 1.1 cgd inheader = 1;
257 1.1 cgd while (fgets(line, sizeof(line), fi) != NULL) {
258 1.1 cgd if (inheader) {
259 1.1 cgd if (line[0] == '\n') {
260 1.1 cgd inheader = 0;
261 1.1 cgd continue;
262 1.1 cgd }
263 1.1 cgd if (line[0] == ' ' || line[0] == '\t' ||
264 1.1 cgd strncmp(line, "From:", 5) &&
265 1.1 cgd strncmp(line, "Subject:", 8))
266 1.1 cgd continue;
267 1.1 cgd }
268 1.1 cgd if (linecnt <= 0 || charcnt <= 0) {
269 1.1 cgd (void)fprintf(tp, "...more...%s", cr);
270 1.6 jtc (void)fclose(fi);
271 1.1 cgd return;
272 1.1 cgd }
273 1.1 cgd /* strip weird stuff so can't trojan horse stupid terminals */
274 1.1 cgd for (cp = line; (ch = *cp) && ch != '\n'; ++cp, --charcnt) {
275 1.1 cgd ch = toascii(ch);
276 1.1 cgd if (!isprint(ch) && !isspace(ch))
277 1.1 cgd ch |= 0x40;
278 1.1 cgd (void)fputc(ch, tp);
279 1.1 cgd }
280 1.1 cgd (void)fputs(cr, tp);
281 1.1 cgd --linecnt;
282 1.1 cgd }
283 1.1 cgd (void)fprintf(tp, "----%s\n", cr);
284 1.6 jtc (void)fclose(fi);
285 1.1 cgd }
286