s4-loadparm: 2nd half of lp_ to lpcfg_ conversion
[kamenim/samba.git] / source4 / torture / rpc / schannel.c
index 15d40a2e176a3250c8c14a7e1717eeef9c9f3bc4..c76231c991595559da9ca926bcc8552accbea7d8 100644 (file)
@@ -24,9 +24,9 @@
 #include "librpc/gen_ndr/ndr_lsa_c.h"
 #include "librpc/gen_ndr/ndr_samr_c.h"
 #include "auth/credentials/credentials.h"
-#include "torture/rpc/rpc.h"
+#include "torture/rpc/torture_rpc.h"
 #include "lib/cmdline/popt_common.h"
-#include "auth/gensec/schannel_proto.h"
+#include "../libcli/auth/schannel.h"
 #include "libcli/auth/libcli_auth.h"
 #include "libcli/security/security.h"
 #include "system/filesys.h"
 */
 bool test_netlogon_ex_ops(struct dcerpc_pipe *p, struct torture_context *tctx, 
                          struct cli_credentials *credentials, 
-                         struct creds_CredentialState *creds)
+                         struct netlogon_creds_CredentialState *creds)
 {
        NTSTATUS status;
        struct netr_LogonSamLogonEx r;
        struct netr_NetworkInfo ninfo;
+       union netr_LogonLevel logon;
+       union netr_Validation validation;
+       uint8_t authoritative = 0;
+       uint32_t _flags = 0;
        DATA_BLOB names_blob, chal, lm_resp, nt_resp;
        int i;
        int flags = CLI_CRED_NTLM_AUTH;
-       if (lp_client_lanman_auth(tctx->lp_ctx)) {
+       struct dcerpc_binding_handle *b = p->binding_handle;
+
+       if (lpcfg_client_lanman_auth(tctx->lp_ctx)) {
                flags |= CLI_CRED_LANMAN_AUTH;
        }
 
-       if (lp_client_ntlmv2_auth(tctx->lp_ctx)) {
+       if (lpcfg_client_ntlmv2_auth(tctx->lp_ctx)) {
                flags |= CLI_CRED_NTLMv2_AUTH;
        }
 
@@ -91,11 +97,16 @@ bool test_netlogon_ex_ops(struct dcerpc_pipe *p, struct torture_context *tctx,
        ninfo.identity_info.logon_id_high = 0;
        ninfo.identity_info.workstation.string = cli_credentials_get_workstation(credentials);
 
+       logon.network = &ninfo;
+
        r.in.server_name = talloc_asprintf(tctx, "\\\\%s", dcerpc_server_name(p));
        r.in.computer_name = cli_credentials_get_workstation(credentials);
        r.in.logon_level = 2;
-       r.in.logon.network = &ninfo;
-       r.in.flags = 0;
+       r.in.logon= &logon;
+       r.in.flags = &_flags;
+       r.out.validation = &validation;
+       r.out.authoritative = &authoritative;
+       r.out.flags = &_flags;
 
        torture_comment(tctx, 
                        "Testing LogonSamLogonEx with name %s\n", 
@@ -104,8 +115,9 @@ bool test_netlogon_ex_ops(struct dcerpc_pipe *p, struct torture_context *tctx,
        for (i=2;i<3;i++) {
                r.in.validation_level = i;
                
-               status = dcerpc_netr_LogonSamLogonEx(p, tctx, &r);
-               torture_assert_ntstatus_ok(tctx, status, "LogonSamLogon failed");
+               torture_assert_ntstatus_ok(tctx, dcerpc_netr_LogonSamLogonEx_r(b, tctx, &r),
+                       "LogonSamLogon failed");
+               torture_assert_ntstatus_ok(tctx, r.out.result, "LogonSamLogon failed");
        }
 
        return true;
@@ -115,33 +127,35 @@ bool test_netlogon_ex_ops(struct dcerpc_pipe *p, struct torture_context *tctx,
   do some samr ops using the schannel connection
  */
 static bool test_samr_ops(struct torture_context *tctx,
-                         struct dcerpc_pipe *p)
+                         struct dcerpc_binding_handle *b)
 {
-       NTSTATUS status;
        struct samr_GetDomPwInfo r;
-       struct samr_Connect connect;
+       struct samr_PwInfo info;
+       struct samr_Connect connect_r;
        struct samr_OpenDomain opendom;
        int i;
        struct lsa_String name;
        struct policy_handle handle;
        struct policy_handle domain_handle;
 
-       name.string = lp_workgroup(tctx->lp_ctx);
+       name.string = lpcfg_workgroup(tctx->lp_ctx);
        r.in.domain_name = &name;
+       r.out.info = &info;
 
-       connect.in.system_name = 0;
-       connect.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
-       connect.out.connect_handle = &handle;
+       connect_r.in.system_name = 0;
+       connect_r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
+       connect_r.out.connect_handle = &handle;
        
        printf("Testing Connect and OpenDomain on BUILTIN\n");
 
-       status = dcerpc_samr_Connect(p, tctx, &connect);
-       if (!NT_STATUS_IS_OK(status)) {
-               if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
+       torture_assert_ntstatus_ok(tctx, dcerpc_samr_Connect_r(b, tctx, &connect_r),
+               "Connect failed");
+       if (!NT_STATUS_IS_OK(connect_r.out.result)) {
+               if (NT_STATUS_EQUAL(connect_r.out.result, NT_STATUS_ACCESS_DENIED)) {
                        printf("Connect failed (expected, schannel mapped to anonymous): %s\n",
-                              nt_errstr(status));
+                              nt_errstr(connect_r.out.result));
                } else {
-                       printf("Connect failed - %s\n", nt_errstr(status));
+                       printf("Connect failed - %s\n", nt_errstr(connect_r.out.result));
                        return false;
                }
        } else {
@@ -150,9 +164,10 @@ static bool test_samr_ops(struct torture_context *tctx,
                opendom.in.sid = dom_sid_parse_talloc(tctx, "S-1-5-32");
                opendom.out.domain_handle = &domain_handle;
                
-               status = dcerpc_samr_OpenDomain(p, tctx, &opendom);
-               if (!NT_STATUS_IS_OK(status)) {
-                       printf("OpenDomain failed - %s\n", nt_errstr(status));
+               torture_assert_ntstatus_ok(tctx, dcerpc_samr_OpenDomain_r(b, tctx, &opendom),
+                       "OpenDomain failed");
+               if (!NT_STATUS_IS_OK(opendom.out.result)) {
+                       printf("OpenDomain failed - %s\n", nt_errstr(opendom.out.result));
                        return false;
                }
        }
@@ -161,10 +176,11 @@ static bool test_samr_ops(struct torture_context *tctx,
        
        /* do several ops to test credential chaining */
        for (i=0;i<5;i++) {
-               status = dcerpc_samr_GetDomPwInfo(p, tctx, &r);
-               if (!NT_STATUS_IS_OK(status)) {
-                       if (!NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
-                               printf("GetDomPwInfo op %d failed - %s\n", i, nt_errstr(status));
+               torture_assert_ntstatus_ok(tctx, dcerpc_samr_GetDomPwInfo_r(b, tctx, &r),
+                       "GetDomPwInfo failed");
+               if (!NT_STATUS_IS_OK(r.out.result)) {
+                       if (!NT_STATUS_EQUAL(r.out.result, NT_STATUS_ACCESS_DENIED)) {
+                               printf("GetDomPwInfo op %d failed - %s\n", i, nt_errstr(r.out.result));
                                return false;
                        }
                }
@@ -180,43 +196,51 @@ static bool test_samr_ops(struct torture_context *tctx,
 static bool test_lsa_ops(struct torture_context *tctx, struct dcerpc_pipe *p)
 {
        struct lsa_GetUserName r;
-       NTSTATUS status;
        bool ret = true;
-       struct lsa_StringPointer authority_name_p;
+       struct lsa_String *account_name_p = NULL;
+       struct lsa_String *authority_name_p = NULL;
+       struct dcerpc_binding_handle *b = p->binding_handle;
 
        printf("\nTesting GetUserName\n");
 
        r.in.system_name = "\\";        
-       r.in.account_name = NULL;       
+       r.in.account_name = &account_name_p;
        r.in.authority_name = &authority_name_p;
-       authority_name_p.string = NULL;
+       r.out.account_name = &account_name_p;
 
        /* do several ops to test credential chaining and various operations */
-       status = dcerpc_lsa_GetUserName(p, tctx, &r);
-       
-       if (NT_STATUS_EQUAL(status, NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED)) {
-               printf("not considering %s to be an error\n", nt_errstr(status));
-       } else if (!NT_STATUS_IS_OK(status)) {
-               printf("GetUserName failed - %s\n", nt_errstr(status));
+       torture_assert_ntstatus_ok(tctx, dcerpc_lsa_GetUserName_r(b, tctx, &r),
+               "lsa_GetUserName failed");
+
+       authority_name_p = *r.out.authority_name;
+
+       if (!NT_STATUS_IS_OK(r.out.result)) {
+               printf("GetUserName failed - %s\n", nt_errstr(r.out.result));
                return false;
        } else {
                if (!r.out.account_name) {
                        return false;
                }
                
-               if (strcmp(r.out.account_name->string, "ANONYMOUS LOGON") != 0) {
+               if (strcmp(account_name_p->string, "ANONYMOUS LOGON") != 0) {
                        printf("GetUserName returned wrong user: %s, expected %s\n",
-                              r.out.account_name->string, "ANONYMOUS LOGON");
-                       return false;
+                              account_name_p->string, "ANONYMOUS LOGON");
+                       /* FIXME: gd */
+                       if (!torture_setting_bool(tctx, "samba3", false)) {
+                               return false;
+                       }
                }
-               if (!r.out.authority_name || !r.out.authority_name->string) {
+               if (!authority_name_p || !authority_name_p->string) {
                        return false;
                }
                
-               if (strcmp(r.out.authority_name->string->string, "NT AUTHORITY") != 0) {
+               if (strcmp(authority_name_p->string, "NT AUTHORITY") != 0) {
                        printf("GetUserName returned wrong user: %s, expected %s\n",
-                              r.out.authority_name->string->string, "NT AUTHORITY");
-                       return false;
+                              authority_name_p->string, "NT AUTHORITY");
+                       /* FIXME: gd */
+                       if (!torture_setting_bool(tctx, "samba3", false)) {
+                               return false;
+                       }
                }
        }
        if (!test_many_LookupSids(p, tctx, NULL)) {
@@ -245,7 +269,7 @@ static bool test_schannel(struct torture_context *tctx,
        struct dcerpc_pipe *p_netlogon3 = NULL;
        struct dcerpc_pipe *p_samr2 = NULL;
        struct dcerpc_pipe *p_lsa = NULL;
-       struct creds_CredentialState *creds;
+       struct netlogon_creds_CredentialState *creds;
        struct cli_credentials *credentials;
 
        join_ctx = torture_join_domain(tctx, 
@@ -264,7 +288,7 @@ static bool test_schannel(struct torture_context *tctx,
        torture_assert_ntstatus_ok(tctx, status, 
                "Failed to connect with schannel");
 
-       torture_assert(tctx, test_samr_ops(tctx, p), 
+       torture_assert(tctx, test_samr_ops(tctx, p->binding_handle),
                       "Failed to process schannel secured SAMR ops");
 
        /* Also test that when we connect to the netlogon pipe, that
@@ -280,7 +304,7 @@ static bool test_schannel(struct torture_context *tctx,
        torture_assert_ntstatus_ok(tctx, status, "seconday connection");
 
        status = dcerpc_bind_auth(p_netlogon, &ndr_table_netlogon, 
-                                 credentials, tctx->lp_ctx,
+                                 credentials, lpcfg_gensec_settings(tctx, tctx->lp_ctx),
                                  DCERPC_AUTH_TYPE_SCHANNEL,
                                  dcerpc_auth_level(p->conn),
                                  NULL);
@@ -307,7 +331,7 @@ static bool test_schannel(struct torture_context *tctx,
        torture_assert_ntstatus_ok(tctx, status, "seconday connection");
 
        status = dcerpc_bind_auth(p_lsa, &ndr_table_lsarpc,
-                                 credentials, tctx->lp_ctx,
+                                 credentials, lpcfg_gensec_settings(tctx, tctx->lp_ctx),
                                  DCERPC_AUTH_TYPE_SCHANNEL,
                                  dcerpc_auth_level(p->conn),
                                  NULL);
@@ -335,7 +359,7 @@ static bool test_schannel(struct torture_context *tctx,
                "Failed to connect with schannel");
 
        /* do a some SAMR operations.  We have *not* done a new serverauthenticate */
-       torture_assert (tctx, test_samr_ops(tctx, p_samr2), 
+       torture_assert (tctx, test_samr_ops(tctx, p_samr2->binding_handle),
                        "Failed to process schannel secured SAMR ops (on fresh connection)");
 
        /* Swap the binding details from SAMR to NETLOGON */
@@ -348,7 +372,7 @@ static bool test_schannel(struct torture_context *tctx,
 
        /* and now setup an SCHANNEL bind on netlogon */
        status = dcerpc_bind_auth(p_netlogon2, &ndr_table_netlogon,
-                                 credentials, tctx->lp_ctx,
+                                 credentials, lpcfg_gensec_settings(tctx, tctx->lp_ctx),
                                  DCERPC_AUTH_TYPE_SCHANNEL,
                                  dcerpc_auth_level(p_samr2->conn),
                                  NULL);
@@ -534,7 +558,7 @@ static void torture_schannel_bench_connected(struct composite_context *c)
        }
 }
 
-static void torture_schannel_bench_recv(struct rpc_request *req);
+static void torture_schannel_bench_recv(struct tevent_req *subreq);
 
 static bool torture_schannel_bench_start(struct torture_schannel_bench_conn *conn)
 {
@@ -542,7 +566,7 @@ static bool torture_schannel_bench_start(struct torture_schannel_bench_conn *con
        NTSTATUS status;
        DATA_BLOB names_blob, chal, lm_resp, nt_resp;
        int flags = CLI_CRED_NTLM_AUTH;
-       struct rpc_request *req;
+       struct tevent_req *subreq;
        struct cli_credentials *user_creds;
 
        if (conn->total % 2) {
@@ -551,11 +575,11 @@ static bool torture_schannel_bench_start(struct torture_schannel_bench_conn *con
                user_creds = s->user2_creds;
        }
 
-       if (lp_client_lanman_auth(s->tctx->lp_ctx)) {
+       if (lpcfg_client_lanman_auth(s->tctx->lp_ctx)) {
                flags |= CLI_CRED_LANMAN_AUTH;
        }
 
-       if (lp_client_ntlmv2_auth(s->tctx->lp_ctx)) {
+       if (lpcfg_client_ntlmv2_auth(s->tctx->lp_ctx)) {
                flags |= CLI_CRED_NTLMv2_AUTH;
        }
 
@@ -600,28 +624,34 @@ static bool torture_schannel_bench_start(struct torture_schannel_bench_conn *con
        conn->r.in.server_name = talloc_asprintf(conn->tmp, "\\\\%s", dcerpc_server_name(conn->pipe));
        conn->r.in.computer_name = cli_credentials_get_workstation(conn->wks_creds);
        conn->r.in.logon_level = 2;
-       conn->r.in.logon.network = &conn->ninfo;
-       conn->r.in.flags = 0;
+       conn->r.in.logon = talloc(conn->tmp, union netr_LogonLevel);
+       conn->r.in.logon->network = &conn->ninfo;
+       conn->r.in.flags = talloc(conn->tmp, uint32_t);
        conn->r.in.validation_level = 2;
+       conn->r.out.validation = talloc(conn->tmp, union netr_Validation);
+       conn->r.out.authoritative = talloc(conn->tmp, uint8_t);
+       conn->r.out.flags = conn->r.in.flags;
 
-       req = dcerpc_netr_LogonSamLogonEx_send(conn->pipe, conn->tmp, &conn->r);
-       torture_assert(s->tctx, req, "Failed to setup LogonSamLogonEx request");
+       subreq = dcerpc_netr_LogonSamLogonEx_r_send(s, s->tctx->ev,
+                                                   conn->pipe->binding_handle,
+                                                   &conn->r);
+       torture_assert(s->tctx, subreq, "Failed to setup LogonSamLogonEx request");
 
-       req->async.callback = torture_schannel_bench_recv;
-       req->async.private_data = conn;
+       tevent_req_set_callback(subreq, torture_schannel_bench_recv, conn);
 
        return true;
 }
 
-static void torture_schannel_bench_recv(struct rpc_request *req)
+static void torture_schannel_bench_recv(struct tevent_req *subreq)
 {
        bool ret;
        struct torture_schannel_bench_conn *conn =
-               (struct torture_schannel_bench_conn *)req->async.private_data;
+               (struct torture_schannel_bench_conn *)tevent_req_callback_data_void(subreq);
        struct torture_schannel_bench *s = talloc_get_type(conn->s,
                                           struct torture_schannel_bench);
 
-       s->error = dcerpc_ndr_request_recv(req);
+       s->error = dcerpc_netr_LogonSamLogonEx_r_recv(subreq, subreq);
+       TALLOC_FREE(subreq);
        if (!NT_STATUS_IS_OK(s->error)) {
                return;
        }
@@ -746,9 +776,11 @@ bool torture_rpc_schannel_bench1(struct torture_context *torture)
 
        {
                struct netr_ServerPasswordSet pwset;
-               char *password = generate_random_str(s->join_ctx1, 8);
-               struct creds_CredentialState *creds_state;
+               char *password = generate_random_password(s->join_ctx1, 8, 255);
+               struct netlogon_creds_CredentialState *creds_state;
                struct dcerpc_pipe *net_pipe;
+               struct netr_Authenticator credential, return_authenticator;
+               struct samr_Password new_password;
 
                status = dcerpc_pipe_connect_b(s, &net_pipe, s->b,
                                               &ndr_table_netlogon,
@@ -765,19 +797,24 @@ bool torture_rpc_schannel_bench1(struct torture_context *torture)
                pwset.in.account_name = talloc_asprintf(
                        net_pipe, "%s$", pwset.in.computer_name);
                pwset.in.secure_channel_type = SEC_CHAN_WKSTA;
-               E_md4hash(password, pwset.in.new_password.hash);
+               pwset.in.credential = &credential;
+               pwset.in.new_password = &new_password;
+               pwset.out.return_authenticator = &return_authenticator;
+
+               E_md4hash(password, new_password.hash);
 
                creds_state = cli_credentials_get_netlogon_creds(
                        s->wks_creds1);
-               creds_des_encrypt(creds_state, &pwset.in.new_password);
-               creds_client_authenticator(creds_state, &pwset.in.credential);
+               netlogon_creds_des_encrypt(creds_state, &new_password);
+               netlogon_creds_client_authenticator(creds_state, &credential);
 
-               status = dcerpc_netr_ServerPasswordSet(net_pipe, torture, &pwset);
-               torture_assert_ntstatus_ok(torture, status,
+               torture_assert_ntstatus_ok(torture, dcerpc_netr_ServerPasswordSet_r(net_pipe->binding_handle, torture, &pwset),
+                       "ServerPasswordSet failed");
+               torture_assert_ntstatus_ok(torture, pwset.out.result,
                                           "ServerPasswordSet failed");
 
-               if (!creds_client_check(creds_state,
-                                       &pwset.out.return_authenticator.cred)) {
+               if (!netlogon_creds_client_check(creds_state,
+                                       &pwset.out.return_authenticator->cred)) {
                        printf("Credential chaining failed\n");
                }