r23792: convert Samba4 to GPLv3
[abartlet/samba.git/.git] / source4 / torture / util.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture tester utility functions
4    Copyright (C) Jelmer Vernooij 2006
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include "system/filesys.h"
22 #include "system/wait.h"
23 #include "torture/torture.h"
24 #include "libcli/raw/interfaces.h"
25 #include "libcli/raw/libcliraw.h"
26
27 /**
28  create a temporary directory.
29 */
30 _PUBLIC_ NTSTATUS torture_temp_dir(TALLOC_CTX *mem_ctx, const char *prefix, 
31                                                                    char **tempdir)
32 {
33         const char *basedir = lp_parm_string(-1, "torture", "basedir");
34         if (basedir == NULL) basedir = ".";
35         *tempdir = talloc_asprintf(mem_ctx, "%s/%s.XXXXXX", 
36                                                            basedir, prefix);
37
38         if (mkdtemp(*tempdir) == NULL)
39                 return NT_STATUS_UNSUCCESSFUL;
40
41         return NT_STATUS_OK;
42 }
43
44 /**
45   check if 2 NTTIMEs are equal.
46 */
47 BOOL nt_time_equal(NTTIME *t1, NTTIME *t2)
48 {
49         return *t1 == *t2;
50 }
51
52 NTSTATUS torture_second_tcon(TALLOC_CTX *mem_ctx,
53                              struct smbcli_session *session,
54                              const char *sharename,
55                              struct smbcli_tree **res)
56 {
57         union smb_tcon tcon;
58         struct smbcli_tree *result;
59         TALLOC_CTX *tmp_ctx;
60         NTSTATUS status;
61
62         if ((tmp_ctx = talloc_new(mem_ctx)) == NULL) {
63                 return NT_STATUS_NO_MEMORY;
64         }
65
66         result = smbcli_tree_init(session, tmp_ctx, False);
67         if (result == NULL) {
68                 talloc_free(tmp_ctx);
69                 return NT_STATUS_NO_MEMORY;
70         }
71
72         tcon.generic.level = RAW_TCON_TCONX;
73         tcon.tconx.in.flags = 0;
74
75         /* Ignore share mode security here */
76         tcon.tconx.in.password = data_blob(NULL, 0);
77         tcon.tconx.in.path = sharename;
78         tcon.tconx.in.device = "?????";
79
80         status = smb_raw_tcon(result, tmp_ctx, &tcon);
81         if (!NT_STATUS_IS_OK(status)) {
82                 talloc_free(tmp_ctx);
83                 return status;
84         }
85
86         result->tid = tcon.tconx.out.tid;
87         *res = talloc_steal(mem_ctx, result);
88         talloc_free(tmp_ctx);
89         return NT_STATUS_OK;
90 }