s3:libsmb: Fix code spelling
[Samba.git] / source3 / libsmb / libsmb_setget.c
blob9a8ef97f9feb55c7395fef8463c62344e7a24afd
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"
26 #define __LIBSMBCLIENT_INTERNAL__
27 #include "libsmbclient.h"
28 #include "libsmb_internal.h"
31 /** Get the netbios name used for making connections */
32 const char *
33 smbc_getNetbiosName(SMBCCTX *c)
35 return c->netbios_name;
38 /** Set the netbios name used for making connections */
39 void
40 smbc_setNetbiosName(SMBCCTX *c, const char *netbios_name)
42 SAFE_FREE(c->netbios_name);
43 if (netbios_name) {
44 c->netbios_name = SMB_STRDUP(netbios_name);
48 /** Get the workgroup used for making connections */
49 const char *
50 smbc_getWorkgroup(SMBCCTX *c)
52 return c->workgroup;
55 /** Set the workgroup used for making connections */
56 void
57 smbc_setWorkgroup(SMBCCTX *c, const char *workgroup)
59 SAFE_FREE(c->workgroup);
60 if (workgroup) {
61 c->workgroup = SMB_STRDUP(workgroup);
65 /** Get the username used for making connections */
66 const char *
67 smbc_getUser(SMBCCTX *c)
69 return c->user;
72 /** Set the username used for making connections */
73 void
74 smbc_setUser(SMBCCTX *c, const char *user)
76 SAFE_FREE(c->user);
77 if (user) {
78 c->user = SMB_STRDUP(user);
82 /** Get the debug level */
83 int
84 smbc_getDebug(SMBCCTX *c)
86 return c->debug;
89 /** Set the debug level */
90 void
91 smbc_setDebug(SMBCCTX *c, int debug)
93 char buf[32];
94 TALLOC_CTX *frame = talloc_stackframe();
95 snprintf(buf, sizeof(buf), "%d", debug);
96 c->debug = debug;
97 lp_set_cmdline("log level", buf);
98 TALLOC_FREE(frame);
101 /** set callback function which will be called for logging */
102 void
103 smbc_setLogCallback(SMBCCTX *c, void *private_ptr,
104 smbc_debug_callback_fn fn)
106 debug_set_callback(private_ptr, fn);
109 /** set configuration file */
110 int smbc_setConfiguration(SMBCCTX *c, const char *file)
112 bool ok;
114 ok = lp_load_client_no_reinit(file);
115 if (!ok) {
116 DBG_WARNING("Could not load config file: %s\n", file);
117 errno = ENOENT;
118 return -1;
121 DBG_NOTICE("Configuration loaded successfully: %s\n", file);
122 return 0;
125 * Get the timeout used for waiting on connections and response data
126 * (in milliseconds)
129 smbc_getTimeout(SMBCCTX *c)
131 return c->timeout;
135 * Set the timeout used for waiting on connections and response data
136 * (in milliseconds)
138 void
139 smbc_setTimeout(SMBCCTX *c, int timeout)
141 c->timeout = timeout;
145 * Get the TCP port used to connect.
147 uint16_t
148 smbc_getPort(SMBCCTX *c)
150 return c->internal->port;
154 * Set the TCP port used to connect.
156 void
157 smbc_setPort(SMBCCTX *c, uint16_t port)
159 c->internal->port = port;
163 /** Get whether to log to standard error instead of standard output */
164 smbc_bool
165 smbc_getOptionDebugToStderr(SMBCCTX *c)
167 smbc_bool ret;
168 TALLOC_CTX *frame = talloc_stackframe();
170 /* Because this is a global concept, it is better to check
171 * what is really set, rather than what we wanted set
172 * (particularly as you cannot go back to stdout). */
173 ret = debug_get_output_is_stderr();
174 TALLOC_FREE(frame);
175 return ret;
178 /** Set whether to log to standard error instead of standard output.
179 * This option is 'sticky' - once set to true, it cannot be set to
180 * false again, as it is global to the process, as once we have been
181 * told that it is not safe to safe to write to stdout, we shouldn't
182 * go back as we don't know it was this context that set it that way.
184 void
185 smbc_setOptionDebugToStderr(SMBCCTX *c, smbc_bool b)
187 TALLOC_CTX *frame = talloc_stackframe();
188 if (b) {
190 * We do not have a unique per-thread debug state? For
191 * now, we'll just leave it up to the user. If any one
192 * context specifies debug to stderr then all will be (and
193 * will stay that way, as it is unsafe to flip back if
194 * stdout is in use for other things)
196 setup_logging("libsmbclient", DEBUG_STDERR);
198 TALLOC_FREE(frame);
202 * Get whether to use new-style time attribute names, e.g. WRITE_TIME rather
203 * than the old-style names such as M_TIME. This allows also setting/getting
204 * CREATE_TIME which was previously unimplemented. (Note that the old C_TIME
205 * was supposed to be CHANGE_TIME but was confused and sometimes referred to
206 * CREATE_TIME.)
208 smbc_bool
209 smbc_getOptionFullTimeNames(SMBCCTX *c)
211 return c->internal->full_time_names;
215 * Set whether to use new-style time attribute names, e.g. WRITE_TIME rather
216 * than the old-style names such as M_TIME. This allows also setting/getting
217 * CREATE_TIME which was previously unimplemented. (Note that the old C_TIME
218 * was supposed to be CHANGE_TIME but was confused and sometimes referred to
219 * CREATE_TIME.)
221 void
222 smbc_setOptionFullTimeNames(SMBCCTX *c, smbc_bool b)
224 c->internal->full_time_names = b;
228 * Get the share mode to use for files opened with SMBC_open_ctx(). The
229 * default is SMBC_SHAREMODE_DENY_NONE.
231 smbc_share_mode
232 smbc_getOptionOpenShareMode(SMBCCTX *c)
234 return c->internal->share_mode;
238 * Set the share mode to use for files opened with SMBC_open_ctx(). The
239 * default is SMBC_SHAREMODE_DENY_NONE.
241 void
242 smbc_setOptionOpenShareMode(SMBCCTX *c, smbc_share_mode share_mode)
244 c->internal->share_mode = share_mode;
247 /** Retrieve a previously set user data handle */
248 void *
249 smbc_getOptionUserData(SMBCCTX *c)
251 return c->internal->user_data;
254 /** Save a user data handle */
255 void
256 smbc_setOptionUserData(SMBCCTX *c, void *user_data)
258 c->internal->user_data = user_data;
261 /** Get the encoded value for encryption level. */
262 smbc_smb_encrypt_level
263 smbc_getOptionSmbEncryptionLevel(SMBCCTX *c)
265 return c->internal->smb_encryption_level;
268 /** Set the encoded value for encryption level. */
269 void
270 smbc_setOptionSmbEncryptionLevel(SMBCCTX *c, smbc_smb_encrypt_level level)
272 c->internal->smb_encryption_level = level;
276 * Get whether to treat file names as case-sensitive if we can't determine
277 * when connecting to the remote share whether the file system is case
278 * sensitive. This defaults to FALSE since it's most likely that if we can't
279 * retrieve the file system attributes, it's a very old file system that does
280 * not support case sensitivity.
282 smbc_bool
283 smbc_getOptionCaseSensitive(SMBCCTX *c)
285 return c->internal->case_sensitive;
289 * Set whether to treat file names as case-sensitive if we can't determine
290 * when connecting to the remote share whether the file system is case
291 * sensitive. This defaults to FALSE since it's most likely that if we can't
292 * retrieve the file system attributes, it's a very old file system that does
293 * not support case sensitivity.
295 void
296 smbc_setOptionCaseSensitive(SMBCCTX *c, smbc_bool b)
298 c->internal->case_sensitive = b;
302 * Get from how many local master browsers should the list of workgroups be
303 * retrieved. It can take up to 12 minutes or longer after a server becomes a
304 * local master browser, for it to have the entire browse list (the list of
305 * workgroups/domains) from an entire network. Since a client never knows
306 * which local master browser will be found first, the one which is found
307 * first and used to retrieve a browse list may have an incomplete or empty
308 * browse list. By requesting the browse list from multiple local master
309 * browsers, a more complete list can be generated. For small networks (few
310 * workgroups), it is recommended that this value be set to 0, causing the
311 * browse lists from all found local master browsers to be retrieved and
312 * merged. For networks with many workgroups, a suitable value for this
313 * variable is probably somewhere around 3. (Default: 3).
316 smbc_getOptionBrowseMaxLmbCount(SMBCCTX *c)
318 return c->options.browse_max_lmb_count;
322 * Set from how many local master browsers should the list of workgroups be
323 * retrieved. It can take up to 12 minutes or longer after a server becomes a
324 * local master browser, for it to have the entire browse list (the list of
325 * workgroups/domains) from an entire network. Since a client never knows
326 * which local master browser will be found first, the one which is found
327 * first and used to retrieve a browse list may have an incomplete or empty
328 * browse list. By requesting the browse list from multiple local master
329 * browsers, a more complete list can be generated. For small networks (few
330 * workgroups), it is recommended that this value be set to 0, causing the
331 * browse lists from all found local master browsers to be retrieved and
332 * merged. For networks with many workgroups, a suitable value for this
333 * variable is probably somewhere around 3. (Default: 3).
335 void
336 smbc_setOptionBrowseMaxLmbCount(SMBCCTX *c, int count)
338 c->options.browse_max_lmb_count = count;
342 * Get whether to url-encode readdir entries.
344 * There is a difference in the desired return strings from
345 * smbc_readdir() depending upon whether the filenames are to
346 * be displayed to the user, or whether they are to be
347 * appended to the path name passed to smbc_opendir() to call
348 * a further smbc_ function (e.g. open the file with
349 * smbc_open()). In the former case, the filename should be
350 * in "human readable" form. In the latter case, the smbc_
351 * functions expect a URL which must be url-encoded. Those
352 * functions decode the URL. If, for example, smbc_readdir()
353 * returned a file name of "abc%20def.txt", passing a path
354 * with this file name attached to smbc_open() would cause
355 * smbc_open to attempt to open the file "abc def.txt" since
356 * the %20 is decoded into a space.
358 * Set this option to True if the names returned by
359 * smbc_readdir() should be url-encoded such that they can be
360 * passed back to another smbc_ call. Set it to False if the
361 * names returned by smbc_readdir() are to be presented to the
362 * user.
364 * For backwards compatibility, this option defaults to False.
366 smbc_bool
367 smbc_getOptionUrlEncodeReaddirEntries(SMBCCTX *c)
369 return c->options.urlencode_readdir_entries;
373 * Set whether to url-encode readdir entries.
375 * There is a difference in the desired return strings from
376 * smbc_readdir() depending upon whether the filenames are to
377 * be displayed to the user, or whether they are to be
378 * appended to the path name passed to smbc_opendir() to call
379 * a further smbc_ function (e.g. open the file with
380 * smbc_open()). In the former case, the filename should be
381 * in "human readable" form. In the latter case, the smbc_
382 * functions expect a URL which must be url-encoded. Those
383 * functions decode the URL. If, for example, smbc_readdir()
384 * returned a file name of "abc%20def.txt", passing a path
385 * with this file name attached to smbc_open() would cause
386 * smbc_open to attempt to open the file "abc def.txt" since
387 * the %20 is decoded into a space.
389 * Set this option to True if the names returned by
390 * smbc_readdir() should be url-encoded such that they can be
391 * passed back to another smbc_ call. Set it to False if the
392 * names returned by smbc_readdir() are to be presented to the
393 * user.
395 * For backwards compatibility, this option defaults to False.
397 void
398 smbc_setOptionUrlEncodeReaddirEntries(SMBCCTX *c, smbc_bool b)
400 c->options.urlencode_readdir_entries = b;
404 * Get whether to use the same connection for all shares on a server.
406 * Some Windows versions appear to have a limit to the number
407 * of concurrent SESSIONs and/or TREE CONNECTions. In
408 * one-shot programs (i.e. the program runs and then quickly
409 * ends, thereby shutting down all connections), it is
410 * probably reasonable to establish a new connection for each
411 * share. In long-running applications, the limitation can be
412 * avoided by using only a single connection to each server,
413 * and issuing a new TREE CONNECT when the share is accessed.
415 smbc_bool
416 smbc_getOptionOneSharePerServer(SMBCCTX *c)
418 return c->options.one_share_per_server;
422 * Set whether to use the same connection for all shares on a server.
424 * Some Windows versions appear to have a limit to the number
425 * of concurrent SESSIONs and/or TREE CONNECTions. In
426 * one-shot programs (i.e. the program runs and then quickly
427 * ends, thereby shutting down all connections), it is
428 * probably reasonable to establish a new connection for each
429 * share. In long-running applications, the limitation can be
430 * avoided by using only a single connection to each server,
431 * and issuing a new TREE CONNECT when the share is accessed.
433 void
434 smbc_setOptionOneSharePerServer(SMBCCTX *c, smbc_bool b)
436 c->options.one_share_per_server = b;
439 /** Get whether to enable use of kerberos */
440 smbc_bool
441 smbc_getOptionUseKerberos(SMBCCTX *c)
443 return c->flags & SMB_CTX_FLAG_USE_KERBEROS ? True : False;
446 /** Set whether to enable use of kerberos */
447 void
448 smbc_setOptionUseKerberos(SMBCCTX *c, smbc_bool b)
450 if (b) {
451 c->flags |= SMB_CTX_FLAG_USE_KERBEROS;
452 } else {
453 c->flags &= ~SMB_CTX_FLAG_USE_KERBEROS;
457 /** Get whether to fallback after kerberos */
458 smbc_bool
459 smbc_getOptionFallbackAfterKerberos(SMBCCTX *c)
461 return c->flags & SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS ? True : False;
464 /** Set whether to fallback after kerberos */
465 void
466 smbc_setOptionFallbackAfterKerberos(SMBCCTX *c, smbc_bool b)
468 if (b) {
469 c->flags |= SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS;
470 } else {
471 c->flags &= ~SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS;
475 /** Get whether to automatically select anonymous login */
476 smbc_bool
477 smbc_getOptionNoAutoAnonymousLogin(SMBCCTX *c)
479 return c->flags & SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON ? True : False;
482 /** Set whether to automatically select anonymous login */
483 void
484 smbc_setOptionNoAutoAnonymousLogin(SMBCCTX *c, smbc_bool b)
486 if (b) {
487 c->flags |= SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON;
488 } else {
489 c->flags &= ~SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON;
493 /** Get whether to enable use of the winbind ccache */
494 smbc_bool
495 smbc_getOptionUseCCache(SMBCCTX *c)
497 return c->flags & SMB_CTX_FLAG_USE_CCACHE ? True : False;
500 /** Set whether to enable use of the winbind ccache */
501 void
502 smbc_setOptionUseCCache(SMBCCTX *c, smbc_bool b)
504 if (b) {
505 c->flags |= SMB_CTX_FLAG_USE_CCACHE;
506 } else {
507 c->flags &= ~SMB_CTX_FLAG_USE_CCACHE;
511 /** Get indication whether the password supplied is the NT hash */
512 smbc_bool
513 smbc_getOptionUseNTHash(SMBCCTX *c)
515 return (c->flags & SMB_CTX_FLAG_USE_NT_HASH) != 0;
518 /** Set indication that the password supplied is the NT hash */
519 void
520 smbc_setOptionUseNTHash(SMBCCTX *c, smbc_bool b)
522 if (b) {
523 c->flags |= SMB_CTX_FLAG_USE_NT_HASH;
524 } else {
525 c->flags &= ~SMB_CTX_FLAG_USE_NT_HASH;
529 smbc_bool
530 smbc_setOptionProtocols(SMBCCTX *c,
531 const char *min_proto,
532 const char *max_proto)
534 bool ok = true;
536 if (min_proto != NULL) {
537 ok = lp_set_cmdline("client min protocol", min_proto);
540 if (max_proto != NULL) {
541 ok &= lp_set_cmdline("client max protocol", max_proto);
544 return ok;
547 /** Get the function for obtaining authentication data */
548 smbc_get_auth_data_fn
549 smbc_getFunctionAuthData(SMBCCTX *c)
551 smbc_get_auth_data_fn ret;
552 TALLOC_CTX *frame = talloc_stackframe();
553 ret = c->callbacks.auth_fn;
554 TALLOC_FREE(frame);
555 return ret;
558 /** Set the function for obtaining authentication data */
559 void
560 smbc_setFunctionAuthData(SMBCCTX *c, smbc_get_auth_data_fn fn)
562 c->internal->auth_fn_with_context = NULL;
563 c->callbacks.auth_fn = fn;
566 /** Get the new-style authentication function which includes the context. */
567 smbc_get_auth_data_with_context_fn
568 smbc_getFunctionAuthDataWithContext(SMBCCTX *c)
570 return c->internal->auth_fn_with_context;
573 /** Set the new-style authentication function which includes the context. */
574 void
575 smbc_setFunctionAuthDataWithContext(SMBCCTX *c,
576 smbc_get_auth_data_with_context_fn fn)
578 c->callbacks.auth_fn = NULL;
579 c->internal->auth_fn_with_context = fn;
582 /** Get the function for checking if a server is still good */
583 smbc_check_server_fn
584 smbc_getFunctionCheckServer(SMBCCTX *c)
586 return c->callbacks.check_server_fn;
589 /** Set the function for checking if a server is still good */
590 void
591 smbc_setFunctionCheckServer(SMBCCTX *c, smbc_check_server_fn fn)
593 c->callbacks.check_server_fn = fn;
596 /** Get the function for removing a server if unused */
597 smbc_remove_unused_server_fn
598 smbc_getFunctionRemoveUnusedServer(SMBCCTX *c)
600 return c->callbacks.remove_unused_server_fn;
603 /** Set the function for removing a server if unused */
604 void
605 smbc_setFunctionRemoveUnusedServer(SMBCCTX *c,
606 smbc_remove_unused_server_fn fn)
608 c->callbacks.remove_unused_server_fn = fn;
611 /** Get the function for adding a cached server */
612 smbc_add_cached_srv_fn
613 smbc_getFunctionAddCachedServer(SMBCCTX *c)
615 return c->callbacks.add_cached_srv_fn;
618 /** Set the function for adding a cached server */
619 void
620 smbc_setFunctionAddCachedServer(SMBCCTX *c, smbc_add_cached_srv_fn fn)
622 c->callbacks.add_cached_srv_fn = fn;
625 /** Get the function for server cache lookup */
626 smbc_get_cached_srv_fn
627 smbc_getFunctionGetCachedServer(SMBCCTX *c)
629 return c->callbacks.get_cached_srv_fn;
632 /** Set the function for server cache lookup */
633 void
634 smbc_setFunctionGetCachedServer(SMBCCTX *c, smbc_get_cached_srv_fn fn)
636 c->callbacks.get_cached_srv_fn = fn;
639 /** Get the function for server cache removal */
640 smbc_remove_cached_srv_fn
641 smbc_getFunctionRemoveCachedServer(SMBCCTX *c)
643 return c->callbacks.remove_cached_srv_fn;
646 /** Set the function for server cache removal */
647 void
648 smbc_setFunctionRemoveCachedServer(SMBCCTX *c,
649 smbc_remove_cached_srv_fn fn)
651 c->callbacks.remove_cached_srv_fn = fn;
655 * Get the function for server cache purging. This function tries to
656 * remove all cached servers (e.g. on disconnect)
658 smbc_purge_cached_fn
659 smbc_getFunctionPurgeCachedServers(SMBCCTX *c)
661 return c->callbacks.purge_cached_fn;
664 /** Set the function to store private data of the server cache */
665 void smbc_setServerCacheData(SMBCCTX *c, struct smbc_server_cache * cache)
667 c->internal->server_cache = cache;
670 /** Get the function to store private data of the server cache */
671 struct smbc_server_cache * smbc_getServerCacheData(SMBCCTX *c)
673 return c->internal->server_cache;
678 * Set the function for server cache purging. This function tries to
679 * remove all cached servers (e.g. on disconnect)
681 void
682 smbc_setFunctionPurgeCachedServers(SMBCCTX *c, smbc_purge_cached_fn fn)
684 c->callbacks.purge_cached_fn = fn;
688 * Callable functions for files.
691 smbc_open_fn
692 smbc_getFunctionOpen(SMBCCTX *c)
694 return c->open;
697 void
698 smbc_setFunctionOpen(SMBCCTX *c, smbc_open_fn fn)
700 c->open = fn;
703 smbc_creat_fn
704 smbc_getFunctionCreat(SMBCCTX *c)
706 return c->creat;
709 void
710 smbc_setFunctionCreat(SMBCCTX *c, smbc_creat_fn fn)
712 c->creat = fn;
715 smbc_read_fn
716 smbc_getFunctionRead(SMBCCTX *c)
718 return c->read;
721 void
722 smbc_setFunctionRead(SMBCCTX *c, smbc_read_fn fn)
724 c->read = fn;
727 smbc_write_fn
728 smbc_getFunctionWrite(SMBCCTX *c)
730 return c->write;
733 void
734 smbc_setFunctionWrite(SMBCCTX *c, smbc_write_fn fn)
736 c->write = fn;
739 smbc_splice_fn
740 smbc_getFunctionSplice(SMBCCTX *c)
742 return c->internal->smb.splice_fn;
745 void
746 smbc_setFunctionSplice(SMBCCTX *c, smbc_splice_fn fn)
748 c->internal->smb.splice_fn = fn;
751 smbc_unlink_fn
752 smbc_getFunctionUnlink(SMBCCTX *c)
754 return c->unlink;
757 void
758 smbc_setFunctionUnlink(SMBCCTX *c, smbc_unlink_fn fn)
760 c->unlink = fn;
763 smbc_rename_fn
764 smbc_getFunctionRename(SMBCCTX *c)
766 return c->rename;
769 void
770 smbc_setFunctionRename(SMBCCTX *c, smbc_rename_fn fn)
772 c->rename = fn;
775 smbc_lseek_fn
776 smbc_getFunctionLseek(SMBCCTX *c)
778 return c->lseek;
781 void
782 smbc_setFunctionLseek(SMBCCTX *c, smbc_lseek_fn fn)
784 c->lseek = fn;
787 smbc_stat_fn
788 smbc_getFunctionStat(SMBCCTX *c)
790 return c->stat;
793 void
794 smbc_setFunctionStat(SMBCCTX *c, smbc_stat_fn fn)
796 c->stat = fn;
799 smbc_fstat_fn
800 smbc_getFunctionFstat(SMBCCTX *c)
802 return c->fstat;
805 void
806 smbc_setFunctionFstat(SMBCCTX *c, smbc_fstat_fn fn)
808 c->fstat = fn;
811 smbc_statvfs_fn
812 smbc_getFunctionStatVFS(SMBCCTX *c)
814 return c->internal->posix_emu.statvfs_fn;
817 void
818 smbc_setFunctionStatVFS(SMBCCTX *c, smbc_statvfs_fn fn)
820 c->internal->posix_emu.statvfs_fn = fn;
823 smbc_fstatvfs_fn
824 smbc_getFunctionFstatVFS(SMBCCTX *c)
826 return c->internal->posix_emu.fstatvfs_fn;
829 void
830 smbc_setFunctionFstatVFS(SMBCCTX *c, smbc_fstatvfs_fn fn)
832 c->internal->posix_emu.fstatvfs_fn = fn;
835 smbc_ftruncate_fn
836 smbc_getFunctionFtruncate(SMBCCTX *c)
838 return c->internal->posix_emu.ftruncate_fn;
841 void
842 smbc_setFunctionFtruncate(SMBCCTX *c, smbc_ftruncate_fn fn)
844 c->internal->posix_emu.ftruncate_fn = fn;
847 smbc_close_fn
848 smbc_getFunctionClose(SMBCCTX *c)
850 return c->close_fn;
853 void
854 smbc_setFunctionClose(SMBCCTX *c, smbc_close_fn fn)
856 c->close_fn = fn;
861 * Callable functions for directories.
864 smbc_opendir_fn
865 smbc_getFunctionOpendir(SMBCCTX *c)
867 return c->opendir;
870 void
871 smbc_setFunctionOpendir(SMBCCTX *c, smbc_opendir_fn fn)
873 c->opendir = fn;
876 smbc_closedir_fn
877 smbc_getFunctionClosedir(SMBCCTX *c)
879 return c->closedir;
882 void
883 smbc_setFunctionClosedir(SMBCCTX *c, smbc_closedir_fn fn)
885 c->closedir = fn;
888 smbc_readdir_fn
889 smbc_getFunctionReaddir(SMBCCTX *c)
891 return c->readdir;
894 void
895 smbc_setFunctionReaddir(SMBCCTX *c, smbc_readdir_fn fn)
897 c->readdir = fn;
900 smbc_readdirplus_fn smbc_getFunctionReaddirPlus(SMBCCTX *c)
902 return c->readdirplus;
905 void smbc_setFunctionReaddirPlus(SMBCCTX *c, smbc_readdirplus_fn fn)
907 c->readdirplus = fn;
910 smbc_readdirplus2_fn smbc_getFunctionReaddirPlus2(SMBCCTX *c)
912 return c->readdirplus2;
915 void smbc_setFunctionReaddirPlus2(SMBCCTX *c, smbc_readdirplus2_fn fn)
917 c->readdirplus2 = fn;
920 smbc_getdents_fn
921 smbc_getFunctionGetdents(SMBCCTX *c)
923 return c->getdents;
926 void
927 smbc_setFunctionGetdents(SMBCCTX *c, smbc_getdents_fn fn)
929 c->getdents = fn;
932 smbc_mkdir_fn
933 smbc_getFunctionMkdir(SMBCCTX *c)
935 return c->mkdir;
938 void
939 smbc_setFunctionMkdir(SMBCCTX *c, smbc_mkdir_fn fn)
941 c->mkdir = fn;
944 smbc_rmdir_fn
945 smbc_getFunctionRmdir(SMBCCTX *c)
947 return c->rmdir;
950 void
951 smbc_setFunctionRmdir(SMBCCTX *c, smbc_rmdir_fn fn)
953 c->rmdir = fn;
956 smbc_telldir_fn
957 smbc_getFunctionTelldir(SMBCCTX *c)
959 return c->telldir;
962 void
963 smbc_setFunctionTelldir(SMBCCTX *c, smbc_telldir_fn fn)
965 c->telldir = fn;
968 smbc_lseekdir_fn
969 smbc_getFunctionLseekdir(SMBCCTX *c)
971 return c->lseekdir;
974 void
975 smbc_setFunctionLseekdir(SMBCCTX *c, smbc_lseekdir_fn fn)
977 c->lseekdir = fn;
980 smbc_fstatdir_fn
981 smbc_getFunctionFstatdir(SMBCCTX *c)
983 return c->fstatdir;
986 void
987 smbc_setFunctionFstatdir(SMBCCTX *c, smbc_fstatdir_fn fn)
989 c->fstatdir = fn;
992 smbc_notify_fn
993 smbc_getFunctionNotify(SMBCCTX *c)
995 return c->internal->smb.notify_fn;
998 void
999 smbc_setFunctionNotify(SMBCCTX *c, smbc_notify_fn fn)
1001 c->internal->smb.notify_fn = fn;
1006 * Callable functions applicable to both files and directories.
1009 smbc_chmod_fn
1010 smbc_getFunctionChmod(SMBCCTX *c)
1012 return c->chmod;
1015 void
1016 smbc_setFunctionChmod(SMBCCTX *c, smbc_chmod_fn fn)
1018 c->chmod = fn;
1021 smbc_utimes_fn
1022 smbc_getFunctionUtimes(SMBCCTX *c)
1024 return c->utimes;
1027 void
1028 smbc_setFunctionUtimes(SMBCCTX *c, smbc_utimes_fn fn)
1030 c->utimes = fn;
1033 smbc_setxattr_fn
1034 smbc_getFunctionSetxattr(SMBCCTX *c)
1036 return c->setxattr;
1039 void
1040 smbc_setFunctionSetxattr(SMBCCTX *c, smbc_setxattr_fn fn)
1042 c->setxattr = fn;
1045 smbc_getxattr_fn
1046 smbc_getFunctionGetxattr(SMBCCTX *c)
1048 return c->getxattr;
1051 void
1052 smbc_setFunctionGetxattr(SMBCCTX *c, smbc_getxattr_fn fn)
1054 c->getxattr = fn;
1057 smbc_removexattr_fn
1058 smbc_getFunctionRemovexattr(SMBCCTX *c)
1060 return c->removexattr;
1063 void
1064 smbc_setFunctionRemovexattr(SMBCCTX *c, smbc_removexattr_fn fn)
1066 c->removexattr = fn;
1069 smbc_listxattr_fn
1070 smbc_getFunctionListxattr(SMBCCTX *c)
1072 return c->listxattr;
1075 void
1076 smbc_setFunctionListxattr(SMBCCTX *c, smbc_listxattr_fn fn)
1078 c->listxattr = fn;
1083 * Callable functions related to printing
1086 smbc_print_file_fn
1087 smbc_getFunctionPrintFile(SMBCCTX *c)
1089 return c->print_file;
1092 void
1093 smbc_setFunctionPrintFile(SMBCCTX *c, smbc_print_file_fn fn)
1095 c->print_file = fn;
1098 smbc_open_print_job_fn
1099 smbc_getFunctionOpenPrintJob(SMBCCTX *c)
1101 return c->open_print_job;
1104 void
1105 smbc_setFunctionOpenPrintJob(SMBCCTX *c,
1106 smbc_open_print_job_fn fn)
1108 c->open_print_job = fn;
1111 smbc_list_print_jobs_fn
1112 smbc_getFunctionListPrintJobs(SMBCCTX *c)
1114 return c->list_print_jobs;
1117 void
1118 smbc_setFunctionListPrintJobs(SMBCCTX *c,
1119 smbc_list_print_jobs_fn fn)
1121 c->list_print_jobs = fn;
1124 smbc_unlink_print_job_fn
1125 smbc_getFunctionUnlinkPrintJob(SMBCCTX *c)
1127 return c->unlink_print_job;
1130 void
1131 smbc_setFunctionUnlinkPrintJob(SMBCCTX *c,
1132 smbc_unlink_print_job_fn fn)
1134 c->unlink_print_job = fn;