get_terminal_width_height: do not pass insanely large values
This commit is contained in:
parent
d3d004dd35
commit
621204bbf6
@ -58,7 +58,6 @@ int watch_main(int argc, char **argv)
|
|||||||
time_t t;
|
time_t t;
|
||||||
|
|
||||||
get_terminal_width_height(STDOUT_FILENO, &width, 0);
|
get_terminal_width_height(STDOUT_FILENO, &width, 0);
|
||||||
if (width < 1) width = 1; // paranoia
|
|
||||||
header = xrealloc(header, width--);
|
header = xrealloc(header, width--);
|
||||||
// '%-*s' pads header with spaces to the full width
|
// '%-*s' pads header with spaces to the full width
|
||||||
snprintf(header, width, "Every %ds: %-*s", period, width, cmd);
|
snprintf(header, width, "Every %ds: %-*s", period, width, cmd);
|
||||||
|
@ -281,6 +281,8 @@ off_t fdlength(int fd)
|
|||||||
|
|
||||||
if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
|
if (ioctl(fd, BLKGETSIZE, &size) >= 0) return size*512;
|
||||||
|
|
||||||
|
// FIXME: explain why lseek(SEEK_END) is not used here!
|
||||||
|
|
||||||
// If not, do a binary search for the last location we can read. (Some
|
// If not, do a binary search for the last location we can read. (Some
|
||||||
// block devices don't do BLKGETSIZE right.)
|
// block devices don't do BLKGETSIZE right.)
|
||||||
|
|
||||||
@ -382,7 +384,8 @@ DIR *xopendir(const char *path)
|
|||||||
// Die with an error message if we can't daemonize.
|
// Die with an error message if we can't daemonize.
|
||||||
void xdaemon(int nochdir, int noclose)
|
void xdaemon(int nochdir, int noclose)
|
||||||
{
|
{
|
||||||
if (daemon(nochdir, noclose)) bb_perror_msg_and_die("daemon");
|
if (daemon(nochdir, noclose))
|
||||||
|
bb_perror_msg_and_die("daemon");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -416,23 +419,31 @@ void xstat(char *name, struct stat *stat_buf)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* It is perfectly ok to pass in a NULL for either width or for
|
/* It is perfectly ok to pass in a NULL for either width or for
|
||||||
* * height, in which case that value will not be set. */
|
* height, in which case that value will not be set. */
|
||||||
int get_terminal_width_height(int fd, int *width, int *height)
|
int get_terminal_width_height(int fd, int *width, int *height)
|
||||||
{
|
{
|
||||||
struct winsize win = { 0, 0, 0, 0 };
|
struct winsize win = { 0, 0, 0, 0 };
|
||||||
int ret = ioctl(fd, TIOCGWINSZ, &win);
|
int ret = ioctl(fd, TIOCGWINSZ, &win);
|
||||||
|
|
||||||
|
if (height) {
|
||||||
if (!win.ws_row) {
|
if (!win.ws_row) {
|
||||||
char *s = getenv("LINES");
|
char *s = getenv("LINES");
|
||||||
if (s) win.ws_row = atoi(s);
|
if (s) win.ws_row = atoi(s);
|
||||||
}
|
}
|
||||||
if (win.ws_row <= 1) win.ws_row = 24;
|
if (win.ws_row <= 1 || win.ws_row >= 30000)
|
||||||
|
win.ws_row = 24;
|
||||||
|
*height = (int) win.ws_row;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (width) {
|
||||||
if (!win.ws_col) {
|
if (!win.ws_col) {
|
||||||
char *s = getenv("COLUMNS");
|
char *s = getenv("COLUMNS");
|
||||||
if (s) win.ws_col = atoi(s);
|
if (s) win.ws_col = atoi(s);
|
||||||
}
|
}
|
||||||
if (win.ws_col <= 1) win.ws_col = 80;
|
if (win.ws_col <= 1 || win.ws_col >= 30000)
|
||||||
if (height) *height = (int) win.ws_row;
|
win.ws_col = 80;
|
||||||
if (width) *width = (int) win.ws_col;
|
*width = (int) win.ws_col;
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -676,7 +676,7 @@ getttywidth(void)
|
|||||||
{
|
{
|
||||||
int width=0;
|
int width=0;
|
||||||
get_terminal_width_height(0, &width, NULL);
|
get_terminal_width_height(0, &width, NULL);
|
||||||
return (width);
|
return width;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user