s3: libsmbclient: Re-resolving targetcli on every read/write/lseek/ftruncate/close...
[Samba.git] / source3 / include / libsmb_internal.h
blob38cd5a1257b68e0d96b7103f6f3b505f8ca74f18
1 /*
2 Unix SMB/Netbios implementation.
3 SMB client library implementation
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Richard Sharpe 2000, 2002
6 Copyright (C) John Terpstra 2000
7 Copyright (C) Tom Jansen (Ninja ISD) 2002
8 Copyright (C) Derrell Lipman 2003-2008
9 Copyright (C) Jeremy Allison 2007, 2008
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 #include "includes.h"
28 #ifndef _LIBSMB_INTERNAL_H_
29 #define _LIBSMB_INTERNAL_H_
31 #include "../include/libsmbclient.h"
32 #include "libsmb/clirap.h"
34 #define SMBC_MAX_NAME 1023
35 #define SMBC_FILE_MODE (S_IFREG | 0444)
36 #define SMBC_DIR_MODE (S_IFDIR | 0555)
39 * DOS Attribute values (used internally)
41 typedef struct DOS_ATTR_DESC {
42 int mode;
43 off_t size;
44 time_t create_time;
45 time_t access_time;
46 time_t write_time;
47 time_t change_time;
48 SMB_INO_T inode;
49 } DOS_ATTR_DESC;
52 * Extension of libsmbclient.h's #defines
54 #define SMB_CTX_FLAG_USE_NT_HASH (1 << 4)
57 * Internal flags for extended attributes
60 /* internal mode values */
61 #define SMBC_XATTR_MODE_ADD 1
62 #define SMBC_XATTR_MODE_REMOVE 2
63 #define SMBC_XATTR_MODE_REMOVE_ALL 3
64 #define SMBC_XATTR_MODE_SET 4
65 #define SMBC_XATTR_MODE_CHOWN 5
66 #define SMBC_XATTR_MODE_CHGRP 6
68 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
70 /*We should test for this in configure ... */
71 #ifndef ENOTSUP
72 #define ENOTSUP EOPNOTSUPP
73 #endif
76 struct _SMBCSRV {
77 struct cli_state *cli;
78 dev_t dev;
79 bool no_pathinfo;
80 bool no_pathinfo2;
81 bool no_pathinfo3;
82 bool no_nt_session;
83 struct policy_handle pol;
84 time_t last_echo_time;
86 SMBCSRV *next, *prev;
90 * Keep directory entries in a list
92 struct smbc_dir_list {
93 struct smbc_dir_list *next;
94 struct smbc_dirent *dirent;
99 * Structure for open file management
101 struct _SMBCFILE {
102 int cli_fd;
104 * cache of cli_state we opened cli_fd on.
105 * Due to DFS can be a subsidiary connection to srv->cli
107 struct cli_state *targetcli;
108 char *fname;
109 off_t offset;
110 struct _SMBCSRV *srv;
111 bool file;
112 struct smbc_dir_list *dir_list, *dir_end, *dir_next;
113 int dir_type, dir_error;
115 SMBCFILE *next, *prev;
120 * Context structure
122 struct SMBC_internal_data {
124 /* True when this handle is initialized */
125 bool initialized;
127 /* dirent pointer location */
128 struct smbc_dirent dirent;
130 * Leave room for any urlencoded filename and the comment field.
132 * We use (NAME_MAX * 3) plus whatever the max length of a comment is,
133 * plus a couple of null terminators (one after the filename,
134 * one after the comment).
136 * According to <linux/limits.h>, NAME_MAX is 255. Is it longer
137 * anyplace else?
139 char _dirent_name[1024];
142 * server connection list
144 SMBCSRV * servers;
147 * open file/dir list
149 SMBCFILE * files;
152 * Support "Create Time" in get/set with the *xattr() functions, if
153 * true. This replaces the dos attribute strings C_TIME, A_TIME and
154 * M_TIME with CHANGE_TIME, ACCESS_TIME and WRITE_TIME, and adds
155 * CREATE_TIME. Default is FALSE, i.e. to use the old-style shorter
156 * names and to not support CREATE time, for backward compatibility.
158 bool full_time_names;
161 * The share mode of a file being opened. To match POSIX semantics
162 * (and maintain backward compatibility), DENY_NONE is the default.
164 smbc_share_mode share_mode;
167 * Authentication function which includes the context. This will be
168 * used if set; otherwise context->callbacks.auth_fn() will be used.
170 smbc_get_auth_data_with_context_fn auth_fn_with_context;
173 * An opaque (to this library) user data handle which can be set
174 * and retrieved with smbc_option_set() and smbc_option_get().
176 void * user_data;
179 * Should we attempt UNIX smb encryption ?
180 * Set to 0 if we should never attempt, set to 1 if
181 * encryption requested, set to 2 if encryption required.
183 smbc_smb_encrypt_level smb_encryption_level;
186 * Should we request case sensitivity of file names?
188 bool case_sensitive;
191 * Auth info needed for DFS traversal.
194 struct user_auth_info *auth_info;
196 struct smbc_server_cache * server_cache;
198 /* POSIX emulation functions */
199 struct
201 #if 0 /* Left in libsmbclient.h for backward compatibility */
202 smbc_open_fn open_fn;
203 smbc_creat_fn creat_fn;
204 smbc_read_fn read_fn;
205 smbc_write_fn write_fn;
206 smbc_unlink_fn unlink_fn;
207 smbc_rename_fn rename_fn;
208 smbc_lseek_fn lseek_fn;
209 smbc_stat_fn stat_fn;
210 smbc_fstat_fn fstat_fn;
211 #endif
212 smbc_statvfs_fn statvfs_fn;
213 smbc_fstatvfs_fn fstatvfs_fn;
214 smbc_ftruncate_fn ftruncate_fn;
215 #if 0 /* Left in libsmbclient.h for backward compatibility */
216 smbc_close_fn close_fn;
217 smbc_opendir_fn opendir_fn;
218 smbc_closedir_fn closedir_fn;
219 smbc_readdir_fn readdir_fn;
220 smbc_getdents_fn getdents_fn;
221 smbc_mkdir_fn mkdir_fn;
222 smbc_rmdir_fn rmdir_fn;
223 smbc_telldir_fn telldir_fn;
224 smbc_lseekdir_fn lseekdir_fn;
225 smbc_fstatdir_fn fstatdir_fn;
226 smbc_chmod_fn chmod_fn;
227 smbc_utimes_fn utimes_fn;
228 smbc_setxattr_fn setxattr_fn;
229 smbc_getxattr_fn getxattr_fn;
230 smbc_removexattr_fn removexattr_fn;
231 smbc_listxattr_fn listxattr_fn;
232 #endif
233 } posix_emu;
235 #if 0 /* Left in libsmbclient.h for backward compatibility */
236 /* Printing-related functions */
237 struct
239 smbc_print_file_fn print_file_fn;
240 smbc_open_print_job_fn open_print_job_fn;
241 smbc_list_print_jobs_fn list_print_jobs_fn;
242 smbc_unlink_print_job_fn unlink_print_job_fn;
243 } printing;
244 #endif
246 #if 0 /* None available yet */
247 /* SMB high-level functions */
248 struct
250 } smb;
252 #endif
253 uint16_t port;
256 /* Functions in libsmb_cache.c */
258 SMBC_add_cached_server(SMBCCTX * context,
259 SMBCSRV * newsrv,
260 const char * server,
261 const char * share,
262 const char * workgroup,
263 const char * username);
265 SMBCSRV *
266 SMBC_get_cached_server(SMBCCTX * context,
267 const char * server,
268 const char * share,
269 const char * workgroup,
270 const char * user);
273 SMBC_remove_cached_server(SMBCCTX * context,
274 SMBCSRV * server);
277 SMBC_purge_cached_servers(SMBCCTX * context);
280 /* Functions in libsmb_dir.c */
282 SMBC_check_options(char *server,
283 char *share,
284 char *path,
285 char *options);
287 SMBCFILE *
288 SMBC_opendir_ctx(SMBCCTX *context,
289 const char *fname);
292 SMBC_closedir_ctx(SMBCCTX *context,
293 SMBCFILE *dir);
295 struct smbc_dirent *
296 SMBC_readdir_ctx(SMBCCTX *context,
297 SMBCFILE *dir);
300 SMBC_getdents_ctx(SMBCCTX *context,
301 SMBCFILE *dir,
302 struct smbc_dirent *dirp,
303 int count);
306 SMBC_mkdir_ctx(SMBCCTX *context,
307 const char *fname,
308 mode_t mode);
311 SMBC_rmdir_ctx(SMBCCTX *context,
312 const char *fname);
314 off_t
315 SMBC_telldir_ctx(SMBCCTX *context,
316 SMBCFILE *dir);
319 SMBC_lseekdir_ctx(SMBCCTX *context,
320 SMBCFILE *dir,
321 off_t offset);
324 SMBC_fstatdir_ctx(SMBCCTX *context,
325 SMBCFILE *dir,
326 struct stat *st);
329 SMBC_chmod_ctx(SMBCCTX *context,
330 const char *fname,
331 mode_t newmode);
334 SMBC_utimes_ctx(SMBCCTX *context,
335 const char *fname,
336 struct timeval *tbuf);
339 SMBC_unlink_ctx(SMBCCTX *context,
340 const char *fname);
343 SMBC_rename_ctx(SMBCCTX *ocontext,
344 const char *oname,
345 SMBCCTX *ncontext,
346 const char *nname);
349 /* Functions in libsmb_file.c */
350 SMBCFILE *
351 SMBC_open_ctx(SMBCCTX *context,
352 const char *fname,
353 int flags,
354 mode_t mode);
356 SMBCFILE *
357 SMBC_creat_ctx(SMBCCTX *context,
358 const char *path,
359 mode_t mode);
361 ssize_t
362 SMBC_read_ctx(SMBCCTX *context,
363 SMBCFILE *file,
364 void *buf,
365 size_t count);
367 ssize_t
368 SMBC_write_ctx(SMBCCTX *context,
369 SMBCFILE *file,
370 const void *buf,
371 size_t count);
374 SMBC_close_ctx(SMBCCTX *context,
375 SMBCFILE *file);
377 bool
378 SMBC_getatr(SMBCCTX * context,
379 SMBCSRV *srv,
380 const char *path,
381 uint16 *mode,
382 off_t *size,
383 struct timespec *create_time_ts,
384 struct timespec *access_time_ts,
385 struct timespec *write_time_ts,
386 struct timespec *change_time_ts,
387 SMB_INO_T *ino);
389 bool
390 SMBC_setatr(SMBCCTX * context, SMBCSRV *srv, char *path,
391 time_t create_time,
392 time_t access_time,
393 time_t write_time,
394 time_t change_time,
395 uint16 mode);
397 off_t
398 SMBC_lseek_ctx(SMBCCTX *context,
399 SMBCFILE *file,
400 off_t offset,
401 int whence);
404 SMBC_ftruncate_ctx(SMBCCTX *context,
405 SMBCFILE *file,
406 off_t length);
409 /* Functions in libsmb_misc.c */
411 SMBC_dlist_contains(SMBCFILE * list, SMBCFILE *p);
414 SMBC_errno(SMBCCTX *context,
415 struct cli_state *c);
418 /* Functions in libsmb_path.c */
420 SMBC_parse_path(TALLOC_CTX *ctx,
421 SMBCCTX *context,
422 const char *fname,
423 char **pp_workgroup,
424 char **pp_server,
425 uint16_t *p_port,
426 char **pp_share,
427 char **pp_path,
428 char **pp_user,
429 char **pp_password,
430 char **pp_options);
433 /* Functions in libsmb_printjob.c */
434 SMBCFILE *
435 SMBC_open_print_job_ctx(SMBCCTX *context,
436 const char *fname);
439 SMBC_print_file_ctx(SMBCCTX *c_file,
440 const char *fname,
441 SMBCCTX *c_print,
442 const char *printq);
445 SMBC_list_print_jobs_ctx(SMBCCTX *context,
446 const char *fname,
447 smbc_list_print_job_fn fn);
450 SMBC_unlink_print_job_ctx(SMBCCTX *context,
451 const char *fname,
452 int id);
455 /* Functions in libsmb_server.c */
457 SMBC_check_server(SMBCCTX * context,
458 SMBCSRV * server);
461 SMBC_remove_unused_server(SMBCCTX * context,
462 SMBCSRV * srv);
464 void
465 SMBC_get_auth_data(const char *server, const char *share,
466 char *workgroup_buf, int workgroup_buf_len,
467 char *username_buf, int username_buf_len,
468 char *password_buf, int password_buf_len);
470 SMBCSRV *
471 SMBC_find_server(TALLOC_CTX *ctx,
472 SMBCCTX *context,
473 const char *server,
474 const char *share,
475 char **pp_workgroup,
476 char **pp_username,
477 char **pp_password);
479 SMBCSRV *
480 SMBC_server(TALLOC_CTX *ctx,
481 SMBCCTX *context,
482 bool connect_if_not_found,
483 const char *server,
484 uint16_t port,
485 const char *share,
486 char **pp_workgroup,
487 char **pp_username,
488 char **pp_password);
490 SMBCSRV *
491 SMBC_attr_server(TALLOC_CTX *ctx,
492 SMBCCTX *context,
493 const char *server,
494 uint16_t port,
495 const char *share,
496 char **pp_workgroup,
497 char **pp_username,
498 char **pp_password);
501 /* Functions in libsmb_stat.c */
503 SMBC_stat_ctx(SMBCCTX *context,
504 const char *fname,
505 struct stat *st);
508 SMBC_fstat_ctx(SMBCCTX *context,
509 SMBCFILE *file,
510 struct stat *st);
514 SMBC_statvfs_ctx(SMBCCTX *context,
515 char *path,
516 struct statvfs *st);
520 SMBC_fstatvfs_ctx(SMBCCTX *context,
521 SMBCFILE *file,
522 struct statvfs *st);
525 /* Functions in libsmb_xattr.c */
527 SMBC_setxattr_ctx(SMBCCTX *context,
528 const char *fname,
529 const char *name,
530 const void *value,
531 size_t size,
532 int flags);
535 SMBC_getxattr_ctx(SMBCCTX *context,
536 const char *fname,
537 const char *name,
538 const void *value,
539 size_t size);
542 SMBC_removexattr_ctx(SMBCCTX *context,
543 const char *fname,
544 const char *name);
547 SMBC_listxattr_ctx(SMBCCTX *context,
548 const char *fname,
549 char *list,
550 size_t size);
553 #endif