f046d68b6ed59f77fcf259ea8cf2a6988e9c0182
[jelmer/samba4-debian.git] / source / torture / basic / unlink.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    unlink tester
5
6    Copyright (C) Andrew Tridgell 2003
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "system/filesys.h"
25 #include "libcli/raw/libcliraw.h"
26
27 #define BASEDIR "\\unlinktest"
28
29 /*
30   This test checks that 
31
32   1) the server does not allow an unlink on a file that is open
33 */
34 BOOL torture_unlinktest(void)
35 {
36         struct smbcli_state *cli;
37         const char *fname = BASEDIR "\\unlink.tst";
38         int fnum;
39         BOOL correct = True;
40         union smb_open io;
41         NTSTATUS status;
42
43         if (!torture_open_connection(&cli)) {
44                 return False;
45         }
46
47         printf("starting unlink test\n");
48
49         if (!torture_setup_dir(cli, BASEDIR)) {
50                 return False;
51         }
52
53         cli->session->pid = 1;
54
55         printf("Opening a file\n");
56
57         fnum = smbcli_open(cli->tree, fname, O_RDWR|O_CREAT|O_EXCL, DENY_NONE);
58         if (fnum == -1) {
59                 printf("open of %s failed (%s)\n", fname, smbcli_errstr(cli->tree));
60                 return False;
61         }
62
63         printf("Unlinking a open file\n");
64
65         if (NT_STATUS_IS_OK(smbcli_unlink(cli->tree, fname))) {
66                 printf("(%s) error: server allowed unlink on an open file\n", __location__);
67                 correct = False;
68         } else {
69                 correct = check_error(__location__, cli, ERRDOS, ERRbadshare, 
70                                       NT_STATUS_SHARING_VIOLATION);
71         }
72
73         smbcli_close(cli->tree, fnum);
74         smbcli_unlink(cli->tree, fname);
75
76         printf("testing unlink after ntcreatex with DELETE access\n");
77
78         io.ntcreatex.level = RAW_OPEN_NTCREATEX;
79         io.ntcreatex.in.root_fid = 0;
80         io.ntcreatex.in.flags = NTCREATEX_FLAGS_EXTENDED;
81         io.ntcreatex.in.create_options = NTCREATEX_OPTIONS_NON_DIRECTORY_FILE;
82         io.ntcreatex.in.file_attr = 0;
83         io.ntcreatex.in.alloc_size = 0;
84         io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
85         io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_IMPERSONATION;
86         io.ntcreatex.in.security_flags = 0;
87         io.ntcreatex.in.fname = fname;
88         io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_DELETE;
89         io.ntcreatex.in.access_mask  = SEC_RIGHTS_FILE_ALL;
90
91         status = smb_raw_open(cli->tree, cli, &io);
92         if (!NT_STATUS_IS_OK(status)) {
93                 printf("(%s) failed to open %s\n", __location__, fname);
94         }
95         if (NT_STATUS_IS_OK(smbcli_unlink(cli->tree, fname))) {
96                 printf("(%s) error: server allowed unlink on an open file\n", __location__);
97                 correct = False;
98         } else {
99                 correct = check_error(__location__, cli, ERRDOS, ERRbadshare, 
100                                       NT_STATUS_SHARING_VIOLATION);
101         }
102
103         if (!torture_close_connection(cli)) {
104                 correct = False;
105         }
106
107         printf("unlink test finished\n");
108         
109         return correct;
110 }
111
112