r6527: Resurrect getntacl utility program. At the moment we only display the
[gd/samba/.git] / source4 / utils / getntacl.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Get NT ACLs from UNIX files.
5
6    Copyright (C) Tim Potter <tpot@samba.org> 2005
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/security/security.h"
26 #include "librpc/gen_ndr/ndr_xattr.h"
27
28 #if HAVE_XATTR_SUPPORT  
29
30 /* eww - crappy dependencies */
31
32 NTSTATUS samdb_privilege_setup(struct security_token *token)
33 {
34         token->privilege_mask = 0;
35         return NT_STATUS_OK;
36 }
37
38 static void ntacl_print_debug_helper(struct ndr_print *ndr, const char *format, ...) _PRINTF_ATTRIBUTE(2,3)
39 {
40         va_list ap;
41         char *s = NULL;
42         int i;
43
44         va_start(ap, format);
45         vasprintf(&s, format, ap);
46         va_end(ap);
47
48         for (i=0;i<ndr->depth;i++) {
49                 printf("    ");
50         }
51
52         printf("%s\n", s);
53         free(s);
54 }
55
56 static NTSTATUS get_ntacl(char *filename, struct xattr_NTACL **ntacl, 
57                           ssize_t *ntacl_len)
58 {
59         DATA_BLOB blob;
60         ssize_t size;
61         NTSTATUS result;
62         struct ndr_pull *ndr;
63         struct ndr_print *pr;
64
65         *ntacl = talloc(NULL, struct xattr_NTACL);
66
67         size = getxattr(filename, XATTR_NTACL_NAME, NULL, 0);
68
69         if (size < 0) {
70                 fprintf(stderr, "get_ntacl: %s\n", strerror(errno));
71                 return NT_STATUS_INTERNAL_ERROR;
72         }
73
74         blob.data = talloc_size(*ntacl, size);
75         blob.length = getxattr(filename, XATTR_NTACL_NAME, blob.data, size);
76
77         if (blob.length < 0) {
78                 fprintf(stderr, "get_ntacl: %s\n", strerror(errno));
79                 return NT_STATUS_INTERNAL_ERROR;
80         }
81
82         ndr = ndr_pull_init_blob(&blob, NULL);
83
84         result = ndr_pull_xattr_NTACL(ndr, NDR_SCALARS|NDR_BUFFERS, *ntacl);
85
86         if (NT_STATUS_IS_OK(result)) {
87                 pr = talloc(*ntacl, struct ndr_print);
88                 pr->print = ntacl_print_debug_helper;
89                 pr->depth = 0;
90                 pr->flags = 0;
91                 
92                 ndr_print_xattr_NTACL(pr, filename, *ntacl);
93         }
94
95         return result;
96 }
97
98 static void print_ntacl(struct xattr_NTACL *ntacl)
99 {
100 }
101
102 int main(int argc, char *argv[])
103 {
104         struct xattr_NTACL *ntacl;
105         ssize_t ntacl_len;
106
107         if (argc != 2) {
108                 fprintf(stderr, "Usage: getntacl FILENAME\n");
109                 return 1;
110         }
111
112
113         get_ntacl(argv[1], &ntacl, &ntacl_len);
114
115         print_ntacl(ntacl);
116
117         return 0;
118 }
119
120 #else
121
122 int main(int argc, char *argv[])
123 {
124         printf("getntacl: not compiled with xattr support!\n");
125         return 1;
126
127 }
128
129 #endif