fgconsole.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini fgconsole implementation for busybox
  4. *
  5. * Copyright (C) 2010 by Grigory Batalov <bga@altlinux.org>
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. */
  9. //config:config FGCONSOLE
  10. //config: bool "fgconsole (1.8 kb)"
  11. //config: default y
  12. //config: help
  13. //config: This program prints active (foreground) console number.
  14. //applet:IF_FGCONSOLE(APPLET_NOEXEC(fgconsole, fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP, fgconsole))
  15. //kbuild:lib-$(CONFIG_FGCONSOLE) += fgconsole.o
  16. //usage:#define fgconsole_trivial_usage
  17. //usage: ""
  18. //usage:#define fgconsole_full_usage "\n\n"
  19. //usage: "Get active console"
  20. #include "libbb.h"
  21. /* From <linux/vt.h> */
  22. struct vt_stat {
  23. unsigned short v_active; /* active vt */
  24. unsigned short v_signal; /* signal to send */
  25. unsigned short v_state; /* vt bitmask */
  26. };
  27. enum { VT_GETSTATE = 0x5603 }; /* get global vt state info */
  28. int fgconsole_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  29. int fgconsole_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
  30. {
  31. struct vt_stat vtstat;
  32. vtstat.v_active = 0;
  33. xioctl(get_console_fd_or_die(), VT_GETSTATE, &vtstat);
  34. printf("%d\n", vtstat.v_active);
  35. return EXIT_SUCCESS;
  36. }