svn commit: samba r18865 - in branches/SAMBA_3_0/source: libsmb rpcclient utils

tridge at samba.org tridge at samba.org
Sun Sep 24 02:32:35 GMT 2006


Author: tridge
Date: 2006-09-24 02:32:34 +0000 (Sun, 24 Sep 2006)
New Revision: 18865

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18865

Log:

fixed some of the most obvious NTSTATUS/WERROR mixups in Samba3. It
still doesn't compile with immediate structures and the
NTSTATUS/WERROR separation, as there are still several places where
the two error types are mixed up. I haven't fixed those as they
require decisions about the rpcclient code that I really don't want to
get into (the error handling there is a mess)

So samba3 compiles now, but only becaise HAVE_IMMEDIATE_STRUCTURES is
not used (look for HAVE_IMMEDIATE_STRUCTURES_XX_DISABLED)

Modified:
   branches/SAMBA_3_0/source/libsmb/clierror.c
   branches/SAMBA_3_0/source/libsmb/libsmbclient.c
   branches/SAMBA_3_0/source/libsmb/nterr.c
   branches/SAMBA_3_0/source/rpcclient/cmd_srvsvc.c
   branches/SAMBA_3_0/source/utils/net_rpc.c


Changeset:
Modified: branches/SAMBA_3_0/source/libsmb/clierror.c
===================================================================
--- branches/SAMBA_3_0/source/libsmb/clierror.c	2006-09-24 02:29:12 UTC (rev 18864)
+++ branches/SAMBA_3_0/source/libsmb/clierror.c	2006-09-24 02:32:34 UTC (rev 18865)
@@ -226,7 +226,7 @@
 }
 
 /* Return a UNIX errno from a NT status code */
-struct {
+static const struct {
 	NTSTATUS status;
 	int error;
 } nt_errno_map[] = {

Modified: branches/SAMBA_3_0/source/libsmb/libsmbclient.c
===================================================================
--- branches/SAMBA_3_0/source/libsmb/libsmbclient.c	2006-09-24 02:29:12 UTC (rev 18864)
+++ branches/SAMBA_3_0/source/libsmb/libsmbclient.c	2006-09-24 02:32:34 UTC (rev 18865)
@@ -2472,7 +2472,7 @@
                    void *state)
 {
         int i;
-	WERROR result;
+	NTSTATUS result;
 	uint32 enum_hnd;
         uint32 info_level = 1;
 	uint32 preferred_len = 0xffffffff;
@@ -2509,7 +2509,7 @@
                                               &enum_hnd);
 
         /* Was it successful? */
-	if (!W_ERROR_IS_OK(result) || numentries == 0) {
+	if (!NT_STATUS_IS_OK(result) || numentries == 0) {
                 /*  Nope.  Go clean up. */
 		goto done;
         }
@@ -2531,7 +2531,7 @@
         TALLOC_FREE(mem_ctx);
 
         /* Tell 'em if it worked */
-        return W_ERROR_IS_OK(result) ? 0 : -1;
+        return NT_STATUS_IS_OK(result) ? 0 : -1;
 }
 
 

Modified: branches/SAMBA_3_0/source/libsmb/nterr.c
===================================================================
--- branches/SAMBA_3_0/source/libsmb/nterr.c	2006-09-24 02:29:12 UTC (rev 18864)
+++ branches/SAMBA_3_0/source/libsmb/nterr.c	2006-09-24 02:32:34 UTC (rev 18865)
@@ -28,7 +28,7 @@
 	NTSTATUS nt_errcode;
 } nt_err_code_struct;
 
