summaryrefslogtreecommitdiffstats
path: root/x11vnc/x11vnc.c
diff options
context:
space:
mode:
authorrunge <runge>2007-05-05 14:53:21 +0000
committerrunge <runge>2007-05-05 14:53:21 +0000
commit76d88e31114b5cc0f66f90e76eb9c734bbc9bf4b (patch)
treef73a4304be4d827eb62a9a7732563cc79391edaf /x11vnc/x11vnc.c
parent6378acecb04b2824179fea0ab168cbfcb960e70d (diff)
downloadlibvncserver-76d88e31114b5cc0f66f90e76eb9c734bbc9bf4b.zip
libvncserver-76d88e31114b5cc0f66f90e76eb9c734bbc9bf4b.tar.gz
x11vnc: add groups handling for -users mode.
Diffstat (limited to 'x11vnc/x11vnc.c')
-rw-r--r--x11vnc/x11vnc.c50
1 files changed, 49 insertions, 1 deletions
diff --git a/x11vnc/x11vnc.c b/x11vnc/x11vnc.c
index b8733fc..b9abaf3 100644
--- a/x11vnc/x11vnc.c
+++ b/x11vnc/x11vnc.c
@@ -963,7 +963,7 @@ static void immediate_switch_user(int argc, char* argv[]) {
}
}
for (i=1; i < argc; i++) {
- char *u;
+ char *u, *q;
if (strcmp(argv[i], "-users")) {
continue;
@@ -979,6 +979,13 @@ static void immediate_switch_user(int argc, char* argv[]) {
/* wants an immediate switch: =bob */
u = strdup(argv[i+1]);
*u = '+';
+ q = strchr(u, '.');
+ if (q) {
+ user2group = (char **) malloc(2*sizeof(char *));
+ user2group[0] = strdup(u+1);
+ user2group[1] = NULL;
+ *q = '\0';
+ }
if (strstr(u, "+guess") == u) {
fprintf(stderr, "invalid user: %s\n", u+1);
exit(1);
@@ -2934,6 +2941,47 @@ int main(int argc, char* argv[]) {
launch_gui = 0;
}
+ if (users_list && strchr(users_list, '.')) {
+ char *p, *q, *tmp = (char *) malloc(strlen(users_list)+1);
+ char *str = strdup(users_list);
+ int i, n, db = 1;
+
+ tmp[0] = '\0';
+
+ n = strlen(users_list) + 1;
+ user2group = (char **) malloc(n * sizeof(char *));
+ for (i=0; i<n; i++) {
+ user2group[i] = NULL;
+ }
+
+ i = 0;
+ p = strtok(str, ",");
+ if (db) fprintf(stderr, "users_list: %s\n", users_list);
+ while (p) {
+ if (tmp[0] != '\0') {
+ strcat(tmp, ",");
+ }
+ q = strchr(p, '.');
+ if (q) {
+ char *s = strchr(p, '=');
+ if (! s) {
+ s = p;
+ } else {
+ s++;
+ }
+ if (s[0] == '+') s++;
+ user2group[i++] = strdup(s);
+ if (db) fprintf(stderr, "u2g: %s\n", s);
+ *q = '\0';
+ }
+ strcat(tmp, p);
+ p = strtok(NULL, ",");
+ }
+ free(str);
+ users_list = tmp;
+ if (db) fprintf(stderr, "users_list: %s\n", users_list);
+ }
+
if (unixpw) {
if (inetd) {
use_stunnel = 0;
OpenPOWER on IntegriCloud