]>
git.cameronkatri.com Git - apple_cmds.git/blob - basic_cmds/write/write.c
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Jef Poskanzer and Craig Leres of the Lawrence Berkeley Laboratory.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #include <sys/cdefs.h>
39 __unused
static const char copyright
[] =
40 "@(#) Copyright (c) 1989, 1993\n\
41 The Regents of the University of California. All rights reserved.\n";
46 static char sccsid
[] = "@(#)write.c 8.1 (Berkeley) 6/6/93";
50 __RCSID("$FreeBSD: src/usr.bin/write/write.c,v 1.17 2002/09/04 23:29:09 dwmalone Exp $");
52 #include <sys/param.h>
53 #include <sys/signal.h>
69 void do_write(char *, char *, uid_t
);
70 static void usage(void);
71 int term_chk(char *, int *, time_t *, int);
72 void wr_fputs(unsigned char *s
);
73 void search_utmp(char *, char *, char *, uid_t
);
74 int utmp_chk(char *, char *);
77 main(int argc
, char **argv
)
83 char tty
[MAXPATHLEN
], *mytty
;
85 (void)setlocale(LC_CTYPE
, "");
87 while (getopt(argc
, argv
, "") != -1)
92 /* check that sender has write enabled */
93 if (isatty(fileno(stdin
)))
94 myttyfd
= fileno(stdin
);
95 else if (isatty(fileno(stdout
)))
96 myttyfd
= fileno(stdout
);
97 else if (isatty(fileno(stderr
)))
98 myttyfd
= fileno(stderr
);
105 if (!(mytty
= ttyname(myttyfd
)))
106 errx(1, "can't find your tty's name");
107 if ((cp
= rindex(mytty
, '/')))
109 if (term_chk(mytty
, &msgsok
, &atime
, 1))
112 errx(1, "you have write permission turned off");
119 search_utmp(argv
[0], tty
, mytty
, myuid
);
120 do_write(tty
, mytty
, myuid
);
123 if (!strncmp(argv
[1], _PATH_DEV
, strlen(_PATH_DEV
)))
124 argv
[1] += strlen(_PATH_DEV
);
125 if (utmp_chk(argv
[0], argv
[1]))
126 errx(1, "%s is not logged in on %s", argv
[0], argv
[1]);
127 if (term_chk(argv
[1], &msgsok
, &atime
, 1))
129 if (myuid
&& !msgsok
)
130 errx(1, "%s has messages disabled on %s", argv
[0], argv
[1]);
131 do_write(argv
[1], mytty
, myuid
);
143 (void)fprintf(stderr
, "usage: write user [tty]\n");
148 * utmp_chk - checks that the given user is actually logged in on
152 utmp_chk(char *user
, char *tty
)
157 while((u
= getutxent()) != NULL
)
158 if(strncmp(u
->ut_line
, tty
, sizeof(u
->ut_line
)) == 0) {
159 if(u
->ut_type
== USER_PROCESS
&&
160 strncmp(u
->ut_user
, user
, sizeof(u
->ut_user
)) == 0) {
171 * search_utmp - search utmp for the "best" terminal to write to
173 * Ignores terminals with messages disabled, and of the rest, returns
174 * the one with the most recent access time. Returns as value the number
175 * of the user's terminals with messages enabled, or -1 if the user is
176 * not logged in at all.
178 * Special case for writing to yourself - ignore the terminal you're
179 * writing from, unless that's the only terminal with messages enabled.
182 search_utmp(char *user
, char *tty
, char *mytty
, uid_t myuid
)
185 time_t bestatime
, atime
;
186 int nloggedttys
, nttys
, msgsok
, user_is_me
;
187 char atty
[sizeof(ux
.ut_line
) + 1];
189 nloggedttys
= nttys
= 0;
193 while ((u
= getutxent()) != NULL
) {
194 if (u
->ut_type
!= USER_PROCESS
)
196 if (strncmp(user
, u
->ut_user
, sizeof(u
->ut_user
)) == 0) {
198 (void)strlcpy(atty
, u
->ut_line
, sizeof(atty
));
199 if (term_chk(atty
, &msgsok
, &atime
, 0))
200 continue; /* bad term? skip */
201 if (myuid
&& !msgsok
)
202 continue; /* skip ttys with msgs off */
203 if (strcmp(atty
, mytty
) == 0) {
205 continue; /* don't write to yourself */
208 if (atime
> bestatime
) {
210 (void)strcpy(tty
, atty
);
216 if (nloggedttys
== 0)
217 errx(1, "%s is not logged in", user
);
219 if (user_is_me
) { /* ok, so write to yourself! */
220 (void)strcpy(tty
, mytty
);
223 errx(1, "%s has messages disabled", user
);
224 } else if (nttys
> 1) {
225 warnx("%s is logged in more than once; writing to %s", user
, tty
);
230 * term_chk - check that a terminal exists, and get the message bit
231 * and the access time
234 term_chk(char *tty
, int *msgsokP
, time_t *atimeP
, int showerror
)
237 char path
[MAXPATHLEN
];
239 (void)snprintf(path
, sizeof(path
), "%s%s", _PATH_DEV
, tty
);
240 if (stat(path
, &s
) < 0) {
245 *msgsokP
= (s
.st_mode
& (S_IWRITE
>> 3)) != 0; /* group write bit */
246 *atimeP
= s
.st_atime
;
251 * do_write - actually make the connection
254 do_write(char *tty
, char *mytty
, uid_t myuid
)
260 char path
[MAXPATHLEN
], host
[MAXHOSTNAMELEN
], line
[512];
262 /* Determine our login name before the we reopen() stdout */
263 if ((login
= getlogin()) == NULL
) {
264 if ((pwd
= getpwuid(myuid
)))
265 login
= pwd
->pw_name
;
270 (void)snprintf(path
, sizeof(path
), "%s%s", _PATH_DEV
, tty
);
271 if ((freopen(path
, "w", stdout
)) == NULL
)
274 (void)signal(SIGINT
, done
);
275 (void)signal(SIGHUP
, done
);
278 if (gethostname(host
, sizeof(host
)) < 0)
279 (void)strcpy(host
, "???");
280 now
= time((time_t *)NULL
);
283 (void)printf("\r\n\007\007\007Message from %s@%s on %s at %s ...\r\n",
284 login
, host
, mytty
, nows
+ 11);
286 while (fgets(line
, sizeof(line
), stdin
) != NULL
)
287 wr_fputs((unsigned char *)line
);
291 * done - cleanup and exit
296 (void)printf("EOF\r\n");
301 * wr_fputs - like fputs(), but makes control characters visible and
305 wr_fputs(unsigned char *s
)
308 #define PUTC(c) if (putchar(c) == EOF) err(1, NULL);
310 for (; *s
!= '\0'; ++s
) {
313 } else if (((*s
& 0x80) && *s
< 0xA0) ||
314 /* disable upper controls */
315 (!isprint(*s
) && !isspace(*s
) &&
316 *s
!= '\a' && *s
!= '\b')