-static nt_err_code_struct nt_errs[] =
+static const nt_err_code_struct nt_errs[] =
 {
 	{ "NT_STATUS_OK", NT_STATUS_OK },
 	{ "NT_STATUS_UNSUCCESSFUL", NT_STATUS_UNSUCCESSFUL },

Modified: branches/SAMBA_3_0/source/rpcclient/cmd_srvsvc.c
===================================================================
--- branches/SAMBA_3_0/source/rpcclient/cmd_srvsvc.c	2006-09-24 02:29:12 UTC (rev 18864)
+++ branches/SAMBA_3_0/source/rpcclient/cmd_srvsvc.c	2006-09-24 02:32:34 UTC (rev 18865)
@@ -172,7 +172,7 @@
 {
 	uint32 info_level = 101;
 	union srvsvc_NetSrvInfo ctr;
-	WERROR result;
+	NTSTATUS result;
 
 	if (argc > 2) {
 		printf("Usage: %s [infolevel]\n", argv[0]);

Modified: branches/SAMBA_3_0/source/utils/net_rpc.c
===================================================================
--- branches/SAMBA_3_0/source/utils/net_rpc.c	2006-09-24 02:29:12 UTC (rev 18864)
+++ branches/SAMBA_3_0/source/utils/net_rpc.c	2006-09-24 02:32:34 UTC (rev 18865)
@@ -3014,7 +3014,7 @@
 					TALLOC_CTX *mem_ctx,int argc,
 					const char **argv)
 {
-	WERROR result;
+	NTSTATUS result;
 	char *sharename;
 	char *path;
 	uint32 type = STYPE_DISKTREE; /* only allow disk shares to be added */
@@ -3047,7 +3047,7 @@
 
 	result = rpccli_srvsvc_NetShareAdd(pipe_hnd, mem_ctx, NULL, level, 
 									   info, &parm_error);
-	return werror_to_ntstatus(result);
+	return result;
 }
 
 static int rpc_share_add(int argc, const char **argv)
@@ -3084,10 +3084,10 @@
 					int argc,
 					const char **argv)
 {
-	WERROR result;
+	NTSTATUS result;
 
 	result = rpccli_srvsvc_NetShareDel(pipe_hnd, mem_ctx, NULL, argv[0], 0);
-	return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
+	return NT_STATUS_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
 }
 
 /** 
@@ -3128,7 +3128,7 @@
 
 }
 
-static WERROR get_share_info(struct rpc_pipe_client *pipe_hnd,
+static NTSTATUS get_share_info(struct rpc_pipe_client *pipe_hnd,
 				TALLOC_CTX *mem_ctx, 
 				uint32 level,
 				int argc,
@@ -3175,13 +3175,13 @@
 					const char **argv)
 {
 	union srvsvc_NetShareCtr ctr;
-	WERROR result;
+	NTSTATUS result;
 	uint32 i, level = 1;
 	uint32 numentries;
 
 	result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &ctr, 
 							&numentries);
-	if (!W_ERROR_IS_OK(result))
+	if (!NT_STATUS_IS_OK(result))
 		goto done;
 
 	/* Display results */
@@ -3195,7 +3195,7 @@
 	for (i = 0; i < numentries; i++)
 		display_share_info_1(&ctr.ctr1->array[i]);
  done:
-	return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
+	return NT_STATUS_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
 }
 
 /*** 
@@ -3268,7 +3268,7 @@
 						int argc,
 						const char **argv)
 {
-	WERROR result;
+	NTSTATUS result;
 	NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
 	union srvsvc_NetShareCtr ctr_src;
 	uint32 i;
@@ -3279,7 +3279,7 @@
 
 	result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &ctr_src, 
 							&numentries);
-	if (!W_ERROR_IS_OK(result))
+	if (!NT_STATUS_IS_OK(result))
 		goto done;
 
 	/* connect destination PI_SRVSVC */
@@ -3312,13 +3312,13 @@
 		result = rpccli_srvsvc_NetShareAdd(srvsvc_pipe, mem_ctx, NULL, 
 										   502, info, &parm_error);
 	
