s3:libsmb: add function cli_qpathinfo_standard()
[bbaumbach/samba-autobuild/.git] / source3 / libsmb / clirap.h
1 /*
2    Samba Unix/Linux SMB client library
3    More client RAP (SMB Remote Procedure Calls) functions
4    Copyright (C) 2001 Steve French (sfrench@us.ibm.com)
5    Copyright (C) 2001 Jim McDonough (jmcd@us.ibm.com)
6    Copyright (C) 2007 Jeremy Allison. jra@samba.org
7    Copyright (C) Andrew Tridgell         1994-1998
8    Copyright (C) Gerald (Jerry) Carter   2004
9    Copyright (C) James Peach             2007
10
11    This program is free software; you can redistribute it and/or modify
12    it under the terms of the GNU General Public License as published by
13    the Free Software Foundation; either version 3 of the License, or
14    (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 */
24
25 #ifndef _LIBSMB_CLIRAP_H
26 #define _LIBSMB_CLIRAP_H
27
28 struct cli_state;
29
30 /* The following definitions come from libsmb/clirap.c  */
31
32 bool cli_api(struct cli_state *cli,
33              char *param, int prcnt, int mprcnt,
34              char *data, int drcnt, int mdrcnt,
35              char **rparam, unsigned int *rprcnt,
36              char **rdata, unsigned int *rdrcnt);
37 bool cli_NetWkstaUserLogon(struct cli_state *cli,char *user, char *workstation);
38 int cli_RNetShareEnum(struct cli_state *cli, void (*fn)(const char *, uint32, const char *, void *), void *state);
39 bool cli_NetServerEnum(struct cli_state *cli, char *workgroup, uint32 stype,
40                        void (*fn)(const char *, uint32, const char *, void *),
41                        void *state);
42 bool cli_oem_change_password(struct cli_state *cli, const char *user, const char *new_password,
43                              const char *old_password);
44 struct tevent_req *cli_qpathinfo1_send(TALLOC_CTX *mem_ctx,
45                                        struct tevent_context *ev,
46                                        struct cli_state *cli,
47                                        const char *fname);
48 NTSTATUS cli_qpathinfo1_recv(struct tevent_req *req,
49                              time_t *change_time,
50                              time_t *access_time,
51                              time_t *write_time,
52                              off_t *size,
53                              uint16 *mode);
54 NTSTATUS cli_qpathinfo1(struct cli_state *cli,
55                         const char *fname,
56                         time_t *change_time,
57                         time_t *access_time,
58                         time_t *write_time,
59                         off_t *size,
60                         uint16 *mode);
61 NTSTATUS cli_setpathinfo_basic(struct cli_state *cli, const char *fname,
62                                time_t create_time,
63                                time_t access_time,
64                                time_t write_time,
65                                time_t change_time,
66                                uint16 mode);
67 struct tevent_req *cli_qpathinfo2_send(TALLOC_CTX *mem_ctx,
68                                        struct tevent_context *ev,
69                                        struct cli_state *cli,
70                                        const char *fname);
71 NTSTATUS cli_qpathinfo2_recv(struct tevent_req *req,
72                              struct timespec *create_time,
73                              struct timespec *access_time,
74                              struct timespec *write_time,
75                              struct timespec *change_time,
76                              off_t *size, uint16 *mode,
77                              SMB_INO_T *ino);
78 NTSTATUS cli_qpathinfo2(struct cli_state *cli, const char *fname,
79                         struct timespec *create_time,
80                         struct timespec *access_time,
81                         struct timespec *write_time,
82                         struct timespec *change_time,
83                         off_t *size, uint16 *mode,
84                         SMB_INO_T *ino);
85 struct tevent_req *cli_qpathinfo_streams_send(TALLOC_CTX *mem_ctx,
86                                               struct tevent_context *ev,
87                                               struct cli_state *cli,
88                                               const char *fname);
89 NTSTATUS cli_qpathinfo_streams_recv(struct tevent_req *req,
90                                     TALLOC_CTX *mem_ctx,
91                                     unsigned int *pnum_streams,
92                                     struct stream_struct **pstreams);
93 NTSTATUS cli_qpathinfo_streams(struct cli_state *cli, const char *fname,
94                                TALLOC_CTX *mem_ctx,
95                                unsigned int *pnum_streams,
96                                struct stream_struct **pstreams);
97 bool parse_streams_blob(TALLOC_CTX *mem_ctx, const uint8_t *rdata,
98                                 size_t data_len,
99                                 unsigned int *pnum_streams,
100                                 struct stream_struct **pstreams);
101 NTSTATUS cli_qfilename(struct cli_state *cli, uint16_t fnum,
102                        TALLOC_CTX *mem_ctx, char **name);
103 NTSTATUS cli_qfileinfo_basic(struct cli_state *cli, uint16_t fnum,
104                              uint16 *mode, off_t *size,
105                              struct timespec *create_time,
106                              struct timespec *access_time,
107                              struct timespec *write_time,
108                              struct timespec *change_time,
109                              SMB_INO_T *ino);
110 struct tevent_req *cli_qpathinfo_basic_send(TALLOC_CTX *mem_ctx,
111                                             struct tevent_context *ev,
112                                             struct cli_state *cli,
113                                             const char *fname);
114 NTSTATUS cli_qpathinfo_basic_recv(struct tevent_req *req,
115                                   SMB_STRUCT_STAT *sbuf, uint32 *attributes);
116 NTSTATUS cli_qpathinfo_basic(struct cli_state *cli, const char *name,
117                              SMB_STRUCT_STAT *sbuf, uint32 *attributes);
118 NTSTATUS cli_qpathinfo_standard(struct cli_state *cli, const char *fname,
119                                 uint64_t *allocated, uint64_t *size,
120                                 uint32_t *nlinks,
121                                 bool *is_del_pending, bool *is_dir);
122 NTSTATUS cli_qpathinfo_alt_name(struct cli_state *cli, const char *fname, fstring alt_name);
123 struct tevent_req *cli_qpathinfo_send(TALLOC_CTX *mem_ctx,
124                                       struct tevent_context *ev,
125                                       struct cli_state *cli, const char *fname,
126                                       uint16_t level, uint32_t min_rdata,
127                                       uint32_t max_rdata);
128 NTSTATUS cli_qpathinfo_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
129                             uint8_t **rdata, uint32_t *num_rdata);
130 NTSTATUS cli_qpathinfo(TALLOC_CTX *mem_ctx, struct cli_state *cli,
131                        const char *fname, uint16_t level, uint32_t min_rdata,
132                        uint32_t max_rdata,
133                        uint8_t **rdata, uint32_t *num_rdata);
134
135 struct tevent_req *cli_qfileinfo_send(TALLOC_CTX *mem_ctx,
136                                       struct tevent_context *ev,
137                                       struct cli_state *cli, uint16_t fnum,
138                                       uint16_t level, uint32_t min_rdata,
139                                       uint32_t max_rdata);
140 NTSTATUS cli_qfileinfo_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
141                             uint16_t *recv_flags2,
142                             uint8_t **rdata, uint32_t *num_rdata);
143 NTSTATUS cli_qfileinfo(TALLOC_CTX *mem_ctx, struct cli_state *cli,
144                        uint16_t fnum, uint16_t level, uint32_t min_rdata,
145                        uint32_t max_rdata, uint16_t *recv_flags2,
146                        uint8_t **rdata, uint32_t *num_rdata);
147
148 struct tevent_req *cli_flush_send(TALLOC_CTX *mem_ctx,
149                                   struct tevent_context *ev,
150                                   struct cli_state *cli,
151                                   uint16_t fnum);
152 NTSTATUS cli_flush_recv(struct tevent_req *req);
153 NTSTATUS cli_flush(TALLOC_CTX *mem_ctx, struct cli_state *cli, uint16_t fnum);
154
155 struct tevent_req *cli_shadow_copy_data_send(TALLOC_CTX *mem_ctx,
156                                              struct tevent_context *ev,
157                                              struct cli_state *cli,
158                                              uint16_t fnum,
159                                              bool get_names);
160 NTSTATUS cli_shadow_copy_data_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
161                                    char ***pnames, int *pnum_names);
162 NTSTATUS cli_shadow_copy_data(TALLOC_CTX *mem_ctx, struct cli_state *cli,
163                               uint16_t fnum, bool get_names,
164                               char ***pnames, int *pnum_names);
165
166 /* The following definitions come from libsmb/clirap2.c  */
167 struct rap_group_info_1;
168 struct rap_user_info_1;
169 struct rap_share_info_2;
170
171 int cli_NetGroupDelete(struct cli_state *cli, const char *group_name);
172 int cli_NetGroupAdd(struct cli_state *cli, struct rap_group_info_1 *grinfo);
173 int cli_RNetGroupEnum(struct cli_state *cli, void (*fn)(const char *, const char *, void *), void *state);
174 int cli_RNetGroupEnum0(struct cli_state *cli,
175                        void (*fn)(const char *, void *),
176                        void *state);
177 int cli_NetGroupDelUser(struct cli_state * cli, const char *group_name, const char *user_name);
178 int cli_NetGroupAddUser(struct cli_state * cli, const char *group_name, const char *user_name);
179 int cli_NetGroupGetUsers(struct cli_state * cli, const char *group_name, void (*fn)(const char *, void *), void *state );
180 int cli_NetUserGetGroups(struct cli_state * cli, const char *user_name, void (*fn)(const char *, void *), void *state );
181 int cli_NetUserDelete(struct cli_state *cli, const char * user_name );
182 int cli_NetUserAdd(struct cli_state *cli, struct rap_user_info_1 * userinfo );
183 int cli_RNetUserEnum(struct cli_state *cli, void (*fn)(const char *, const char *, const char *, const char *, void *), void *state);
184 int cli_RNetUserEnum0(struct cli_state *cli,
185                       void (*fn)(const char *, void *),
186                       void *state);
187 int cli_NetFileClose(struct cli_state *cli, uint32 file_id );
188 int cli_NetFileGetInfo(struct cli_state *cli, uint32 file_id, void (*fn)(const char *, const char *, uint16, uint16, uint32));
189 int cli_NetFileEnum(struct cli_state *cli, const char * user,
190                     const char * base_path,
191                     void (*fn)(const char *, const char *, uint16, uint16,
192                                uint32));
193 int cli_NetShareAdd(struct cli_state *cli, struct rap_share_info_2 * sinfo );
194 int cli_NetShareDelete(struct cli_state *cli, const char * share_name );
195 bool cli_get_pdc_name(struct cli_state *cli, const char *workgroup, char **pdc_name);
196 bool cli_get_server_domain(struct cli_state *cli);
197 bool cli_get_server_type(struct cli_state *cli, uint32 *pstype);
198 bool cli_get_server_name(TALLOC_CTX *mem_ctx, struct cli_state *cli,
199                          char **servername);
200 bool cli_ns_check_server_type(struct cli_state *cli, char *workgroup, uint32 stype);
201 bool cli_NetWkstaUserLogoff(struct cli_state *cli, const char *user, const char *workstation);
202 int cli_NetPrintQEnum(struct cli_state *cli,
203                 void (*qfn)(const char*,uint16,uint16,uint16,const char*,const char*,const char*,const char*,const char*,uint16,uint16),
204                 void (*jfn)(uint16,const char*,const char*,const char*,const char*,uint16,uint16,const char*,unsigned int,unsigned int,const char*));
205 int cli_NetPrintQGetInfo(struct cli_state *cli, const char *printer,
206         void (*qfn)(const char*,uint16,uint16,uint16,const char*,const char*,const char*,const char*,const char*,uint16,uint16),
207         void (*jfn)(uint16,const char*,const char*,const char*,const char*,uint16,uint16,const char*,unsigned int,unsigned int,const char*));
208 int cli_RNetServiceEnum(struct cli_state *cli, void (*fn)(const char *, const char *, void *), void *state);
209 int cli_NetSessionEnum(struct cli_state *cli, void (*fn)(char *, char *, uint16, uint16, uint16, unsigned int, unsigned int, unsigned int, char *));
210 int cli_NetSessionGetInfo(struct cli_state *cli, const char *workstation,
211                 void (*fn)(const char *, const char *, uint16, uint16, uint16, unsigned int, unsigned int, unsigned int, const char *));
212 int cli_NetSessionDel(struct cli_state *cli, const char *workstation);
213 int cli_NetConnectionEnum(struct cli_state *cli, const char *qualifier,
214                         void (*fn)(uint16_t conid, uint16_t contype,
215                                 uint16_t numopens, uint16_t numusers,
216                                 uint32_t contime, const char *username,
217                                 const char *netname));
218
219 #endif /* _LIBSMB_CLIRAP_H */