www.usr.com/support/gpl/USR9108_release1.5.tar.gz
[bcm963xx.git] / userapps / opensource / busybox / init / mesg.c
1 /*
2  *  mesg implementation for busybox
3  *
4  *  Copyright (c) 2002 Manuel Novoa III  <mjn3@codepoet.org>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include <unistd.h>
22 #include <stdlib.h>
23 #include "libbb.h"
24
25 #ifdef USE_TTY_GROUP
26 #define S_IWGRP_OR_S_IWOTH      S_IWGRP
27 #else
28 #define S_IWGRP_OR_S_IWOTH      (S_IWGRP | S_IWOTH)
29 #endif
30
31 extern int mesg_main(int argc, char *argv[])
32 {
33         struct stat sb;
34         char *tty;
35         char c = 0;
36
37         if ((--argc == 0)
38                 || ((argc == 1) && (((c = **++argv) == 'y') || (c == 'n')))) {
39                 if ((tty = ttyname(STDERR_FILENO)) == NULL) {
40                         tty = "ttyname";
41                 } else if (stat(tty, &sb) == 0) {
42                         if (argc == 0) {
43                                 puts(((sb.st_mode & (S_IWGRP | S_IWOTH)) ==
44                                           0) ? "is n" : "is y");
45                                 return EXIT_SUCCESS;
46                         }
47                         if (chmod
48                                 (tty,
49                                  (c ==
50                                   'y') ? sb.st_mode | (S_IWGRP_OR_S_IWOTH) : sb.
51                                  st_mode & ~(S_IWGRP | S_IWOTH)) == 0) {
52                                 return EXIT_SUCCESS;
53                         }
54                 }
55                 bb_perror_msg_and_die("%s", tty);
56         }
57         bb_show_usage();
58 }