Skip to content

Commit 59cdccb

Browse files
committed
make render thread optional
theoretical potential security concerns; no use unless using bar and you care... I hammered pretty hard on my kb for a while to try and see if it's possible to configure it poorly and get the render thread to crash, but to no avail.
1 parent 3edfb79 commit 59cdccb

File tree

4 files changed

+45
-12
lines changed

4 files changed

+45
-12
lines changed

i3lock.c

+18-10
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,9 @@ bool skip_repeated_empty_password = false;
182182

183183
// for the rendering thread, so we can clean it up
184184
pthread_t draw_thread;
185+
// main thread still sometimes calls redraw()
186+
// allow you to disable. handy if you use bar with lots of crap.
187+
bool redraw_thread = false;
185188

186189
#define BAR_VERT 0
187190
#define BAR_FLAT 1
@@ -1097,6 +1100,8 @@ int main(int argc, char *argv[]) {
10971100
{"bar-periodic-step", required_argument, NULL, 0},
10981101
{"bar-position", required_argument, NULL, 0},
10991102

1103+
{"redraw-thread", no_argument, NULL, 0},
1104+
11001105
{NULL, no_argument, NULL, 0}};
11011106

11021107
if ((pw = getpwuid(getuid())) == NULL)
@@ -1579,9 +1584,10 @@ int main(int argc, char *argv[]) {
15791584
if (sscanf(arg, "%31s", bar_expr) != 1) {
15801585
errx(1, "bar-position must be of the form [pos] with a max length of 31\n");
15811586
}
1582-
15831587
}
1584-
1588+
else if (strcmp(longopts[longoptind].name, "redraw-thread") == 0) {
1589+
redraw_thread = true;
1590+
}
15851591

15861592
break;
15871593
case 'f':
@@ -1816,15 +1822,17 @@ int main(int argc, char *argv[]) {
18161822
* file descriptor becomes readable). */
18171823
ev_invoke(main_loop, xcb_check, 0);
18181824

1819-
// boy i sure hope this doesnt change in the future
1820-
#define NANOSECONDS_IN_SECOND 1000000000
18211825
if (show_clock || bar_enabled) {
1822-
struct timespec ts;
1823-
double s;
1824-
double ns = modf(refresh_rate, &s);
1825-
ts.tv_sec = (time_t) s;
1826-
ts.tv_nsec = ns * NANOSECONDS_IN_SECOND;
1827-
(void) pthread_create(&draw_thread, NULL, start_time_redraw_tick, (void*) &ts);
1826+
if (redraw_thread) {
1827+
struct timespec ts;
1828+
double s;
1829+
double ns = modf(refresh_rate, &s);
1830+
ts.tv_sec = (time_t) s;
1831+
ts.tv_nsec = ns * NANOSECONDS_IN_SECOND;
1832+
(void) pthread_create(&draw_thread, NULL, start_time_redraw_tick_pthread, (void*) &ts);
1833+
} else {
1834+
start_time_redraw_tick(main_loop);
1835+
}
18281836
}
18291837
ev_loop(main_loop, 0);
18301838

i3lock.h

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#ifndef _I3LOCK_H
22
#define _I3LOCK_H
33

4+
// boy i sure hope this doesnt change in the future
5+
#define NANOSECONDS_IN_SECOND 1000000000
6+
47
/* This macro will only print debug output when started with --debug.
58
* This is important because xautolock (for example) closes stdout/stderr by
69
* default, so just printing something to stdout will lead to the data ending

unlock_indicator.c

+22-1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ extern xcb_screen_t *screen;
133133
* Local variables.
134134
******************************************************************************/
135135

136+
/* time stuff */
137+
static struct ev_periodic *time_redraw_tick;
138+
136139
/* Cache the screen’s visual, necessary for creating a Cairo context. */
137140
static xcb_visualtype_t *vistype;
138141

@@ -969,11 +972,29 @@ void clear_indicator(void) {
969972
redraw_screen();
970973
}
971974

972-
void* start_time_redraw_tick(void* arg) {
975+
void* start_time_redraw_tick_pthread(void* arg) {
973976
struct timespec *ts = (struct timespec *) arg;
974977
while(1) {
975978
nanosleep(ts, NULL);
976979
redraw_screen();
977980
}
978981
return NULL;
979982
}
983+
984+
static void time_redraw_cb(struct ev_loop *loop, ev_periodic *w, int revents) {
985+
redraw_screen();
986+
}
987+
988+
void start_time_redraw_tick(struct ev_loop* main_loop) {
989+
if (time_redraw_tick) {
990+
ev_periodic_set(time_redraw_tick, 0., refresh_rate, 0);
991+
ev_periodic_again(main_loop, time_redraw_tick);
992+
} else {
993+
if (!(time_redraw_tick = calloc(sizeof(struct ev_periodic), 1))) {
994+
return;
995+
}
996+
ev_periodic_init(time_redraw_tick, time_redraw_cb, 0., refresh_rate, 0);
997+
ev_periodic_start(main_loop, time_redraw_tick);
998+
}
999+
}
1000+

unlock_indicator.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,6 @@ void init_colors_once(void);
5151
void redraw_screen(void);
5252
void clear_indicator(void);
5353
void start_time_redraw_timeout(void);
54-
void* start_time_redraw_tick(void* arg);
54+
void* start_time_redraw_tick_pthread(void* arg);
55+
void start_time_redraw_tick(struct ev_loop* main_loop);
5556
#endif

0 commit comments

Comments
 (0)