trying to get HEAD building again. If you want the code
[tprouty/samba.git] / source / nsswitch / wbinfo.c
index d7d70b9e52e29a2b2ba58bbd1a21dcf545df7586..f53379937043fb1a80e3a91579196faf809f5b8e 100644 (file)
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_WINBIND
 
-/* Prototypes from common.h */
-
-NSS_STATUS winbindd_request(int req_type, 
-                           struct winbindd_request *request,
-                           struct winbindd_response *response);
+extern int winbindd_fd;
 
 static char winbind_separator(void)
 {
@@ -66,7 +62,7 @@ static char winbind_separator(void)
        return sep;
 }
 
-static char *get_winbind_domain(void)
+static const char *get_winbind_domain(void)
 {
        struct winbindd_response response;
        static fstring winbind_domain;
@@ -107,7 +103,7 @@ static BOOL parse_wbinfo_domain_user(const char *domuser, fstring domain,
        fstrcpy(user, p+1);
        fstrcpy(domain, domuser);
        domain[PTR_DIFF(p, domuser)] = 0;
-       strupper(domain);
+       strupper_m(domain);
 
        return True;
 }
@@ -210,7 +206,7 @@ static BOOL wbinfo_list_domains(void)
        /* Display response */
 
        if (response.extra_data) {
-               char *extra_data = (char *)response.extra_data;
+               const char *extra_data = (char *)response.extra_data;
 
                while(next_token(&extra_data, name, ",", sizeof(fstring)))
                        d_printf("%s\n", name);
@@ -450,9 +446,11 @@ static BOOL wbinfo_auth(char *username)
         d_printf("plaintext password authentication %s\n", 
                (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
 
-       d_printf("error code was %s (0x%x)\n", 
-                response.data.auth.nt_status_string, 
-                response.data.auth.nt_status);
+       if (response.data.auth.nt_status)
+               d_printf("error code was %s (0x%x)\nerror messsage was: %s\n", 
+                        response.data.auth.nt_status_string, 
+                        response.data.auth.nt_status,
+                        response.data.auth.error_string);
 
         return result == NSS_STATUS_SUCCESS;
 }
@@ -504,10 +502,181 @@ static BOOL wbinfo_auth_crap(char *username)
         d_printf("challenge/response password authentication %s\n", 
                (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
 
-       d_printf("error code was %s (0x%x)\n", 
-              response.data.auth.nt_status_string, 
-              response.data.auth.nt_status);
+       if (response.data.auth.nt_status)
+               d_printf("error code was %s (0x%x)\nerror messsage was: %s\n", 
+                        response.data.auth.nt_status_string, 
+                        response.data.auth.nt_status,
+                        response.data.auth.error_string);
+
+        return result == NSS_STATUS_SUCCESS;
+}
+
+/******************************************************************
+ create a winbindd user
+******************************************************************/
+
+static BOOL wbinfo_create_user(char *username)
+{
+       struct winbindd_request request;
+       struct winbindd_response response;
+        NSS_STATUS result;
+
+       /* Send off request */
+
+       ZERO_STRUCT(request);
+       ZERO_STRUCT(response);
+
+       request.flags = WBFLAG_ALLOCATE_RID;
+       fstrcpy(request.data.acct_mgt.username, username);
+
+       result = winbindd_request(WINBINDD_CREATE_USER, &request, &response);
+       
+       if ( result == NSS_STATUS_SUCCESS )
+               d_printf("New RID is %d\n", response.data.rid);
+       
+        return result == NSS_STATUS_SUCCESS;
+}
+
+/******************************************************************
+ remove a winbindd user
+******************************************************************/
+
+static BOOL wbinfo_delete_user(char *username)
+{
+       struct winbindd_request request;
+       struct winbindd_response response;
+        NSS_STATUS result;
+
+       /* Send off request */
+
+       ZERO_STRUCT(request);
+       ZERO_STRUCT(response);
+
+       fstrcpy(request.data.acct_mgt.username, username);
 
+       result = winbindd_request(WINBINDD_DELETE_USER, &request, &response);
+       
+        return result == NSS_STATUS_SUCCESS;
+}
+
+/******************************************************************
+ create a winbindd group
+******************************************************************/
+
+static BOOL wbinfo_create_group(char *groupname)
+{
+       struct winbindd_request request;
+       struct winbindd_response response;
+        NSS_STATUS result;
+
+       /* Send off request */
+
+       ZERO_STRUCT(request);
+       ZERO_STRUCT(response);
+
+       fstrcpy(request.data.acct_mgt.groupname, groupname);
+
+       result = winbindd_request(WINBINDD_CREATE_GROUP, &request, &response);
+       
+        return result == NSS_STATUS_SUCCESS;
+}
+
+/******************************************************************
+ remove a winbindd group
+******************************************************************/
+
+static BOOL wbinfo_delete_group(char *groupname)
+{
+       struct winbindd_request request;
+       struct winbindd_response response;
+        NSS_STATUS result;
+
+       /* Send off request */
+
+       ZERO_STRUCT(request);
+       ZERO_STRUCT(response);
+
+       fstrcpy(request.data.acct_mgt.groupname, groupname);
+
+       result = winbindd_request(WINBINDD_DELETE_GROUP, &request, &response);
+       
+        return result == NSS_STATUS_SUCCESS;
+}
+
+/******************************************************************
+ parse a string in the form user:group
+******************************************************************/
+
+static BOOL parse_user_group( const char *string, fstring user, fstring group )
+{
+       char *p;
+       
+       if ( !string )
+               return False;
+       
+       if ( !(p = strchr( string, ':' )) )
+               return False;
+               
+       *p = '\0';
+       p++;
+       
+       fstrcpy( user, string );
+       fstrcpy( group, p );
+       
+       return True;
+}
+
+/******************************************************************
+ add a user to a winbindd group
+******************************************************************/
+
+static BOOL wbinfo_add_user_to_group(char *string)
+{
+       struct winbindd_request request;
+       struct winbindd_response response;
+        NSS_STATUS result;
+
+       /* Send off request */
+
+       ZERO_STRUCT(request);
+       ZERO_STRUCT(response);
+
+       if ( !parse_user_group( string, request.data.acct_mgt.username,
+               request.data.acct_mgt.groupname))
+       {
+               d_printf("Can't parse user:group from %s\n", string);
+               return False;
+       }
+
+       result = winbindd_request(WINBINDD_ADD_USER_TO_GROUP, &request, &response);
+       
+        return result == NSS_STATUS_SUCCESS;
+}
+
+/******************************************************************
+ remove a user from a winbindd group
+******************************************************************/
+
+static BOOL wbinfo_remove_user_from_group(char *string)
+{
+       struct winbindd_request request;
+       struct winbindd_response response;
+        NSS_STATUS result;
+
+       /* Send off request */
+
+       ZERO_STRUCT(request);
+       ZERO_STRUCT(response);
+
+       if ( !parse_user_group( string, request.data.acct_mgt.username,
+               request.data.acct_mgt.groupname))
+       {
+               d_printf("Can't parse user:group from %s\n", string);
+               return False;
+       }
+
+       result = winbindd_request(WINBINDD_REMOVE_USER_FROM_GROUP, &request, &response);
+       
         return result == NSS_STATUS_SUCCESS;
 }
 
@@ -516,7 +685,7 @@ static BOOL wbinfo_auth_crap(char *username)
 static BOOL print_domain_users(void)
 {
        struct winbindd_response response;
-       char *extra_data;
+       const char *extra_data;
        fstring name;
 
        /* Send request to winbind daemon */
@@ -532,7 +701,7 @@ static BOOL print_domain_users(void)
        if (!response.extra_data)
                return False;
 
-       extra_data = (char *)response.extra_data;
+       extra_data = (const char *)response.extra_data;
 
        while(next_token(&extra_data, name, ",", sizeof(fstring)))
                d_printf("%s\n", name);
@@ -547,7 +716,7 @@ static BOOL print_domain_users(void)
 static BOOL print_domain_groups(void)
 {
        struct winbindd_response response;
-       char *extra_data;
+       const char *extra_data;
        fstring name;
 
        ZERO_STRUCT(response);
@@ -561,7 +730,7 @@ static BOOL print_domain_groups(void)
        if (!response.extra_data)
                return False;
 
-       extra_data = (char *)response.extra_data;
+       extra_data = (const char *)response.extra_data;
 
        while(next_token(&extra_data, name, ",", sizeof(fstring)))
                d_printf("%s\n", name);
@@ -590,31 +759,83 @@ static BOOL wbinfo_set_auth_user(char *username)
        } else
                password = "";
 
-       /* Store in secrets.tdb */
+       /* Store or remove DOMAIN\username%password in secrets.tdb */
 
-       if (!secrets_store(SECRETS_AUTH_USER, user, 
-                          strlen(user) + 1) ||
-           !secrets_store(SECRETS_AUTH_DOMAIN, domain, 
-                          strlen(domain) + 1) ||
-           !secrets_store(SECRETS_AUTH_PASSWORD, password,
-                          strlen(password) + 1)) {
-               d_fprintf(stderr, "error storing authenticated user info\n");
-               return False;
+       secrets_init();
+
+       if (user[0]) {
+
+               if (!secrets_store(SECRETS_AUTH_USER, user,
+                                  strlen(user) + 1)) {
+                       d_fprintf(stderr, "error storing username\n");
+                       return False;
+               }
+
+               /* We always have a domain name added by the
+                  parse_wbinfo_domain_user() function. */
+
+               if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
+                                  strlen(domain) + 1)) {
+                       d_fprintf(stderr, "error storing domain name\n");
+                       return False;
+               }
+
+       } else {
+               secrets_delete(SECRETS_AUTH_USER);
+               secrets_delete(SECRETS_AUTH_DOMAIN);
        }
 
+       if (password[0]) {
+
+               if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
+                                  strlen(password) + 1)) {
+                       d_fprintf(stderr, "error storing password\n");
+                       return False;
+               }
+
+       } else
+               secrets_delete(SECRETS_AUTH_PASSWORD);
+
        return True;
 }
 
+static void wbinfo_get_auth_user(void)
+{
+       char *user, *domain, *password;
+
+       /* Lift data from secrets file */
+
+       secrets_init();
+
+       user = secrets_fetch(SECRETS_AUTH_USER, NULL);
+       domain = secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
+       password = secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
+
+       if (!user && !domain && !password) {
+               d_printf("No authorised user configured\n");
+               return;
+       }
+
+       /* Pretty print authorised user info */
+
+       d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? "\\" : "",
+                user, password ? "%" : "", password ? password : "");
+
+       SAFE_FREE(user);
+       SAFE_FREE(domain);
+       SAFE_FREE(password);
+}
+
 static BOOL wbinfo_ping(void)
 {
         NSS_STATUS result;
-       
+
        result = winbindd_request(WINBINDD_PING, NULL, NULL);
 
        /* Display response */
 
-        d_printf("'ping' to winbindd %s\n", 
-               (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
+        d_printf("Ping to winbindd %s on fd %d\n", 
+               (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", winbindd_fd);
 
         return result == NSS_STATUS_SUCCESS;
 }
@@ -623,12 +844,12 @@ static BOOL wbinfo_ping(void)
 
 enum {
        OPT_SET_AUTH_USER = 1000,
+       OPT_GET_AUTH_USER,
        OPT_SEQUENCE
 };
 
 int main(int argc, char **argv)
 {
-       extern pstring global_myname;
        int opt;
 
        poptContext pc;
@@ -645,41 +866,43 @@ int main(int argc, char **argv)
 
                { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users"},
                { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups" },
-               { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP (WINS)" },
-               { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name (WINS)" },
-               { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid" },
-               { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name" },
-               { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" },
-               { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid" },
-               { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid" },
-               { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid" },
+               { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
+               { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
+               { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
+               { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
+               { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
+               { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
+               { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
+               { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
+               { "create-user", 'c', POPT_ARG_STRING, &string_arg, 'c', "Create a local user account", "name" },
+               { "delete-user", 'x', POPT_ARG_STRING, &string_arg, 'x', "Delete a local user account", "name" },
+               { "create-group", 'C', POPT_ARG_STRING, &string_arg, 'C', "Create a local group", "name" },
+               { "delete-group", 'X', POPT_ARG_STRING, &string_arg, 'X', "Delete a local group", "name" },
+               { "add-to-group", 'o', POPT_ARG_STRING, &string_arg, 'o', "Add user to group", "user:group" },
+               { "del-from-group", 'O', POPT_ARG_STRING, &string_arg, 'O', "Remove user from group", "user:group" },
                { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
                { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
-               { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "show sequence numbers of all domains" },
-               { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups" },
+               { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
+               { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
                { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
-               { "set-auth-user", 'A', POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
-               { "ping", 'p', POPT_ARG_NONE, 0, 'p', "'ping' winbindd to see if it is alive" },
-               { 0, 0, 0, 0 }
+               { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
+               { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
+               { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
+               POPT_COMMON_VERSION
+               POPT_TABLEEND
        };
 
        /* Samba client initialisation */
 
-       if (!*global_myname) {
-               char *p;
-
-               fstrcpy(global_myname, myhostname());
-               p = strchr(global_myname, '.');
-               if (p)
-                       *p = 0;
-       }
-
        if (!lp_load(dyn_CONFIGFILE, True, False, False)) {
                d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
                        dyn_CONFIGFILE, strerror(errno));
                exit(1);
        }
 
+       if (!init_names())
+               return 1;
+
        load_interfaces();
 
        /* Parse options */
@@ -796,36 +1019,72 @@ int main(int argc, char **argv)
                                goto done;
                        }
                        break;
-                case 'a': {
-                        BOOL got_error = False;
-
-                        if (!wbinfo_auth(string_arg)) {
-                                d_printf("Could not authenticate user %s with "
-                                       "plaintext password\n", string_arg);
-                                got_error = True;
-                        }
-
-                        if (!wbinfo_auth_crap(string_arg)) {
-                                d_printf("Could not authenticate user %s with "
-                                       "challenge/response\n", string_arg);
-                                got_error = True;
-                        }
-                       
-                        if (got_error)
-                                goto done;
-                        break;
-               }
-                case 'p': {
-
-                        if (!wbinfo_ping()) {
-                                d_printf("could not ping winbindd!\n");
-                                goto done;
+               case 'a': {
+                               BOOL got_error = False;
+
+                               if (!wbinfo_auth(string_arg)) {
+                                       d_printf("Could not authenticate user %s with "
+                                               "plaintext password\n", string_arg);
+                                       got_error = True;
+                               }
+
+                               if (!wbinfo_auth_crap(string_arg)) {
+                                       d_printf("Could not authenticate user %s with "
+                                               "challenge/response\n", string_arg);
+                                       got_error = True;
+                               }
+
+                               if (got_error)
+                                       goto done;
+                               break;
                        }
-                        break;
-               }
-               case OPT_SET_AUTH_USER:
-                       if (!(wbinfo_set_auth_user(string_arg)))
+               case 'c':
+                       if ( !wbinfo_create_user(string_arg) ) {
+                               d_printf("Could not create user account\n");
                                goto done;
+                       }
+                       break;
+               case 'C':
+                       if ( !wbinfo_create_group(string_arg) ) {
+                               d_printf("Could not create group\n");
+                               goto done;
+                       }
+                       break;
+               case 'o':
+                       if ( !wbinfo_add_user_to_group(string_arg) ) {
+                               d_printf("Could not add user to group\n");
+                               goto done;
+                       }
+                       break;
+               case 'O':
+                       if ( !wbinfo_remove_user_from_group(string_arg) ) {
+                               d_printf("Could not remove user kfrom group\n");
+                               goto done;
+                       }
+                       break;
+               case 'x':
+                       if ( !wbinfo_delete_user(string_arg) ) {
+                               d_printf("Could not delete user account\n");
+                               goto done;
+                       }
+                       break;
+               case 'X':
+                       if ( !wbinfo_delete_group(string_arg) ) {
+                               d_printf("Could not delete group\n");
+                               goto done;
+                       }
+                       break;
+               case 'P':
+                       if (!wbinfo_ping()) {
+                               d_printf("could not ping winbindd!\n");
+                               goto done;
+                       }
+                       break;
+               case OPT_SET_AUTH_USER:
+                       wbinfo_set_auth_user(string_arg);
+                       break;
+               case OPT_GET_AUTH_USER:
+                       wbinfo_get_auth_user();
                        break;
                default:
                        d_fprintf(stderr, "Invalid option\n");