busybox/init/mesg.c

48 lines
1014 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
2002-09-16 09:51:46 +05:30
/*
* mesg implementation for busybox
2002-09-16 09:51:46 +05:30
*
* Copyright (c) 2002 Manuel Novoa III <mjn3@codepoet.org>
2002-09-16 09:51:46 +05:30
*
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
2002-09-16 09:51:46 +05:30
*/
#include "busybox.h"
2002-09-16 09:51:46 +05:30
#include <unistd.h>
#include <stdlib.h>
#ifdef USE_TTY_GROUP
#define S_IWGRP_OR_S_IWOTH S_IWGRP
#else
#define S_IWGRP_OR_S_IWOTH (S_IWGRP | S_IWOTH)
#endif
int mesg_main(int argc, char *argv[])
2002-09-16 09:51:46 +05:30
{
struct stat sb;
char *tty;
2004-08-28 01:25:28 +05:30
char c = 0;
2002-09-16 09:51:46 +05:30
if ((--argc == 0)
|| ((argc == 1) && (((c = **++argv) == 'y') || (c == 'n')))) {
if ((tty = ttyname(STDERR_FILENO)) == NULL) {
tty = "ttyname";
} else if (stat(tty, &sb) == 0) {
if (argc == 0) {
puts(((sb.st_mode & (S_IWGRP | S_IWOTH)) ==
0) ? "is n" : "is y");
return EXIT_SUCCESS;
}
if (chmod
(tty,
(c ==
'y') ? sb.st_mode | (S_IWGRP_OR_S_IWOTH) : sb.
st_mode & ~(S_IWGRP | S_IWOTH)) == 0) {
return EXIT_SUCCESS;
}
}
2003-03-19 14:43:01 +05:30
bb_perror_msg_and_die("%s", tty);
2002-09-16 09:51:46 +05:30
}
2003-03-19 14:43:01 +05:30
bb_show_usage();
2002-09-16 09:51:46 +05:30
}