s3:libsmb: s/struct event_context/struct tevent_context
[Samba/gebeck_regimport.git] / source3 / libsmb / clirap.h
blob91628eaf206ec08c85f822d2b26815ce700763f8
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
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.
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.
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/>.
25 #ifndef _LIBSMB_CLIRAP_H
26 #define _LIBSMB_CLIRAP_H
28 struct cli_state;
30 /* The following definitions come from libsmb/clirap.c */
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 NTSTATUS cli_qfilename(struct cli_state *cli, uint16_t fnum,
98 TALLOC_CTX *mem_ctx, char **name);
99 NTSTATUS cli_qfileinfo_basic(struct cli_state *cli, uint16_t fnum,
100 uint16 *mode, off_t *size,
101 struct timespec *create_time,
102 struct timespec *access_time,
103 struct timespec *write_time,
104 struct timespec *change_time,
105 SMB_INO_T *ino);
106 struct tevent_req *cli_qpathinfo_basic_send(TALLOC_CTX *mem_ctx,
107 struct tevent_context *ev,
108 struct cli_state *cli,
109 const char *fname);
110 NTSTATUS cli_qpathinfo_basic_recv(struct tevent_req *req,
111 SMB_STRUCT_STAT *sbuf, uint32 *attributes);
112 NTSTATUS cli_qpathinfo_basic(struct cli_state *cli, const char *name,
113 SMB_STRUCT_STAT *sbuf, uint32 *attributes);
114 NTSTATUS cli_qpathinfo_alt_name(struct cli_state *cli, const char *fname, fstring alt_name);
115 struct tevent_req *cli_qpathinfo_send(TALLOC_CTX *mem_ctx,
116 struct tevent_context *ev,
117 struct cli_state *cli, const char *fname,
118 uint16_t level, uint32_t min_rdata,
119 uint32_t max_rdata);
120 NTSTATUS cli_qpathinfo_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
121 uint8_t **rdata, uint32_t *num_rdata);
122 NTSTATUS cli_qpathinfo(TALLOC_CTX *mem_ctx, struct cli_state *cli,
123 const char *fname, uint16_t level, uint32_t min_rdata,
124 uint32_t max_rdata,
125 uint8_t **rdata, uint32_t *num_rdata);
127 struct tevent_req *cli_qfileinfo_send(TALLOC_CTX *mem_ctx,
128 struct tevent_context *ev,
129 struct cli_state *cli, uint16_t fnum,
130 uint16_t level, uint32_t min_rdata,
131 uint32_t max_rdata);
132 NTSTATUS cli_qfileinfo_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
133 uint16_t *recv_flags2,
134 uint8_t **rdata, uint32_t *num_rdata);
135 NTSTATUS cli_qfileinfo(TALLOC_CTX *mem_ctx, struct cli_state *cli,
136 uint16_t fnum, uint16_t level, uint32_t min_rdata,
137 uint32_t max_rdata, uint16_t *recv_flags2,
138 uint8_t **rdata, uint32_t *num_rdata);
140 struct tevent_req *cli_flush_send(TALLOC_CTX *mem_ctx,
141 struct tevent_context *ev,
142 struct cli_state *cli,
143 uint16_t fnum);
144 NTSTATUS cli_flush_recv(struct tevent_req *req);
145 NTSTATUS cli_flush(TALLOC_CTX *mem_ctx, struct cli_state *cli, uint16_t fnum);
147 struct tevent_req *cli_shadow_copy_data_send(TALLOC_CTX *mem_ctx,
148 struct tevent_context *ev,
149 struct cli_state *cli,
150 uint16_t fnum,
151 bool get_names);
152 NTSTATUS cli_shadow_copy_data_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
153 char ***pnames, int *pnum_names);
154 NTSTATUS cli_shadow_copy_data(TALLOC_CTX *mem_ctx, struct cli_state *cli,
155 uint16_t fnum, bool get_names,
156 char ***pnames, int *pnum_names);
158 /* The following definitions come from libsmb/clirap2.c */
159 struct rap_group_info_1;
160 struct rap_user_info_1;
161 struct rap_share_info_2;
163 int cli_NetGroupDelete(struct cli_state *cli, const char *group_name);
164 int cli_NetGroupAdd(struct cli_state *cli, struct rap_group_info_1 *grinfo);
165 int cli_RNetGroupEnum(struct cli_state *cli, void (*fn)(const char *, const char *, void *), void *state);
166 int cli_RNetGroupEnum0(struct cli_state *cli,
167 void (*fn)(const char *, void *),
168 void *state);
169 int cli_NetGroupDelUser(struct cli_state * cli, const char *group_name, const char *user_name);
170 int cli_NetGroupAddUser(struct cli_state * cli, const char *group_name, const char *user_name);
171 int cli_NetGroupGetUsers(struct cli_state * cli, const char *group_name, void (*fn)(const char *, void *), void *state );
172 int cli_NetUserGetGroups(struct cli_state * cli, const char *user_name, void (*fn)(const char *, void *), void *state );
173 int cli_NetUserDelete(struct cli_state *cli, const char * user_name );
174 int cli_NetUserAdd(struct cli_state *cli, struct rap_user_info_1 * userinfo );
175 int cli_RNetUserEnum(struct cli_state *cli, void (*fn)(const char *, const char *, const char *, const char *, void *), void *state);
176 int cli_RNetUserEnum0(struct cli_state *cli,
177 void (*fn)(const char *, void *),
178 void *state);
179 int cli_NetFileClose(struct cli_state *cli, uint32 file_id );
180 int cli_NetFileGetInfo(struct cli_state *cli, uint32 file_id, void (*fn)(const char *, const char *, uint16, uint16, uint32));
181 int cli_NetFileEnum(struct cli_state *cli, const char * user,
182 const char * base_path,
183 void (*fn)(const char *, const char *, uint16, uint16,
184 uint32));
185 int cli_NetShareAdd(struct cli_state *cli, struct rap_share_info_2 * sinfo );
186 int cli_NetShareDelete(struct cli_state *cli, const char * share_name );
187 bool cli_get_pdc_name(struct cli_state *cli, const char *workgroup, char **pdc_name);
188 bool cli_get_server_domain(struct cli_state *cli);
189 bool cli_get_server_type(struct cli_state *cli, uint32 *pstype);
190 bool cli_get_server_name(TALLOC_CTX *mem_ctx, struct cli_state *cli,
191 char **servername);
192 bool cli_ns_check_server_type(struct cli_state *cli, char *workgroup, uint32 stype);
193 bool cli_NetWkstaUserLogoff(struct cli_state *cli, const char *user, const char *workstation);
194 int cli_NetPrintQEnum(struct cli_state *cli,
195 void (*qfn)(const char*,uint16,uint16,uint16,const char*,const char*,const char*,const char*,const char*,uint16,uint16),
196 void (*jfn)(uint16,const char*,const char*,const char*,const char*,uint16,uint16,const char*,unsigned int,unsigned int,const char*));
197 int cli_NetPrintQGetInfo(struct cli_state *cli, const char *printer,
198 void (*qfn)(const char*,uint16,uint16,uint16,const char*,const char*,const char*,const char*,const char*,uint16,uint16),
199 void (*jfn)(uint16,const char*,const char*,const char*,const char*,uint16,uint16,const char*,unsigned int,unsigned int,const char*));
200 int cli_RNetServiceEnum(struct cli_state *cli, void (*fn)(const char *, const char *, void *), void *state);
201 int cli_NetSessionEnum(struct cli_state *cli, void (*fn)(char *, char *, uint16, uint16, uint16, unsigned int, unsigned int, unsigned int, char *));
202 int cli_NetSessionGetInfo(struct cli_state *cli, const char *workstation,
203 void (*fn)(const char *, const char *, uint16, uint16, uint16, unsigned int, unsigned int, unsigned int, const char *));
204 int cli_NetSessionDel(struct cli_state *cli, const char *workstation);
205 int cli_NetConnectionEnum(struct cli_state *cli, const char *qualifier,
206 void (*fn)(uint16_t conid, uint16_t contype,
207 uint16_t numopens, uint16_t numusers,
208 uint32_t contime, const char *username,
209 const char *netname));
211 #endif /* _LIBSMB_CLIRAP_H */