hush: rename hush-redir/redir3.tests (ash has redir3.tests which id different)
[oweals/busybox.git] / shell / cttyhack.c
index 37ea13723eef838e32015bf54ce904db03b9b96f..f9b59c26321906d9b7039fc977ebf80cbe8ca6b4 100644 (file)
 //config:
 //config:        # exec setsid sh -c 'exec sh </dev/tty1 >/dev/tty1 2>&1'
 //config:
+//config:        Starting getty on a controlling tty from a shell script:
+//config:
+//config:        # getty 115200 $(cttyhack)
 
 //usage:#define cttyhack_trivial_usage
-//usage:       "PROG ARGS"
+//usage:       "[PROG ARGS]"
 //usage:#define cttyhack_full_usage "\n\n"
 //usage:       "Give PROG a controlling tty if possible."
 //usage:     "\nExample for /etc/inittab (for busybox init):"
@@ -108,61 +111,78 @@ int cttyhack_main(int argc UNUSED_PARAM, char **argv)
                char paranoia[sizeof(struct serial_struct) * 3];
        } u;
 
-       if (!*++argv) {
-               bb_show_usage();
-       }
-
        strcpy(console, "/dev/tty");
        fd = open(console, O_RDWR);
-       if (fd >= 0) {
-               /* We already have ctty, nothing to do */
-               close(fd);
-       } else {
+       if (fd < 0) {
                /* We don't have ctty (or don't have "/dev/tty" node...) */
                do {
 #ifdef __linux__
+                       /* Note that this method does not use _stdin_.
+                        * Thus, "cttyhack </dev/something" can't be used.
+                        * However, this method is more reliable than
+                        * TIOCGSERIAL check, which assumes that all
+                        * serial lines follow /dev/ttySn convention -
+                        * which is not always the case.
+                        * Therefore, we use this method first:
+                        */
                        int s = open_read_close("/sys/class/tty/console/active",
                                console + 5, sizeof(console) - 5);
                        if (s > 0) {
-                               /* found active console via sysfs (Linux 2.6.38+)
-                                * sysfs string looks like "ttyS0\n" so zap the newline:
+                               char *last;
+                               /* Found active console via sysfs (Linux 2.6.38+).
+                                * It looks like "[tty0 ]ttyS0\n" so zap the newline:
                                 */
                                console[4 + s] = '\0';
+                               /* If there are multiple consoles,
+                                * take the last one:
+                                */
+                               last = strrchr(console + 5, ' ');
+                               if (last)
+                                       overlapping_strcpy(console + 5, last + 1);
                                break;
                        }
 
                        if (ioctl(0, VT_GETSTATE, &u.vt) == 0) {
                                /* this is linux virtual tty */
-                               sprintf(console + 8, "S%d" + 1, u.vt.v_active);
+                               sprintf(console + 8, "S%u" + 1, (int)u.vt.v_active);
                                break;
                        }
 #endif
 #ifdef TIOCGSERIAL
                        if (ioctl(0, TIOCGSERIAL, &u.sr) == 0) {
-                               /* this is a serial console, asuming it is named /dev/ttySn */
-                               sprintf(console + 8, "S%d", u.sr.line);
+                               /* this is a serial console; assuming it is named /dev/ttySn */
+                               sprintf(console + 8, "S%u", (int)u.sr.line);
                                break;
                        }
 #endif
                        /* nope, could not find it */
-                       goto ret;
+                       console[0] = '\0';
                } while (0);
+       }
+
+       argv++;
+       if (!argv[0]) {
+               if (!console[0])
+                       return EXIT_FAILURE;
+               puts(console);
+               return EXIT_SUCCESS;
+       }
 
+       if (fd < 0) {
                fd = open_or_warn(console, O_RDWR);
                if (fd < 0)
                        goto ret;
-               //bb_error_msg("switching to '%s'", console);
-               dup2(fd, 0);
-               dup2(fd, 1);
-               dup2(fd, 2);
-               while (fd > 2)
-                       close(fd--);
-               /* Some other session may have it as ctty,
-                * steal it from them:
-                */
-               ioctl(0, TIOCSCTTY, 1);
        }
-
-ret:
+       //bb_error_msg("switching to '%s'", console);
+       dup2(fd, 0);
+       dup2(fd, 1);
+       dup2(fd, 2);
+       while (fd > 2)
+               close(fd--);
+       /* Some other session may have it as ctty,
+        * try to steal it from them:
+        */
+       ioctl(0, TIOCSCTTY, 1);
+ ret:
        BB_EXECVP_or_die(argv);
 }