-                if (W_ERROR_V(result) == W_ERROR_V(WERR_ALREADY_EXISTS)) {
+                if (NT_STATUS_EQUAL(result, NT_STATUS_OBJECT_NAME_COLLISION)) {
 			printf("           [%s] does already exist\n", ctr_src.ctr502->array[i].name);
 			continue;
 		}
 
-		if (!W_ERROR_IS_OK(result)) {
-			printf("cannot add share: %s\n", dos_errstr(result));
+		if (!NT_STATUS_IS_OK(result)) {
+			printf("cannot add share: %s\n", nt_errstr(result));
 			goto done;
 		}
 
@@ -3540,7 +3540,7 @@
 						int argc,
 						const char **argv)
 {
-	WERROR result;
+	NTSTATUS result;
 	NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
 	union srvsvc_NetShareCtr ctr_src;
 	uint32 i;
@@ -3557,7 +3557,7 @@
 	result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &ctr_src, 
 							&numentries);
 
-	if (!W_ERROR_IS_OK(result))
+	if (!NT_STATUS_IS_OK(result))
 		goto done;
 
 	for (i = 0; i < numentries; i++) {
@@ -3676,7 +3676,7 @@
 						int argc,
 						const char **argv)
 {
-	WERROR result;
+	NTSTATUS result;
 	NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
 	union srvsvc_NetShareCtr ctr_src;
 	union srvsvc_NetShareInfo info;
@@ -3690,7 +3690,7 @@
 	result = get_share_info(pipe_hnd, mem_ctx, level, argc, argv, &ctr_src,
 							&numentries);
 
-	if (!W_ERROR_IS_OK(result))
+	if (!NT_STATUS_IS_OK(result))
 		goto done;
 
 	/* connect destination PI_SRVSVC */
@@ -3722,8 +3722,8 @@
 											   argv[0], level, info,
 											   &parm_error);
 	
-		if (!W_ERROR_IS_OK(result)) {
-			printf("cannot set share-acl: %s\n", dos_errstr(result));
+		if (!NT_STATUS_IS_OK(result)) {
+			printf("cannot set share-acl: %s\n", nt_errstr(result));
 			goto done;
 		}
 
@@ -4354,13 +4354,13 @@
 	struct cli_state *cli = pipe_hnd->cli;
 	int i;
 	union srvsvc_NetShareInfo info;
-	WERROR result;
+	NTSTATUS result;
 	uint16 cnum;
 
 	result = rpccli_srvsvc_NetShareGetInfo(pipe_hnd, mem_ctx, NULL, netname,
 					       502, &info);
 
-	if (!W_ERROR_IS_OK(result)) {
+	if (!NT_STATUS_IS_OK(result)) {
 		DEBUG(1, ("Coult not query secdesc for share %s\n",
 			  netname));
 		return;
@@ -4651,7 +4651,7 @@
 {
 	union srvsvc_NetShareInfo info;
 	struct srvsvc_NetShareInfo2 info2;
-	WERROR result;
+	NTSTATUS result;
 	uint32 parm_error;
 
 	if ((argc < 2) || (argc > 3)) {
@@ -4668,7 +4668,7 @@
 	result = rpccli_srvsvc_NetShareAdd(
 		pipe_hnd, mem_ctx, NULL, 2, info, &parm_error); 
 					     
-	return werror_to_ntstatus(result);
+	return result;
 }
 
 static NTSTATUS rpc_sh_share_delete(TALLOC_CTX *mem_ctx,
@@ -4676,7 +4676,7 @@
 				    struct rpc_pipe_client *pipe_hnd,
 				    int argc, const char **argv)
 {
-	WERROR result;
+	NTSTATUS result;
 
 	if (argc != 1) {
 		d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
@@ -4684,7 +4684,7 @@
 	}
 
 	result = rpccli_srvsvc_NetShareDel(pipe_hnd, mem_ctx, NULL, argv[0], 0);
-	return werror_to_ntstatus(result);
+	return result;
 }
 
 static NTSTATUS rpc_sh_share_info(TALLOC_CTX *mem_ctx,
@@ -4693,7 +4693,7 @@
 				  int argc, const char **argv)
 {
 	union srvsvc_NetShareInfo info;
-	WERROR result;
+	NTSTATUS result;
 
 	if (argc != 1) {
 		d_fprintf(stderr, "usage: %s <share>\n", ctx->whoami);
@@ -4702,7 +4702,7 @@
 
 	result = rpccli_srvsvc_NetShareGetInfo(
 		pipe_hnd, mem_ctx, NULL, argv[0], 2, &info);
-	if (!W_ERROR_IS_OK(result)) {
+	if (!NT_STATUS_IS_OK(result)) {
 		goto done;
 	}
 
@@ -4712,7 +4712,7 @@
 	d_printf("Password: %s\n", info.info2->password);
 
  done:
-	return werror_to_ntstatus(result);
+	return result;
 }
 
 struct rpc_sh_cmd *net_rpc_share_cmds(TALLOC_CTX *mem_ctx,
@@ -4768,9 +4768,9 @@
 					int argc,
 					const char **argv)
 {
-	WERROR result;
+	NTSTATUS result;
 	result = rpccli_srvsvc_NetFileClose(pipe_hnd, mem_ctx, NULL, atoi(argv[0]));
-	return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
+	return NT_STATUS_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
 }
 
 /** 
@@ -4832,7 +4832,7 @@
 					const char **argv)
 {
 	union srvsvc_NetFileCtr ctr;
-	WERROR result;
+	NTSTATUS result;
 	uint32 hnd;
 	uint32 preferred_len = 0xffffffff, i;
 	const char *username=NULL;
@@ -4848,7 +4848,7 @@
 	result = rpccli_srvsvc_NetFileEnum(pipe_hnd,
 					mem_ctx, NULL, NULL, username, &level, &ctr, preferred_len, &numentries, &hnd);
 
-	if (!W_ERROR_IS_OK(result))
+	if (!NT_STATUS_IS_OK(result))
 		goto done;
 
 	/* Display results */
@@ -4860,7 +4860,7 @@
 	for (i = 0; i < numentries; i++)
 		display_file_info_3(&ctr.ctr3->array[i]);
  done:
-	return W_ERROR_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
+	return NT_STATUS_IS_OK(result) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
 }
 
 /** 



More information about the samba-cvs mailing list