Remove another global from clidfs that is only used in client.c.
[Samba.git] / source3 / include / libsmbclient.h
bloba8b27b709e4fb4ceec89c04f4331a3166bc874d9
1 /*=====================================================================
2 Unix SMB/Netbios implementation.
3 SMB client library API definitions
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Richard Sharpe 2000
6 Copyright (C) John Terpsra 2000
7 Copyright (C) Tom Jansen (Ninja ISD) 2002
8 Copyright (C) Derrell Lipman 2003-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/>.
23 =====================================================================*/
25 #ifndef SMBCLIENT_H_INCLUDED
26 #define SMBCLIENT_H_INCLUDED
28 #undef DEPRECATED_SMBC_INTERFACE
29 #if ! defined(__LIBSMBCLIENT_INTERNAL__) && defined(__GNUC__)
30 # define DEPRECATED_SMBC_INTERFACE __attribute__ ((deprecated))
31 #else
32 # define DEPRECATED_SMBC_INTERFACE
33 #endif
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
39 /*-------------------------------------------------------------------*/
40 /* The following are special comments to instruct DOXYGEN (automated
41 * documentation tool:
43 /** \defgroup libsmbclient
45 /** \defgroup structure Data Structures Type and Constants
46 * \ingroup libsmbclient
47 * Data structures, types, and constants
49 /** \defgroup callback Callback function types
50 * \ingroup libsmbclient
51 * Callback functions
53 /** \defgroup file File Functions
54 * \ingroup libsmbclient
55 * Functions used to access individual file contents
57 /** \defgroup directory Directory Functions
58 * \ingroup libsmbclient
59 * Functions used to access directory entries
61 /** \defgroup attribute Attributes Functions
62 * \ingroup libsmbclient
63 * Functions used to view or change file and directory attributes
65 /** \defgroup print Print Functions
66 * \ingroup libsmbclient
67 * Functions used to access printing functionality
69 /** \defgroup misc Miscellaneous Functions
70 * \ingroup libsmbclient
71 * Functions that don't fit in to other categories
73 /*-------------------------------------------------------------------*/
75 /* Make sure we have the following includes for now ... */
76 #include <sys/types.h>
77 #include <sys/stat.h>
78 #include <fcntl.h>
79 #include <utime.h>
81 #define SMBC_BASE_FD 10000 /* smallest file descriptor returned */
83 #define SMBC_WORKGROUP 1
84 #define SMBC_SERVER 2
85 #define SMBC_FILE_SHARE 3
86 #define SMBC_PRINTER_SHARE 4
87 #define SMBC_COMMS_SHARE 5
88 #define SMBC_IPC_SHARE 6
89 #define SMBC_DIR 7
90 #define SMBC_FILE 8
91 #define SMBC_LINK 9
93 /**@ingroup structure
94 * Structure that represents a directory entry.
97 struct smbc_dirent
99 /** Type of entity.
100 SMBC_WORKGROUP=1,
101 SMBC_SERVER=2,
102 SMBC_FILE_SHARE=3,
103 SMBC_PRINTER_SHARE=4,
104 SMBC_COMMS_SHARE=5,
105 SMBC_IPC_SHARE=6,
106 SMBC_DIR=7,
107 SMBC_FILE=8,
108 SMBC_LINK=9,*/
109 unsigned int smbc_type;
111 /** Length of this smbc_dirent in bytes
113 unsigned int dirlen;
114 /** The length of the comment string in bytes (does not include
115 * null terminator)
117 unsigned int commentlen;
118 /** Points to the null terminated comment string
120 char *comment;
121 /** The length of the name string in bytes (does not include
122 * null terminator)
124 unsigned int namelen;
125 /** Points to the null terminated name string
127 char name[1];
131 * Flags for smbc_setxattr()
132 * Specify a bitwise OR of these, or 0 to add or replace as necessary
134 #define SMBC_XATTR_FLAG_CREATE 0x1 /* fail if attr already exists */
135 #define SMBC_XATTR_FLAG_REPLACE 0x2 /* fail if attr does not exist */
139 * Mappings of the DOS mode bits, as returned by smbc_getxattr() when the
140 * attribute name "system.dos_attr.mode" (or "system.dos_attr.*" or
141 * "system.*") is specified.
143 #define SMBC_DOS_MODE_READONLY 0x01
144 #define SMBC_DOS_MODE_HIDDEN 0x02
145 #define SMBC_DOS_MODE_SYSTEM 0x04
146 #define SMBC_DOS_MODE_VOLUME_ID 0x08
147 #define SMBC_DOS_MODE_DIRECTORY 0x10
148 #define SMBC_DOS_MODE_ARCHIVE 0x20
151 * Valid values for the option "open_share_mode", when calling
152 * smbc_setOptionOpenShareMode()
154 typedef enum smbc_share_mode
156 SMBC_SHAREMODE_DENY_DOS = 0,
157 SMBC_SHAREMODE_DENY_ALL = 1,
158 SMBC_SHAREMODE_DENY_WRITE = 2,
159 SMBC_SHAREMODE_DENY_READ = 3,
160 SMBC_SHAREMODE_DENY_NONE = 4,
161 SMBC_SHAREMODE_DENY_FCB = 7
162 } smbc_share_mode;
166 * Values for option SMB Encryption Level, as set and retrieved with
167 * smbc_setOptionSmbEncryptionLevel() and smbc_getOptionSmbEncryptionLevel()
169 typedef enum smbc_smb_encrypt_level
171 SMBC_ENCRYPTLEVEL_NONE = 0,
172 SMBC_ENCRYPTLEVEL_REQUEST = 1,
173 SMBC_ENCRYPTLEVEL_REQUIRE = 2
174 } smbc_smb_encrypt_level;
177 typedef int smbc_bool;
180 #ifndef ENOATTR
181 # define ENOATTR ENOENT /* No such attribute */
182 #endif
187 /**@ingroup structure
188 * Structure that represents a print job.
191 #ifndef _CLIENT_H
192 struct print_job_info
194 /** numeric ID of the print job
196 unsigned short id;
198 /** represents print job priority (lower numbers mean higher priority)
200 unsigned short priority;
202 /** Size of the print job
204 size_t size;
206 /** Name of the user that owns the print job
208 char user[128];
210 /** Name of the print job. This will have no name if an anonymous print
211 * file was opened. Ie smb://server/printer
213 char name[128];
215 /** Time the print job was spooled
217 time_t t;
219 #endif /* _CLIENT_H */
222 /**@ingroup structure
223 * Server handle
225 typedef struct _SMBCSRV SMBCSRV;
227 /**@ingroup structure
228 * File or directory handle
230 typedef struct _SMBCFILE SMBCFILE;
232 /**@ingroup structure
233 * File or directory handle
235 typedef struct _SMBCCTX SMBCCTX;
239 * Flags for SMBCCTX->flags
241 * NEW CODE SHOULD NOT DIRECTLY MANIPULATE THE CONTEXT STRUCTURE.
242 * Instead, use:
243 * smbc_setOptionUseKerberos()
244 * smbc_getOptionUseKerberos()
245 * smbc_setOptionFallbackAfterKerberos()
246 * smbc_getOptionFallbackAFterKerberos()
247 * smbc_setOptionNoAutoAnonymousLogin()
248 * smbc_getOptionNoAutoAnonymousLogin()
250 # define SMB_CTX_FLAG_USE_KERBEROS (1 << 0)
251 # define SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS (1 << 1)
252 # define SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON (1 << 2)
256 /**@ingroup callback
257 * Authentication callback function type (traditional method)
259 * Type for the the authentication function called by the library to
260 * obtain authentication credentals
262 * For kerberos support the function should just be called without
263 * prompting the user for credentials. Which means a simple 'return'
264 * should work. Take a look at examples/libsmbclient/get_auth_data_fn.h
265 * and examples/libsmbclient/testbrowse.c.
267 * @param srv Server being authenticated to
269 * @param shr Share being authenticated to
271 * @param wg Pointer to buffer containing a "hint" for the
272 * workgroup to be authenticated. Should be filled in
273 * with the correct workgroup if the hint is wrong.
275 * @param wglen The size of the workgroup buffer in bytes
277 * @param un Pointer to buffer containing a "hint" for the
278 * user name to be use for authentication. Should be
279 * filled in with the correct workgroup if the hint is
280 * wrong.
282 * @param unlen The size of the username buffer in bytes
284 * @param pw Pointer to buffer containing to which password
285 * copied
287 * @param pwlen The size of the password buffer in bytes
290 typedef void (*smbc_get_auth_data_fn)(const char *srv,
291 const char *shr,
292 char *wg, int wglen,
293 char *un, int unlen,
294 char *pw, int pwlen);
295 /**@ingroup callback
296 * Authentication callback function type (method that includes context)
298 * Type for the the authentication function called by the library to
299 * obtain authentication credentals
301 * For kerberos support the function should just be called without
302 * prompting the user for credentials. Which means a simple 'return'
303 * should work. Take a look at examples/libsmbclient/get_auth_data_fn.h
304 * and examples/libsmbclient/testbrowse.c.
306 * @param c Pointer to the smb context
308 * @param srv Server being authenticated to
310 * @param shr Share being authenticated to
312 * @param wg Pointer to buffer containing a "hint" for the
313 * workgroup to be authenticated. Should be filled in
314 * with the correct workgroup if the hint is wrong.
316 * @param wglen The size of the workgroup buffer in bytes
318 * @param un Pointer to buffer containing a "hint" for the
319 * user name to be use for authentication. Should be
320 * filled in with the correct workgroup if the hint is
321 * wrong.
323 * @param unlen The size of the username buffer in bytes
325 * @param pw Pointer to buffer containing to which password
326 * copied
328 * @param pwlen The size of the password buffer in bytes
331 typedef void (*smbc_get_auth_data_with_context_fn)(SMBCCTX *c,
332 const char *srv,
333 const char *shr,
334 char *wg, int wglen,
335 char *un, int unlen,
336 char *pw, int pwlen);
339 /**@ingroup callback
340 * Print job info callback function type.
342 * @param i pointer to print job information structure
345 typedef void (*smbc_list_print_job_fn)(struct print_job_info *i);
348 /**@ingroup callback
349 * Check if a server is still good
351 * @param c pointer to smb context
353 * @param srv pointer to server to check
355 * @return 0 when connection is good. 1 on error.
358 typedef int (*smbc_check_server_fn)(SMBCCTX * c, SMBCSRV *srv);
360 /**@ingroup callback
361 * Remove a server if unused
363 * @param c pointer to smb context
365 * @param srv pointer to server to remove
367 * @return 0 on success. 1 on failure.
370 typedef int (*smbc_remove_unused_server_fn)(SMBCCTX * c, SMBCSRV *srv);
373 /**@ingroup callback
374 * Add a server to the cache system
376 * @param c pointer to smb context
378 * @param srv pointer to server to add
380 * @param server server name
382 * @param share share name
384 * @param workgroup workgroup used to connect
386 * @param username username used to connect
388 * @return 0 on success. 1 on failure.
391 typedef int (*smbc_add_cached_srv_fn) (SMBCCTX * c, SMBCSRV *srv,
392 const char * server, const char * share,
393 const char * workgroup, const char * username);
395 /**@ingroup callback
396 * Look up a server in the cache system
398 * @param c pointer to smb context
400 * @param server server name to match
402 * @param share share name to match
404 * @param workgroup workgroup to match
406 * @param username username to match
408 * @return pointer to SMBCSRV on success. NULL on failure.
411 typedef SMBCSRV * (*smbc_get_cached_srv_fn) (SMBCCTX * c, const char * server,
412 const char * share, const char * workgroup,
413 const char * username);
415 /**@ingroup callback
416 * Check if a server is still good
418 * @param c pointer to smb context
420 * @param srv pointer to server to remove
422 * @return 0 when found and removed. 1 on failure.
425 typedef int (*smbc_remove_cached_srv_fn)(SMBCCTX * c, SMBCSRV *srv);
428 /**@ingroup callback
429 * Try to remove all servers from the cache system and disconnect
431 * @param c pointer to smb context
433 * @return 0 when found and removed. 1 on failure.
436 typedef int (*smbc_purge_cached_fn) (SMBCCTX * c);
440 /*****************************************
441 * Getters and setters for CONFIGURATION *
442 *****************************************/
444 /** Get the debug level */
446 smbc_getDebug(SMBCCTX *c);
448 /** Set the debug level */
449 void
450 smbc_setDebug(SMBCCTX *c, int debug);
452 /** Get the netbios name used for making connections */
453 char *
454 smbc_getNetbiosName(SMBCCTX *c);
456 /** Set the netbios name used for making connections */
457 void
458 smbc_setNetbiosName(SMBCCTX *c, char * netbios_name);
460 /** Get the workgroup used for making connections */
461 char *
462 smbc_getWorkgroup(SMBCCTX *c);
464 /** Set the workgroup used for making connections */
465 void smbc_setWorkgroup(SMBCCTX *c, char * workgroup);
467 /** Get the username used for making connections */
468 char *
469 smbc_getUser(SMBCCTX *c);
471 /** Set the username used for making connections */
472 void
473 smbc_setUser(SMBCCTX *c, char * user);
476 * Get the timeout used for waiting on connections and response data
477 * (in milliseconds)
480 smbc_getTimeout(SMBCCTX *c);
483 * Set the timeout used for waiting on connections and response data
484 * (in milliseconds)
486 void
487 smbc_setTimeout(SMBCCTX *c, int timeout);
491 /***********************************
492 * Getters and setters for OPTIONS *
493 ***********************************/
495 /** Get whether to log to standard error instead of standard output */
496 smbc_bool
497 smbc_getOptionDebugToStderr(SMBCCTX *c);
499 /** Set whether to log to standard error instead of standard output */
500 void
501 smbc_setOptionDebugToStderr(SMBCCTX *c, smbc_bool b);
504 * Get whether to use new-style time attribute names, e.g. WRITE_TIME rather
505 * than the old-style names such as M_TIME. This allows also setting/getting
506 * CREATE_TIME which was previously unimplemented. (Note that the old C_TIME
507 * was supposed to be CHANGE_TIME but was confused and sometimes referred to
508 * CREATE_TIME.)
510 smbc_bool
511 smbc_getOptionFullTimeNames(SMBCCTX *c);
514 * Set whether to use new-style time attribute names, e.g. WRITE_TIME rather
515 * than the old-style names such as M_TIME. This allows also setting/getting
516 * CREATE_TIME which was previously unimplemented. (Note that the old C_TIME
517 * was supposed to be CHANGE_TIME but was confused and sometimes referred to
518 * CREATE_TIME.)
520 void
521 smbc_setOptionFullTimeNames(SMBCCTX *c, smbc_bool b);
524 * Get the share mode to use for files opened with SMBC_open_ctx(). The
525 * default is SMBC_SHAREMODE_DENY_NONE.
527 smbc_share_mode
528 smbc_getOptionOpenShareMode(SMBCCTX *c);
531 * Set the share mode to use for files opened with SMBC_open_ctx(). The
532 * default is SMBC_SHAREMODE_DENY_NONE.
534 void
535 smbc_setOptionOpenShareMode(SMBCCTX *c, smbc_share_mode share_mode);
537 /** Retrieve a previously saved user data handle */
538 void *
539 smbc_getOptionUserData(SMBCCTX *c);
541 /** Save a user data handle */
542 void
543 smbc_setOptionUserData(SMBCCTX *c, void *user_data);
545 /** Get the encoded value for encryption level. */
546 smbc_smb_encrypt_level
547 smbc_getOptionSmbEncryptionLevel(SMBCCTX *c);
549 /** Set the encoded value for encryption level. */
550 void
551 smbc_setOptionSmbEncryptionLevel(SMBCCTX *c, smbc_smb_encrypt_level level);
554 * Get from how many local master browsers should the list of workgroups be
555 * retrieved. It can take up to 12 minutes or longer after a server becomes a
556 * local master browser, for it to have the entire browse list (the list of
557 * workgroups/domains) from an entire network. Since a client never knows
558 * which local master browser will be found first, the one which is found
559 * first and used to retrieve a browse list may have an incomplete or empty
560 * browse list. By requesting the browse list from multiple local master
561 * browsers, a more complete list can be generated. For small networks (few
562 * workgroups), it is recommended that this value be set to 0, causing the
563 * browse lists from all found local master browsers to be retrieved and
564 * merged. For networks with many workgroups, a suitable value for this
565 * variable is probably somewhere around 3. (Default: 3).
568 smbc_getOptionBrowseMaxLmbCount(SMBCCTX *c);
571 * Set from how many local master browsers should the list of workgroups be
572 * retrieved. It can take up to 12 minutes or longer after a server becomes a
573 * local master browser, for it to have the entire browse list (the list of
574 * workgroups/domains) from an entire network. Since a client never knows
575 * which local master browser will be found first, the one which is found
576 * first and used to retrieve a browse list may have an incomplete or empty
577 * browse list. By requesting the browse list from multiple local master
578 * browsers, a more complete list can be generated. For small networks (few
579 * workgroups), it is recommended that this value be set to 0, causing the
580 * browse lists from all found local master browsers to be retrieved and
581 * merged. For networks with many workgroups, a suitable value for this
582 * variable is probably somewhere around 3. (Default: 3).
584 void
585 smbc_setOptionBrowseMaxLmbCount(SMBCCTX *c, int count);
588 * Get whether to url-encode readdir entries.
590 * There is a difference in the desired return strings from
591 * smbc_readdir() depending upon whether the filenames are to
592 * be displayed to the user, or whether they are to be
593 * appended to the path name passed to smbc_opendir() to call
594 * a further smbc_ function (e.g. open the file with
595 * smbc_open()). In the former case, the filename should be
596 * in "human readable" form. In the latter case, the smbc_
597 * functions expect a URL which must be url-encoded. Those
598 * functions decode the URL. If, for example, smbc_readdir()
599 * returned a file name of "abc%20def.txt", passing a path
600 * with this file name attached to smbc_open() would cause
601 * smbc_open to attempt to open the file "abc def.txt" since
602 * the %20 is decoded into a space.
604 * Set this option to True if the names returned by
605 * smbc_readdir() should be url-encoded such that they can be
606 * passed back to another smbc_ call. Set it to False if the
607 * names returned by smbc_readdir() are to be presented to the
608 * user.
610 * For backwards compatibility, this option defaults to False.
612 smbc_bool
613 smbc_getOptionUrlEncodeReaddirEntries(SMBCCTX *c);
616 * Set whether to url-encode readdir entries.
618 * There is a difference in the desired return strings from
619 * smbc_readdir() depending upon whether the filenames are to
620 * be displayed to the user, or whether they are to be
621 * appended to the path name passed to smbc_opendir() to call
622 * a further smbc_ function (e.g. open the file with
623 * smbc_open()). In the former case, the filename should be
624 * in "human readable" form. In the latter case, the smbc_
625 * functions expect a URL which must be url-encoded. Those
626 * functions decode the URL. If, for example, smbc_readdir()
627 * returned a file name of "abc%20def.txt", passing a path
628 * with this file name attached to smbc_open() would cause
629 * smbc_open to attempt to open the file "abc def.txt" since
630 * the %20 is decoded into a space.
632 * Set this option to True if the names returned by
633 * smbc_readdir() should be url-encoded such that they can be
634 * passed back to another smbc_ call. Set it to False if the
635 * names returned by smbc_readdir() are to be presented to the
636 * user.
638 * For backwards compatibility, this option defaults to False.
640 void
641 smbc_setOptionUrlEncodeReaddirEntries(SMBCCTX *c, smbc_bool b);
644 * Get whether to use the same connection for all shares on a server.
646 * Some Windows versions appear to have a limit to the number
647 * of concurrent SESSIONs and/or TREE CONNECTions. In
648 * one-shot programs (i.e. the program runs and then quickly
649 * ends, thereby shutting down all connections), it is
650 * probably reasonable to establish a new connection for each
651 * share. In long-running applications, the limitation can be
652 * avoided by using only a single connection to each server,
653 * and issuing a new TREE CONNECT when the share is accessed.
655 smbc_bool
656 smbc_getOptionOneSharePerServer(SMBCCTX *c);
659 * Set whether to use the same connection for all shares on a server.
661 * Some Windows versions appear to have a limit to the number
662 * of concurrent SESSIONs and/or TREE CONNECTions. In
663 * one-shot programs (i.e. the program runs and then quickly
664 * ends, thereby shutting down all connections), it is
665 * probably reasonable to establish a new connection for each
666 * share. In long-running applications, the limitation can be
667 * avoided by using only a single connection to each server,
668 * and issuing a new TREE CONNECT when the share is accessed.
670 void
671 smbc_setOptionOneSharePerServer(SMBCCTX *c, smbc_bool b);
673 /** Get whether to enable use of kerberos */
674 smbc_bool
675 smbc_getOptionUseKerberos(SMBCCTX *c);
677 /** Set whether to enable use of kerberos */
678 void
679 smbc_setOptionUseKerberos(SMBCCTX *c, smbc_bool b);
681 /** Get whether to fallback after kerberos */
682 smbc_bool
683 smbc_getOptionFallbackAfterKerberos(SMBCCTX *c);
685 /** Set whether to fallback after kerberos */
686 void
687 smbc_setOptionFallbackAfterKerberos(SMBCCTX *c, smbc_bool b);
689 /** Get whether to automatically select anonymous login */
690 smbc_bool
691 smbc_getOptionNoAutoAnonymousLogin(SMBCCTX *c);
693 /** Set whether to automatically select anonymous login */
694 void
695 smbc_setOptionNoAutoAnonymousLogin(SMBCCTX *c, smbc_bool b);
699 /*************************************
700 * Getters and setters for FUNCTIONS *
701 *************************************/
703 /** Get the function for obtaining authentication data */
704 smbc_get_auth_data_fn smbc_getFunctionAuthData(SMBCCTX *c);
706 /** Set the function for obtaining authentication data */
707 void smbc_setFunctionAuthData(SMBCCTX *c, smbc_get_auth_data_fn fn);
709 /** Get the new-style authentication function which includes the context. */
710 smbc_get_auth_data_with_context_fn
711 smbc_getFunctionAuthDataWithContext(SMBCCTX *c);
713 /** Set the new-style authentication function which includes the context. */
714 void
715 smbc_setFunctionAuthDataWithContext(SMBCCTX *c,
716 smbc_get_auth_data_with_context_fn fn);
718 /** Get the function for checking if a server is still good */
719 smbc_check_server_fn smbc_getFunctionCheckServer(SMBCCTX *c);
721 /** Set the function for checking if a server is still good */
722 void smbc_setFunctionCheckServer(SMBCCTX *c, smbc_check_server_fn fn);
724 /** Get the function for removing a server if unused */
725 smbc_remove_unused_server_fn smbc_getFunctionRemoveUnusedServer(SMBCCTX *c);
727 /** Set the function for removing a server if unused */
728 void smbc_setFunctionRemoveUnusedServer(SMBCCTX *c,
729 smbc_remove_unused_server_fn fn);
731 /** Get the function for adding a cached server */
732 smbc_add_cached_srv_fn smbc_getFunctionAddCachedServer(SMBCCTX *c);
734 /** Set the function for adding a cached server */
735 void smbc_setFunctionAddCachedServer(SMBCCTX *c, smbc_add_cached_srv_fn fn);
737 /** Get the function for server cache lookup */
738 smbc_get_cached_srv_fn smbc_getFunctionGetCachedServer(SMBCCTX *c);
740 /** Set the function for server cache lookup */
741 void smbc_setFunctionGetCachedServer(SMBCCTX *c, smbc_get_cached_srv_fn fn);
743 /** Get the function for server cache removal */
744 smbc_remove_cached_srv_fn smbc_getFunctionRemoveCachedServer(SMBCCTX *c);
746 /** Set the function for server cache removal */
747 void smbc_setFunctionRemoveCachedServer(SMBCCTX *c,
748 smbc_remove_cached_srv_fn fn);
751 * Get the function for server cache purging. This function tries to
752 * remove all cached servers (e.g. on disconnect)
754 smbc_purge_cached_fn smbc_getFunctionPurgeCachedServers(SMBCCTX *c);
757 * Set the function for server cache purging. This function tries to
758 * remove all cached servers (e.g. on disconnect)
760 void smbc_setFunctionPurgeCachedServers(SMBCCTX *c,
761 smbc_purge_cached_fn fn);
763 /** Get the function to store private data of the server cache */
764 struct smbc_server_cache * smbc_getServerCacheData(SMBCCTX *c);
766 /** Set the function to store private data of the server cache */
767 void smbc_setServerCacheData(SMBCCTX *c, struct smbc_server_cache * cache);
771 /*****************************************************************
772 * Callable functions for files. *
773 * Each callable has a function signature typedef, a declaration *
774 * for the getter, and a declaration for the setter. *
775 *****************************************************************/
777 typedef SMBCFILE * (*smbc_open_fn)(SMBCCTX *c,
778 const char *fname,
779 int flags,
780 mode_t mode);
781 smbc_open_fn smbc_getFunctionOpen(SMBCCTX *c);
782 void smbc_setFunctionOpen(SMBCCTX *c, smbc_open_fn fn);
784 typedef SMBCFILE * (*smbc_creat_fn)(SMBCCTX *c,
785 const char *path,
786 mode_t mode);
787 smbc_creat_fn smbc_getFunctionCreat(SMBCCTX *c);
788 void smbc_setFunctionCreat(SMBCCTX *c, smbc_creat_fn);
790 typedef ssize_t (*smbc_read_fn)(SMBCCTX *c,
791 SMBCFILE *file,
792 void *buf,
793 size_t count);
794 smbc_read_fn smbc_getFunctionRead(SMBCCTX *c);
795 void smbc_setFunctionRead(SMBCCTX *c, smbc_read_fn fn);
797 typedef ssize_t (*smbc_write_fn)(SMBCCTX *c,
798 SMBCFILE *file,
799 const void *buf,
800 size_t count);
801 smbc_write_fn smbc_getFunctionWrite(SMBCCTX *c);
802 void smbc_setFunctionWrite(SMBCCTX *c, smbc_write_fn fn);
804 typedef int (*smbc_unlink_fn)(SMBCCTX *c,
805 const char *fname);
806 smbc_unlink_fn smbc_getFunctionUnlink(SMBCCTX *c);
807 void smbc_setFunctionUnlink(SMBCCTX *c, smbc_unlink_fn fn);
809 typedef int (*smbc_rename_fn)(SMBCCTX *ocontext,
810 const char *oname,
811 SMBCCTX *ncontext,
812 const char *nname);
813 smbc_rename_fn smbc_getFunctionRename(SMBCCTX *c);
814 void smbc_setFunctionRename(SMBCCTX *c, smbc_rename_fn fn);
816 typedef off_t (*smbc_lseek_fn)(SMBCCTX *c,
817 SMBCFILE * file,
818 off_t offset,
819 int whence);
820 smbc_lseek_fn smbc_getFunctionLseek(SMBCCTX *c);
821 void smbc_setFunctionLseek(SMBCCTX *c, smbc_lseek_fn fn);
823 typedef int (*smbc_stat_fn)(SMBCCTX *c,
824 const char *fname,
825 struct stat *st);
826 smbc_stat_fn smbc_getFunctionStat(SMBCCTX *c);
827 void smbc_setFunctionStat(SMBCCTX *c, smbc_stat_fn fn);
829 typedef int (*smbc_fstat_fn)(SMBCCTX *c,
830 SMBCFILE *file,
831 struct stat *st);
832 smbc_fstat_fn smbc_getFunctionFstat(SMBCCTX *c);
833 void smbc_setFunctionFstat(SMBCCTX *c, smbc_fstat_fn fn);
835 typedef int (*smbc_ftruncate_fn)(SMBCCTX *c,
836 SMBCFILE *f,
837 off_t size);
838 smbc_ftruncate_fn smbc_getFunctionFtruncate(SMBCCTX *c);
839 void smbc_setFunctionFtruncate(SMBCCTX *c, smbc_ftruncate_fn fn);
841 typedef int (*smbc_close_fn)(SMBCCTX *c,
842 SMBCFILE *file);
843 smbc_close_fn smbc_getFunctionClose(SMBCCTX *c);
844 void smbc_setFunctionClose(SMBCCTX *c, smbc_close_fn fn);
848 /*****************************************************************
849 * Callable functions for directories. *
850 * Each callable has a function signature typedef, a declaration *
851 * for the getter, and a declaration for the setter. *
852 *****************************************************************/
854 typedef SMBCFILE * (*smbc_opendir_fn)(SMBCCTX *c,
855 const char *fname);
856 smbc_opendir_fn smbc_getFunctionOpendir(SMBCCTX *c);
857 void smbc_setFunctionOpendir(SMBCCTX *c, smbc_opendir_fn fn);
859 typedef int (*smbc_closedir_fn)(SMBCCTX *c,
860 SMBCFILE *dir);
861 smbc_closedir_fn smbc_getFunctionClosedir(SMBCCTX *c);
862 void smbc_setFunctionClosedir(SMBCCTX *c, smbc_closedir_fn fn);
864 typedef struct smbc_dirent * (*smbc_readdir_fn)(SMBCCTX *c,
865 SMBCFILE *dir);
866 smbc_readdir_fn smbc_getFunctionReaddir(SMBCCTX *c);
867 void smbc_setFunctionReaddir(SMBCCTX *c, smbc_readdir_fn fn);
869 typedef int (*smbc_getdents_fn)(SMBCCTX *c,
870 SMBCFILE *dir,
871 struct smbc_dirent *dirp,
872 int count);
873 smbc_getdents_fn smbc_getFunctionGetdents(SMBCCTX *c);
874 void smbc_setFunctionGetdents(SMBCCTX *c, smbc_getdents_fn fn);
876 typedef int (*smbc_mkdir_fn)(SMBCCTX *c,
877 const char *fname,
878 mode_t mode);
879 smbc_mkdir_fn smbc_getFunctionMkdir(SMBCCTX *c);
880 void smbc_setFunctionMkdir(SMBCCTX *c, smbc_mkdir_fn fn);
882 typedef int (*smbc_rmdir_fn)(SMBCCTX *c,
883 const char *fname);
884 smbc_rmdir_fn smbc_getFunctionRmdir(SMBCCTX *c);
885 void smbc_setFunctionRmdir(SMBCCTX *c, smbc_rmdir_fn fn);
887 typedef off_t (*smbc_telldir_fn)(SMBCCTX *c,
888 SMBCFILE *dir);
889 smbc_telldir_fn smbc_getFunctionTelldir(SMBCCTX *c);
890 void smbc_setFunctionTelldir(SMBCCTX *c, smbc_telldir_fn fn);
892 typedef int (*smbc_lseekdir_fn)(SMBCCTX *c,
893 SMBCFILE *dir,
894 off_t offset);
895 smbc_lseekdir_fn smbc_getFunctionLseekdir(SMBCCTX *c);
896 void smbc_setFunctionLseekdir(SMBCCTX *c, smbc_lseekdir_fn fn);
898 typedef int (*smbc_fstatdir_fn)(SMBCCTX *c,
899 SMBCFILE *dir,
900 struct stat *st);
901 smbc_fstatdir_fn smbc_getFunctionFstatdir(SMBCCTX *c);
902 void smbc_setFunctionFstatdir(SMBCCTX *c, smbc_fstatdir_fn fn);
906 /*****************************************************************
907 * Callable functions applicable to both files and directories. *
908 * Each callable has a function signature typedef, a declaration *
909 * for the getter, and a declaration for the setter. *
910 *****************************************************************/
912 typedef int (*smbc_chmod_fn)(SMBCCTX *c,
913 const char *fname,
914 mode_t mode);
915 smbc_chmod_fn smbc_getFunctionChmod(SMBCCTX *c);
916 void smbc_setFunctionChmod(SMBCCTX *c, smbc_chmod_fn fn);
918 typedef int (*smbc_utimes_fn)(SMBCCTX *c,
919 const char *fname,
920 struct timeval *tbuf);
921 smbc_utimes_fn smbc_getFunctionUtimes(SMBCCTX *c);
922 void smbc_setFunctionUtimes(SMBCCTX *c, smbc_utimes_fn fn);
924 typedef int (*smbc_setxattr_fn)(SMBCCTX *context,
925 const char *fname,
926 const char *name,
927 const void *value,
928 size_t size,
929 int flags);
930 smbc_setxattr_fn smbc_getFunctionSetxattr(SMBCCTX *c);
931 void smbc_setFunctionSetxattr(SMBCCTX *c, smbc_setxattr_fn fn);
933 typedef int (*smbc_getxattr_fn)(SMBCCTX *context,
934 const char *fname,
935 const char *name,
936 const void *value,
937 size_t size);
938 smbc_getxattr_fn smbc_getFunctionGetxattr(SMBCCTX *c);
939 void smbc_setFunctionGetxattr(SMBCCTX *c, smbc_getxattr_fn fn);
941 typedef int (*smbc_removexattr_fn)(SMBCCTX *context,
942 const char *fname,
943 const char *name);
944 smbc_removexattr_fn smbc_getFunctionRemovexattr(SMBCCTX *c);
945 void smbc_setFunctionRemovexattr(SMBCCTX *c, smbc_removexattr_fn fn);
947 typedef int (*smbc_listxattr_fn)(SMBCCTX *context,
948 const char *fname,
949 char *list,
950 size_t size);
951 smbc_listxattr_fn smbc_getFunctionListxattr(SMBCCTX *c);
952 void smbc_setFunctionListxattr(SMBCCTX *c, smbc_listxattr_fn fn);
956 /*****************************************************************
957 * Callable functions for printing. *
958 * Each callable has a function signature typedef, a declaration *
959 * for the getter, and a declaration for the setter. *
960 *****************************************************************/
962 typedef int (*smbc_print_file_fn)(SMBCCTX *c_file,
963 const char *fname,
964 SMBCCTX *c_print,
965 const char *printq);
966 smbc_print_file_fn smbc_getFunctionPrintFile(SMBCCTX *c);
967 void smbc_setFunctionPrintFile(SMBCCTX *c, smbc_print_file_fn fn);
969 typedef SMBCFILE * (*smbc_open_print_job_fn)(SMBCCTX *c,
970 const char *fname);
971 smbc_open_print_job_fn smbc_getFunctionOpenPrintJob(SMBCCTX *c);
972 void smbc_setFunctionOpenPrintJob(SMBCCTX *c,
973 smbc_open_print_job_fn fn);
975 typedef int (*smbc_list_print_jobs_fn)(SMBCCTX *c,
976 const char *fname,
977 smbc_list_print_job_fn fn);
978 smbc_list_print_jobs_fn smbc_getFunctionListPrintJobs(SMBCCTX *c);
979 void smbc_setFunctionListPrintJobs(SMBCCTX *c,
980 smbc_list_print_jobs_fn fn);
982 typedef int (*smbc_unlink_print_job_fn)(SMBCCTX *c,
983 const char *fname,
984 int id);
985 smbc_unlink_print_job_fn smbc_getFunctionUnlinkPrintJob(SMBCCTX *c);
986 void smbc_setFunctionUnlinkPrintJob(SMBCCTX *c,
987 smbc_unlink_print_job_fn fn);
990 /**@ingroup misc
991 * Create a new SBMCCTX (a context).
993 * Must be called before the context is passed to smbc_context_init()
995 * @return The given SMBCCTX pointer on success, NULL on error with errno set:
996 * - ENOMEM Out of memory
998 * @see smbc_free_context(), smbc_init_context()
1000 * @note Do not forget to smbc_init_context() the returned SMBCCTX pointer !
1002 SMBCCTX * smbc_new_context(void);
1004 /**@ingroup misc
1005 * Delete a SBMCCTX (a context) acquired from smbc_new_context().
1007 * The context will be deleted if possible.
1009 * @param context A pointer to a SMBCCTX obtained from smbc_new_context()
1011 * @param shutdown_ctx If 1, all connections and files will be closed even if they are busy.
1014 * @return Returns 0 on succes. Returns 1 on failure with errno set:
1015 * - EBUSY Server connections are still used, Files are open or cache
1016 * could not be purged
1017 * - EBADF context == NULL
1019 * @see smbc_new_context()
1021 * @note It is advised to clean up all the contexts with shutdown_ctx set to 1
1022 * just before exit()'ing. When shutdown_ctx is 0, this function can be
1023 * use in periodical cleanup functions for example.
1025 int smbc_free_context(SMBCCTX * context, int shutdown_ctx);
1028 /**@ingroup misc
1030 * @deprecated. Use smbc_setOption*() functions instead.
1032 void
1033 smbc_option_set(SMBCCTX *context,
1034 char *option_name,
1035 ... /* option_value */);
1038 * @deprecated. Use smbc_getOption*() functions instead.
1040 void *
1041 smbc_option_get(SMBCCTX *context,
1042 char *option_name);
1044 /**@ingroup misc
1045 * Initialize a SBMCCTX (a context).
1047 * Must be called before using any SMBCCTX API function
1049 * @param context A pointer to a SMBCCTX obtained from smbc_new_context()
1051 * @return A pointer to the given SMBCCTX on success,
1052 * NULL on error with errno set:
1053 * - EBADF NULL context given
1054 * - ENOMEM Out of memory
1055 * - ENOENT The smb.conf file would not load
1057 * @see smbc_new_context()
1059 * @note my_context = smbc_init_context(smbc_new_context())
1060 * is perfectly safe, but it might leak memory on
1061 * smbc_context_init() failure. Avoid this.
1062 * You'll have to call smbc_free_context() yourself
1063 * on failure.
1066 SMBCCTX * smbc_init_context(SMBCCTX * context);
1068 /**@ingroup misc
1069 * Initialize the samba client library.
1071 * Must be called before using any of the smbclient API function
1073 * @param fn The function that will be called to obtaion
1074 * authentication credentials.
1076 * @param debug Allows caller to set the debug level. Can be
1077 * changed in smb.conf file. Allows caller to set
1078 * debugging if no smb.conf.
1080 * @return 0 on success, < 0 on error with errno set:
1081 * - ENOMEM Out of memory
1082 * - ENOENT The smb.conf file would not load
1086 int smbc_init(smbc_get_auth_data_fn fn, int debug);
1088 /**@ingroup misc
1089 * Set or retrieve the compatibility library's context pointer
1091 * @param context New context to use, or NULL. If a new context is provided,
1092 * it must have allocated with smbc_new_context() and
1093 * initialized with smbc_init_context(), followed, optionally,
1094 * by some manual changes to some of the non-internal fields.
1096 * @return The old context.
1098 * @see smbc_new_context(), smbc_init_context(), smbc_init()
1100 * @note This function may be called prior to smbc_init() to force
1101 * use of the next context without any internal calls to
1102 * smbc_new_context() or smbc_init_context(). It may also
1103 * be called after smbc_init() has already called those two
1104 * functions, to replace the existing context with a new one.
1105 * Care should be taken, in this latter case, to ensure that
1106 * the server cache and any data allocated by the
1107 * authentication functions have been freed, if necessary.
1110 SMBCCTX * smbc_set_context(SMBCCTX * new_context);
1112 /**@ingroup file
1113 * Open a file on an SMB server.
1115 * @param furl The smb url of the file to be opened.
1117 * @param flags Is one of O_RDONLY, O_WRONLY or O_RDWR which
1118 * request opening the file read-only,write-only
1119 * or read/write. flags may also be bitwise-or'd with
1120 * one or more of the following:
1121 * O_CREAT - If the file does not exist it will be
1122 * created.
1123 * O_EXCL - When used with O_CREAT, if the file
1124 * already exists it is an error and the open will
1125 * fail.
1126 * O_TRUNC - If the file already exists it will be
1127 * truncated.
1128 * O_APPEND The file is opened in append mode
1130 * @param mode mode specifies the permissions to use if a new
1131 * file is created. It is modified by the
1132 * process's umask in the usual way: the permissions
1133 * of the created file are (mode & ~umask)
1135 * Not currently use, but there for future use.
1136 * We will map this to SYSTEM, HIDDEN, etc bits
1137 * that reverses the mapping that smbc_fstat does.
1139 * @return Valid file handle, < 0 on error with errno set:
1140 * - ENOMEM Out of memory
1141 * - EINVAL if an invalid parameter passed, like no
1142 * file, or smbc_init not called.
1143 * - EEXIST pathname already exists and O_CREAT and
1144 * O_EXCL were used.
1145 * - EISDIR pathname refers to a directory and
1146 * the access requested involved writing.
1147 * - EACCES The requested access to the file is not
1148 * allowed
1149 * - ENODEV The requested share does not exist
1150 * - ENOTDIR A file on the path is not a directory
1151 * - ENOENT A directory component in pathname does
1152 * not exist.
1154 * @see smbc_creat()
1156 * @note This call uses an underlying routine that may create
1157 * a new connection to the server specified in the URL.
1158 * If the credentials supplied in the URL, or via the
1159 * auth_fn in the smbc_init call, fail, this call will
1160 * try again with an empty username and password. This
1161 * often gets mapped to the guest account on some machines.
1164 int smbc_open(const char *furl, int flags, mode_t mode);
1166 /**@ingroup file
1167 * Create a file on an SMB server.
1169 * Same as calling smbc_open() with flags = O_CREAT|O_WRONLY|O_TRUNC
1171 * @param furl The smb url of the file to be created
1173 * @param mode mode specifies the permissions to use if a new
1174 * file is created. It is modified by the
1175 * process's umask in the usual way: the permissions
1176 * of the created file are (mode & ~umask)
1178 * NOTE, the above is not true. We are dealing with
1179 * an SMB server, which has no concept of a umask!
1181 * @return Valid file handle, < 0 on error with errno set:
1182 * - ENOMEM Out of memory
1183 * - EINVAL if an invalid parameter passed, like no
1184 * file, or smbc_init not called.
1185 * - EEXIST pathname already exists and O_CREAT and
1186 * O_EXCL were used.
1187 * - EISDIR pathname refers to a directory and
1188 * the access requested involved writing.
1189 * - EACCES The requested access to the file is not
1190 * allowed
1191 * - ENOENT A directory component in pathname does
1192 * not exist.
1193 * - ENODEV The requested share does not exist.
1194 * @see smbc_open()
1198 int smbc_creat(const char *furl, mode_t mode);
1200 /**@ingroup file
1201 * Read from a file using an opened file handle.
1203 * @param fd Open file handle from smbc_open() or smbc_creat()
1205 * @param buf Pointer to buffer to recieve read data
1207 * @param bufsize Size of buf in bytes
1209 * @return Number of bytes read, < 0 on error with errno set:
1210 * - EISDIR fd refers to a directory
1211 * - EBADF fd is not a valid file descriptor or
1212 * is not open for reading.
1213 * - EINVAL fd is attached to an object which is
1214 * unsuitable for reading, or no buffer passed or
1215 * smbc_init not called.
1217 * @see smbc_open(), smbc_write()
1220 ssize_t smbc_read(int fd, void *buf, size_t bufsize);
1223 /**@ingroup file
1224 * Write to a file using an opened file handle.
1226 * @param fd Open file handle from smbc_open() or smbc_creat()
1228 * @param buf Pointer to buffer to recieve read data
1230 * @param bufsize Size of buf in bytes
1232 * @return Number of bytes written, < 0 on error with errno set:
1233 * - EISDIR fd refers to a directory.
1234 * - EBADF fd is not a valid file descriptor or
1235 * is not open for reading.
1236 * - EINVAL fd is attached to an object which is
1237 * unsuitable for reading, or no buffer passed or
1238 * smbc_init not called.
1240 * @see smbc_open(), smbc_read()
1243 ssize_t smbc_write(int fd, const void *buf, size_t bufsize);
1246 /**@ingroup file
1247 * Seek to a specific location in a file.
1249 * @param fd Open file handle from smbc_open() or smbc_creat()
1251 * @param offset Offset in bytes from whence
1253 * @param whence A location in the file:
1254 * - SEEK_SET The offset is set to offset bytes from
1255 * the beginning of the file
1256 * - SEEK_CUR The offset is set to current location
1257 * plus offset bytes.
1258 * - SEEK_END The offset is set to the size of the
1259 * file plus offset bytes.
1261 * @return Upon successful completion, lseek returns the
1262 * resulting offset location as measured in bytes
1263 * from the beginning of the file. Otherwise, a value
1264 * of (off_t)-1 is returned and errno is set to
1265 * indicate the error:
1266 * - EBADF Fildes is not an open file descriptor.
1267 * - EINVAL Whence is not a proper value or smbc_init
1268 * not called.
1270 * @todo Are all the whence values really supported?
1272 * @todo Are errno values complete and correct?
1274 off_t smbc_lseek(int fd, off_t offset, int whence);
1277 /**@ingroup file
1278 * Close an open file handle.
1280 * @param fd The file handle to close
1282 * @return 0 on success, < 0 on error with errno set:
1283 * - EBADF fd isn't a valid open file descriptor
1284 * - EINVAL smbc_init() failed or has not been called
1286 * @see smbc_open(), smbc_creat()
1288 int smbc_close(int fd);
1291 /**@ingroup directory
1292 * Unlink (delete) a file or directory.
1294 * @param furl The smb url of the file to delete
1296 * @return 0 on success, < 0 on error with errno set:
1297 * - EACCES or EPERM Write access to the directory
1298 * containing pathname is not allowed or one
1299 * of the directories in pathname did not allow
1300 * search (execute) permission
1301 * - ENOENT A directory component in pathname does
1302 * not exist
1303 * - EINVAL NULL was passed in the file param or
1304 * smbc_init not called.
1305 * - EACCES You do not have access to the file
1306 * - ENOMEM Insufficient kernel memory was available
1308 * @see smbc_rmdir()s
1310 * @todo Are errno values complete and correct?
1312 int smbc_unlink(const char *furl);
1315 /**@ingroup directory
1316 * Rename or move a file or directory.
1318 * @param ourl The original smb url (source url) of file or
1319 * directory to be moved
1321 * @param nurl The new smb url (destination url) of the file
1322 * or directory after the move. Currently nurl must
1323 * be on the same share as ourl.
1325 * @return 0 on success, < 0 on error with errno set:
1326 * - EISDIR nurl is an existing directory, but ourl is
1327 * not a directory.
1328 * - EEXIST nurl is a non-empty directory,
1329 * i.e., contains entries other than "." and ".."
1330 * - EINVAL The new url contained a path prefix
1331 * of the old, or, more generally, an attempt was
1332 * made to make a directory a subdirectory of itself
1333 * or smbc_init not called.
1334 * - ENOTDIR A component used as a directory in ourl
1335 * or nurl path is not, in fact, a directory. Or,
1336 * ourl is a directory, and newpath exists but is not
1337 * a directory.
1338 * - EACCES or EPERM Write access to the directory
1339 * containing ourl or nurl is not allowed for the
1340 * process's effective uid, or one of the
1341 * directories in ourl or nurl did not allow search
1342 * (execute) permission, or ourl was a directory
1343 * and did not allow write permission.
1344 * - ENOENT A directory component in ourl or nurl
1345 * does not exist.
1346 * - EXDEV Rename across shares not supported.
1347 * - ENOMEM Insufficient kernel memory was available.
1348 * - EEXIST The target file, nurl, already exists.
1351 * @todo Are we going to support copying when urls are not on the same
1352 * share? I say no... NOTE. I agree for the moment.
1355 int smbc_rename(const char *ourl, const char *nurl);
1358 /**@ingroup directory
1359 * Open a directory used to obtain directory entries.
1361 * @param durl The smb url of the directory to open
1363 * @return Valid directory handle. < 0 on error with errno set:
1364 * - EACCES Permission denied.
1365 * - EINVAL A NULL file/URL was passed, or the URL would
1366 * not parse, or was of incorrect form or smbc_init not
1367 * called.
1368 * - ENOENT durl does not exist, or name is an
1369 * - ENOMEM Insufficient memory to complete the
1370 * operation.
1371 * - ENOTDIR name is not a directory.
1372 * - EPERM the workgroup could not be found.
1373 * - ENODEV the workgroup or server could not be found.
1375 * @see smbc_getdents(), smbc_readdir(), smbc_closedir()
1378 int smbc_opendir(const char *durl);
1381 /**@ingroup directory
1382 * Close a directory handle opened by smbc_opendir().
1384 * @param dh Directory handle to close
1386 * @return 0 on success, < 0 on error with errno set:
1387 * - EBADF dh is an invalid directory handle
1389 * @see smbc_opendir()
1391 int smbc_closedir(int dh);
1394 /**@ingroup directory
1395 * Get multiple directory entries.
1397 * smbc_getdents() reads as many dirent structures from the an open
1398 * directory handle into a specified memory area as will fit.
1400 * @param dh Valid directory as returned by smbc_opendir()
1402 * @param dirp pointer to buffer that will receive the directory
1403 * entries.
1405 * @param count The size of the dirp buffer in bytes
1407 * @returns If any dirents returned, return will indicate the
1408 * total size. If there were no more dirents available,
1409 * 0 is returned. < 0 indicates an error.
1410 * - EBADF Invalid directory handle
1411 * - EINVAL Result buffer is too small or smbc_init
1412 * not called.
1413 * - ENOENT No such directory.
1414 * @see , smbc_dirent, smbc_readdir(), smbc_open()
1416 * @todo Are errno values complete and correct?
1418 * @todo Add example code so people know how to parse buffers.
1420 int smbc_getdents(unsigned int dh, struct smbc_dirent *dirp, int count);
1423 /**@ingroup directory
1424 * Get a single directory entry.
1426 * @param dh Valid directory as returned by smbc_opendir()
1428 * @return A pointer to a smbc_dirent structure, or NULL if an
1429 * error occurs or end-of-directory is reached:
1430 * - EBADF Invalid directory handle
1431 * - EINVAL smbc_init() failed or has not been called
1433 * @see smbc_dirent, smbc_getdents(), smbc_open()
1435 struct smbc_dirent* smbc_readdir(unsigned int dh);
1438 /**@ingroup directory
1439 * Get the current directory offset.
1441 * smbc_telldir() may be used in conjunction with smbc_readdir() and
1442 * smbc_lseekdir().
1444 * @param dh Valid directory as returned by smbc_opendir()
1446 * @return The current location in the directory stream or -1
1447 * if an error occur. The current location is not
1448 * an offset. Becuase of the implementation, it is a
1449 * handle that allows the library to find the entry
1450 * later.
1451 * - EBADF dh is not a valid directory handle
1452 * - EINVAL smbc_init() failed or has not been called
1453 * - ENOTDIR if dh is not a directory
1455 * @see smbc_readdir()
1458 off_t smbc_telldir(int dh);
1461 /**@ingroup directory
1462 * lseek on directories.
1464 * smbc_lseekdir() may be used in conjunction with smbc_readdir() and
1465 * smbc_telldir(). (rewind by smbc_lseekdir(fd, NULL))
1467 * @param fd Valid directory as returned by smbc_opendir()
1469 * @param offset The offset (as returned by smbc_telldir). Can be
1470 * NULL, in which case we will rewind
1472 * @return 0 on success, -1 on failure
1473 * - EBADF dh is not a valid directory handle
1474 * - ENOTDIR if dh is not a directory
1475 * - EINVAL offset did not refer to a valid dirent or
1476 * smbc_init not called.
1478 * @see smbc_telldir()
1481 * @todo In what does the reture and errno values mean?
1483 int smbc_lseekdir(int fd, off_t offset);
1485 /**@ingroup directory
1486 * Create a directory.
1488 * @param durl The url of the directory to create
1490 * @param mode Specifies the permissions to use. It is modified
1491 * by the process's umask in the usual way: the
1492 * permissions of the created file are (mode & ~umask).
1494 * @return 0 on success, < 0 on error with errno set:
1495 * - EEXIST directory url already exists
1496 * - EACCES The parent directory does not allow write
1497 * permission to the process, or one of the directories
1498 * - ENOENT A directory component in pathname does not
1499 * exist.
1500 * - EINVAL NULL durl passed or smbc_init not called.
1501 * - ENOMEM Insufficient memory was available.
1503 * @see smbc_rmdir()
1506 int smbc_mkdir(const char *durl, mode_t mode);
1509 /**@ingroup directory
1510 * Remove a directory.
1512 * @param durl The smb url of the directory to remove
1514 * @return 0 on success, < 0 on error with errno set:
1515 * - EACCES or EPERM Write access to the directory
1516 * containing pathname was not allowed.
1517 * - EINVAL durl is NULL or smbc_init not called.
1518 * - ENOENT A directory component in pathname does not
1519 * exist.
1520 * - ENOTEMPTY directory contains entries.
1521 * - ENOMEM Insufficient kernel memory was available.
1523 * @see smbc_mkdir(), smbc_unlink()
1525 * @todo Are errno values complete and correct?
1527 int smbc_rmdir(const char *durl);
1530 /**@ingroup attribute
1531 * Get information about a file or directory.
1533 * @param url The smb url to get information for
1535 * @param st pointer to a buffer that will be filled with
1536 * standard Unix struct stat information.
1538 * @return 0 on success, < 0 on error with errno set:
1539 * - ENOENT A component of the path file_name does not
1540 * exist.
1541 * - EINVAL a NULL url was passed or smbc_init not called.
1542 * - EACCES Permission denied.
1543 * - ENOMEM Out of memory
1544 * - ENOTDIR The target dir, url, is not a directory.
1546 * @see Unix stat()
1549 int smbc_stat(const char *url, struct stat *st);
1552 /**@ingroup attribute
1553 * Get file information via an file descriptor.
1555 * @param fd Open file handle from smbc_open() or smbc_creat()
1557 * @param st pointer to a buffer that will be filled with
1558 * standard Unix struct stat information.
1560 * @return EBADF filedes is bad.
1561 * - EACCES Permission denied.
1562 * - EBADF fd is not a valid file descriptor
1563 * - EINVAL Problems occurred in the underlying routines
1564 * or smbc_init not called.
1565 * - ENOMEM Out of memory
1567 * @see smbc_stat(), Unix stat()
1570 int smbc_fstat(int fd, struct stat *st);
1573 /**@ingroup attribute
1574 * Truncate a file given a file descriptor
1576 * @param fd Open file handle from smbc_open() or smbc_creat()
1578 * @param size size to truncate the file to
1580 * @return EBADF filedes is bad.
1581 * - EACCES Permission denied.
1582 * - EBADF fd is not a valid file descriptor
1583 * - EINVAL Problems occurred in the underlying routines
1584 * or smbc_init not called.
1585 * - ENOMEM Out of memory
1587 * @see , Unix ftruncate()
1590 int smbc_ftruncate(int fd, off_t size);
1593 /**@ingroup attribute
1594 * Change the permissions of a file.
1596 * @param url The smb url of the file or directory to change
1597 * permissions of
1599 * @param mode The permissions to set:
1600 * - Put good explaination of permissions here!
1602 * @return 0 on success, < 0 on error with errno set:
1603 * - EPERM The effective UID does not match the owner
1604 * of the file, and is not zero
1605 * - ENOENT The file does not exist.
1606 * - ENOMEM Insufficient was available.
1607 * - ENOENT file or directory does not exist
1609 * @todo Actually implement this fuction?
1611 * @todo Are errno values complete and correct?
1613 int smbc_chmod(const char *url, mode_t mode);
1616 * @ingroup attribute
1617 * Change the last modification time on a file
1619 * @param url The smb url of the file or directory to change
1620 * the modification time of
1622 * @param tbuf An array of two timeval structures which contains,
1623 * respectively, the desired access and modification times.
1624 * NOTE: Only the tv_sec field off each timeval structure is
1625 * used. The tv_usec (microseconds) portion is ignored.
1627 * @return 0 on success, < 0 on error with errno set:
1628 * - EINVAL The client library is not properly initialized
1629 * - EPERM Permission was denied.
1632 int smbc_utimes(const char *url, struct timeval *tbuf);
1634 #ifdef HAVE_UTIME_H
1636 * @ingroup attribute
1637 * Change the last modification time on a file
1639 * @param url The smb url of the file or directory to change
1640 * the modification time of
1642 * @param utbuf A pointer to a utimebuf structure which contains the
1643 * desired access and modification times.
1645 * @return 0 on success, < 0 on error with errno set:
1646 * - EINVAL The client library is not properly initialized
1647 * - ENOMEM No memory was available for internal needs
1648 * - EPERM Permission was denied.
1651 int smbc_utime(const char *fname, struct utimbuf *utbuf);
1652 #endif
1654 /**@ingroup attribute
1655 * Set extended attributes for a file. This is used for modifying a file's
1656 * security descriptor (i.e. owner, group, and access control list)
1658 * @param url The smb url of the file or directory to set extended
1659 * attributes for.
1661 * @param name The name of an attribute to be changed. Names are of
1662 * one of the following forms:
1664 * system.nt_sec_desc.<attribute name>
1665 * system.nt_sec_desc.*
1666 * system.nt_sec_desc.*+
1668 * where <attribute name> is one of:
1670 * revision
1671 * owner
1672 * owner+
1673 * group
1674 * group+
1675 * acl:<name or sid>
1676 * acl+:<name or sid>
1678 * In the forms "system.nt_sec_desc.*" and
1679 * "system.nt_sec_desc.*+", the asterisk and plus signs are
1680 * literal, i.e. the string is provided exactly as shown, and
1681 * the value parameter should contain a complete security
1682 * descriptor with name:value pairs separated by tabs,
1683 * commas, or newlines (not spaces!).
1685 * The plus sign ('+') indicates that SIDs should be mapped
1686 * to names. Without the plus sign, SIDs are not mapped;
1687 * rather they are simply converted to a string format.
1689 * @param value The value to be assigned to the specified attribute name.
1690 * This buffer should contain only the attribute value if the
1691 * name was of the "system.nt_sec_desc.<attribute_name>"
1692 * form. If the name was of the "system.nt_sec_desc.*" form
1693 * then a complete security descriptor, with name:value pairs
1694 * separated by tabs, commas, or newlines (not spaces!),
1695 * should be provided in this value buffer. A complete
1696 * security descriptor will contain one or more entries
1697 * selected from the following:
1699 * REVISION:<revision number>
1700 * OWNER:<sid or name>
1701 * GROUP:<sid or name>
1702 * ACL:<sid or name>:<type>/<flags>/<mask>
1704 * The revision of the ACL specifies the internal Windows NT
1705 * ACL revision for the security descriptor. If not specified
1706 * it defaults to 1. Using values other than 1 may cause
1707 * strange behaviour.
1709 * The owner and group specify the owner and group sids for
1710 * the object. If the attribute name (either '*+' with a
1711 * complete security descriptor, or individual 'owner+' or
1712 * 'group+' attribute names) ended with a plus sign, the
1713 * specified name is resolved to a SID value, using the
1714 * server on which the file or directory resides. Otherwise,
1715 * the value should be provided in SID-printable format as
1716 * S-1-x-y-z, and is used directly. The <sid or name>
1717 * associated with the ACL: attribute should be provided
1718 * similarly.
1720 * @param size The number of the bytes of data in the value buffer
1722 * @param flags A bit-wise OR of zero or more of the following:
1723 * SMBC_XATTR_FLAG_CREATE -
1724 * fail if the named attribute already exists
1725 * SMBC_XATTR_FLAG_REPLACE -
1726 * fail if the attribute does not already exist
1728 * If neither flag is specified, the specified attributes
1729 * will be added or replace existing attributes of the same
1730 * name, as necessary.
1732 * @return 0 on success, < 0 on error with errno set:
1733 * - EINVAL The client library is not properly initialized
1734 * or one of the parameters is not of a correct
1735 * form
1736 * - ENOMEM No memory was available for internal needs
1737 * - EEXIST If the attribute already exists and the flag
1738 * SMBC_XATTR_FLAG_CREAT was specified
1739 * - ENOATTR If the attribute does not exist and the flag
1740 * SMBC_XATTR_FLAG_REPLACE was specified
1741 * - EPERM Permission was denied.
1742 * - ENOTSUP The referenced file system does not support
1743 * extended attributes
1745 * @note Attribute names are compared in a case-insensitive
1746 * fashion. All of the following are equivalent, although
1747 * the all-lower-case name is the preferred format:
1748 * system.nt_sec_desc.owner
1749 * SYSTEM.NT_SEC_DESC.OWNER
1750 * sYsTeM.nt_sEc_desc.owNER
1753 int smbc_setxattr(const char *url,
1754 const char *name,
1755 const void *value,
1756 size_t size,
1757 int flags);
1760 /**@ingroup attribute
1761 * Set extended attributes for a file. This is used for modifying a file's
1762 * security descriptor (i.e. owner, group, and access control list). The
1763 * POSIX function which this maps to would act on a symbolic link rather than
1764 * acting on what the symbolic link points to, but with no symbolic links in
1765 * SMB file systems, this function is functionally identical to
1766 * smbc_setxattr().
1768 * @param url The smb url of the file or directory to set extended
1769 * attributes for.
1771 * @param name The name of an attribute to be changed. Names are of
1772 * one of the following forms:
1774 * system.nt_sec_desc.<attribute name>
1775 * system.nt_sec_desc.*
1776 * system.nt_sec_desc.*+
1778 * where <attribute name> is one of:
1780 * revision
1781 * owner
1782 * owner+
1783 * group
1784 * group+
1785 * acl:<name or sid>
1786 * acl+:<name or sid>
1788 * In the forms "system.nt_sec_desc.*" and
1789 * "system.nt_sec_desc.*+", the asterisk and plus signs are
1790 * literal, i.e. the string is provided exactly as shown, and
1791 * the value parameter should contain a complete security
1792 * descriptor with name:value pairs separated by tabs,
1793 * commas, or newlines (not spaces!).
1795 * The plus sign ('+') indicates that SIDs should be mapped
1796 * to names. Without the plus sign, SIDs are not mapped;
1797 * rather they are simply converted to a string format.
1799 * @param value The value to be assigned to the specified attribute name.
1800 * This buffer should contain only the attribute value if the
1801 * name was of the "system.nt_sec_desc.<attribute_name>"
1802 * form. If the name was of the "system.nt_sec_desc.*" form
1803 * then a complete security descriptor, with name:value pairs
1804 * separated by tabs, commas, or newlines (not spaces!),
1805 * should be provided in this value buffer. A complete
1806 * security descriptor will contain one or more entries
1807 * selected from the following:
1809 * REVISION:<revision number>
1810 * OWNER:<sid or name>
1811 * GROUP:<sid or name>
1812 * ACL:<sid or name>:<type>/<flags>/<mask>
1814 * The revision of the ACL specifies the internal Windows NT
1815 * ACL revision for the security descriptor. If not specified
1816 * it defaults to 1. Using values other than 1 may cause
1817 * strange behaviour.
1819 * The owner and group specify the owner and group sids for
1820 * the object. If the attribute name (either '*+' with a
1821 * complete security descriptor, or individual 'owner+' or
1822 * 'group+' attribute names) ended with a plus sign, the
1823 * specified name is resolved to a SID value, using the
1824 * server on which the file or directory resides. Otherwise,
1825 * the value should be provided in SID-printable format as
1826 * S-1-x-y-z, and is used directly. The <sid or name>
1827 * associated with the ACL: attribute should be provided
1828 * similarly.
1830 * @param size The number of the bytes of data in the value buffer
1832 * @param flags A bit-wise OR of zero or more of the following:
1833 * SMBC_XATTR_FLAG_CREATE -
1834 * fail if the named attribute already exists
1835 * SMBC_XATTR_FLAG_REPLACE -
1836 * fail if the attribute does not already exist
1838 * If neither flag is specified, the specified attributes
1839 * will be added or replace existing attributes of the same
1840 * name, as necessary.
1842 * @return 0 on success, < 0 on error with errno set:
1843 * - EINVAL The client library is not properly initialized
1844 * or one of the parameters is not of a correct
1845 * form
1846 * - ENOMEM No memory was available for internal needs
1847 * - EEXIST If the attribute already exists and the flag
1848 * SMBC_XATTR_FLAG_CREAT was specified
1849 * - ENOATTR If the attribute does not exist and the flag
1850 * SMBC_XATTR_FLAG_REPLACE was specified
1851 * - EPERM Permission was denied.
1852 * - ENOTSUP The referenced file system does not support
1853 * extended attributes
1855 * @note Attribute names are compared in a case-insensitive
1856 * fashion. All of the following are equivalent, although
1857 * the all-lower-case name is the preferred format:
1858 * system.nt_sec_desc.owner
1859 * SYSTEM.NT_SEC_DESC.OWNER
1860 * sYsTeM.nt_sEc_desc.owNER
1863 int smbc_lsetxattr(const char *url,
1864 const char *name,
1865 const void *value,
1866 size_t size,
1867 int flags);
1870 /**@ingroup attribute
1871 * Set extended attributes for a file. This is used for modifying a file's
1872 * security descriptor (i.e. owner, group, and access control list)
1874 * @param fd A file descriptor associated with an open file (as
1875 * previously returned by smbc_open(), to get extended
1876 * attributes for.
1878 * @param name The name of an attribute to be changed. Names are of
1879 * one of the following forms:
1881 * system.nt_sec_desc.<attribute name>
1882 * system.nt_sec_desc.*
1883 * system.nt_sec_desc.*+
1885 * where <attribute name> is one of:
1887 * revision
1888 * owner
1889 * owner+
1890 * group
1891 * group+
1892 * acl:<name or sid>
1893 * acl+:<name or sid>
1895 * In the forms "system.nt_sec_desc.*" and
1896 * "system.nt_sec_desc.*+", the asterisk and plus signs are
1897 * literal, i.e. the string is provided exactly as shown, and
1898 * the value parameter should contain a complete security
1899 * descriptor with name:value pairs separated by tabs,
1900 * commas, or newlines (not spaces!).
1902 * The plus sign ('+') indicates that SIDs should be mapped
1903 * to names. Without the plus sign, SIDs are not mapped;
1904 * rather they are simply converted to a string format.
1906 * @param value The value to be assigned to the specified attribute name.
1907 * This buffer should contain only the attribute value if the
1908 * name was of the "system.nt_sec_desc.<attribute_name>"
1909 * form. If the name was of the "system.nt_sec_desc.*" form
1910 * then a complete security descriptor, with name:value pairs
1911 * separated by tabs, commas, or newlines (not spaces!),
1912 * should be provided in this value buffer. A complete
1913 * security descriptor will contain one or more entries
1914 * selected from the following:
1916 * REVISION:<revision number>
1917 * OWNER:<sid or name>
1918 * GROUP:<sid or name>
1919 * ACL:<sid or name>:<type>/<flags>/<mask>
1921 * The revision of the ACL specifies the internal Windows NT
1922 * ACL revision for the security descriptor. If not specified
1923 * it defaults to 1. Using values other than 1 may cause
1924 * strange behaviour.
1926 * The owner and group specify the owner and group sids for
1927 * the object. If the attribute name (either '*+' with a
1928 * complete security descriptor, or individual 'owner+' or
1929 * 'group+' attribute names) ended with a plus sign, the
1930 * specified name is resolved to a SID value, using the
1931 * server on which the file or directory resides. Otherwise,
1932 * the value should be provided in SID-printable format as
1933 * S-1-x-y-z, and is used directly. The <sid or name>
1934 * associated with the ACL: attribute should be provided
1935 * similarly.
1937 * @param size The number of the bytes of data in the value buffer
1939 * @param flags A bit-wise OR of zero or more of the following:
1940 * SMBC_XATTR_FLAG_CREATE -
1941 * fail if the named attribute already exists
1942 * SMBC_XATTR_FLAG_REPLACE -
1943 * fail if the attribute does not already exist
1945 * If neither flag is specified, the specified attributes
1946 * will be added or replace existing attributes of the same
1947 * name, as necessary.
1949 * @return 0 on success, < 0 on error with errno set:
1950 * - EINVAL The client library is not properly initialized
1951 * or one of the parameters is not of a correct
1952 * form
1953 * - ENOMEM No memory was available for internal needs
1954 * - EEXIST If the attribute already exists and the flag
1955 * SMBC_XATTR_FLAG_CREAT was specified
1956 * - ENOATTR If the attribute does not exist and the flag
1957 * SMBC_XATTR_FLAG_REPLACE was specified
1958 * - EPERM Permission was denied.
1959 * - ENOTSUP The referenced file system does not support
1960 * extended attributes
1962 * @note Attribute names are compared in a case-insensitive
1963 * fashion. All of the following are equivalent, although
1964 * the all-lower-case name is the preferred format:
1965 * system.nt_sec_desc.owner
1966 * SYSTEM.NT_SEC_DESC.OWNER
1967 * sYsTeM.nt_sEc_desc.owNER
1970 int smbc_fsetxattr(int fd,
1971 const char *name,
1972 const void *value,
1973 size_t size,
1974 int flags);
1977 /**@ingroup attribute
1978 * Get extended attributes for a file.
1980 * @param url The smb url of the file or directory to get extended
1981 * attributes for.
1983 * @param name The name of an attribute to be retrieved. Names are of
1984 * one of the following forms:
1986 * system.nt_sec_desc.<attribute name>
1987 * system.nt_sec_desc.*
1988 * system.nt_sec_desc.*+
1990 * where <attribute name> is one of:
1992 * revision
1993 * owner
1994 * owner+
1995 * group
1996 * group+
1997 * acl:<name or sid>
1998 * acl+:<name or sid>
2000 * In the forms "system.nt_sec_desc.*" and
2001 * "system.nt_sec_desc.*+", the asterisk and plus signs are
2002 * literal, i.e. the string is provided exactly as shown, and
2003 * the value parameter will return a complete security
2004 * descriptor with name:value pairs separated by tabs,
2005 * commas, or newlines (not spaces!).
2007 * The plus sign ('+') indicates that SIDs should be mapped
2008 * to names. Without the plus sign, SIDs are not mapped;
2009 * rather they are simply converted to a string format.
2011 * @param value A pointer to a buffer in which the value of the specified
2012 * attribute will be placed (unless size is zero).
2014 * @param size The size of the buffer pointed to by value. This parameter
2015 * may also be zero, in which case the size of the buffer
2016 * required to hold the attribute value will be returned,
2017 * but nothing will be placed into the value buffer.
2019 * @return 0 on success, < 0 on error with errno set:
2020 * - EINVAL The client library is not properly initialized
2021 * or one of the parameters is not of a correct
2022 * form
2023 * - ENOMEM No memory was available for internal needs
2024 * - EEXIST If the attribute already exists and the flag
2025 * SMBC_XATTR_FLAG_CREAT was specified
2026 * - ENOATTR If the attribute does not exist and the flag
2027 * SMBC_XATTR_FLAG_REPLACE was specified
2028 * - EPERM Permission was denied.
2029 * - ENOTSUP The referenced file system does not support
2030 * extended attributes
2033 int smbc_getxattr(const char *url,
2034 const char *name,
2035 const void *value,
2036 size_t size);
2039 /**@ingroup attribute
2040 * Get extended attributes for a file. The POSIX function which this maps to
2041 * would act on a symbolic link rather than acting on what the symbolic link
2042 * points to, but with no symbolic links in SMB file systems, this function
2043 * is functionally identical to smbc_getxattr().
2045 * @param url The smb url of the file or directory to get extended
2046 * attributes for.
2048 * @param name The name of an attribute to be retrieved. Names are of
2049 * one of the following forms:
2051 * system.nt_sec_desc.<attribute name>
2052 * system.nt_sec_desc.*
2053 * system.nt_sec_desc.*+
2055 * where <attribute name> is one of:
2057 * revision
2058 * owner
2059 * owner+
2060 * group
2061 * group+
2062 * acl:<name or sid>
2063 * acl+:<name or sid>
2065 * In the forms "system.nt_sec_desc.*" and
2066 * "system.nt_sec_desc.*+", the asterisk and plus signs are
2067 * literal, i.e. the string is provided exactly as shown, and
2068 * the value parameter will return a complete security
2069 * descriptor with name:value pairs separated by tabs,
2070 * commas, or newlines (not spaces!).
2072 * The plus sign ('+') indicates that SIDs should be mapped
2073 * to names. Without the plus sign, SIDs are not mapped;
2074 * rather they are simply converted to a string format.
2076 * @param value A pointer to a buffer in which the value of the specified
2077 * attribute will be placed (unless size is zero).
2079 * @param size The size of the buffer pointed to by value. This parameter
2080 * may also be zero, in which case the size of the buffer
2081 * required to hold the attribute value will be returned,
2082 * but nothing will be placed into the value buffer.
2084 * @return 0 on success, < 0 on error with errno set:
2085 * - EINVAL The client library is not properly initialized
2086 * or one of the parameters is not of a correct
2087 * form
2088 * - ENOMEM No memory was available for internal needs
2089 * - EEXIST If the attribute already exists and the flag
2090 * SMBC_XATTR_FLAG_CREAT was specified
2091 * - ENOATTR If the attribute does not exist and the flag
2092 * SMBC_XATTR_FLAG_REPLACE was specified
2093 * - EPERM Permission was denied.
2094 * - ENOTSUP The referenced file system does not support
2095 * extended attributes
2098 int smbc_lgetxattr(const char *url,
2099 const char *name,
2100 const void *value,
2101 size_t size);
2104 /**@ingroup attribute
2105 * Get extended attributes for a file.
2107 * @param fd A file descriptor associated with an open file (as
2108 * previously returned by smbc_open(), to get extended
2109 * attributes for.
2111 * @param name The name of an attribute to be retrieved. Names are of
2112 * one of the following forms:
2114 * system.nt_sec_desc.<attribute name>
2115 * system.nt_sec_desc.*
2116 * system.nt_sec_desc.*+
2118 * where <attribute name> is one of:
2120 * revision
2121 * owner
2122 * owner+
2123 * group
2124 * group+
2125 * acl:<name or sid>
2126 * acl+:<name or sid>
2128 * In the forms "system.nt_sec_desc.*" and
2129 * "system.nt_sec_desc.*+", the asterisk and plus signs are
2130 * literal, i.e. the string is provided exactly as shown, and
2131 * the value parameter will return a complete security
2132 * descriptor with name:value pairs separated by tabs,
2133 * commas, or newlines (not spaces!).
2135 * The plus sign ('+') indicates that SIDs should be mapped
2136 * to names. Without the plus sign, SIDs are not mapped;
2137 * rather they are simply converted to a string format.
2139 * @param value A pointer to a buffer in which the value of the specified
2140 * attribute will be placed (unless size is zero).
2142 * @param size The size of the buffer pointed to by value. This parameter
2143 * may also be zero, in which case the size of the buffer
2144 * required to hold the attribute value will be returned,
2145 * but nothing will be placed into the value buffer.
2147 * @return 0 on success, < 0 on error with errno set:
2148 * - EINVAL The client library is not properly initialized
2149 * or one of the parameters is not of a correct
2150 * form
2151 * - ENOMEM No memory was available for internal needs
2152 * - EEXIST If the attribute already exists and the flag
2153 * SMBC_XATTR_FLAG_CREAT was specified
2154 * - ENOATTR If the attribute does not exist and the flag
2155 * SMBC_XATTR_FLAG_REPLACE was specified
2156 * - EPERM Permission was denied.
2157 * - ENOTSUP The referenced file system does not support
2158 * extended attributes
2161 int smbc_fgetxattr(int fd,
2162 const char *name,
2163 const void *value,
2164 size_t size);
2167 /**@ingroup attribute
2168 * Remove extended attributes for a file. This is used for modifying a file's
2169 * security descriptor (i.e. owner, group, and access control list)
2171 * @param url The smb url of the file or directory to remove the extended
2172 * attributes for.
2174 * @param name The name of an attribute to be removed. Names are of
2175 * one of the following forms:
2177 * system.nt_sec_desc.<attribute name>
2178 * system.nt_sec_desc.*
2179 * system.nt_sec_desc.*+
2181 * where <attribute name> is one of:
2183 * revision
2184 * owner
2185 * owner+
2186 * group
2187 * group+
2188 * acl:<name or sid>
2189 * acl+:<name or sid>
2191 * In the forms "system.nt_sec_desc.*" and
2192 * "system.nt_sec_desc.*+", the asterisk and plus signs are
2193 * literal, i.e. the string is provided exactly as shown, and
2194 * the value parameter will return a complete security
2195 * descriptor with name:value pairs separated by tabs,
2196 * commas, or newlines (not spaces!).
2198 * The plus sign ('+') indicates that SIDs should be mapped
2199 * to names. Without the plus sign, SIDs are not mapped;
2200 * rather they are simply converted to a string format.
2202 * @return 0 on success, < 0 on error with errno set:
2203 * - EINVAL The client library is not properly initialized
2204 * - ENOMEM No memory was available for internal needs
2205 * - EPERM Permission was denied.
2206 * - ENOTSUP The referenced file system does not support
2207 * extended attributes
2210 int smbc_removexattr(const char *url,
2211 const char *name);
2214 /**@ingroup attribute
2215 * Remove extended attributes for a file. This is used for modifying a file's
2216 * security descriptor (i.e. owner, group, and access control list) The POSIX
2217 * function which this maps to would act on a symbolic link rather than acting
2218 * on what the symbolic link points to, but with no symbolic links in SMB file
2219 * systems, this function is functionally identical to smbc_removexattr().
2221 * @param url The smb url of the file or directory to remove the extended
2222 * attributes for.
2224 * @param name The name of an attribute to be removed. Names are of
2225 * one of the following forms:
2227 * system.nt_sec_desc.<attribute name>
2228 * system.nt_sec_desc.*
2229 * system.nt_sec_desc.*+
2231 * where <attribute name> is one of:
2233 * revision
2234 * owner
2235 * owner+
2236 * group
2237 * group+
2238 * acl:<name or sid>
2239 * acl+:<name or sid>
2241 * In the forms "system.nt_sec_desc.*" and
2242 * "system.nt_sec_desc.*+", the asterisk and plus signs are
2243 * literal, i.e. the string is provided exactly as shown, and
2244 * the value parameter will return a complete security
2245 * descriptor with name:value pairs separated by tabs,
2246 * commas, or newlines (not spaces!).
2248 * The plus sign ('+') indicates that SIDs should be mapped
2249 * to names. Without the plus sign, SIDs are not mapped;
2250 * rather they are simply converted to a string format.
2252 * @return 0 on success, < 0 on error with errno set:
2253 * - EINVAL The client library is not properly initialized
2254 * - ENOMEM No memory was available for internal needs
2255 * - EPERM Permission was denied.
2256 * - ENOTSUP The referenced file system does not support
2257 * extended attributes
2260 int smbc_lremovexattr(const char *url,
2261 const char *name);
2264 /**@ingroup attribute
2265 * Remove extended attributes for a file. This is used for modifying a file's
2266 * security descriptor (i.e. owner, group, and access control list)
2268 * @param fd A file descriptor associated with an open file (as
2269 * previously returned by smbc_open(), to get extended
2270 * attributes for.
2272 * @param name The name of an attribute to be removed. Names are of
2273 * one of the following forms:
2275 * system.nt_sec_desc.<attribute name>
2276 * system.nt_sec_desc.*
2277 * system.nt_sec_desc.*+
2279 * where <attribute name> is one of:
2281 * revision
2282 * owner
2283 * owner+
2284 * group
2285 * group+
2286 * acl:<name or sid>
2287 * acl+:<name or sid>
2289 * In the forms "system.nt_sec_desc.*" and
2290 * "system.nt_sec_desc.*+", the asterisk and plus signs are
2291 * literal, i.e. the string is provided exactly as shown, and
2292 * the value parameter will return a complete security
2293 * descriptor with name:value pairs separated by tabs,
2294 * commas, or newlines (not spaces!).
2296 * The plus sign ('+') indicates that SIDs should be mapped
2297 * to names. Without the plus sign, SIDs are not mapped;
2298 * rather they are simply converted to a string format.
2300 * @return 0 on success, < 0 on error with errno set:
2301 * - EINVAL The client library is not properly initialized
2302 * - ENOMEM No memory was available for internal needs
2303 * - EPERM Permission was denied.
2304 * - ENOTSUP The referenced file system does not support
2305 * extended attributes
2308 int smbc_fremovexattr(int fd,
2309 const char *name);
2312 /**@ingroup attribute
2313 * List the supported extended attribute names associated with a file
2315 * @param url The smb url of the file or directory to list the extended
2316 * attributes for.
2318 * @param list A pointer to a buffer in which the list of attributes for
2319 * the specified file or directory will be placed (unless
2320 * size is zero).
2322 * @param size The size of the buffer pointed to by list. This parameter
2323 * may also be zero, in which case the size of the buffer
2324 * required to hold all of the attribute names will be
2325 * returned, but nothing will be placed into the list buffer.
2327 * @return 0 on success, < 0 on error with errno set:
2328 * - EINVAL The client library is not properly initialized
2329 * - ENOMEM No memory was available for internal needs
2330 * - EPERM Permission was denied.
2331 * - ENOTSUP The referenced file system does not support
2332 * extended attributes
2334 * @note This function always returns all attribute names supported
2335 * by NT file systems, regardless of whether the referenced
2336 * file system supports extended attributes (e.g. a Windows
2337 * 2000 machine supports extended attributes if NTFS is used,
2338 * but not if FAT is used, and Windows 98 doesn't support
2339 * extended attributes at all. Whether this is a feature or
2340 * a bug is yet to be decided.
2342 int smbc_listxattr(const char *url,
2343 char *list,
2344 size_t size);
2346 /**@ingroup attribute
2347 * List the supported extended attribute names associated with a file The
2348 * POSIX function which this maps to would act on a symbolic link rather than
2349 * acting on what the symbolic link points to, but with no symbolic links in
2350 * SMB file systems, this function is functionally identical to
2351 * smbc_listxattr().
2353 * @param url The smb url of the file or directory to list the extended
2354 * attributes for.
2356 * @param list A pointer to a buffer in which the list of attributes for
2357 * the specified file or directory will be placed (unless
2358 * size is zero).
2360 * @param size The size of the buffer pointed to by list. This parameter
2361 * may also be zero, in which case the size of the buffer
2362 * required to hold all of the attribute names will be
2363 * returned, but nothing will be placed into the list buffer.
2365 * @return 0 on success, < 0 on error with errno set:
2366 * - EINVAL The client library is not properly initialized
2367 * - ENOMEM No memory was available for internal needs
2368 * - EPERM Permission was denied.
2369 * - ENOTSUP The referenced file system does not support
2370 * extended attributes
2372 * @note This function always returns all attribute names supported
2373 * by NT file systems, regardless of wether the referenced
2374 * file system supports extended attributes (e.g. a Windows
2375 * 2000 machine supports extended attributes if NTFS is used,
2376 * but not if FAT is used, and Windows 98 doesn't support
2377 * extended attributes at all. Whether this is a feature or
2378 * a bug is yet to be decided.
2380 int smbc_llistxattr(const char *url,
2381 char *list,
2382 size_t size);
2384 /**@ingroup attribute
2385 * List the supported extended attribute names associated with a file
2387 * @param fd A file descriptor associated with an open file (as
2388 * previously returned by smbc_open(), to get extended
2389 * attributes for.
2391 * @param list A pointer to a buffer in which the list of attributes for
2392 * the specified file or directory will be placed (unless
2393 * size is zero).
2395 * @param size The size of the buffer pointed to by list. This parameter
2396 * may also be zero, in which case the size of the buffer
2397 * required to hold all of the attribute names will be
2398 * returned, but nothing will be placed into the list buffer.
2400 * @return 0 on success, < 0 on error with errno set:
2401 * - EINVAL The client library is not properly initialized
2402 * - ENOMEM No memory was available for internal needs
2403 * - EPERM Permission was denied.
2404 * - ENOTSUP The referenced file system does not support
2405 * extended attributes
2407 * @note This function always returns all attribute names supported
2408 * by NT file systems, regardless of wether the referenced
2409 * file system supports extended attributes (e.g. a Windows
2410 * 2000 machine supports extended attributes if NTFS is used,
2411 * but not if FAT is used, and Windows 98 doesn't support
2412 * extended attributes at all. Whether this is a feature or
2413 * a bug is yet to be decided.
2415 int smbc_flistxattr(int fd,
2416 char *list,
2417 size_t size);
2419 /**@ingroup print
2420 * Print a file given the name in fname. It would be a URL ...
2422 * @param fname The URL of a file on a remote SMB server that the
2423 * caller wants printed
2425 * @param printq The URL of the print share to print the file to.
2427 * @return 0 on success, < 0 on error with errno set:
2429 * - EINVAL fname or printq was NULL or smbc_init not
2430 * not called.
2431 * and errors returned by smbc_open
2434 int smbc_print_file(const char *fname, const char *printq);
2436 /**@ingroup print
2437 * Open a print file that can be written to by other calls. This simply
2438 * does an smbc_open call after checking if there is a file name on the
2439 * URI. If not, a temporary name is added ...
2441 * @param fname The URL of the print share to print to?
2443 * @returns A file handle for the print file if successful.
2444 * Returns -1 if an error ocurred and errno has the values
2445 * - EINVAL fname was NULL or smbc_init not called.
2446 * - all errors returned by smbc_open
2449 int smbc_open_print_job(const char *fname);
2451 /**@ingroup print
2452 * List the print jobs on a print share, for the moment, pass a callback
2454 * @param purl The url of the print share to list the jobs of
2456 * @param fn Callback function the receives printjob info
2458 * @return 0 on success, < 0 on error with errno set:
2459 * - EINVAL fname was NULL or smbc_init not called
2460 * - EACCES ???
2462 int smbc_list_print_jobs(const char *purl, smbc_list_print_job_fn fn);
2464 /**@ingroup print
2465 * Delete a print job
2467 * @param purl Url of the print share
2469 * @param id The id of the job to delete
2471 * @return 0 on success, < 0 on error with errno set:
2472 * - EINVAL fname was NULL or smbc_init not called
2474 * @todo what errno values are possible here?
2476 int smbc_unlink_print_job(const char *purl, int id);
2478 /**@ingroup callback
2479 * Remove a server from the cached server list it's unused.
2481 * @param context pointer to smb context
2483 * @param srv pointer to server to remove
2485 * @return On success, 0 is returned. 1 is returned if the server could not
2486 * be removed. Also useable outside libsmbclient.
2488 int smbc_remove_unused_server(SMBCCTX * context, SMBCSRV * srv);
2490 #ifdef __cplusplus
2492 #endif
2494 /**@ingroup directory
2495 * Convert strings of %xx to their single character equivalent.
2497 * @param dest A pointer to a buffer in which the resulting decoded
2498 * string should be placed. This may be a pointer to the
2499 * same buffer as src_segment.
2501 * @param src A pointer to the buffer containing the URL to be decoded.
2502 * Any %xx sequences herein are converted to their single
2503 * character equivalent. Each 'x' must be a valid hexadecimal
2504 * digit, or that % sequence is left undecoded.
2506 * @param max_dest_len
2507 * The size of the buffer pointed to by dest_segment.
2509 * @return The number of % sequences which could not be converted
2510 * due to lack of two following hexadecimal digits.
2512 #ifdef __cplusplus
2513 extern "C" {
2514 #endif
2516 smbc_urldecode(char *dest, char * src, size_t max_dest_len);
2517 #ifdef __cplusplus
2519 #endif
2523 * Convert any characters not specifically allowed in a URL into their %xx
2524 * equivalent.
2526 * @param dest A pointer to a buffer in which the resulting encoded
2527 * string should be placed. Unlike smbc_urldecode(), this
2528 * must be a buffer unique from src.
2530 * @param src A pointer to the buffer containing the string to be encoded.
2531 * Any character not specifically allowed in a URL is converted
2532 * into its hexadecimal value and encoded as %xx.
2534 * @param max_dest_len
2535 * The size of the buffer pointed to by dest_segment.
2537 * @returns The remaining buffer length.
2539 #ifdef __cplusplus
2540 extern "C" {
2541 #endif
2543 smbc_urlencode(char * dest, char * src, int max_dest_len);
2544 #ifdef __cplusplus
2546 #endif
2549 /**@ingroup directory
2550 * Return the version of the linked Samba code, and thus the version of the
2551 * libsmbclient code.
2553 * @return The version string.
2555 #ifdef __cplusplus
2556 extern "C" {
2557 #endif
2558 const char *
2559 smbc_version(void);
2560 #ifdef __cplusplus
2562 #endif
2564 /**@ingroup misc
2565 * Set the users credentials globally so they can be used for DFS
2566 * referrals. Probably best to use this function in the smbc_get_auth_data_fn
2567 * callback.
2569 * @param workgroup Workgroup of the user.
2571 * @param user Username of user.
2573 * @param password Password of user.
2575 * @param use_kerberos Whether to use Kerberos
2577 * @param signing_state One of these strings (all equivalents on same line):
2578 * "off", "no", "false"
2579 * "on", "yes", "true", "auto"
2580 * "force", "required", "forced"
2583 void
2584 smbc_set_credentials(char *workgroup,
2585 char *user,
2586 char *password,
2587 smbc_bool use_kerberos,
2588 char *signing_state);
2592 * @ingroup structure
2593 * Structure that contains a client context information
2594 * This structure is known as SMBCCTX
2596 * DO NOT DIRECTLY MANIPULATE THE CONTEXT STRUCTURE! The data in the context
2597 * structure should all be considered private to the library. It remains here
2598 * only for backward compatibility.
2600 * See the comments herein for use of the setter and getter functions which
2601 * should now be used for manipulating these values. New features, functions,
2602 * etc., are not added here but rather in _internal where they are not
2603 * directly visible to applications. This makes it much easier to maintain
2604 * ABI compatibility.
2606 struct _SMBCCTX
2609 * debug level
2611 * DEPRECATED:
2612 * Use smbc_getDebug() and smbc_setDebug()
2614 int debug DEPRECATED_SMBC_INTERFACE;
2617 * netbios name used for making connections
2619 * DEPRECATED:
2620 * Use smbc_getNetbiosName() and smbc_setNetbiosName()
2622 char * netbios_name DEPRECATED_SMBC_INTERFACE;
2625 * workgroup name used for making connections
2627 * DEPRECATED:
2628 * Use smbc_getWorkgroup() and smbc_setWorkgroup()
2630 char * workgroup DEPRECATED_SMBC_INTERFACE;
2633 * username used for making connections
2635 * DEPRECATED:
2636 * Use smbc_getUser() and smbc_setUser()
2638 char * user DEPRECATED_SMBC_INTERFACE;
2641 * timeout used for waiting on connections / response data (in
2642 * milliseconds)
2644 * DEPRECATED:
2645 * Use smbc_getTimeout() and smbc_setTimeout()
2647 int timeout DEPRECATED_SMBC_INTERFACE;
2650 * callable functions for files:
2651 * For usage and return values see the SMBC_* functions
2653 * DEPRECATED:
2655 * Use smbc_getFunction*() and smbc_setFunction*(), e.g.
2656 * smbc_getFunctionOpen(), smbc_setFunctionUnlink(), etc.
2658 smbc_open_fn open DEPRECATED_SMBC_INTERFACE;
2659 smbc_creat_fn creat DEPRECATED_SMBC_INTERFACE;
2660 smbc_read_fn read DEPRECATED_SMBC_INTERFACE;
2661 smbc_write_fn write DEPRECATED_SMBC_INTERFACE;
2662 smbc_unlink_fn unlink DEPRECATED_SMBC_INTERFACE;
2663 smbc_rename_fn rename DEPRECATED_SMBC_INTERFACE;
2664 smbc_lseek_fn lseek DEPRECATED_SMBC_INTERFACE;
2665 smbc_stat_fn stat DEPRECATED_SMBC_INTERFACE;
2666 smbc_fstat_fn fstat DEPRECATED_SMBC_INTERFACE;
2667 #if 0 /* internal */
2668 smbc_ftruncate_fn ftruncate_fn;
2669 #endif
2670 smbc_close_fn close_fn DEPRECATED_SMBC_INTERFACE;
2671 smbc_opendir_fn opendir DEPRECATED_SMBC_INTERFACE;
2672 smbc_closedir_fn closedir DEPRECATED_SMBC_INTERFACE;
2673 smbc_readdir_fn readdir DEPRECATED_SMBC_INTERFACE;
2674 smbc_getdents_fn getdents DEPRECATED_SMBC_INTERFACE;
2675 smbc_mkdir_fn mkdir DEPRECATED_SMBC_INTERFACE;
2676 smbc_rmdir_fn rmdir DEPRECATED_SMBC_INTERFACE;
2677 smbc_telldir_fn telldir DEPRECATED_SMBC_INTERFACE;
2678 smbc_lseekdir_fn lseekdir DEPRECATED_SMBC_INTERFACE;
2679 smbc_fstatdir_fn fstatdir DEPRECATED_SMBC_INTERFACE;
2680 smbc_chmod_fn chmod DEPRECATED_SMBC_INTERFACE;
2681 smbc_utimes_fn utimes DEPRECATED_SMBC_INTERFACE;
2682 smbc_setxattr_fn setxattr DEPRECATED_SMBC_INTERFACE;
2683 smbc_getxattr_fn getxattr DEPRECATED_SMBC_INTERFACE;
2684 smbc_removexattr_fn removexattr DEPRECATED_SMBC_INTERFACE;
2685 smbc_listxattr_fn listxattr DEPRECATED_SMBC_INTERFACE;
2687 /* Printing-related functions */
2688 smbc_print_file_fn print_file DEPRECATED_SMBC_INTERFACE;
2689 smbc_open_print_job_fn open_print_job DEPRECATED_SMBC_INTERFACE;
2690 smbc_list_print_jobs_fn list_print_jobs DEPRECATED_SMBC_INTERFACE;
2691 smbc_unlink_print_job_fn unlink_print_job DEPRECATED_SMBC_INTERFACE;
2694 ** Callbacks
2696 * DEPRECATED:
2698 * See the comment above each field, for the getter and setter
2699 * functions that should now be used.
2701 struct _smbc_callbacks
2704 * authentication function callback: called upon auth requests
2706 * DEPRECATED:
2707 * Use smbc_getFunctionAuthData(), smbc_setFunctionAuthData()
2709 smbc_get_auth_data_fn auth_fn DEPRECATED_SMBC_INTERFACE;
2712 * check if a server is still good
2714 * DEPRECATED:
2715 * Use smbc_getFunctionCheckServer(),
2716 * smbc_setFunctionCheckServer()
2718 smbc_check_server_fn check_server_fn DEPRECATED_SMBC_INTERFACE;
2721 * remove a server if unused
2723 * DEPRECATED:
2724 * Use smbc_getFunctionRemoveUnusedServer(),
2725 * smbc_setFunctionCheckServer()
2727 smbc_remove_unused_server_fn remove_unused_server_fn DEPRECATED_SMBC_INTERFACE;
2729 /** Cache subsystem
2731 * For an example cache system see
2732 * samba/source/libsmb/libsmb_cache.c
2734 * Cache subsystem * functions follow.
2738 * server cache addition
2740 * DEPRECATED:
2741 * Use smbc_getFunctionAddCachedServer(),
2742 * smbc_setFunctionAddCachedServer()
2744 smbc_add_cached_srv_fn add_cached_srv_fn DEPRECATED_SMBC_INTERFACE;
2747 * server cache lookup
2749 * DEPRECATED:
2750 * Use smbc_getFunctionGetCachedServer(),
2751 * smbc_setFunctionGetCachedServer()
2753 smbc_get_cached_srv_fn get_cached_srv_fn DEPRECATED_SMBC_INTERFACE;
2756 * server cache removal
2758 * DEPRECATED:
2759 * Use smbc_getFunctionRemoveCachedServer(),
2760 * smbc_setFunctionRemoveCachedServer()
2762 smbc_remove_cached_srv_fn remove_cached_srv_fn DEPRECATED_SMBC_INTERFACE;
2765 * server cache purging, try to remove all cached servers
2766 * (disconnect)
2768 * DEPRECATED:
2769 * Use smbc_getFunctionPurgeCachedServers(),
2770 * smbc_setFunctionPurgeCachedServers()
2772 smbc_purge_cached_fn purge_cached_fn DEPRECATED_SMBC_INTERFACE;
2773 } callbacks;
2776 * Space where the private data of the server cache used to be
2778 * DEPRECATED:
2779 * Use smbc_getServerCacheData(), smbc_setServerCacheData()
2781 void * reserved DEPRECATED_SMBC_INTERFACE;
2784 * Very old configuration options.
2786 * DEPRECATED:
2787 * Use one of the following functions instead:
2788 * smbc_setOptionUseKerberos()
2789 * smbc_getOptionUseKerberos()
2790 * smbc_setOptionFallbackAfterKerberos()
2791 * smbc_getOptionFallbackAfterKerberos()
2792 * smbc_setOptionNoAutoAnonymousLogin()
2793 * smbc_getOptionNoAutoAnonymousLogin()
2795 int flags DEPRECATED_SMBC_INTERFACE;
2798 * user options selections that apply to this session
2800 * NEW OPTIONS ARE NOT ADDED HERE!
2802 * DEPRECATED:
2803 * To set and retrieve options, use the smbc_setOption*() and
2804 * smbc_getOption*() functions.
2806 struct _smbc_options {
2807 int browse_max_lmb_count DEPRECATED_SMBC_INTERFACE;
2808 int urlencode_readdir_entries DEPRECATED_SMBC_INTERFACE;
2809 int one_share_per_server DEPRECATED_SMBC_INTERFACE;
2810 } options DEPRECATED_SMBC_INTERFACE;
2812 /** INTERNAL DATA
2813 * do _NOT_ touch this from your program !
2815 struct SMBC_internal_data * internal;
2819 #endif /* SMBCLIENT_H_INCLUDED */