diff options
-rw-r--r-- | src/main.c | 8 | ||||
-rw-r--r-- | src/main.h | 2 | ||||
-rw-r--r-- | src/rpc.c | 7 | ||||
-rw-r--r-- | src/warn.c | 11 | ||||
-rw-r--r-- | src/warn.h | 2 |
5 files changed, 27 insertions, 3 deletions
@@ -558,3 +558,11 @@ void main_queueAction( enum Shutdown action, int delta ) } } +void main_warnAll( const char *message ) +{ + for ( int idx = 0; idx < userCount; ++idx ) { + showWarning( &users[idx], "Warning", message ); + } +} + + @@ -23,4 +23,6 @@ struct user* main_getUser( const char *terminal ); void main_queueAction( enum Shutdown action, int seconds ); +void main_warnAll( const char *message ); + #endif @@ -196,6 +196,13 @@ static void handleClient( int fd, struct ucred *creds ) SENDSTRING( fd, "ok" ); } } + } else if ( strncmp( buffer, "warn ", 5 ) == 0 ) { + if ( creds->uid != 0 ) { + SENDSTRING( fd, "error only root can do this" ); + } else { + main_warnAll( buffer + 5 ); + SENDSTRING( fd, "ok" ); + } } else { SENDSTRING( fd, "error unknown command" ); } @@ -57,6 +57,11 @@ void warnUser( struct user *usr, enum Warning what, int seconds ) seconds %= 60; char buffer[1000]; snprintf( buffer, sizeof(buffer), warning->message, minutes, seconds, minutes, seconds ); + showWarning( usr, warning->title, buffer ); +} + +void showWarning( const struct user *usr, const char *title, const char *body ) +{ // Text or X11 warning if ( *usr->display ) { // notify-send @@ -66,7 +71,7 @@ void warnUser( struct user *usr, enum Warning what, int seconds ) if ( usr->xauth[0] != '\0' && usr->xauth[0] != '-' ) { setenv( "XAUTHORITY", usr->xauth, 1 ); } - run( false, "notify-send", "-t", "15000", warning->title, buffer, (char*)NULL ); + run( false, "notify-send", "-t", "15000", title, body, (char*)NULL ); } } else { // write to device @@ -76,9 +81,9 @@ void warnUser( struct user *usr, enum Warning what, int seconds ) if ( fh == NULL ) return; fputs( "\n\n****************************\n", fh ); - fputs( warning->title, fh ); + fputs( title, fh ); fputs( "\n****************************\n", fh ); - fputs( buffer, fh ); + fputs( body, fh ); fputs( "\n****************************\n\n", fh ); fclose( fh ); } @@ -14,5 +14,7 @@ enum Warning void warnUser( struct user *usr, enum Warning what, int seconds ); +void showWarning( const struct user *usr, const char *title, const char *body ); + #endif |