2 Unix SMB/Netbios implementation.
3 SMB client library implementation
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Richard Sharpe 2000, 2002
6 Copyright (C) John Terpstra 2000
7 Copyright (C) Tom Jansen (Ninja ISD) 2002
8 Copyright (C) Derrell Lipman 2003, 2004
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "include/libsmb_internal.h"
28 struct smbc_dirent
*smbc_readdir_ctx(SMBCCTX
*context
, SMBCFILE
*dir
);
29 struct smbc_dir_list
*smbc_check_dir_ent(struct smbc_dir_list
*list
,
30 struct smbc_dirent
*dirent
);
33 * DOS Attribute values (used internally)
35 typedef struct DOS_ATTR_DESC
{
47 * Internal flags for extended attributes
50 /* internal mode values */
51 #define SMBC_XATTR_MODE_ADD 1
52 #define SMBC_XATTR_MODE_REMOVE 2
53 #define SMBC_XATTR_MODE_REMOVE_ALL 3
54 #define SMBC_XATTR_MODE_SET 4
55 #define SMBC_XATTR_MODE_CHOWN 5
56 #define SMBC_XATTR_MODE_CHGRP 6
58 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
60 /*We should test for this in configure ... */
62 #define ENOTSUP EOPNOTSUPP
66 * Functions exported by libsmb_cache.c that we need here
68 int smbc_default_cache_functions(SMBCCTX
*context
);
71 * check if an element is part of the list.
72 * FIXME: Does not belong here !
73 * Can anyone put this in a macro in dlinklist.h ?
76 static int DLIST_CONTAINS(SMBCFILE
* list
, SMBCFILE
*p
) {
77 if (!p
|| !list
) return False
;
79 if (p
== list
) return True
;
86 * Find an lsa pipe handle associated with a cli struct.
88 static struct rpc_pipe_client
*
89 find_lsa_pipe_hnd(struct cli_state
*ipc_cli
)
91 struct rpc_pipe_client
*pipe_hnd
;
93 for (pipe_hnd
= ipc_cli
->pipe_list
;
95 pipe_hnd
= pipe_hnd
->next
) {
97 if (pipe_hnd
->pipe_idx
== PI_LSARPC
) {
106 smbc_close_ctx(SMBCCTX
*context
,
109 smbc_lseek_ctx(SMBCCTX
*context
,
114 extern bool in_client
;
117 * Is the logging working / configfile read ?
119 static int smbc_initialized
= 0;
122 hex2int( unsigned int _char
)
124 if ( _char
>= 'A' && _char
<='F')
125 return _char
- 'A' + 10;
126 if ( _char
>= 'a' && _char
<='f')
127 return _char
- 'a' + 10;
128 if ( _char
>= '0' && _char
<='9')
136 * Convert strings of %xx to their single character equivalent. Each 'x' must
137 * be a valid hexadecimal digit, or that % sequence is left undecoded.
139 * dest may, but need not be, the same pointer as src.
141 * Returns the number of % sequences which could not be converted due to lack
142 * of two following hexadecimal digits.
145 smbc_urldecode(char *dest
, char * src
, size_t max_dest_len
)
147 int old_length
= strlen(src
);
153 if ( old_length
== 0 ) {
158 while ( i
< old_length
) {
159 unsigned char character
= src
[ i
++ ];
161 if (character
== '%') {
162 int a
= i
+1 < old_length
? hex2int( src
[i
] ) : -1;
163 int b
= i
+1 < old_length
? hex2int( src
[i
+1] ) : -1;
165 /* Replace valid sequence */
166 if (a
!= -1 && b
!= -1) {
168 /* Replace valid %xx sequence with %dd */
169 character
= (a
* 16) + b
;
171 if (character
== '\0') {
172 break; /* Stop at %00 */
187 strncpy(dest
, temp
, max_dest_len
- 1);
188 dest
[max_dest_len
- 1] = '\0';
196 * Convert any characters not specifically allowed in a URL into their %xx
199 * Returns the remaining buffer length.
202 smbc_urlencode(char * dest
, char * src
, int max_dest_len
)
204 char hex
[] = "0123456789ABCDEF";
206 for (; *src
!= '\0' && max_dest_len
>= 3; src
++) {
218 *dest
++ = hex
[(*src
>> 4) & 0x0f];
219 *dest
++ = hex
[*src
& 0x0f];
234 * Function to parse a path and turn it into components
236 * The general format of an SMB URI is explain in Christopher Hertel's CIFS
237 * book, at http://ubiqx.org/cifs/Appendix-D.html. We accept a subset of the
238 * general format ("smb:" only; we do not look for "cifs:").
242 * smb://[[[domain;]user[:password]@]server[/share[/path[/file]]]][?options]
246 * smb:// Show all workgroups.
248 * The method of locating the list of workgroups varies
249 * depending upon the setting of the context variable
250 * context->options.browse_max_lmb_count. This value
251 * determine the maximum number of local master browsers to
252 * query for the list of workgroups. In order to ensure that
253 * a complete list of workgroups is obtained, all master
254 * browsers must be queried, but if there are many
255 * workgroups, the time spent querying can begin to add up.
256 * For small networks (not many workgroups), it is suggested
257 * that this variable be set to 0, indicating query all local
258 * master browsers. When the network has many workgroups, a
259 * reasonable setting for this variable might be around 3.
261 * smb://name/ if name<1D> or name<1B> exists, list servers in
262 * workgroup, else, if name<20> exists, list all shares
265 * If "options" are provided, this function returns the entire option list as a
266 * string, for later parsing by the caller. Note that currently, no options
270 static const char *smbc_prefix
= "smb:";
273 smbc_parse_path(SMBCCTX
*context
,
275 char *workgroup
, int workgroup_len
,
276 char *server
, int server_len
,
277 char *share
, int share_len
,
278 char *path
, int path_len
,
279 char *user
, int user_len
,
280 char *password
, int password_len
,
281 char *options
, int options_len
)
289 server
[0] = share
[0] = path
[0] = user
[0] = password
[0] = (char)0;
292 * Assume we wont find an authentication domain to parse, so default
293 * to the workgroup in the provided context.
295 if (workgroup
!= NULL
) {
296 strncpy(workgroup
, context
->workgroup
, workgroup_len
- 1);
297 workgroup
[workgroup_len
- 1] = '\0';
300 if (options
!= NULL
&& options_len
> 0) {
301 options
[0] = (char)0;
305 /* see if it has the right prefix */
306 len
= strlen(smbc_prefix
);
307 if (strncmp(s
,smbc_prefix
,len
) || (s
[len
] != '/' && s
[len
] != 0)) {
308 return -1; /* What about no smb: ? */
313 /* Watch the test below, we are testing to see if we should exit */
315 if (strncmp(p
, "//", 2) && strncmp(p
, "\\\\", 2)) {
317 DEBUG(1, ("Invalid path (does not begin with smb://"));
322 p
+= 2; /* Skip the double slash */
324 /* See if any options were specified */
325 if ((q
= strrchr(p
, '?')) != NULL
) {
326 /* There are options. Null terminate here and point to them */
329 DEBUG(4, ("Found options '%s'", q
));
331 /* Copy the options */
332 if (options
!= NULL
&& options_len
> 0) {
333 safe_strcpy(options
, q
, options_len
- 1);
341 int wl
= strlen(context
->workgroup
);
347 strncpy(server
, context
->workgroup
, wl
);
353 * ok, its for us. Now parse out the server, share etc.
355 * However, we want to parse out [[domain;]user[:password]@] if it
359 /* check that '@' occurs before '/', if '/' exists at all */
360 q
= strchr_m(p
, '@');
361 r
= strchr_m(p
, '/');
362 if (q
&& (!r
|| q
< r
)) {
363 pstring username
, passwd
, domain
;
364 const char *u
= userinfo
;
366 next_token_no_ltrim(&p
, userinfo
, "@", sizeof(fstring
));
368 username
[0] = passwd
[0] = domain
[0] = 0;
370 if (strchr_m(u
, ';')) {
372 next_token_no_ltrim(&u
, domain
, ";", sizeof(fstring
));
376 if (strchr_m(u
, ':')) {
378 next_token_no_ltrim(&u
, username
, ":", sizeof(fstring
));
385 pstrcpy(username
, u
);
389 if (domain
[0] && workgroup
) {
390 strncpy(workgroup
, domain
, workgroup_len
- 1);
391 workgroup
[workgroup_len
- 1] = '\0';
395 strncpy(user
, username
, user_len
- 1);
396 user
[user_len
- 1] = '\0';
400 strncpy(password
, passwd
, password_len
- 1);
401 password
[password_len
- 1] = '\0';
406 if (!next_token(&p
, server
, "/", sizeof(fstring
))) {
412 if (*p
== (char)0) goto decoding
; /* That's it ... */
414 if (!next_token(&p
, share
, "/", sizeof(fstring
))) {
421 * Prepend a leading slash if there's a file path, as required by
427 safe_strcpy(path
+ 1, p
, path_len
- 2);
430 all_string_sub(path
, "/", "\\", 0);
433 (void) smbc_urldecode(path
, path
, path_len
);
434 (void) smbc_urldecode(server
, server
, server_len
);
435 (void) smbc_urldecode(share
, share
, share_len
);
436 (void) smbc_urldecode(user
, user
, user_len
);
437 (void) smbc_urldecode(password
, password
, password_len
);
443 * Verify that the options specified in a URL are valid
446 smbc_check_options(char *server
,
451 DEBUG(4, ("smbc_check_options(): server='%s' share='%s' "
452 "path='%s' options='%s'\n",
453 server
, share
, path
, options
));
455 /* No options at all is always ok */
456 if (! *options
) return 0;
458 /* Currently, we don't support any options. */
463 * Convert an SMB error into a UNIX error ...
466 smbc_errno(SMBCCTX
*context
,
469 int ret
= cli_errno(c
);
471 if (cli_is_dos_error(c
)) {
475 cli_dos_error(c
, &eclass
, &ecode
);
477 DEBUG(3,("smbc_error %d %d (0x%x) -> %d\n",
478 (int)eclass
, (int)ecode
, (int)ecode
, ret
));
482 status
= cli_nt_error(c
);
484 DEBUG(3,("smbc errno %s -> %d\n",
485 nt_errstr(status
), ret
));
492 * Check a server for being alive and well.
493 * returns 0 if the server is in shape. Returns 1 on error
495 * Also useable outside libsmbclient to enable external cache
496 * to do some checks too.
499 smbc_check_server(SMBCCTX
* context
,
503 struct sockaddr addr
;
506 return (getpeername(server
->cli
->fd
, &addr
, &size
) == -1);
510 * Remove a server from the cached server list it's unused.
511 * On success, 0 is returned. 1 is returned if the server could not be removed.
513 * Also useable outside libsmbclient
516 smbc_remove_unused_server(SMBCCTX
* context
,
521 /* are we being fooled ? */
522 if (!context
|| !context
->internal
||
523 !context
->internal
->_initialized
|| !srv
) return 1;
526 /* Check all open files/directories for a relation with this server */
527 for (file
= context
->internal
->_files
; file
; file
=file
->next
) {
528 if (file
->srv
== srv
) {
530 DEBUG(3, ("smbc_remove_usused_server: "
531 "%p still used by %p.\n",
537 DLIST_REMOVE(context
->internal
->_servers
, srv
);
539 cli_shutdown(srv
->cli
);
542 DEBUG(3, ("smbc_remove_usused_server: %p removed.\n", srv
));
544 (context
->callbacks
.remove_cached_srv_fn
)(context
, srv
);
552 find_server(SMBCCTX
*context
,
564 srv
= (context
->callbacks
.get_cached_srv_fn
)(context
, server
, share
,
565 workgroup
, username
);
567 if (!auth_called
&& !srv
&& (!username
[0] || !password
[0])) {
568 if (context
->internal
->_auth_fn_with_context
!= NULL
) {
569 (context
->internal
->_auth_fn_with_context
)(
572 workgroup
, sizeof(fstring
),
573 username
, sizeof(fstring
),
574 password
, sizeof(fstring
));
576 (context
->callbacks
.auth_fn
)(
578 workgroup
, sizeof(fstring
),
579 username
, sizeof(fstring
),
580 password
, sizeof(fstring
));
584 * However, smbc_auth_fn may have picked up info relating to
585 * an existing connection, so try for an existing connection
589 goto check_server_cache
;
594 if ((context
->callbacks
.check_server_fn
)(context
, srv
)) {
596 * This server is no good anymore
597 * Try to remove it and check for more possible
598 * servers in the cache
600 if ((context
->callbacks
.remove_unused_server_fn
)(context
,
603 * We could not remove the server completely,
604 * remove it from the cache so we will not get
605 * it again. It will be removed when the last
606 * file/dir is closed.
608 (context
->callbacks
.remove_cached_srv_fn
)(context
,
613 * Maybe there are more cached connections to this
616 goto check_server_cache
;
626 * Connect to a server, possibly on an existing connection
628 * Here, what we want to do is: If the server and username
629 * match an existing connection, reuse that, otherwise, establish a
632 * If we have to create a new connection, call the auth_fn to get the
633 * info we need, unless the username and password were passed in.
637 smbc_server(SMBCCTX
*context
,
638 bool connect_if_not_found
,
647 struct nmb_name called
, calling
;
648 const char *server_n
= server
;
650 struct sockaddr_storage ss
;
651 int tried_reverse
= 0;
654 const char *username_used
;
660 if (server
[0] == 0) {
665 /* Look for a cached connection */
666 srv
= find_server(context
, server
, share
,
667 workgroup
, username
, password
);
670 * If we found a connection and we're only allowed one share per
673 if (srv
&& *share
!= '\0' && context
->options
.one_share_per_server
) {
676 * ... then if there's no current connection to the share,
677 * connect to it. find_server(), or rather the function
678 * pointed to by context->callbacks.get_cached_srv_fn which
679 * was called by find_server(), will have issued a tree
680 * disconnect if the requested share is not the same as the
681 * one that was already connected.
683 if (srv
->cli
->cnum
== (uint16
) -1) {
684 /* Ensure we have accurate auth info */
685 if (context
->internal
->_auth_fn_with_context
!= NULL
) {
686 (context
->internal
->_auth_fn_with_context
)(
689 workgroup
, sizeof(fstring
),
690 username
, sizeof(fstring
),
691 password
, sizeof(fstring
));
693 (context
->callbacks
.auth_fn
)(
695 workgroup
, sizeof(fstring
),
696 username
, sizeof(fstring
),
697 password
, sizeof(fstring
));
700 if (! cli_send_tconX(srv
->cli
, share
, "?????",
701 password
, strlen(password
)+1)) {
703 errno
= smbc_errno(context
, srv
->cli
);
704 cli_shutdown(srv
->cli
);
706 (context
->callbacks
.remove_cached_srv_fn
)(context
,
712 * Regenerate the dev value since it's based on both
716 srv
->dev
= (dev_t
)(str_checksum(server
) ^
717 str_checksum(share
));
722 /* If we have a connection... */
725 /* ... then we're done here. Give 'em what they came for. */
729 /* If we're not asked to connect when a connection doesn't exist... */
730 if (! connect_if_not_found
) {
731 /* ... then we're done here. */
735 make_nmb_name(&calling
, context
->netbios_name
, 0x0);
736 make_nmb_name(&called
, server
, 0x20);
738 DEBUG(4,("smbc_server: server_n=[%s] server=[%s]\n", server_n
, server
));
740 DEBUG(4,(" -> server_n=[%s] server=[%s]\n", server_n
, server
));
743 slprintf(ipenv
,sizeof(ipenv
)-1,"HOST_%s", server_n
);
747 /* have to open a new connection */
748 if ((c
= cli_initialise()) == NULL
) {
753 if (context
->flags
& SMB_CTX_FLAG_USE_KERBEROS
) {
754 c
->use_kerberos
= True
;
756 if (context
->flags
& SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS
) {
757 c
->fallback_after_kerberos
= True
;
760 c
->timeout
= context
->timeout
;
763 * Force use of port 139 for first try if share is $IPC, empty, or
764 * null, so browse lists can work
766 if (share
== NULL
|| *share
== '\0' || strcmp(share
, "IPC$") == 0) {
767 port_try_first
= 139;
770 port_try_first
= 445;
774 c
->port
= port_try_first
;
776 status
= cli_connect(c
, server_n
, &ss
);
777 if (!NT_STATUS_IS_OK(status
)) {
779 /* First connection attempt failed. Try alternate port. */
780 c
->port
= port_try_next
;
782 status
= cli_connect(c
, server_n
, &ss
);
783 if (!NT_STATUS_IS_OK(status
)) {
790 if (!cli_session_request(c
, &calling
, &called
)) {
792 if (strcmp(called
.name
, "*SMBSERVER")) {
793 make_nmb_name(&called
, "*SMBSERVER", 0x20);
795 } else { /* Try one more time, but ensure we don't loop */
797 /* Only try this if server is an IP address ... */
799 if (is_ipaddress(server
) && !tried_reverse
) {
801 struct sockaddr_storage rem_ss
;
803 if (!interpret_string_addr(&rem_ss
, server
,
805 DEBUG(4, ("Could not convert IP address "
806 "%s to struct sockaddr_storage\n",
812 tried_reverse
++; /* Yuck */
814 if (name_status_find("*", 0, 0, &rem_ss
, remote_name
)) {
815 make_nmb_name(&called
, remote_name
, 0x20);
824 DEBUG(4,(" session request ok\n"));
826 if (!cli_negprot(c
)) {
832 username_used
= username
;
834 if (!NT_STATUS_IS_OK(cli_session_setup(c
, username_used
,
835 password
, strlen(password
),
836 password
, strlen(password
),
839 /* Failed. Try an anonymous login, if allowed by flags. */
842 if ((context
->flags
& SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON
) ||
843 !NT_STATUS_IS_OK(cli_session_setup(c
, username_used
,
854 DEBUG(4,(" session setup ok\n"));
856 if (!cli_send_tconX(c
, share
, "?????",
857 password
, strlen(password
)+1)) {
858 errno
= smbc_errno(context
, c
);
863 DEBUG(4,(" tconx ok\n"));
866 * Ok, we have got a nice connection
867 * Let's allocate a server structure.
870 srv
= SMB_MALLOC_P(SMBCSRV
);
878 srv
->dev
= (dev_t
)(str_checksum(server
) ^ str_checksum(share
));
879 srv
->no_pathinfo
= False
;
880 srv
->no_pathinfo2
= False
;
881 srv
->no_nt_session
= False
;
883 /* now add it to the cache (internal or external) */
884 /* Let the cache function set errno if it wants to */
886 if ((context
->callbacks
.add_cached_srv_fn
)(context
, srv
,
888 workgroup
, username
)) {
889 int saved_errno
= errno
;
890 DEBUG(3, (" Failed to add server to cache\n"));
898 DEBUG(2, ("Server connect ok: //%s/%s: %p\n",
899 server
, share
, srv
));
901 DLIST_ADD(context
->internal
->_servers
, srv
);
915 * Connect to a server for getting/setting attributes, possibly on an existing
916 * connection. This works similarly to smbc_server().
919 smbc_attr_server(SMBCCTX
*context
,
928 struct sockaddr_storage ss
;
929 struct cli_state
*ipc_cli
;
930 struct rpc_pipe_client
*pipe_hnd
;
932 SMBCSRV
*ipc_srv
=NULL
;
935 * See if we've already created this special connection. Reference
936 * our "special" share name '*IPC$', which is an impossible real share
937 * name due to the leading asterisk.
939 ipc_srv
= find_server(context
, server
, "*IPC$",
940 workgroup
, username
, password
);
943 /* We didn't find a cached connection. Get the password */
944 if (*password
== '\0') {
945 /* ... then retrieve it now. */
946 if (context
->internal
->_auth_fn_with_context
!= NULL
) {
947 (context
->internal
->_auth_fn_with_context
)(
950 workgroup
, sizeof(fstring
),
951 username
, sizeof(fstring
),
952 password
, sizeof(fstring
));
954 (context
->callbacks
.auth_fn
)(
956 workgroup
, sizeof(fstring
),
957 username
, sizeof(fstring
),
958 password
, sizeof(fstring
));
963 if (context
->flags
& SMB_CTX_FLAG_USE_KERBEROS
) {
964 flags
|= CLI_FULL_CONNECTION_USE_KERBEROS
;
968 nt_status
= cli_full_connection(&ipc_cli
,
969 global_myname(), server
,
970 &ss
, 0, "IPC$", "?????",
974 if (! NT_STATUS_IS_OK(nt_status
)) {
975 DEBUG(1,("cli_full_connection failed! (%s)\n",
976 nt_errstr(nt_status
)));
981 ipc_srv
= SMB_MALLOC_P(SMBCSRV
);
984 cli_shutdown(ipc_cli
);
988 ZERO_STRUCTP(ipc_srv
);
989 ipc_srv
->cli
= ipc_cli
;
992 pipe_hnd
= cli_rpc_pipe_open_noauth(ipc_srv
->cli
,
996 DEBUG(1, ("cli_nt_session_open fail!\n"));
998 cli_shutdown(ipc_srv
->cli
);
1004 * Some systems don't support
1005 * SEC_RIGHTS_MAXIMUM_ALLOWED, but NT sends 0x2000000
1006 * so we might as well do it too.
1009 nt_status
= rpccli_lsa_open_policy(
1011 ipc_srv
->cli
->mem_ctx
,
1013 GENERIC_EXECUTE_ACCESS
,
1016 if (!NT_STATUS_IS_OK(nt_status
)) {
1017 errno
= smbc_errno(context
, ipc_srv
->cli
);
1018 cli_shutdown(ipc_srv
->cli
);
1023 /* now add it to the cache (internal or external) */
1025 errno
= 0; /* let cache function set errno if it likes */
1026 if ((context
->callbacks
.add_cached_srv_fn
)(context
, ipc_srv
,
1031 DEBUG(3, (" Failed to add server to cache\n"));
1035 cli_shutdown(ipc_srv
->cli
);
1040 DLIST_ADD(context
->internal
->_servers
, ipc_srv
);
1047 * Routine to open() a file ...
1051 smbc_open_ctx(SMBCCTX
*context
,
1056 fstring server
, share
, user
, password
, workgroup
;
1059 struct cli_state
*targetcli
;
1060 SMBCSRV
*srv
= NULL
;
1061 SMBCFILE
*file
= NULL
;
1064 if (!context
|| !context
->internal
||
1065 !context
->internal
->_initialized
) {
1067 errno
= EINVAL
; /* Best I can think of ... */
1079 if (smbc_parse_path(context
, fname
,
1080 workgroup
, sizeof(workgroup
),
1081 server
, sizeof(server
),
1082 share
, sizeof(share
),
1085 password
, sizeof(password
),
1091 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
1093 srv
= smbc_server(context
, True
,
1094 server
, share
, workgroup
, user
, password
);
1098 if (errno
== EPERM
) errno
= EACCES
;
1099 return NULL
; /* smbc_server sets errno */
1103 /* Hmmm, the test for a directory is suspect here ... FIXME */
1105 if (strlen(path
) > 0 && path
[strlen(path
) - 1] == '\\') {
1112 file
= SMB_MALLOC_P(SMBCFILE
);
1123 /*d_printf(">>>open: resolving %s\n", path);*/
1124 if (!cli_resolve_path( "", srv
->cli
, path
, &targetcli
, targetpath
))
1126 d_printf("Could not resolve %s\n", path
);
1130 /*d_printf(">>>open: resolved %s as %s\n", path, targetpath);*/
1132 if ((fd
= cli_open(targetcli
, targetpath
, flags
,
1133 context
->internal
->_share_mode
)) < 0) {
1135 /* Handle the error ... */
1138 errno
= smbc_errno(context
, targetcli
);
1143 /* Fill in file struct */
1146 file
->fname
= SMB_STRDUP(fname
);
1151 DLIST_ADD(context
->internal
->_files
, file
);
1154 * If the file was opened in O_APPEND mode, all write
1155 * operations should be appended to the file. To do that,
1156 * though, using this protocol, would require a getattrE()
1157 * call for each and every write, to determine where the end
1158 * of the file is. (There does not appear to be an append flag
1159 * in the protocol.) Rather than add all of that overhead of
1160 * retrieving the current end-of-file offset prior to each
1161 * write operation, we'll assume that most append operations
1162 * will continuously write, so we'll just set the offset to
1163 * the end of the file now and hope that's adequate.
1165 * Note to self: If this proves inadequate, and O_APPEND
1166 * should, in some cases, be forced for each write, add a
1167 * field in the context options structure, for
1168 * "strict_append_mode" which would select between the current
1169 * behavior (if FALSE) or issuing a getattrE() prior to each
1170 * write and forcing the write to the end of the file (if
1171 * TRUE). Adding that capability will likely require adding
1172 * an "append" flag into the _SMBCFILE structure to track
1173 * whether a file was opened in O_APPEND mode. -- djl
1175 if (flags
& O_APPEND
) {
1176 if (smbc_lseek_ctx(context
, file
, 0, SEEK_END
) < 0) {
1177 (void) smbc_close_ctx(context
, file
);
1187 /* Check if opendir needed ... */
1192 eno
= smbc_errno(context
, srv
->cli
);
1193 file
= (context
->opendir
)(context
, fname
);
1194 if (!file
) errno
= eno
;
1199 errno
= EINVAL
; /* FIXME, correct errno ? */
1205 * Routine to create a file
1208 static int creat_bits
= O_WRONLY
| O_CREAT
| O_TRUNC
; /* FIXME: Do we need this */
1211 smbc_creat_ctx(SMBCCTX
*context
,
1216 if (!context
|| !context
->internal
||
1217 !context
->internal
->_initialized
) {
1224 return smbc_open_ctx(context
, path
, creat_bits
, mode
);
1228 * Routine to read() a file ...
1232 smbc_read_ctx(SMBCCTX
*context
,
1238 fstring server
, share
, user
, password
;
1239 pstring path
, targetpath
;
1240 struct cli_state
*targetcli
;
1245 * Compiler bug (possibly) -- gcc (GCC) 3.3.5 (Debian 1:3.3.5-2) --
1246 * appears to pass file->offset (which is type off_t) differently than
1247 * a local variable of type off_t. Using local variable "offset" in
1248 * the call to cli_read() instead of file->offset fixes a problem
1249 * retrieving data at an offset greater than 4GB.
1253 if (!context
|| !context
->internal
||
1254 !context
->internal
->_initialized
) {
1261 DEBUG(4, ("smbc_read(%p, %d)\n", file
, (int)count
));
1263 if (!file
|| !DLIST_CONTAINS(context
->internal
->_files
, file
)) {
1270 offset
= file
->offset
;
1272 /* Check that the buffer exists ... */
1281 /*d_printf(">>>read: parsing %s\n", file->fname);*/
1282 if (smbc_parse_path(context
, file
->fname
,
1284 server
, sizeof(server
),
1285 share
, sizeof(share
),
1288 password
, sizeof(password
),
1294 /*d_printf(">>>read: resolving %s\n", path);*/
1295 if (!cli_resolve_path("", file
->srv
->cli
, path
,
1296 &targetcli
, targetpath
))
1298 d_printf("Could not resolve %s\n", path
);
1301 /*d_printf(">>>fstat: resolved path as %s\n", targetpath);*/
1303 ret
= cli_read(targetcli
, file
->cli_fd
, (char *)buf
, offset
, count
);
1307 errno
= smbc_errno(context
, targetcli
);
1312 file
->offset
+= ret
;
1314 DEBUG(4, (" --> %d\n", ret
));
1316 return ret
; /* Success, ret bytes of data ... */
1321 * Routine to write() a file ...
1325 smbc_write_ctx(SMBCCTX
*context
,
1332 fstring server
, share
, user
, password
;
1333 pstring path
, targetpath
;
1334 struct cli_state
*targetcli
;
1336 /* First check all pointers before dereferencing them */
1338 if (!context
|| !context
->internal
||
1339 !context
->internal
->_initialized
) {
1346 if (!file
|| !DLIST_CONTAINS(context
->internal
->_files
, file
)) {
1353 /* Check that the buffer exists ... */
1362 offset
= file
->offset
; /* See "offset" comment in smbc_read_ctx() */
1364 /*d_printf(">>>write: parsing %s\n", file->fname);*/
1365 if (smbc_parse_path(context
, file
->fname
,
1367 server
, sizeof(server
),
1368 share
, sizeof(share
),
1371 password
, sizeof(password
),
1377 /*d_printf(">>>write: resolving %s\n", path);*/
1378 if (!cli_resolve_path("", file
->srv
->cli
, path
,
1379 &targetcli
, targetpath
))
1381 d_printf("Could not resolve %s\n", path
);
1384 /*d_printf(">>>write: resolved path as %s\n", targetpath);*/
1387 ret
= cli_write(targetcli
, file
->cli_fd
, 0, (char *)buf
, offset
, count
);
1391 errno
= smbc_errno(context
, targetcli
);
1396 file
->offset
+= ret
;
1398 return ret
; /* Success, 0 bytes of data ... */
1402 * Routine to close() a file ...
1406 smbc_close_ctx(SMBCCTX
*context
,
1410 fstring server
, share
, user
, password
;
1411 pstring path
, targetpath
;
1412 struct cli_state
*targetcli
;
1414 if (!context
|| !context
->internal
||
1415 !context
->internal
->_initialized
) {
1422 if (!file
|| !DLIST_CONTAINS(context
->internal
->_files
, file
)) {
1432 return (context
->closedir
)(context
, file
);
1436 /*d_printf(">>>close: parsing %s\n", file->fname);*/
1437 if (smbc_parse_path(context
, file
->fname
,
1439 server
, sizeof(server
),
1440 share
, sizeof(share
),
1443 password
, sizeof(password
),
1449 /*d_printf(">>>close: resolving %s\n", path);*/
1450 if (!cli_resolve_path("", file
->srv
->cli
, path
,
1451 &targetcli
, targetpath
))
1453 d_printf("Could not resolve %s\n", path
);
1456 /*d_printf(">>>close: resolved path as %s\n", targetpath);*/
1458 if (!cli_close(targetcli
, file
->cli_fd
)) {
1460 DEBUG(3, ("cli_close failed on %s. purging server.\n",
1462 /* Deallocate slot and remove the server
1463 * from the server cache if unused */
1464 errno
= smbc_errno(context
, targetcli
);
1466 DLIST_REMOVE(context
->internal
->_files
, file
);
1467 SAFE_FREE(file
->fname
);
1469 (context
->callbacks
.remove_unused_server_fn
)(context
, srv
);
1475 DLIST_REMOVE(context
->internal
->_files
, file
);
1476 SAFE_FREE(file
->fname
);
1483 * Get info from an SMB server on a file. Use a qpathinfo call first
1484 * and if that fails, use getatr, as Win95 sometimes refuses qpathinfo
1487 smbc_getatr(SMBCCTX
* context
,
1492 struct timespec
*create_time_ts
,
1493 struct timespec
*access_time_ts
,
1494 struct timespec
*write_time_ts
,
1495 struct timespec
*change_time_ts
,
1500 struct cli_state
*targetcli
;
1503 if (!context
|| !context
->internal
||
1504 !context
->internal
->_initialized
) {
1511 /* path fixup for . and .. */
1512 if (strequal(path
, ".") || strequal(path
, ".."))
1513 pstrcpy(fixedpath
, "\\");
1516 pstrcpy(fixedpath
, path
);
1517 trim_string(fixedpath
, NULL
, "\\..");
1518 trim_string(fixedpath
, NULL
, "\\.");
1520 DEBUG(4,("smbc_getatr: sending qpathinfo\n"));
1522 if (!cli_resolve_path( "", srv
->cli
, fixedpath
, &targetcli
, targetpath
))
1524 d_printf("Couldn't resolve %s\n", path
);
1528 if (!srv
->no_pathinfo2
&&
1529 cli_qpathinfo2(targetcli
, targetpath
,
1538 /* if this is NT then don't bother with the getatr */
1539 if (targetcli
->capabilities
& CAP_NT_SMBS
) {
1544 if (cli_getatr(targetcli
, targetpath
, mode
, size
, &write_time
)) {
1546 struct timespec w_time_ts
;
1548 w_time_ts
= convert_time_t_to_timespec(write_time
);
1550 if (write_time_ts
!= NULL
) {
1551 *write_time_ts
= w_time_ts
;
1554 if (create_time_ts
!= NULL
) {
1555 *create_time_ts
= w_time_ts
;
1558 if (access_time_ts
!= NULL
) {
1559 *access_time_ts
= w_time_ts
;
1562 if (change_time_ts
!= NULL
) {
1563 *change_time_ts
= w_time_ts
;
1566 srv
->no_pathinfo2
= True
;
1576 * Set file info on an SMB server. Use setpathinfo call first. If that
1577 * fails, use setattrE..
1579 * Access and modification time parameters are always used and must be
1580 * provided. Create time, if zero, will be determined from the actual create
1581 * time of the file. If non-zero, the create time will be set as well.
1583 * "mode" (attributes) parameter may be set to -1 if it is not to be set.
1586 smbc_setatr(SMBCCTX
* context
, SMBCSRV
*srv
, char *path
,
1597 * First, try setpathinfo (if qpathinfo succeeded), for it is the
1598 * modern function for "new code" to be using, and it works given a
1599 * filename rather than requiring that the file be opened to have its
1600 * attributes manipulated.
1602 if (srv
->no_pathinfo
||
1603 ! cli_setpathinfo(srv
->cli
, path
,
1611 * setpathinfo is not supported; go to plan B.
1613 * cli_setatr() does not work on win98, and it also doesn't
1614 * support setting the access time (only the modification
1615 * time), so in all cases, we open the specified file and use
1616 * cli_setattrE() which should work on all OS versions, and
1617 * supports both times.
1620 /* Don't try {q,set}pathinfo() again, with this server */
1621 srv
->no_pathinfo
= True
;
1624 if ((fd
= cli_open(srv
->cli
, path
, O_RDWR
, DENY_NONE
)) < 0) {
1626 errno
= smbc_errno(context
, srv
->cli
);
1630 /* Set the new attributes */
1631 ret
= cli_setattrE(srv
->cli
, fd
,
1636 /* Close the file */
1637 cli_close(srv
->cli
, fd
);
1640 * Unfortunately, setattrE() doesn't have a provision for
1641 * setting the access mode (attributes). We'll have to try
1642 * cli_setatr() for that, and with only this parameter, it
1643 * seems to work on win98.
1645 if (ret
&& mode
!= (uint16
) -1) {
1646 ret
= cli_setatr(srv
->cli
, path
, mode
, 0);
1650 errno
= smbc_errno(context
, srv
->cli
);
1659 * Routine to unlink() a file
1663 smbc_unlink_ctx(SMBCCTX
*context
,
1666 fstring server
, share
, user
, password
, workgroup
;
1667 pstring path
, targetpath
;
1668 struct cli_state
*targetcli
;
1669 SMBCSRV
*srv
= NULL
;
1671 if (!context
|| !context
->internal
||
1672 !context
->internal
->_initialized
) {
1674 errno
= EINVAL
; /* Best I can think of ... */
1686 if (smbc_parse_path(context
, fname
,
1687 workgroup
, sizeof(workgroup
),
1688 server
, sizeof(server
),
1689 share
, sizeof(share
),
1692 password
, sizeof(password
),
1698 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
1700 srv
= smbc_server(context
, True
,
1701 server
, share
, workgroup
, user
, password
);
1705 return -1; /* smbc_server sets errno */
1709 /*d_printf(">>>unlink: resolving %s\n", path);*/
1710 if (!cli_resolve_path( "", srv
->cli
, path
, &targetcli
, targetpath
))
1712 d_printf("Could not resolve %s\n", path
);
1715 /*d_printf(">>>unlink: resolved path as %s\n", targetpath);*/
1717 if (!cli_unlink(targetcli
, targetpath
)) {
1719 errno
= smbc_errno(context
, targetcli
);
1721 if (errno
== EACCES
) { /* Check if the file is a directory */
1726 struct timespec write_time_ts
;
1727 struct timespec access_time_ts
;
1728 struct timespec change_time_ts
;
1731 if (!smbc_getatr(context
, srv
, path
, &mode
, &size
,
1738 /* Hmmm, bad error ... What? */
1740 errno
= smbc_errno(context
, targetcli
);
1746 if (IS_DOS_DIR(mode
))
1749 errno
= saverr
; /* Restore this */
1758 return 0; /* Success ... */
1763 * Routine to rename() a file
1767 smbc_rename_ctx(SMBCCTX
*ocontext
,
1783 pstring targetpath1
;
1784 pstring targetpath2
;
1785 struct cli_state
*targetcli1
;
1786 struct cli_state
*targetcli2
;
1787 SMBCSRV
*srv
= NULL
;
1789 if (!ocontext
|| !ncontext
||
1790 !ocontext
->internal
|| !ncontext
->internal
||
1791 !ocontext
->internal
->_initialized
||
1792 !ncontext
->internal
->_initialized
) {
1794 errno
= EINVAL
; /* Best I can think of ... */
1799 if (!oname
|| !nname
) {
1806 DEBUG(4, ("smbc_rename(%s,%s)\n", oname
, nname
));
1808 smbc_parse_path(ocontext
, oname
,
1809 workgroup
, sizeof(workgroup
),
1810 server1
, sizeof(server1
),
1811 share1
, sizeof(share1
),
1812 path1
, sizeof(path1
),
1813 user1
, sizeof(user1
),
1814 password1
, sizeof(password1
),
1817 if (user1
[0] == (char)0) fstrcpy(user1
, ocontext
->user
);
1819 smbc_parse_path(ncontext
, nname
,
1821 server2
, sizeof(server2
),
1822 share2
, sizeof(share2
),
1823 path2
, sizeof(path2
),
1824 user2
, sizeof(user2
),
1825 password2
, sizeof(password2
),
1828 if (user2
[0] == (char)0) fstrcpy(user2
, ncontext
->user
);
1830 if (strcmp(server1
, server2
) || strcmp(share1
, share2
) ||
1831 strcmp(user1
, user2
)) {
1833 /* Can't rename across file systems, or users?? */
1840 srv
= smbc_server(ocontext
, True
,
1841 server1
, share1
, workgroup
, user1
, password1
);
1848 /*d_printf(">>>rename: resolving %s\n", path1);*/
1849 if (!cli_resolve_path( "", srv
->cli
, path1
, &targetcli1
, targetpath1
))
1851 d_printf("Could not resolve %s\n", path1
);
1854 /*d_printf(">>>rename: resolved path as %s\n", targetpath1);*/
1855 /*d_printf(">>>rename: resolving %s\n", path2);*/
1856 if (!cli_resolve_path( "", srv
->cli
, path2
, &targetcli2
, targetpath2
))
1858 d_printf("Could not resolve %s\n", path2
);
1861 /*d_printf(">>>rename: resolved path as %s\n", targetpath2);*/
1863 if (strcmp(targetcli1
->desthost
, targetcli2
->desthost
) ||
1864 strcmp(targetcli1
->share
, targetcli2
->share
))
1866 /* can't rename across file systems */
1872 if (!cli_rename(targetcli1
, targetpath1
, targetpath2
)) {
1873 int eno
= smbc_errno(ocontext
, targetcli1
);
1875 if (eno
!= EEXIST
||
1876 !cli_unlink(targetcli1
, targetpath2
) ||
1877 !cli_rename(targetcli1
, targetpath1
, targetpath2
)) {
1885 return 0; /* Success */
1890 * A routine to lseek() a file
1894 smbc_lseek_ctx(SMBCCTX
*context
,
1900 fstring server
, share
, user
, password
;
1901 pstring path
, targetpath
;
1902 struct cli_state
*targetcli
;
1904 if (!context
|| !context
->internal
||
1905 !context
->internal
->_initialized
) {
1912 if (!file
|| !DLIST_CONTAINS(context
->internal
->_files
, file
)) {
1922 return -1; /* Can't lseek a dir ... */
1928 file
->offset
= offset
;
1932 file
->offset
+= offset
;
1936 /*d_printf(">>>lseek: parsing %s\n", file->fname);*/
1937 if (smbc_parse_path(context
, file
->fname
,
1939 server
, sizeof(server
),
1940 share
, sizeof(share
),
1943 password
, sizeof(password
),
1950 /*d_printf(">>>lseek: resolving %s\n", path);*/
1951 if (!cli_resolve_path("", file
->srv
->cli
, path
,
1952 &targetcli
, targetpath
))
1954 d_printf("Could not resolve %s\n", path
);
1957 /*d_printf(">>>lseek: resolved path as %s\n", targetpath);*/
1959 if (!cli_qfileinfo(targetcli
, file
->cli_fd
, NULL
,
1960 &size
, NULL
, NULL
, NULL
, NULL
, NULL
))
1962 SMB_OFF_T b_size
= size
;
1963 if (!cli_getattrE(targetcli
, file
->cli_fd
,
1964 NULL
, &b_size
, NULL
, NULL
, NULL
))
1971 file
->offset
= size
+ offset
;
1980 return file
->offset
;
1985 * Generate an inode number from file name for those things that need it
1989 smbc_inode(SMBCCTX
*context
,
1993 if (!context
|| !context
->internal
||
1994 !context
->internal
->_initialized
) {
2001 if (!*name
) return 2; /* FIXME, why 2 ??? */
2002 return (ino_t
)str_checksum(name
);
2007 * Routine to put basic stat info into a stat structure ... Used by stat and
2012 smbc_setup_stat(SMBCCTX
*context
,
2021 if (IS_DOS_DIR(mode
)) {
2022 st
->st_mode
= SMBC_DIR_MODE
;
2024 st
->st_mode
= SMBC_FILE_MODE
;
2027 if (IS_DOS_ARCHIVE(mode
)) st
->st_mode
|= S_IXUSR
;
2028 if (IS_DOS_SYSTEM(mode
)) st
->st_mode
|= S_IXGRP
;
2029 if (IS_DOS_HIDDEN(mode
)) st
->st_mode
|= S_IXOTH
;
2030 if (!IS_DOS_READONLY(mode
)) st
->st_mode
|= S_IWUSR
;
2033 #ifdef HAVE_STAT_ST_BLKSIZE
2034 st
->st_blksize
= 512;
2036 #ifdef HAVE_STAT_ST_BLOCKS
2037 st
->st_blocks
= (size
+511)/512;
2039 st
->st_uid
= getuid();
2040 st
->st_gid
= getgid();
2042 if (IS_DOS_DIR(mode
)) {
2048 if (st
->st_ino
== 0) {
2049 st
->st_ino
= smbc_inode(context
, fname
);
2052 return True
; /* FIXME: Is this needed ? */
2057 * Routine to stat a file given a name
2061 smbc_stat_ctx(SMBCCTX
*context
,
2072 struct timespec write_time_ts
;
2073 struct timespec access_time_ts
;
2074 struct timespec change_time_ts
;
2079 if (!context
|| !context
->internal
||
2080 !context
->internal
->_initialized
) {
2082 errno
= EINVAL
; /* Best I can think of ... */
2094 DEBUG(4, ("smbc_stat(%s)\n", fname
));
2096 if (smbc_parse_path(context
, fname
,
2097 workgroup
, sizeof(workgroup
),
2098 server
, sizeof(server
),
2099 share
, sizeof(share
),
2102 password
, sizeof(password
),
2108 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
2110 srv
= smbc_server(context
, True
,
2111 server
, share
, workgroup
, user
, password
);
2114 return -1; /* errno set by smbc_server */
2117 if (!smbc_getatr(context
, srv
, path
, &mode
, &size
,
2124 errno
= smbc_errno(context
, srv
->cli
);
2131 smbc_setup_stat(context
, st
, path
, size
, mode
);
2133 set_atimespec(st
, access_time_ts
);
2134 set_ctimespec(st
, change_time_ts
);
2135 set_mtimespec(st
, write_time_ts
);
2136 st
->st_dev
= srv
->dev
;
2143 * Routine to stat a file given an fd
2147 smbc_fstat_ctx(SMBCCTX
*context
,
2151 struct timespec change_time_ts
;
2152 struct timespec access_time_ts
;
2153 struct timespec write_time_ts
;
2162 struct cli_state
*targetcli
;
2165 if (!context
|| !context
->internal
||
2166 !context
->internal
->_initialized
) {
2173 if (!file
|| !DLIST_CONTAINS(context
->internal
->_files
, file
)) {
2182 return (context
->fstatdir
)(context
, file
, st
);
2186 /*d_printf(">>>fstat: parsing %s\n", file->fname);*/
2187 if (smbc_parse_path(context
, file
->fname
,
2189 server
, sizeof(server
),
2190 share
, sizeof(share
),
2193 password
, sizeof(password
),
2199 /*d_printf(">>>fstat: resolving %s\n", path);*/
2200 if (!cli_resolve_path("", file
->srv
->cli
, path
,
2201 &targetcli
, targetpath
))
2203 d_printf("Could not resolve %s\n", path
);
2206 /*d_printf(">>>fstat: resolved path as %s\n", targetpath);*/
2208 if (!cli_qfileinfo(targetcli
, file
->cli_fd
, &mode
, &size
,
2215 time_t change_time
, access_time
, write_time
;
2217 if (!cli_getattrE(targetcli
, file
->cli_fd
, &mode
, &size
,
2218 &change_time
, &access_time
, &write_time
)) {
2224 change_time_ts
= convert_time_t_to_timespec(change_time
);
2225 access_time_ts
= convert_time_t_to_timespec(access_time
);
2226 write_time_ts
= convert_time_t_to_timespec(write_time
);
2231 smbc_setup_stat(context
, st
, file
->fname
, size
, mode
);
2233 set_atimespec(st
, access_time_ts
);
2234 set_ctimespec(st
, change_time_ts
);
2235 set_mtimespec(st
, write_time_ts
);
2236 st
->st_dev
= file
->srv
->dev
;
2243 * Routine to open a directory
2244 * We accept the URL syntax explained in smbc_parse_path(), above.
2248 smbc_remove_dir(SMBCFILE
*dir
)
2250 struct smbc_dir_list
*d
,*f
;
2257 SAFE_FREE(f
->dirent
);
2262 dir
->dir_list
= dir
->dir_end
= dir
->dir_next
= NULL
;
2267 add_dirent(SMBCFILE
*dir
,
2269 const char *comment
,
2272 struct smbc_dirent
*dirent
;
2274 int name_length
= (name
== NULL
? 0 : strlen(name
));
2275 int comment_len
= (comment
== NULL
? 0 : strlen(comment
));
2278 * Allocate space for the dirent, which must be increased by the
2279 * size of the name and the comment and 1 each for the null terminator.
2282 size
= sizeof(struct smbc_dirent
) + name_length
+ comment_len
+ 2;
2284 dirent
= (struct smbc_dirent
*)SMB_MALLOC(size
);
2288 dir
->dir_error
= ENOMEM
;
2293 ZERO_STRUCTP(dirent
);
2295 if (dir
->dir_list
== NULL
) {
2297 dir
->dir_list
= SMB_MALLOC_P(struct smbc_dir_list
);
2298 if (!dir
->dir_list
) {
2301 dir
->dir_error
= ENOMEM
;
2305 ZERO_STRUCTP(dir
->dir_list
);
2307 dir
->dir_end
= dir
->dir_next
= dir
->dir_list
;
2311 dir
->dir_end
->next
= SMB_MALLOC_P(struct smbc_dir_list
);
2313 if (!dir
->dir_end
->next
) {
2316 dir
->dir_error
= ENOMEM
;
2320 ZERO_STRUCTP(dir
->dir_end
->next
);
2322 dir
->dir_end
= dir
->dir_end
->next
;
2325 dir
->dir_end
->next
= NULL
;
2326 dir
->dir_end
->dirent
= dirent
;
2328 dirent
->smbc_type
= type
;
2329 dirent
->namelen
= name_length
;
2330 dirent
->commentlen
= comment_len
;
2331 dirent
->dirlen
= size
;
2334 * dirent->namelen + 1 includes the null (no null termination needed)
2335 * Ditto for dirent->commentlen.
2336 * The space for the two null bytes was allocated.
2338 strncpy(dirent
->name
, (name
?name
:""), dirent
->namelen
+ 1);
2339 dirent
->comment
= (char *)(&dirent
->name
+ dirent
->namelen
+ 1);
2340 strncpy(dirent
->comment
, (comment
?comment
:""), dirent
->commentlen
+ 1);
2347 list_unique_wg_fn(const char *name
,
2349 const char *comment
,
2352 SMBCFILE
*dir
= (SMBCFILE
*)state
;
2353 struct smbc_dir_list
*dir_list
;
2354 struct smbc_dirent
*dirent
;
2358 dirent_type
= dir
->dir_type
;
2360 if (add_dirent(dir
, name
, comment
, dirent_type
) < 0) {
2362 /* An error occurred, what do we do? */
2363 /* FIXME: Add some code here */
2366 /* Point to the one just added */
2367 dirent
= dir
->dir_end
->dirent
;
2369 /* See if this was a duplicate */
2370 for (dir_list
= dir
->dir_list
;
2371 dir_list
!= dir
->dir_end
;
2372 dir_list
= dir_list
->next
) {
2374 strcmp(dir_list
->dirent
->name
, dirent
->name
) == 0) {
2375 /* Duplicate. End end of list need to be removed. */
2379 if (do_remove
&& dir_list
->next
== dir
->dir_end
) {
2380 /* Found the end of the list. Remove it. */
2381 dir
->dir_end
= dir_list
;
2382 free(dir_list
->next
);
2384 dir_list
->next
= NULL
;
2391 list_fn(const char *name
,
2393 const char *comment
,
2396 SMBCFILE
*dir
= (SMBCFILE
*)state
;
2400 * We need to process the type a little ...
2402 * Disk share = 0x00000000
2403 * Print share = 0x00000001
2404 * Comms share = 0x00000002 (obsolete?)
2405 * IPC$ share = 0x00000003
2407 * administrative shares:
2408 * ADMIN$, IPC$, C$, D$, E$ ... are type |= 0x80000000
2411 if (dir
->dir_type
== SMBC_FILE_SHARE
) {
2414 case 0 | 0x80000000:
2416 dirent_type
= SMBC_FILE_SHARE
;
2420 dirent_type
= SMBC_PRINTER_SHARE
;
2424 dirent_type
= SMBC_COMMS_SHARE
;
2427 case 3 | 0x80000000:
2429 dirent_type
= SMBC_IPC_SHARE
;
2433 dirent_type
= SMBC_FILE_SHARE
; /* FIXME, error? */
2438 dirent_type
= dir
->dir_type
;
2441 if (add_dirent(dir
, name
, comment
, dirent_type
) < 0) {
2443 /* An error occurred, what do we do? */
2444 /* FIXME: Add some code here */
2450 dir_list_fn(const char *mnt
,
2456 if (add_dirent((SMBCFILE
*)state
, finfo
->name
, "",
2457 (finfo
->mode
&aDIR
?SMBC_DIR
:SMBC_FILE
)) < 0) {
2459 /* Handle an error ... */
2461 /* FIXME: Add some code ... */
2468 net_share_enum_rpc(struct cli_state
*cli
,
2469 void (*fn
)(const char *name
,
2471 const char *comment
,
2478 uint32 info_level
= 1;
2479 uint32 preferred_len
= 0xffffffff;
2481 SRV_SHARE_INFO_CTR ctr
;
2483 fstring comment
= "";
2485 struct rpc_pipe_client
*pipe_hnd
;
2488 /* Open the server service pipe */
2489 pipe_hnd
= cli_rpc_pipe_open_noauth(cli
, PI_SRVSVC
, &nt_status
);
2491 DEBUG(1, ("net_share_enum_rpc pipe open fail!\n"));
2495 /* Allocate a context for parsing and for the entries in "ctr" */
2496 mem_ctx
= talloc_init("libsmbclient: net_share_enum_rpc");
2497 if (mem_ctx
== NULL
) {
2498 DEBUG(0, ("out of memory for net_share_enum_rpc!\n"));
2499 cli_rpc_pipe_close(pipe_hnd
);
2503 /* Issue the NetShareEnum RPC call and retrieve the response */
2504 init_enum_hnd(&enum_hnd
, 0);
2505 result
= rpccli_srvsvc_net_share_enum(pipe_hnd
,
2512 /* Was it successful? */
2513 if (!W_ERROR_IS_OK(result
) || ctr
.num_entries
== 0) {
2514 /* Nope. Go clean up. */
2518 /* For each returned entry... */
2519 for (i
= 0; i
< ctr
.num_entries
; i
++) {
2521 /* pull out the share name */
2522 rpcstr_pull_unistr2_fstring(
2523 name
, &ctr
.share
.info1
[i
].info_1_str
.uni_netname
);
2525 /* pull out the share's comment */
2526 rpcstr_pull_unistr2_fstring(
2527 comment
, &ctr
.share
.info1
[i
].info_1_str
.uni_remark
);
2529 /* Get the type value */
2530 type
= ctr
.share
.info1
[i
].info_1
.type
;
2532 /* Add this share to the list */
2533 (*fn
)(name
, type
, comment
, state
);
2537 /* Close the server service pipe */
2538 cli_rpc_pipe_close(pipe_hnd
);
2540 /* Free all memory which was allocated for this request */
2541 TALLOC_FREE(mem_ctx
);
2543 /* Tell 'em if it worked */
2544 return W_ERROR_IS_OK(result
) ? 0 : -1;
2550 smbc_opendir_ctx(SMBCCTX
*context
,
2554 fstring server
, share
, user
, password
, options
;
2559 SMBCSRV
*srv
= NULL
;
2560 SMBCFILE
*dir
= NULL
;
2561 struct _smbc_callbacks
*cb
;
2562 struct sockaddr_storage rem_ss
;
2564 if (!context
|| !context
->internal
||
2565 !context
->internal
->_initialized
) {
2566 DEBUG(4, ("no valid context\n"));
2567 errno
= EINVAL
+ 8192;
2573 DEBUG(4, ("no valid fname\n"));
2574 errno
= EINVAL
+ 8193;
2578 if (smbc_parse_path(context
, fname
,
2579 workgroup
, sizeof(workgroup
),
2580 server
, sizeof(server
),
2581 share
, sizeof(share
),
2584 password
, sizeof(password
),
2585 options
, sizeof(options
))) {
2586 DEBUG(4, ("no valid path\n"));
2587 errno
= EINVAL
+ 8194;
2591 DEBUG(4, ("parsed path: fname='%s' server='%s' share='%s' "
2592 "path='%s' options='%s'\n",
2593 fname
, server
, share
, path
, options
));
2595 /* Ensure the options are valid */
2596 if (smbc_check_options(server
, share
, path
, options
)) {
2597 DEBUG(4, ("unacceptable options (%s)\n", options
));
2598 errno
= EINVAL
+ 8195;
2602 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
2604 dir
= SMB_MALLOC_P(SMBCFILE
);
2614 dir
->fname
= SMB_STRDUP(fname
);
2618 dir
->dir_list
= dir
->dir_next
= dir
->dir_end
= NULL
;
2620 if (server
[0] == (char)0) {
2625 struct ip_service
*ip_list
;
2626 struct ip_service server_addr
;
2627 struct user_auth_info u_info
;
2628 struct cli_state
*cli
;
2630 if (share
[0] != (char)0 || path
[0] != (char)0) {
2632 errno
= EINVAL
+ 8196;
2634 SAFE_FREE(dir
->fname
);
2640 /* Determine how many local master browsers to query */
2641 max_lmb_count
= (context
->options
.browse_max_lmb_count
== 0
2643 : context
->options
.browse_max_lmb_count
);
2645 pstrcpy(u_info
.username
, user
);
2646 pstrcpy(u_info
.password
, password
);
2649 * We have server and share and path empty but options
2650 * requesting that we scan all master browsers for their list
2651 * of workgroups/domains. This implies that we must first try
2652 * broadcast queries to find all master browsers, and if that
2653 * doesn't work, then try our other methods which return only
2654 * a single master browser.
2658 if (!NT_STATUS_IS_OK(name_resolve_bcast(MSBROWSE
, 1, &ip_list
,
2664 if (!find_master_ip(workgroup
, &server_addr
.ss
)) {
2667 SAFE_FREE(dir
->fname
);
2674 ip_list
= (struct ip_service
*)memdup(
2675 &server_addr
, sizeof(server_addr
));
2676 if (ip_list
== NULL
) {
2683 for (i
= 0; i
< count
&& i
< max_lmb_count
; i
++) {
2684 char addr
[INET6_ADDRSTRLEN
];
2685 print_sockaddr(addr
, sizeof(addr
), &ip_list
[i
].ss
);
2686 DEBUG(99, ("Found master browser %d of %d: %s\n",
2687 i
+1, MAX(count
, max_lmb_count
),
2690 cli
= get_ipc_connect_master_ip(&ip_list
[i
],
2691 workgroup
, &u_info
);
2692 /* cli == NULL is the master browser refused to talk or
2693 could not be found */
2697 fstrcpy(server
, cli
->desthost
);
2700 DEBUG(4, ("using workgroup %s %s\n",
2701 workgroup
, server
));
2704 * For each returned master browser IP address, get a
2705 * connection to IPC$ on the server if we do not
2706 * already have one, and determine the
2707 * workgroups/domains that it knows about.
2710 srv
= smbc_server(context
, True
, server
, "IPC$",
2711 workgroup
, user
, password
);
2717 dir
->dir_type
= SMBC_WORKGROUP
;
2719 /* Now, list the stuff ... */
2721 if (!cli_NetServerEnum(srv
->cli
,
2723 SV_TYPE_DOMAIN_ENUM
,
2733 * Server not an empty string ... Check the rest and see what
2736 if (*share
== '\0') {
2737 if (*path
!= '\0') {
2739 /* Should not have empty share with path */
2740 errno
= EINVAL
+ 8197;
2742 SAFE_FREE(dir
->fname
);
2750 * We don't know if <server> is really a server name
2751 * or is a workgroup/domain name. If we already have
2752 * a server structure for it, we'll use it.
2753 * Otherwise, check to see if <server><1D>,
2754 * <server><1B>, or <server><20> translates. We check
2755 * to see if <server> is an IP address first.
2759 * See if we have an existing server. Do not
2760 * establish a connection if one does not already
2763 srv
= smbc_server(context
, False
, server
, "IPC$",
2764 workgroup
, user
, password
);
2767 * If no existing server and not an IP addr, look for
2771 !is_ipaddress(server
) &&
2772 (resolve_name(server
, &rem_ss
, 0x1d) || /* LMB */
2773 resolve_name(server
, &rem_ss
, 0x1b) )) { /* DMB */
2777 dir
->dir_type
= SMBC_SERVER
;
2780 * Get the backup list ...
2782 if (!name_status_find(server
, 0, 0,
2783 &rem_ss
, buserver
)) {
2785 DEBUG(0, ("Could not get name of "
2786 "local/domain master browser "
2787 "for server %s\n", server
));
2789 SAFE_FREE(dir
->fname
);
2798 * Get a connection to IPC$ on the server if
2799 * we do not already have one
2801 srv
= smbc_server(context
, True
,
2803 workgroup
, user
, password
);
2805 DEBUG(0, ("got no contact to IPC$\n"));
2807 SAFE_FREE(dir
->fname
);
2816 /* Now, list the servers ... */
2817 if (!cli_NetServerEnum(srv
->cli
, server
,
2818 0x0000FFFE, list_fn
,
2822 SAFE_FREE(dir
->fname
);
2828 (resolve_name(server
, &rem_ss
, 0x20))) {
2830 /* If we hadn't found the server, get one now */
2832 srv
= smbc_server(context
, True
,
2840 SAFE_FREE(dir
->fname
);
2847 dir
->dir_type
= SMBC_FILE_SHARE
;
2850 /* List the shares ... */
2852 if (net_share_enum_rpc(
2855 (void *) dir
) < 0 &&
2861 errno
= cli_errno(srv
->cli
);
2863 SAFE_FREE(dir
->fname
);
2870 /* Neither the workgroup nor server exists */
2871 errno
= ECONNREFUSED
;
2873 SAFE_FREE(dir
->fname
);
2882 * The server and share are specified ... work from
2886 struct cli_state
*targetcli
;
2888 /* We connect to the server and list the directory */
2889 dir
->dir_type
= SMBC_FILE_SHARE
;
2891 srv
= smbc_server(context
, True
, server
, share
,
2892 workgroup
, user
, password
);
2897 SAFE_FREE(dir
->fname
);
2906 /* Now, list the files ... */
2908 p
= path
+ strlen(path
);
2909 pstrcat(path
, "\\*");
2911 if (!cli_resolve_path("", srv
->cli
, path
,
2912 &targetcli
, targetpath
))
2914 d_printf("Could not resolve %s\n", path
);
2916 SAFE_FREE(dir
->fname
);
2922 if (cli_list(targetcli
, targetpath
,
2923 aDIR
| aSYSTEM
| aHIDDEN
,
2924 dir_list_fn
, (void *)dir
) < 0) {
2927 SAFE_FREE(dir
->fname
);
2930 saved_errno
= smbc_errno(context
, targetcli
);
2932 if (saved_errno
== EINVAL
) {
2934 * See if they asked to opendir something
2935 * other than a directory. If so, the
2936 * converted error value we got would have
2937 * been EINVAL rather than ENOTDIR.
2939 *p
= '\0'; /* restore original path */
2941 if (smbc_getatr(context
, srv
, path
,
2943 NULL
, NULL
, NULL
, NULL
,
2945 ! IS_DOS_DIR(mode
)) {
2947 /* It is. Correct the error value */
2948 saved_errno
= ENOTDIR
;
2953 * If there was an error and the server is no
2956 cb
= &context
->callbacks
;
2957 if (cli_is_error(targetcli
) &&
2958 (cb
->check_server_fn
)(context
, srv
)) {
2960 /* ... then remove it. */
2961 if ((cb
->remove_unused_server_fn
)(context
,
2964 * We could not remove the
2965 * server completely, remove
2966 * it from the cache so we
2967 * will not get it again. It
2968 * will be removed when the
2969 * last file/dir is closed.
2971 (cb
->remove_cached_srv_fn
)(context
,
2976 errno
= saved_errno
;
2983 DLIST_ADD(context
->internal
->_files
, dir
);
2989 * Routine to close a directory
2993 smbc_closedir_ctx(SMBCCTX
*context
,
2997 if (!context
|| !context
->internal
||
2998 !context
->internal
->_initialized
) {
3005 if (!dir
|| !DLIST_CONTAINS(context
->internal
->_files
, dir
)) {
3012 smbc_remove_dir(dir
); /* Clean it up */
3014 DLIST_REMOVE(context
->internal
->_files
, dir
);
3018 SAFE_FREE(dir
->fname
);
3019 SAFE_FREE(dir
); /* Free the space too */
3027 smbc_readdir_internal(SMBCCTX
* context
,
3028 struct smbc_dirent
*dest
,
3029 struct smbc_dirent
*src
,
3030 int max_namebuf_len
)
3032 if (context
->options
.urlencode_readdir_entries
) {
3034 /* url-encode the name. get back remaining buffer space */
3036 smbc_urlencode(dest
->name
, src
->name
, max_namebuf_len
);
3038 /* We now know the name length */
3039 dest
->namelen
= strlen(dest
->name
);
3041 /* Save the pointer to the beginning of the comment */
3042 dest
->comment
= dest
->name
+ dest
->namelen
+ 1;
3044 /* Copy the comment */
3045 strncpy(dest
->comment
, src
->comment
, max_namebuf_len
- 1);
3046 dest
->comment
[max_namebuf_len
- 1] = '\0';
3048 /* Save other fields */
3049 dest
->smbc_type
= src
->smbc_type
;
3050 dest
->commentlen
= strlen(dest
->comment
);
3051 dest
->dirlen
= ((dest
->comment
+ dest
->commentlen
+ 1) -
3055 /* No encoding. Just copy the entry as is. */
3056 memcpy(dest
, src
, src
->dirlen
);
3057 dest
->comment
= (char *)(&dest
->name
+ src
->namelen
+ 1);
3063 * Routine to get a directory entry
3066 struct smbc_dirent
*
3067 smbc_readdir_ctx(SMBCCTX
*context
,
3071 struct smbc_dirent
*dirp
, *dirent
;
3073 /* Check that all is ok first ... */
3075 if (!context
|| !context
->internal
||
3076 !context
->internal
->_initialized
) {
3079 DEBUG(0, ("Invalid context in smbc_readdir_ctx()\n"));
3084 if (!dir
|| !DLIST_CONTAINS(context
->internal
->_files
, dir
)) {
3087 DEBUG(0, ("Invalid dir in smbc_readdir_ctx()\n"));
3092 if (dir
->file
!= False
) { /* FIXME, should be dir, perhaps */
3095 DEBUG(0, ("Found file vs directory in smbc_readdir_ctx()\n"));
3100 if (!dir
->dir_next
) {
3104 dirent
= dir
->dir_next
->dirent
;
3112 dirp
= (struct smbc_dirent
*)context
->internal
->_dirent
;
3113 maxlen
= (sizeof(context
->internal
->_dirent
) -
3114 sizeof(struct smbc_dirent
));
3116 smbc_readdir_internal(context
, dirp
, dirent
, maxlen
);
3118 dir
->dir_next
= dir
->dir_next
->next
;
3124 * Routine to get directory entries
3128 smbc_getdents_ctx(SMBCCTX
*context
,
3130 struct smbc_dirent
*dirp
,
3136 char *ndir
= (char *)dirp
;
3137 struct smbc_dir_list
*dirlist
;
3139 /* Check that all is ok first ... */
3141 if (!context
|| !context
->internal
||
3142 !context
->internal
->_initialized
) {
3149 if (!dir
|| !DLIST_CONTAINS(context
->internal
->_files
, dir
)) {
3156 if (dir
->file
!= False
) { /* FIXME, should be dir, perhaps */
3164 * Now, retrieve the number of entries that will fit in what was passed
3165 * We have to figure out if the info is in the list, or we need to
3166 * send a request to the server to get the info.
3169 while ((dirlist
= dir
->dir_next
)) {
3170 struct smbc_dirent
*dirent
;
3172 if (!dirlist
->dirent
) {
3174 errno
= ENOENT
; /* Bad error */
3179 /* Do urlencoding of next entry, if so selected */
3180 dirent
= (struct smbc_dirent
*)context
->internal
->_dirent
;
3181 maxlen
= (sizeof(context
->internal
->_dirent
) -
3182 sizeof(struct smbc_dirent
));
3183 smbc_readdir_internal(context
, dirent
, dirlist
->dirent
, maxlen
);
3185 reqd
= dirent
->dirlen
;
3189 if (rem
< count
) { /* We managed to copy something */
3195 else { /* Nothing copied ... */
3197 errno
= EINVAL
; /* Not enough space ... */
3204 memcpy(ndir
, dirent
, reqd
); /* Copy the data in ... */
3206 ((struct smbc_dirent
*)ndir
)->comment
=
3207 (char *)(&((struct smbc_dirent
*)ndir
)->name
+
3215 dir
->dir_next
= dirlist
= dirlist
-> next
;
3226 * Routine to create a directory ...
3230 smbc_mkdir_ctx(SMBCCTX
*context
,
3240 pstring path
, targetpath
;
3241 struct cli_state
*targetcli
;
3243 if (!context
|| !context
->internal
||
3244 !context
->internal
->_initialized
) {
3258 DEBUG(4, ("smbc_mkdir(%s)\n", fname
));
3260 if (smbc_parse_path(context
, fname
,
3261 workgroup
, sizeof(workgroup
),
3262 server
, sizeof(server
),
3263 share
, sizeof(share
),
3266 password
, sizeof(password
),
3272 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
3274 srv
= smbc_server(context
, True
,
3275 server
, share
, workgroup
, user
, password
);
3279 return -1; /* errno set by smbc_server */
3283 /*d_printf(">>>mkdir: resolving %s\n", path);*/
3284 if (!cli_resolve_path( "", srv
->cli
, path
, &targetcli
, targetpath
))
3286 d_printf("Could not resolve %s\n", path
);
3289 /*d_printf(">>>mkdir: resolved path as %s\n", targetpath);*/
3291 if (!cli_mkdir(targetcli
, targetpath
)) {
3293 errno
= smbc_errno(context
, targetcli
);
3303 * Our list function simply checks to see if a directory is not empty
3306 static int smbc_rmdir_dirempty
= True
;
3309 rmdir_list_fn(const char *mnt
,
3314 if (strncmp(finfo
->name
, ".", 1) != 0 &&
3315 strncmp(finfo
->name
, "..", 2) != 0) {
3317 smbc_rmdir_dirempty
= False
;
3322 * Routine to remove a directory
3326 smbc_rmdir_ctx(SMBCCTX
*context
,
3337 struct cli_state
*targetcli
;
3339 if (!context
|| !context
->internal
||
3340 !context
->internal
->_initialized
) {
3354 DEBUG(4, ("smbc_rmdir(%s)\n", fname
));
3356 if (smbc_parse_path(context
, fname
,
3357 workgroup
, sizeof(workgroup
),
3358 server
, sizeof(server
),
3359 share
, sizeof(share
),
3362 password
, sizeof(password
),
3369 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
3371 srv
= smbc_server(context
, True
,
3372 server
, share
, workgroup
, user
, password
);
3376 return -1; /* errno set by smbc_server */
3380 /*d_printf(">>>rmdir: resolving %s\n", path);*/
3381 if (!cli_resolve_path( "", srv
->cli
, path
, &targetcli
, targetpath
))
3383 d_printf("Could not resolve %s\n", path
);
3386 /*d_printf(">>>rmdir: resolved path as %s\n", targetpath);*/
3389 if (!cli_rmdir(targetcli
, targetpath
)) {
3391 errno
= smbc_errno(context
, targetcli
);
3393 if (errno
== EACCES
) { /* Check if the dir empty or not */
3395 /* Local storage to avoid buffer overflows */
3398 smbc_rmdir_dirempty
= True
; /* Make this so ... */
3400 pstrcpy(lpath
, targetpath
);
3401 pstrcat(lpath
, "\\*");
3403 if (cli_list(targetcli
, lpath
,
3404 aDIR
| aSYSTEM
| aHIDDEN
,
3405 rmdir_list_fn
, NULL
) < 0) {
3407 /* Fix errno to ignore latest error ... */
3408 DEBUG(5, ("smbc_rmdir: "
3409 "cli_list returned an error: %d\n",
3410 smbc_errno(context
, targetcli
)));
3415 if (smbc_rmdir_dirempty
)
3431 * Routine to return the current directory position
3435 smbc_telldir_ctx(SMBCCTX
*context
,
3438 if (!context
|| !context
->internal
||
3439 !context
->internal
->_initialized
) {
3446 if (!dir
|| !DLIST_CONTAINS(context
->internal
->_files
, dir
)) {
3453 if (dir
->file
!= False
) { /* FIXME, should be dir, perhaps */
3460 /* See if we're already at the end. */
3461 if (dir
->dir_next
== NULL
) {
3467 * We return the pointer here as the offset
3469 return (off_t
)(long)dir
->dir_next
->dirent
;
3473 * A routine to run down the list and see if the entry is OK
3476 struct smbc_dir_list
*
3477 smbc_check_dir_ent(struct smbc_dir_list
*list
,
3478 struct smbc_dirent
*dirent
)
3481 /* Run down the list looking for what we want */
3485 struct smbc_dir_list
*tmp
= list
;
3489 if (tmp
->dirent
== dirent
)
3498 return NULL
; /* Not found, or an error */
3504 * Routine to seek on a directory
3508 smbc_lseekdir_ctx(SMBCCTX
*context
,
3512 long int l_offset
= offset
; /* Handle problems of size */
3513 struct smbc_dirent
*dirent
= (struct smbc_dirent
*)l_offset
;
3514 struct smbc_dir_list
*list_ent
= (struct smbc_dir_list
*)NULL
;
3516 if (!context
|| !context
->internal
||
3517 !context
->internal
->_initialized
) {
3524 if (dir
->file
!= False
) { /* FIXME, should be dir, perhaps */
3531 /* Now, check what we were passed and see if it is OK ... */
3533 if (dirent
== NULL
) { /* Seek to the begining of the list */
3535 dir
->dir_next
= dir
->dir_list
;
3540 if (offset
== -1) { /* Seek to the end of the list */
3541 dir
->dir_next
= NULL
;
3545 /* Now, run down the list and make sure that the entry is OK */
3546 /* This may need to be changed if we change the format of the list */
3548 if ((list_ent
= smbc_check_dir_ent(dir
->dir_list
, dirent
)) == NULL
) {
3550 errno
= EINVAL
; /* Bad entry */
3555 dir
->dir_next
= list_ent
;
3562 * Routine to fstat a dir
3566 smbc_fstatdir_ctx(SMBCCTX
*context
,
3571 if (!context
|| !context
->internal
||
3572 !context
->internal
->_initialized
) {
3579 /* No code yet ... */
3586 smbc_chmod_ctx(SMBCCTX
*context
,
3599 if (!context
|| !context
->internal
||
3600 !context
->internal
->_initialized
) {
3602 errno
= EINVAL
; /* Best I can think of ... */
3614 DEBUG(4, ("smbc_chmod(%s, 0%3o)\n", fname
, newmode
));
3616 if (smbc_parse_path(context
, fname
,
3617 workgroup
, sizeof(workgroup
),
3618 server
, sizeof(server
),
3619 share
, sizeof(share
),
3622 password
, sizeof(password
),
3628 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
3630 srv
= smbc_server(context
, True
,
3631 server
, share
, workgroup
, user
, password
);
3634 return -1; /* errno set by smbc_server */
3639 if (!(newmode
& (S_IWUSR
| S_IWGRP
| S_IWOTH
))) mode
|= aRONLY
;
3640 if ((newmode
& S_IXUSR
) && lp_map_archive(-1)) mode
|= aARCH
;
3641 if ((newmode
& S_IXGRP
) && lp_map_system(-1)) mode
|= aSYSTEM
;
3642 if ((newmode
& S_IXOTH
) && lp_map_hidden(-1)) mode
|= aHIDDEN
;
3644 if (!cli_setatr(srv
->cli
, path
, mode
, 0)) {
3645 errno
= smbc_errno(context
, srv
->cli
);
3653 smbc_utimes_ctx(SMBCCTX
*context
,
3655 struct timeval
*tbuf
)
3667 if (!context
|| !context
->internal
||
3668 !context
->internal
->_initialized
) {
3670 errno
= EINVAL
; /* Best I can think of ... */
3683 access_time
= write_time
= time(NULL
);
3685 access_time
= tbuf
[0].tv_sec
;
3686 write_time
= tbuf
[1].tv_sec
;
3695 strncpy(atimebuf
, ctime(&access_time
), sizeof(atimebuf
) - 1);
3696 atimebuf
[sizeof(atimebuf
) - 1] = '\0';
3697 if ((p
= strchr(atimebuf
, '\n')) != NULL
) {
3701 strncpy(mtimebuf
, ctime(&write_time
), sizeof(mtimebuf
) - 1);
3702 mtimebuf
[sizeof(mtimebuf
) - 1] = '\0';
3703 if ((p
= strchr(mtimebuf
, '\n')) != NULL
) {
3707 dbgtext("smbc_utimes(%s, atime = %s mtime = %s)\n",
3708 fname
, atimebuf
, mtimebuf
);
3711 if (smbc_parse_path(context
, fname
,
3712 workgroup
, sizeof(workgroup
),
3713 server
, sizeof(server
),
3714 share
, sizeof(share
),
3717 password
, sizeof(password
),
3723 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
3725 srv
= smbc_server(context
, True
,
3726 server
, share
, workgroup
, user
, password
);
3729 return -1; /* errno set by smbc_server */
3732 if (!smbc_setatr(context
, srv
, path
,
3733 0, access_time
, write_time
, 0, 0)) {
3734 return -1; /* errno set by smbc_setatr */
3742 * Sort ACEs according to the documentation at
3743 * http://support.microsoft.com/kb/269175, at least as far as it defines the
3748 ace_compare(SEC_ACE
*ace1
,
3754 /* If the ACEs are equal, we have nothing more to do. */
3755 if (sec_ace_equal(ace1
, ace2
)) {
3759 /* Inherited follow non-inherited */
3760 b1
= ((ace1
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) != 0);
3761 b2
= ((ace2
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) != 0);
3763 return (b1
? 1 : -1);
3767 * What shall we do with AUDITs and ALARMs? It's undefined. We'll
3768 * sort them after DENY and ALLOW.
3770 b1
= (ace1
->type
!= SEC_ACE_TYPE_ACCESS_ALLOWED
&&
3771 ace1
->type
!= SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT
&&
3772 ace1
->type
!= SEC_ACE_TYPE_ACCESS_DENIED
&&
3773 ace1
->type
!= SEC_ACE_TYPE_ACCESS_DENIED_OBJECT
);
3774 b2
= (ace2
->type
!= SEC_ACE_TYPE_ACCESS_ALLOWED
&&
3775 ace2
->type
!= SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT
&&
3776 ace2
->type
!= SEC_ACE_TYPE_ACCESS_DENIED
&&
3777 ace2
->type
!= SEC_ACE_TYPE_ACCESS_DENIED_OBJECT
);
3779 return (b1
? 1 : -1);
3782 /* Allowed ACEs follow denied ACEs */
3783 b1
= (ace1
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED
||
3784 ace1
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT
);
3785 b2
= (ace2
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED
||
3786 ace2
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT
);
3788 return (b1
? 1 : -1);
3792 * ACEs applying to an entity's object follow those applying to the
3795 b1
= (ace1
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT
||
3796 ace1
->type
== SEC_ACE_TYPE_ACCESS_DENIED_OBJECT
);
3797 b2
= (ace2
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT
||
3798 ace2
->type
== SEC_ACE_TYPE_ACCESS_DENIED_OBJECT
);
3800 return (b1
? 1 : -1);
3804 * If we get this far, the ACEs are similar as far as the
3805 * characteristics we typically care about (those defined by the
3806 * referenced MS document). We'll now sort by characteristics that
3807 * just seems reasonable.
3810 if (ace1
->type
!= ace2
->type
) {
3811 return ace2
->type
- ace1
->type
;
3814 if (sid_compare(&ace1
->trustee
, &ace2
->trustee
)) {
3815 return sid_compare(&ace1
->trustee
, &ace2
->trustee
);
3818 if (ace1
->flags
!= ace2
->flags
) {
3819 return ace1
->flags
- ace2
->flags
;
3822 if (ace1
->access_mask
!= ace2
->access_mask
) {
3823 return ace1
->access_mask
- ace2
->access_mask
;
3826 if (ace1
->size
!= ace2
->size
) {
3827 return ace1
->size
- ace2
->size
;
3830 return memcmp(ace1
, ace2
, sizeof(SEC_ACE
));
3835 sort_acl(SEC_ACL
*the_acl
)
3838 if (!the_acl
) return;
3840 qsort(the_acl
->aces
, the_acl
->num_aces
, sizeof(the_acl
->aces
[0]),
3841 QSORT_CAST ace_compare
);
3843 for (i
=1;i
<the_acl
->num_aces
;) {
3844 if (sec_ace_equal(&the_acl
->aces
[i
-1], &the_acl
->aces
[i
])) {
3846 for (j
=i
; j
<the_acl
->num_aces
-1; j
++) {
3847 the_acl
->aces
[j
] = the_acl
->aces
[j
+1];
3849 the_acl
->num_aces
--;
3856 /* convert a SID to a string, either numeric or username/group */
3858 convert_sid_to_string(struct cli_state
*ipc_cli
,
3864 char **domains
= NULL
;
3865 char **names
= NULL
;
3866 enum lsa_SidType
*types
= NULL
;
3867 struct rpc_pipe_client
*pipe_hnd
= find_lsa_pipe_hnd(ipc_cli
);
3868 sid_to_string(str
, sid
);
3871 return; /* no lookup desired */
3878 /* Ask LSA to convert the sid to a name */
3880 if (!NT_STATUS_IS_OK(rpccli_lsa_lookup_sids(pipe_hnd
, ipc_cli
->mem_ctx
,
3881 pol
, 1, sid
, &domains
,
3883 !domains
|| !domains
[0] || !names
|| !names
[0]) {
3889 slprintf(str
, sizeof(fstring
) - 1, "%s%s%s",
3890 domains
[0], lp_winbind_separator(),
3894 /* convert a string to a SID, either numeric or username/group */
3896 convert_string_to_sid(struct cli_state
*ipc_cli
,
3902 enum lsa_SidType
*types
= NULL
;
3903 DOM_SID
*sids
= NULL
;
3905 struct rpc_pipe_client
*pipe_hnd
= find_lsa_pipe_hnd(ipc_cli
);
3912 if (strncmp(str
, "S-", 2) == 0) {
3913 return string_to_sid(sid
, str
);
3920 if (!NT_STATUS_IS_OK(rpccli_lsa_lookup_names(pipe_hnd
, ipc_cli
->mem_ctx
,
3921 pol
, 1, &str
, NULL
, 1, &sids
,
3927 sid_copy(sid
, &sids
[0]);
3934 /* parse an ACE in the same format as print_ace() */
3936 parse_ace(struct cli_state
*ipc_cli
,
3946 unsigned int aflags
;
3950 const struct perm_value
*v
;
3956 /* These values discovered by inspection */
3957 static const struct perm_value special_values
[] = {
3958 { "R", 0x00120089 },
3959 { "W", 0x00120116 },
3960 { "X", 0x001200a0 },
3961 { "D", 0x00010000 },
3962 { "P", 0x00040000 },
3963 { "O", 0x00080000 },
3967 static const struct perm_value standard_values
[] = {
3968 { "READ", 0x001200a9 },
3969 { "CHANGE", 0x001301bf },
3970 { "FULL", 0x001f01ff },
3976 p
= strchr_m(str
,':');
3977 if (!p
) return False
;
3980 /* Try to parse numeric form */
3982 if (sscanf(p
, "%i/%i/%i", &atype
, &aflags
, &amask
) == 3 &&
3983 convert_string_to_sid(ipc_cli
, pol
, numeric
, &sid
, str
)) {
3987 /* Try to parse text form */
3989 if (!convert_string_to_sid(ipc_cli
, pol
, numeric
, &sid
, str
)) {
3994 if (!next_token(&cp
, tok
, "/", sizeof(fstring
))) {
3998 if (StrnCaseCmp(tok
, "ALLOWED", strlen("ALLOWED")) == 0) {
3999 atype
= SEC_ACE_TYPE_ACCESS_ALLOWED
;
4000 } else if (StrnCaseCmp(tok
, "DENIED", strlen("DENIED")) == 0) {
4001 atype
= SEC_ACE_TYPE_ACCESS_DENIED
;
4006 /* Only numeric form accepted for flags at present */
4008 if (!(next_token(&cp
, tok
, "/", sizeof(fstring
)) &&
4009 sscanf(tok
, "%i", &aflags
))) {
4013 if (!next_token(&cp
, tok
, "/", sizeof(fstring
))) {
4017 if (strncmp(tok
, "0x", 2) == 0) {
4018 if (sscanf(tok
, "%i", &amask
) != 1) {
4024 for (v
= standard_values
; v
->perm
; v
++) {
4025 if (strcmp(tok
, v
->perm
) == 0) {
4036 for (v
= special_values
; v
->perm
; v
++) {
4037 if (v
->perm
[0] == *p
) {
4043 if (!found
) return False
;
4053 init_sec_ace(ace
, &sid
, atype
, mask
, aflags
);
4057 /* add an ACE to a list of ACEs in a SEC_ACL */
4059 add_ace(SEC_ACL
**the_acl
,
4067 (*the_acl
) = make_sec_acl(ctx
, 3, 1, ace
);
4071 if ((aces
= SMB_CALLOC_ARRAY(SEC_ACE
, 1+(*the_acl
)->num_aces
)) == NULL
) {
4074 memcpy(aces
, (*the_acl
)->aces
, (*the_acl
)->num_aces
* sizeof(SEC_ACE
));
4075 memcpy(aces
+(*the_acl
)->num_aces
, ace
, sizeof(SEC_ACE
));
4076 newacl
= make_sec_acl(ctx
, (*the_acl
)->revision
,
4077 1+(*the_acl
)->num_aces
, aces
);
4079 (*the_acl
) = newacl
;
4084 /* parse a ascii version of a security descriptor */
4086 sec_desc_parse(TALLOC_CTX
*ctx
,
4087 struct cli_state
*ipc_cli
,
4092 const char *p
= str
;
4094 SEC_DESC
*ret
= NULL
;
4096 DOM_SID
*group_sid
=NULL
;
4097 DOM_SID
*owner_sid
=NULL
;
4101 while (next_token(&p
, tok
, "\t,\r\n", sizeof(tok
))) {
4103 if (StrnCaseCmp(tok
,"REVISION:", 9) == 0) {
4104 revision
= strtol(tok
+9, NULL
, 16);
4108 if (StrnCaseCmp(tok
,"OWNER:", 6) == 0) {
4110 DEBUG(5, ("OWNER specified more than once!\n"));
4113 owner_sid
= SMB_CALLOC_ARRAY(DOM_SID
, 1);
4115 !convert_string_to_sid(ipc_cli
, pol
,
4117 owner_sid
, tok
+6)) {
4118 DEBUG(5, ("Failed to parse owner sid\n"));
4124 if (StrnCaseCmp(tok
,"OWNER+:", 7) == 0) {
4126 DEBUG(5, ("OWNER specified more than once!\n"));
4129 owner_sid
= SMB_CALLOC_ARRAY(DOM_SID
, 1);
4131 !convert_string_to_sid(ipc_cli
, pol
,
4133 owner_sid
, tok
+7)) {
4134 DEBUG(5, ("Failed to parse owner sid\n"));
4140 if (StrnCaseCmp(tok
,"GROUP:", 6) == 0) {
4142 DEBUG(5, ("GROUP specified more than once!\n"));
4145 group_sid
= SMB_CALLOC_ARRAY(DOM_SID
, 1);
4147 !convert_string_to_sid(ipc_cli
, pol
,
4149 group_sid
, tok
+6)) {
4150 DEBUG(5, ("Failed to parse group sid\n"));
4156 if (StrnCaseCmp(tok
,"GROUP+:", 7) == 0) {
4158 DEBUG(5, ("GROUP specified more than once!\n"));
4161 group_sid
= SMB_CALLOC_ARRAY(DOM_SID
, 1);
4163 !convert_string_to_sid(ipc_cli
, pol
,
4165 group_sid
, tok
+6)) {
4166 DEBUG(5, ("Failed to parse group sid\n"));
4172 if (StrnCaseCmp(tok
,"ACL:", 4) == 0) {
4174 if (!parse_ace(ipc_cli
, pol
, &ace
, numeric
, tok
+4)) {
4175 DEBUG(5, ("Failed to parse ACL %s\n", tok
));
4178 if(!add_ace(&dacl
, &ace
, ctx
)) {
4179 DEBUG(5, ("Failed to add ACL %s\n", tok
));
4185 if (StrnCaseCmp(tok
,"ACL+:", 5) == 0) {
4187 if (!parse_ace(ipc_cli
, pol
, &ace
, False
, tok
+5)) {
4188 DEBUG(5, ("Failed to parse ACL %s\n", tok
));
4191 if(!add_ace(&dacl
, &ace
, ctx
)) {
4192 DEBUG(5, ("Failed to add ACL %s\n", tok
));
4198 DEBUG(5, ("Failed to parse security descriptor\n"));
4202 ret
= make_sec_desc(ctx
, revision
, SEC_DESC_SELF_RELATIVE
,
4203 owner_sid
, group_sid
, NULL
, dacl
, &sd_size
);
4206 SAFE_FREE(group_sid
);
4207 SAFE_FREE(owner_sid
);
4213 /* Obtain the current dos attributes */
4214 static DOS_ATTR_DESC
*
4215 dos_attr_query(SMBCCTX
*context
,
4217 const char *filename
,
4220 struct timespec create_time_ts
;
4221 struct timespec write_time_ts
;
4222 struct timespec access_time_ts
;
4223 struct timespec change_time_ts
;
4226 SMB_INO_T inode
= 0;
4229 ret
= TALLOC_P(ctx
, DOS_ATTR_DESC
);
4235 /* Obtain the DOS attributes */
4236 if (!smbc_getatr(context
, srv
, CONST_DISCARD(char *, filename
),
4244 errno
= smbc_errno(context
, srv
->cli
);
4245 DEBUG(5, ("dos_attr_query Failed to query old attributes\n"));
4252 ret
->create_time
= convert_timespec_to_time_t(create_time_ts
);
4253 ret
->access_time
= convert_timespec_to_time_t(access_time_ts
);
4254 ret
->write_time
= convert_timespec_to_time_t(write_time_ts
);
4255 ret
->change_time
= convert_timespec_to_time_t(change_time_ts
);
4262 /* parse a ascii version of a security descriptor */
4264 dos_attr_parse(SMBCCTX
*context
,
4270 const char *p
= str
;
4273 const char * create_time_attr
;
4274 const char * access_time_attr
;
4275 const char * write_time_attr
;
4276 const char * change_time_attr
;
4279 /* Determine whether to use old-style or new-style attribute names */
4280 if (context
->internal
->_full_time_names
) {
4281 /* new-style names */
4282 attr_strings
.create_time_attr
= "CREATE_TIME";
4283 attr_strings
.access_time_attr
= "ACCESS_TIME";
4284 attr_strings
.write_time_attr
= "WRITE_TIME";
4285 attr_strings
.change_time_attr
= "CHANGE_TIME";
4287 /* old-style names */
4288 attr_strings
.create_time_attr
= NULL
;
4289 attr_strings
.access_time_attr
= "A_TIME";
4290 attr_strings
.write_time_attr
= "M_TIME";
4291 attr_strings
.change_time_attr
= "C_TIME";
4294 /* if this is to set the entire ACL... */
4296 /* ... then increment past the first colon if there is one */
4297 if ((p
= strchr(str
, ':')) != NULL
) {
4304 while (next_token(&p
, tok
, "\t,\r\n", sizeof(tok
))) {
4306 if (StrnCaseCmp(tok
, "MODE:", 5) == 0) {
4307 dad
->mode
= strtol(tok
+5, NULL
, 16);
4311 if (StrnCaseCmp(tok
, "SIZE:", 5) == 0) {
4312 dad
->size
= (SMB_OFF_T
)atof(tok
+5);
4316 n
= strlen(attr_strings
.access_time_attr
);
4317 if (StrnCaseCmp(tok
, attr_strings
.access_time_attr
, n
) == 0) {
4318 dad
->access_time
= (time_t)strtol(tok
+n
+1, NULL
, 10);
4322 n
= strlen(attr_strings
.change_time_attr
);
4323 if (StrnCaseCmp(tok
, attr_strings
.change_time_attr
, n
) == 0) {
4324 dad
->change_time
= (time_t)strtol(tok
+n
+1, NULL
, 10);
4328 n
= strlen(attr_strings
.write_time_attr
);
4329 if (StrnCaseCmp(tok
, attr_strings
.write_time_attr
, n
) == 0) {
4330 dad
->write_time
= (time_t)strtol(tok
+n
+1, NULL
, 10);
4334 if (attr_strings
.create_time_attr
!= NULL
) {
4335 n
= strlen(attr_strings
.create_time_attr
);
4336 if (StrnCaseCmp(tok
, attr_strings
.create_time_attr
,
4338 dad
->create_time
= (time_t)strtol(tok
+n
+1,
4344 if (StrnCaseCmp(tok
, "INODE:", 6) == 0) {
4345 dad
->inode
= (SMB_INO_T
)atof(tok
+6);
4351 /*****************************************************
4352 Retrieve the acls for a file.
4353 *******************************************************/
4356 cacl_get(SMBCCTX
*context
,
4359 struct cli_state
*ipc_cli
,
4375 bool exclude_nt_revision
= False
;
4376 bool exclude_nt_owner
= False
;
4377 bool exclude_nt_group
= False
;
4378 bool exclude_nt_acl
= False
;
4379 bool exclude_dos_mode
= False
;
4380 bool exclude_dos_size
= False
;
4381 bool exclude_dos_create_time
= False
;
4382 bool exclude_dos_access_time
= False
;
4383 bool exclude_dos_write_time
= False
;
4384 bool exclude_dos_change_time
= False
;
4385 bool exclude_dos_inode
= False
;
4386 bool numeric
= True
;
4387 bool determine_size
= (bufsize
== 0);
4391 fstring name_sandbox
;
4395 struct timespec create_time_ts
;
4396 struct timespec write_time_ts
;
4397 struct timespec access_time_ts
;
4398 struct timespec change_time_ts
;
4399 time_t create_time
= (time_t)0;
4400 time_t write_time
= (time_t)0;
4401 time_t access_time
= (time_t)0;
4402 time_t change_time
= (time_t)0;
4406 struct cli_state
*cli
= srv
->cli
;
4408 const char * create_time_attr
;
4409 const char * access_time_attr
;
4410 const char * write_time_attr
;
4411 const char * change_time_attr
;
4414 const char * create_time_attr
;
4415 const char * access_time_attr
;
4416 const char * write_time_attr
;
4417 const char * change_time_attr
;
4418 } excl_attr_strings
;
4420 /* Determine whether to use old-style or new-style attribute names */
4421 if (context
->internal
->_full_time_names
) {
4422 /* new-style names */
4423 attr_strings
.create_time_attr
= "CREATE_TIME";
4424 attr_strings
.access_time_attr
= "ACCESS_TIME";
4425 attr_strings
.write_time_attr
= "WRITE_TIME";
4426 attr_strings
.change_time_attr
= "CHANGE_TIME";
4428 excl_attr_strings
.create_time_attr
= "CREATE_TIME";
4429 excl_attr_strings
.access_time_attr
= "ACCESS_TIME";
4430 excl_attr_strings
.write_time_attr
= "WRITE_TIME";
4431 excl_attr_strings
.change_time_attr
= "CHANGE_TIME";
4433 /* old-style names */
4434 attr_strings
.create_time_attr
= NULL
;
4435 attr_strings
.access_time_attr
= "A_TIME";
4436 attr_strings
.write_time_attr
= "M_TIME";
4437 attr_strings
.change_time_attr
= "C_TIME";
4439 excl_attr_strings
.create_time_attr
= NULL
;
4440 excl_attr_strings
.access_time_attr
= "dos_attr.A_TIME";
4441 excl_attr_strings
.write_time_attr
= "dos_attr.M_TIME";
4442 excl_attr_strings
.change_time_attr
= "dos_attr.C_TIME";
4445 /* Copy name so we can strip off exclusions (if any are specified) */
4446 strncpy(name_sandbox
, attr_name
, sizeof(name_sandbox
) - 1);
4448 /* Ensure name is null terminated */
4449 name_sandbox
[sizeof(name_sandbox
) - 1] = '\0';
4451 /* Play in the sandbox */
4452 name
= name_sandbox
;
4454 /* If there are any exclusions, point to them and mask them from name */
4455 if ((pExclude
= strchr(name
, '!')) != NULL
)
4460 all
= (StrnCaseCmp(name
, "system.*", 8) == 0);
4461 all_nt
= (StrnCaseCmp(name
, "system.nt_sec_desc.*", 20) == 0);
4462 all_nt_acls
= (StrnCaseCmp(name
, "system.nt_sec_desc.acl.*", 24) == 0);
4463 all_dos
= (StrnCaseCmp(name
, "system.dos_attr.*", 17) == 0);
4464 some_nt
= (StrnCaseCmp(name
, "system.nt_sec_desc.", 19) == 0);
4465 some_dos
= (StrnCaseCmp(name
, "system.dos_attr.", 16) == 0);
4466 numeric
= (* (name
+ strlen(name
) - 1) != '+');
4468 /* Look for exclusions from "all" requests */
4469 if (all
|| all_nt
|| all_dos
) {
4471 /* Exclusions are delimited by '!' */
4474 pExclude
= (p
== NULL
? NULL
: p
+ 1)) {
4476 /* Find end of this exclusion name */
4477 if ((p
= strchr(pExclude
, '!')) != NULL
)
4482 /* Which exclusion name is this? */
4483 if (StrCaseCmp(pExclude
, "nt_sec_desc.revision") == 0) {
4484 exclude_nt_revision
= True
;
4486 else if (StrCaseCmp(pExclude
, "nt_sec_desc.owner") == 0) {
4487 exclude_nt_owner
= True
;
4489 else if (StrCaseCmp(pExclude
, "nt_sec_desc.group") == 0) {
4490 exclude_nt_group
= True
;
4492 else if (StrCaseCmp(pExclude
, "nt_sec_desc.acl") == 0) {
4493 exclude_nt_acl
= True
;
4495 else if (StrCaseCmp(pExclude
, "dos_attr.mode") == 0) {
4496 exclude_dos_mode
= True
;
4498 else if (StrCaseCmp(pExclude
, "dos_attr.size") == 0) {
4499 exclude_dos_size
= True
;
4501 else if (excl_attr_strings
.create_time_attr
!= NULL
&&
4502 StrCaseCmp(pExclude
,
4503 excl_attr_strings
.change_time_attr
) == 0) {
4504 exclude_dos_create_time
= True
;
4506 else if (StrCaseCmp(pExclude
,
4507 excl_attr_strings
.access_time_attr
) == 0) {
4508 exclude_dos_access_time
= True
;
4510 else if (StrCaseCmp(pExclude
,
4511 excl_attr_strings
.write_time_attr
) == 0) {
4512 exclude_dos_write_time
= True
;
4514 else if (StrCaseCmp(pExclude
,
4515 excl_attr_strings
.change_time_attr
) == 0) {
4516 exclude_dos_change_time
= True
;
4518 else if (StrCaseCmp(pExclude
, "dos_attr.inode") == 0) {
4519 exclude_dos_inode
= True
;
4522 DEBUG(5, ("cacl_get received unknown exclusion: %s\n",
4533 * If we are (possibly) talking to an NT or new system and some NT
4534 * attributes have been requested...
4536 if (ipc_cli
&& (all
|| some_nt
|| all_nt_acls
)) {
4537 /* Point to the portion after "system.nt_sec_desc." */
4538 name
+= 19; /* if (all) this will be invalid but unused */
4540 /* ... then obtain any NT attributes which were requested */
4541 fnum
= cli_nt_create(cli
, filename
, CREATE_ACCESS_READ
);
4544 DEBUG(5, ("cacl_get failed to open %s: %s\n",
4545 filename
, cli_errstr(cli
)));
4550 sd
= cli_query_secdesc(cli
, fnum
, ctx
);
4554 ("cacl_get Failed to query old descriptor\n"));
4559 cli_close(cli
, fnum
);
4561 if (! exclude_nt_revision
) {
4562 if (all
|| all_nt
) {
4563 if (determine_size
) {
4564 p
= talloc_asprintf(ctx
,
4573 n
= snprintf(buf
, bufsize
,
4577 } else if (StrCaseCmp(name
, "revision") == 0) {
4578 if (determine_size
) {
4579 p
= talloc_asprintf(ctx
, "%d",
4587 n
= snprintf(buf
, bufsize
, "%d",
4592 if (!determine_size
&& n
> bufsize
) {
4602 if (! exclude_nt_owner
) {
4603 /* Get owner and group sid */
4604 if (sd
->owner_sid
) {
4605 convert_sid_to_string(ipc_cli
, pol
,
4610 fstrcpy(sidstr
, "");
4613 if (all
|| all_nt
) {
4614 if (determine_size
) {
4615 p
= talloc_asprintf(ctx
, ",OWNER:%s",
4622 } else if (sidstr
[0] != '\0') {
4623 n
= snprintf(buf
, bufsize
,
4624 ",OWNER:%s", sidstr
);
4626 } else if (StrnCaseCmp(name
, "owner", 5) == 0) {
4627 if (determine_size
) {
4628 p
= talloc_asprintf(ctx
, "%s", sidstr
);
4635 n
= snprintf(buf
, bufsize
, "%s",
4640 if (!determine_size
&& n
> bufsize
) {
4650 if (! exclude_nt_group
) {
4651 if (sd
->group_sid
) {
4652 convert_sid_to_string(ipc_cli
, pol
,
4656 fstrcpy(sidstr
, "");
4659 if (all
|| all_nt
) {
4660 if (determine_size
) {
4661 p
= talloc_asprintf(ctx
, ",GROUP:%s",
4668 } else if (sidstr
[0] != '\0') {
4669 n
= snprintf(buf
, bufsize
,
4670 ",GROUP:%s", sidstr
);
4672 } else if (StrnCaseCmp(name
, "group", 5) == 0) {
4673 if (determine_size
) {
4674 p
= talloc_asprintf(ctx
, "%s", sidstr
);
4681 n
= snprintf(buf
, bufsize
,
4686 if (!determine_size
&& n
> bufsize
) {
4696 if (! exclude_nt_acl
) {
4697 /* Add aces to value buffer */
4698 for (i
= 0; sd
->dacl
&& i
< sd
->dacl
->num_aces
; i
++) {
4700 SEC_ACE
*ace
= &sd
->dacl
->aces
[i
];
4701 convert_sid_to_string(ipc_cli
, pol
,
4705 if (all
|| all_nt
) {
4706 if (determine_size
) {
4707 p
= talloc_asprintf(
4723 ",ACL:%s:%d/%d/0x%08x",
4729 } else if ((StrnCaseCmp(name
, "acl", 3) == 0 &&
4730 StrCaseCmp(name
+3, sidstr
) == 0) ||
4731 (StrnCaseCmp(name
, "acl+", 4) == 0 &&
4732 StrCaseCmp(name
+4, sidstr
) == 0)) {
4733 if (determine_size
) {
4734 p
= talloc_asprintf(
4746 n
= snprintf(buf
, bufsize
,
4752 } else if (all_nt_acls
) {
4753 if (determine_size
) {
4754 p
= talloc_asprintf(
4756 "%s%s:%d/%d/0x%08x",
4768 n
= snprintf(buf
, bufsize
,
4769 "%s%s:%d/%d/0x%08x",
4777 if (!determine_size
&& n
> bufsize
) {
4788 /* Restore name pointer to its original value */
4792 if (all
|| some_dos
) {
4793 /* Point to the portion after "system.dos_attr." */
4794 name
+= 16; /* if (all) this will be invalid but unused */
4796 /* Obtain the DOS attributes */
4797 if (!smbc_getatr(context
, srv
, filename
, &mode
, &size
,
4804 errno
= smbc_errno(context
, srv
->cli
);
4809 create_time
= convert_timespec_to_time_t(create_time_ts
);
4810 access_time
= convert_timespec_to_time_t(access_time_ts
);
4811 write_time
= convert_timespec_to_time_t(write_time_ts
);
4812 change_time
= convert_timespec_to_time_t(change_time_ts
);
4814 if (! exclude_dos_mode
) {
4815 if (all
|| all_dos
) {
4816 if (determine_size
) {
4817 p
= talloc_asprintf(ctx
,
4830 n
= snprintf(buf
, bufsize
,
4838 } else if (StrCaseCmp(name
, "mode") == 0) {
4839 if (determine_size
) {
4840 p
= talloc_asprintf(ctx
, "0x%x", mode
);
4847 n
= snprintf(buf
, bufsize
,
4852 if (!determine_size
&& n
> bufsize
) {
4862 if (! exclude_dos_size
) {
4863 if (all
|| all_dos
) {
4864 if (determine_size
) {
4865 p
= talloc_asprintf(
4875 n
= snprintf(buf
, bufsize
,
4879 } else if (StrCaseCmp(name
, "size") == 0) {
4880 if (determine_size
) {
4881 p
= talloc_asprintf(
4891 n
= snprintf(buf
, bufsize
,
4897 if (!determine_size
&& n
> bufsize
) {
4907 if (! exclude_dos_create_time
&&
4908 attr_strings
.create_time_attr
!= NULL
) {
4909 if (all
|| all_dos
) {
4910 if (determine_size
) {
4911 p
= talloc_asprintf(ctx
,
4913 attr_strings
.create_time_attr
,
4921 n
= snprintf(buf
, bufsize
,
4923 attr_strings
.create_time_attr
,
4926 } else if (StrCaseCmp(name
, attr_strings
.create_time_attr
) == 0) {
4927 if (determine_size
) {
4928 p
= talloc_asprintf(ctx
, "%lu", create_time
);
4935 n
= snprintf(buf
, bufsize
,
4936 "%lu", create_time
);
4940 if (!determine_size
&& n
> bufsize
) {
4950 if (! exclude_dos_access_time
) {
4951 if (all
|| all_dos
) {
4952 if (determine_size
) {
4953 p
= talloc_asprintf(ctx
,
4955 attr_strings
.access_time_attr
,
4963 n
= snprintf(buf
, bufsize
,
4965 attr_strings
.access_time_attr
,
4968 } else if (StrCaseCmp(name
, attr_strings
.access_time_attr
) == 0) {
4969 if (determine_size
) {
4970 p
= talloc_asprintf(ctx
, "%lu", access_time
);
4977 n
= snprintf(buf
, bufsize
,
4978 "%lu", access_time
);
4982 if (!determine_size
&& n
> bufsize
) {
4992 if (! exclude_dos_write_time
) {
4993 if (all
|| all_dos
) {
4994 if (determine_size
) {
4995 p
= talloc_asprintf(ctx
,
4997 attr_strings
.write_time_attr
,
5005 n
= snprintf(buf
, bufsize
,
5007 attr_strings
.write_time_attr
,
5010 } else if (StrCaseCmp(name
, attr_strings
.write_time_attr
) == 0) {
5011 if (determine_size
) {
5012 p
= talloc_asprintf(ctx
, "%lu", write_time
);
5019 n
= snprintf(buf
, bufsize
,
5024 if (!determine_size
&& n
> bufsize
) {
5034 if (! exclude_dos_change_time
) {
5035 if (all
|| all_dos
) {
5036 if (determine_size
) {
5037 p
= talloc_asprintf(ctx
,
5039 attr_strings
.change_time_attr
,
5047 n
= snprintf(buf
, bufsize
,
5049 attr_strings
.change_time_attr
,
5052 } else if (StrCaseCmp(name
, attr_strings
.change_time_attr
) == 0) {
5053 if (determine_size
) {
5054 p
= talloc_asprintf(ctx
, "%lu", change_time
);
5061 n
= snprintf(buf
, bufsize
,
5062 "%lu", change_time
);
5066 if (!determine_size
&& n
> bufsize
) {
5076 if (! exclude_dos_inode
) {
5077 if (all
|| all_dos
) {
5078 if (determine_size
) {
5079 p
= talloc_asprintf(
5089 n
= snprintf(buf
, bufsize
,
5093 } else if (StrCaseCmp(name
, "inode") == 0) {
5094 if (determine_size
) {
5095 p
= talloc_asprintf(
5105 n
= snprintf(buf
, bufsize
,
5111 if (!determine_size
&& n
> bufsize
) {
5121 /* Restore name pointer to its original value */
5134 /*****************************************************
5135 set the ACLs on a file given an ascii description
5136 *******************************************************/
5138 cacl_set(TALLOC_CTX
*ctx
,
5139 struct cli_state
*cli
,
5140 struct cli_state
*ipc_cli
,
5142 const char *filename
,
5143 const char *the_acl
,
5149 SEC_DESC
*sd
= NULL
, *old
;
5150 SEC_ACL
*dacl
= NULL
;
5151 DOM_SID
*owner_sid
= NULL
;
5152 DOM_SID
*group_sid
= NULL
;
5157 bool numeric
= True
;
5159 /* the_acl will be null for REMOVE_ALL operations */
5161 numeric
= ((p
= strchr(the_acl
, ':')) != NULL
&&
5165 /* if this is to set the entire ACL... */
5166 if (*the_acl
== '*') {
5167 /* ... then increment past the first colon */
5171 sd
= sec_desc_parse(ctx
, ipc_cli
, pol
, numeric
,
5172 CONST_DISCARD(char *, the_acl
));
5180 /* SMBC_XATTR_MODE_REMOVE_ALL is the only caller
5181 that doesn't deref sd */
5183 if (!sd
&& (mode
!= SMBC_XATTR_MODE_REMOVE_ALL
)) {
5188 /* The desired access below is the only one I could find that works
5189 with NT4, W2KP and Samba */
5191 fnum
= cli_nt_create(cli
, filename
, CREATE_ACCESS_READ
);
5194 DEBUG(5, ("cacl_set failed to open %s: %s\n",
5195 filename
, cli_errstr(cli
)));
5200 old
= cli_query_secdesc(cli
, fnum
, ctx
);
5203 DEBUG(5, ("cacl_set Failed to query old descriptor\n"));
5208 cli_close(cli
, fnum
);
5211 case SMBC_XATTR_MODE_REMOVE_ALL
:
5212 old
->dacl
->num_aces
= 0;
5216 case SMBC_XATTR_MODE_REMOVE
:
5217 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
5220 for (j
=0;old
->dacl
&& j
<old
->dacl
->num_aces
;j
++) {
5221 if (sec_ace_equal(&sd
->dacl
->aces
[i
],
5222 &old
->dacl
->aces
[j
])) {
5224 for (k
=j
; k
<old
->dacl
->num_aces
-1;k
++) {
5225 old
->dacl
->aces
[k
] =
5226 old
->dacl
->aces
[k
+1];
5228 old
->dacl
->num_aces
--;
5243 case SMBC_XATTR_MODE_ADD
:
5244 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
5247 for (j
=0;old
->dacl
&& j
<old
->dacl
->num_aces
;j
++) {
5248 if (sid_equal(&sd
->dacl
->aces
[i
].trustee
,
5249 &old
->dacl
->aces
[j
].trustee
)) {
5250 if (!(flags
& SMBC_XATTR_FLAG_CREATE
)) {
5255 old
->dacl
->aces
[j
] = sd
->dacl
->aces
[i
];
5261 if (!found
&& (flags
& SMBC_XATTR_FLAG_REPLACE
)) {
5267 for (i
=0;sd
->dacl
&& i
<sd
->dacl
->num_aces
;i
++) {
5268 add_ace(&old
->dacl
, &sd
->dacl
->aces
[i
], ctx
);
5274 case SMBC_XATTR_MODE_SET
:
5276 owner_sid
= old
->owner_sid
;
5277 group_sid
= old
->group_sid
;
5281 case SMBC_XATTR_MODE_CHOWN
:
5282 owner_sid
= sd
->owner_sid
;
5285 case SMBC_XATTR_MODE_CHGRP
:
5286 group_sid
= sd
->group_sid
;
5290 /* Denied ACE entries must come before allowed ones */
5291 sort_acl(old
->dacl
);
5293 /* Create new security descriptor and set it */
5294 sd
= make_sec_desc(ctx
, old
->revision
, SEC_DESC_SELF_RELATIVE
,
5295 owner_sid
, group_sid
, NULL
, dacl
, &sd_size
);
5297 fnum
= cli_nt_create(cli
, filename
,
5298 WRITE_DAC_ACCESS
| WRITE_OWNER_ACCESS
);
5301 DEBUG(5, ("cacl_set failed to open %s: %s\n",
5302 filename
, cli_errstr(cli
)));
5307 if (!cli_set_secdesc(cli
, fnum
, sd
)) {
5308 DEBUG(5, ("ERROR: secdesc set failed: %s\n", cli_errstr(cli
)));
5315 cli_close(cli
, fnum
);
5326 smbc_setxattr_ctx(SMBCCTX
*context
,
5347 const char * create_time_attr
;
5348 const char * access_time_attr
;
5349 const char * write_time_attr
;
5350 const char * change_time_attr
;
5353 if (!context
|| !context
->internal
||
5354 !context
->internal
->_initialized
) {
5356 errno
= EINVAL
; /* Best I can think of ... */
5368 DEBUG(4, ("smbc_setxattr(%s, %s, %.*s)\n",
5369 fname
, name
, (int) size
, (const char*)value
));
5371 if (smbc_parse_path(context
, fname
,
5372 workgroup
, sizeof(workgroup
),
5373 server
, sizeof(server
),
5374 share
, sizeof(share
),
5377 password
, sizeof(password
),
5383 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
5385 srv
= smbc_server(context
, True
,
5386 server
, share
, workgroup
, user
, password
);
5388 return -1; /* errno set by smbc_server */
5391 if (! srv
->no_nt_session
) {
5392 ipc_srv
= smbc_attr_server(context
, server
, share
,
5393 workgroup
, user
, password
,
5396 srv
->no_nt_session
= True
;
5402 ctx
= talloc_init("smbc_setxattr");
5409 * Are they asking to set the entire set of known attributes?
5411 if (StrCaseCmp(name
, "system.*") == 0 ||
5412 StrCaseCmp(name
, "system.*+") == 0) {
5415 talloc_asprintf(ctx
, "%s:%s",
5416 name
+7, (const char *) value
);
5424 ret
= cacl_set(ctx
, srv
->cli
,
5425 ipc_srv
->cli
, &pol
, path
,
5428 ? SMBC_XATTR_MODE_SET
5429 : SMBC_XATTR_MODE_ADD
),
5435 /* get a DOS Attribute Descriptor with current attributes */
5436 dad
= dos_attr_query(context
, ctx
, path
, srv
);
5438 /* Overwrite old with new, using what was provided */
5439 dos_attr_parse(context
, dad
, srv
, namevalue
);
5441 /* Set the new DOS attributes */
5442 if (! smbc_setatr(context
, srv
, path
,
5449 /* cause failure if NT failed too */
5454 /* we only fail if both NT and DOS sets failed */
5455 if (ret
< 0 && ! dad
) {
5456 ret
= -1; /* in case dad was null */
5462 talloc_destroy(ctx
);
5467 * Are they asking to set an access control element or to set
5468 * the entire access control list?
5470 if (StrCaseCmp(name
, "system.nt_sec_desc.*") == 0 ||
5471 StrCaseCmp(name
, "system.nt_sec_desc.*+") == 0 ||
5472 StrCaseCmp(name
, "system.nt_sec_desc.revision") == 0 ||
5473 StrnCaseCmp(name
, "system.nt_sec_desc.acl", 22) == 0 ||
5474 StrnCaseCmp(name
, "system.nt_sec_desc.acl+", 23) == 0) {
5478 talloc_asprintf(ctx
, "%s:%s",
5479 name
+19, (const char *) value
);
5482 ret
= -1; /* errno set by smbc_server() */
5484 else if (! namevalue
) {
5488 ret
= cacl_set(ctx
, srv
->cli
,
5489 ipc_srv
->cli
, &pol
, path
,
5492 ? SMBC_XATTR_MODE_SET
5493 : SMBC_XATTR_MODE_ADD
),
5496 talloc_destroy(ctx
);
5501 * Are they asking to set the owner?
5503 if (StrCaseCmp(name
, "system.nt_sec_desc.owner") == 0 ||
5504 StrCaseCmp(name
, "system.nt_sec_desc.owner+") == 0) {
5508 talloc_asprintf(ctx
, "%s:%s",
5509 name
+19, (const char *) value
);
5513 ret
= -1; /* errno set by smbc_server() */
5515 else if (! namevalue
) {
5519 ret
= cacl_set(ctx
, srv
->cli
,
5520 ipc_srv
->cli
, &pol
, path
,
5521 namevalue
, SMBC_XATTR_MODE_CHOWN
, 0);
5523 talloc_destroy(ctx
);
5528 * Are they asking to set the group?
5530 if (StrCaseCmp(name
, "system.nt_sec_desc.group") == 0 ||
5531 StrCaseCmp(name
, "system.nt_sec_desc.group+") == 0) {
5535 talloc_asprintf(ctx
, "%s:%s",
5536 name
+19, (const char *) value
);
5539 /* errno set by smbc_server() */
5542 else if (! namevalue
) {
5546 ret
= cacl_set(ctx
, srv
->cli
,
5547 ipc_srv
->cli
, &pol
, path
,
5548 namevalue
, SMBC_XATTR_MODE_CHOWN
, 0);
5550 talloc_destroy(ctx
);
5554 /* Determine whether to use old-style or new-style attribute names */
5555 if (context
->internal
->_full_time_names
) {
5556 /* new-style names */
5557 attr_strings
.create_time_attr
= "system.dos_attr.CREATE_TIME";
5558 attr_strings
.access_time_attr
= "system.dos_attr.ACCESS_TIME";
5559 attr_strings
.write_time_attr
= "system.dos_attr.WRITE_TIME";
5560 attr_strings
.change_time_attr
= "system.dos_attr.CHANGE_TIME";
5562 /* old-style names */
5563 attr_strings
.create_time_attr
= NULL
;
5564 attr_strings
.access_time_attr
= "system.dos_attr.A_TIME";
5565 attr_strings
.write_time_attr
= "system.dos_attr.M_TIME";
5566 attr_strings
.change_time_attr
= "system.dos_attr.C_TIME";
5570 * Are they asking to set a DOS attribute?
5572 if (StrCaseCmp(name
, "system.dos_attr.*") == 0 ||
5573 StrCaseCmp(name
, "system.dos_attr.mode") == 0 ||
5574 (attr_strings
.create_time_attr
!= NULL
&&
5575 StrCaseCmp(name
, attr_strings
.create_time_attr
) == 0) ||
5576 StrCaseCmp(name
, attr_strings
.access_time_attr
) == 0 ||
5577 StrCaseCmp(name
, attr_strings
.write_time_attr
) == 0 ||
5578 StrCaseCmp(name
, attr_strings
.change_time_attr
) == 0) {
5580 /* get a DOS Attribute Descriptor with current attributes */
5581 dad
= dos_attr_query(context
, ctx
, path
, srv
);
5584 talloc_asprintf(ctx
, "%s:%s",
5585 name
+16, (const char *) value
);
5590 /* Overwrite old with provided new params */
5591 dos_attr_parse(context
, dad
, srv
, namevalue
);
5593 /* Set the new DOS attributes */
5594 ret2
= smbc_setatr(context
, srv
, path
,
5601 /* ret2 has True (success) / False (failure) */
5612 talloc_destroy(ctx
);
5616 /* Unsupported attribute name */
5617 talloc_destroy(ctx
);
5623 smbc_getxattr_ctx(SMBCCTX
*context
,
5641 const char * create_time_attr
;
5642 const char * access_time_attr
;
5643 const char * write_time_attr
;
5644 const char * change_time_attr
;
5648 if (!context
|| !context
->internal
||
5649 !context
->internal
->_initialized
) {
5651 errno
= EINVAL
; /* Best I can think of ... */
5663 DEBUG(4, ("smbc_getxattr(%s, %s)\n", fname
, name
));
5665 if (smbc_parse_path(context
, fname
,
5666 workgroup
, sizeof(workgroup
),
5667 server
, sizeof(server
),
5668 share
, sizeof(share
),
5671 password
, sizeof(password
),
5677 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
5679 srv
= smbc_server(context
, True
,
5680 server
, share
, workgroup
, user
, password
);
5682 return -1; /* errno set by smbc_server */
5685 if (! srv
->no_nt_session
) {
5686 ipc_srv
= smbc_attr_server(context
, server
, share
,
5687 workgroup
, user
, password
,
5690 srv
->no_nt_session
= True
;
5696 ctx
= talloc_init("smbc:getxattr");
5702 /* Determine whether to use old-style or new-style attribute names */
5703 if (context
->internal
->_full_time_names
) {
5704 /* new-style names */
5705 attr_strings
.create_time_attr
= "system.dos_attr.CREATE_TIME";
5706 attr_strings
.access_time_attr
= "system.dos_attr.ACCESS_TIME";
5707 attr_strings
.write_time_attr
= "system.dos_attr.WRITE_TIME";
5708 attr_strings
.change_time_attr
= "system.dos_attr.CHANGE_TIME";
5710 /* old-style names */
5711 attr_strings
.create_time_attr
= NULL
;
5712 attr_strings
.access_time_attr
= "system.dos_attr.A_TIME";
5713 attr_strings
.write_time_attr
= "system.dos_attr.M_TIME";
5714 attr_strings
.change_time_attr
= "system.dos_attr.C_TIME";
5717 /* Are they requesting a supported attribute? */
5718 if (StrCaseCmp(name
, "system.*") == 0 ||
5719 StrnCaseCmp(name
, "system.*!", 9) == 0 ||
5720 StrCaseCmp(name
, "system.*+") == 0 ||
5721 StrnCaseCmp(name
, "system.*+!", 10) == 0 ||
5722 StrCaseCmp(name
, "system.nt_sec_desc.*") == 0 ||
5723 StrnCaseCmp(name
, "system.nt_sec_desc.*!", 21) == 0 ||
5724 StrCaseCmp(name
, "system.nt_sec_desc.*+") == 0 ||
5725 StrnCaseCmp(name
, "system.nt_sec_desc.*+!", 22) == 0 ||
5726 StrCaseCmp(name
, "system.nt_sec_desc.revision") == 0 ||
5727 StrCaseCmp(name
, "system.nt_sec_desc.owner") == 0 ||
5728 StrCaseCmp(name
, "system.nt_sec_desc.owner+") == 0 ||
5729 StrCaseCmp(name
, "system.nt_sec_desc.group") == 0 ||
5730 StrCaseCmp(name
, "system.nt_sec_desc.group+") == 0 ||
5731 StrnCaseCmp(name
, "system.nt_sec_desc.acl", 22) == 0 ||
5732 StrnCaseCmp(name
, "system.nt_sec_desc.acl+", 23) == 0 ||
5733 StrCaseCmp(name
, "system.dos_attr.*") == 0 ||
5734 StrnCaseCmp(name
, "system.dos_attr.*!", 18) == 0 ||
5735 StrCaseCmp(name
, "system.dos_attr.mode") == 0 ||
5736 StrCaseCmp(name
, "system.dos_attr.size") == 0 ||
5737 (attr_strings
.create_time_attr
!= NULL
&&
5738 StrCaseCmp(name
, attr_strings
.create_time_attr
) == 0) ||
5739 StrCaseCmp(name
, attr_strings
.access_time_attr
) == 0 ||
5740 StrCaseCmp(name
, attr_strings
.write_time_attr
) == 0 ||
5741 StrCaseCmp(name
, attr_strings
.change_time_attr
) == 0 ||
5742 StrCaseCmp(name
, "system.dos_attr.inode") == 0) {
5745 ret
= cacl_get(context
, ctx
, srv
,
5746 ipc_srv
== NULL
? NULL
: ipc_srv
->cli
,
5748 CONST_DISCARD(char *, name
),
5749 CONST_DISCARD(char *, value
), size
);
5750 if (ret
< 0 && errno
== 0) {
5751 errno
= smbc_errno(context
, srv
->cli
);
5753 talloc_destroy(ctx
);
5757 /* Unsupported attribute name */
5758 talloc_destroy(ctx
);
5765 smbc_removexattr_ctx(SMBCCTX
*context
,
5781 if (!context
|| !context
->internal
||
5782 !context
->internal
->_initialized
) {
5784 errno
= EINVAL
; /* Best I can think of ... */
5796 DEBUG(4, ("smbc_removexattr(%s, %s)\n", fname
, name
));
5798 if (smbc_parse_path(context
, fname
,
5799 workgroup
, sizeof(workgroup
),
5800 server
, sizeof(server
),
5801 share
, sizeof(share
),
5804 password
, sizeof(password
),
5810 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
5812 srv
= smbc_server(context
, True
,
5813 server
, share
, workgroup
, user
, password
);
5815 return -1; /* errno set by smbc_server */
5818 if (! srv
->no_nt_session
) {
5819 ipc_srv
= smbc_attr_server(context
, server
, share
,
5820 workgroup
, user
, password
,
5823 srv
->no_nt_session
= True
;
5830 return -1; /* errno set by smbc_attr_server */
5833 ctx
= talloc_init("smbc_removexattr");
5839 /* Are they asking to set the entire ACL? */
5840 if (StrCaseCmp(name
, "system.nt_sec_desc.*") == 0 ||
5841 StrCaseCmp(name
, "system.nt_sec_desc.*+") == 0) {
5844 ret
= cacl_set(ctx
, srv
->cli
,
5845 ipc_srv
->cli
, &pol
, path
,
5846 NULL
, SMBC_XATTR_MODE_REMOVE_ALL
, 0);
5847 talloc_destroy(ctx
);
5852 * Are they asking to remove one or more spceific security descriptor
5855 if (StrCaseCmp(name
, "system.nt_sec_desc.revision") == 0 ||
5856 StrCaseCmp(name
, "system.nt_sec_desc.owner") == 0 ||
5857 StrCaseCmp(name
, "system.nt_sec_desc.owner+") == 0 ||
5858 StrCaseCmp(name
, "system.nt_sec_desc.group") == 0 ||
5859 StrCaseCmp(name
, "system.nt_sec_desc.group+") == 0 ||
5860 StrnCaseCmp(name
, "system.nt_sec_desc.acl", 22) == 0 ||
5861 StrnCaseCmp(name
, "system.nt_sec_desc.acl+", 23) == 0) {
5864 ret
= cacl_set(ctx
, srv
->cli
,
5865 ipc_srv
->cli
, &pol
, path
,
5866 name
+ 19, SMBC_XATTR_MODE_REMOVE
, 0);
5867 talloc_destroy(ctx
);
5871 /* Unsupported attribute name */
5872 talloc_destroy(ctx
);
5878 smbc_listxattr_ctx(SMBCCTX
*context
,
5884 * This isn't quite what listxattr() is supposed to do. This returns
5885 * the complete set of attribute names, always, rather than only those
5886 * attribute names which actually exist for a file. Hmmm...
5888 const char supported_old
[] =
5891 "system.nt_sec_desc.revision\0"
5892 "system.nt_sec_desc.owner\0"
5893 "system.nt_sec_desc.owner+\0"
5894 "system.nt_sec_desc.group\0"
5895 "system.nt_sec_desc.group+\0"
5896 "system.nt_sec_desc.acl.*\0"
5897 "system.nt_sec_desc.acl\0"
5898 "system.nt_sec_desc.acl+\0"
5899 "system.nt_sec_desc.*\0"
5900 "system.nt_sec_desc.*+\0"
5901 "system.dos_attr.*\0"
5902 "system.dos_attr.mode\0"
5903 "system.dos_attr.c_time\0"
5904 "system.dos_attr.a_time\0"
5905 "system.dos_attr.m_time\0"
5907 const char supported_new
[] =
5910 "system.nt_sec_desc.revision\0"
5911 "system.nt_sec_desc.owner\0"
5912 "system.nt_sec_desc.owner+\0"
5913 "system.nt_sec_desc.group\0"
5914 "system.nt_sec_desc.group+\0"
5915 "system.nt_sec_desc.acl.*\0"
5916 "system.nt_sec_desc.acl\0"
5917 "system.nt_sec_desc.acl+\0"
5918 "system.nt_sec_desc.*\0"
5919 "system.nt_sec_desc.*+\0"
5920 "system.dos_attr.*\0"
5921 "system.dos_attr.mode\0"
5922 "system.dos_attr.create_time\0"
5923 "system.dos_attr.access_time\0"
5924 "system.dos_attr.write_time\0"
5925 "system.dos_attr.change_time\0"
5927 const char * supported
;
5929 if (context
->internal
->_full_time_names
) {
5930 supported
= supported_new
;
5932 supported
= supported_old
;
5936 return sizeof(supported
);
5939 if (sizeof(supported
) > size
) {
5944 /* this can't be strcpy() because there are embedded null characters */
5945 memcpy(list
, supported
, sizeof(supported
));
5946 return sizeof(supported
);
5951 * Open a print file to be written to by other calls
5955 smbc_open_print_job_ctx(SMBCCTX
*context
,
5964 if (!context
|| !context
->internal
||
5965 !context
->internal
->_initialized
) {
5979 DEBUG(4, ("smbc_open_print_job_ctx(%s)\n", fname
));
5981 if (smbc_parse_path(context
, fname
,
5983 server
, sizeof(server
),
5984 share
, sizeof(share
),
5987 password
, sizeof(password
),
5993 /* What if the path is empty, or the file exists? */
5995 return (context
->open
)(context
, fname
, O_WRONLY
, 666);
6000 * Routine to print a file on a remote server ...
6002 * We open the file, which we assume to be on a remote server, and then
6003 * copy it to a print file on the share specified by printq.
6007 smbc_print_file_ctx(SMBCCTX
*c_file
,
6019 if (!c_file
|| !c_file
->internal
->_initialized
|| !c_print
||
6020 !c_print
->internal
->_initialized
) {
6027 if (!fname
&& !printq
) {
6034 /* Try to open the file for reading ... */
6036 if ((long)(fid1
= (c_file
->open
)(c_file
, fname
, O_RDONLY
, 0666)) < 0) {
6038 DEBUG(3, ("Error, fname=%s, errno=%i\n", fname
, errno
));
6039 return -1; /* smbc_open sets errno */
6043 /* Now, try to open the printer file for writing */
6045 if ((long)(fid2
= (c_print
->open_print_job
)(c_print
, printq
)) < 0) {
6047 saverr
= errno
; /* Save errno */
6048 (c_file
->close_fn
)(c_file
, fid1
);
6054 while ((bytes
= (c_file
->read
)(c_file
, fid1
, buf
, sizeof(buf
))) > 0) {
6058 if (((c_print
->write
)(c_print
, fid2
, buf
, bytes
)) < 0) {
6061 (c_file
->close_fn
)(c_file
, fid1
);
6062 (c_print
->close_fn
)(c_print
, fid2
);
6071 (c_file
->close_fn
)(c_file
, fid1
); /* We have to close these anyway */
6072 (c_print
->close_fn
)(c_print
, fid2
);
6086 * Routine to list print jobs on a printer share ...
6090 smbc_list_print_jobs_ctx(SMBCCTX
*context
,
6092 smbc_list_print_job_fn fn
)
6102 if (!context
|| !context
->internal
||
6103 !context
->internal
->_initialized
) {
6117 DEBUG(4, ("smbc_list_print_jobs(%s)\n", fname
));
6119 if (smbc_parse_path(context
, fname
,
6120 workgroup
, sizeof(workgroup
),
6121 server
, sizeof(server
),
6122 share
, sizeof(share
),
6125 password
, sizeof(password
),
6131 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
6133 srv
= smbc_server(context
, True
,
6134 server
, share
, workgroup
, user
, password
);
6138 return -1; /* errno set by smbc_server */
6142 if (cli_print_queue(srv
->cli
,
6143 (void (*)(struct print_job_info
*))fn
) < 0) {
6145 errno
= smbc_errno(context
, srv
->cli
);
6155 * Delete a print job from a remote printer share
6159 smbc_unlink_print_job_ctx(SMBCCTX
*context
,
6172 if (!context
|| !context
->internal
||
6173 !context
->internal
->_initialized
) {
6187 DEBUG(4, ("smbc_unlink_print_job(%s)\n", fname
));
6189 if (smbc_parse_path(context
, fname
,
6190 workgroup
, sizeof(workgroup
),
6191 server
, sizeof(server
),
6192 share
, sizeof(share
),
6195 password
, sizeof(password
),
6201 if (user
[0] == (char)0) fstrcpy(user
, context
->user
);
6203 srv
= smbc_server(context
, True
,
6204 server
, share
, workgroup
, user
, password
);
6208 return -1; /* errno set by smbc_server */
6212 if ((err
= cli_printjob_del(srv
->cli
, id
)) != 0) {
6215 errno
= smbc_errno(context
, srv
->cli
);
6216 else if (err
== ERRnosuchprintjob
)
6227 * Get a new empty handle to fill in with your own info
6230 smbc_new_context(void)
6234 context
= SMB_MALLOC_P(SMBCCTX
);
6240 ZERO_STRUCTP(context
);
6242 context
->internal
= SMB_MALLOC_P(struct smbc_internal_data
);
6243 if (!context
->internal
) {
6249 ZERO_STRUCTP(context
->internal
);
6252 /* ADD REASONABLE DEFAULTS */
6254 context
->timeout
= 20000; /* 20 seconds */
6256 context
->options
.browse_max_lmb_count
= 3; /* # LMBs to query */
6257 context
->options
.urlencode_readdir_entries
= False
;/* backward compat */
6258 context
->options
.one_share_per_server
= False
;/* backward compat */
6259 context
->internal
->_share_mode
= SMBC_SHAREMODE_DENY_NONE
;
6260 /* backward compat */
6262 context
->open
= smbc_open_ctx
;
6263 context
->creat
= smbc_creat_ctx
;
6264 context
->read
= smbc_read_ctx
;
6265 context
->write
= smbc_write_ctx
;
6266 context
->close_fn
= smbc_close_ctx
;
6267 context
->unlink
= smbc_unlink_ctx
;
6268 context
->rename
= smbc_rename_ctx
;
6269 context
->lseek
= smbc_lseek_ctx
;
6270 context
->stat
= smbc_stat_ctx
;
6271 context
->fstat
= smbc_fstat_ctx
;
6272 context
->opendir
= smbc_opendir_ctx
;
6273 context
->closedir
= smbc_closedir_ctx
;
6274 context
->readdir
= smbc_readdir_ctx
;
6275 context
->getdents
= smbc_getdents_ctx
;
6276 context
->mkdir
= smbc_mkdir_ctx
;
6277 context
->rmdir
= smbc_rmdir_ctx
;
6278 context
->telldir
= smbc_telldir_ctx
;
6279 context
->lseekdir
= smbc_lseekdir_ctx
;
6280 context
->fstatdir
= smbc_fstatdir_ctx
;
6281 context
->chmod
= smbc_chmod_ctx
;
6282 context
->utimes
= smbc_utimes_ctx
;
6283 context
->setxattr
= smbc_setxattr_ctx
;
6284 context
->getxattr
= smbc_getxattr_ctx
;
6285 context
->removexattr
= smbc_removexattr_ctx
;
6286 context
->listxattr
= smbc_listxattr_ctx
;
6287 context
->open_print_job
= smbc_open_print_job_ctx
;
6288 context
->print_file
= smbc_print_file_ctx
;
6289 context
->list_print_jobs
= smbc_list_print_jobs_ctx
;
6290 context
->unlink_print_job
= smbc_unlink_print_job_ctx
;
6292 context
->callbacks
.check_server_fn
= smbc_check_server
;
6293 context
->callbacks
.remove_unused_server_fn
= smbc_remove_unused_server
;
6295 smbc_default_cache_functions(context
);
6303 * Returns 0 on success. Otherwise returns 1, the SMBCCTX is _not_ freed
6304 * and thus you'll be leaking memory if not handled properly.
6308 smbc_free_context(SMBCCTX
*context
,
6318 DEBUG(1,("Performing aggressive shutdown.\n"));
6320 f
= context
->internal
->_files
;
6322 (context
->close_fn
)(context
, f
);
6325 context
->internal
->_files
= NULL
;
6327 /* First try to remove the servers the nice way. */
6328 if (context
->callbacks
.purge_cached_fn(context
)) {
6331 DEBUG(1, ("Could not purge all servers, "
6332 "Nice way shutdown failed.\n"));
6333 s
= context
->internal
->_servers
;
6335 DEBUG(1, ("Forced shutdown: %p (fd=%d)\n",
6337 cli_shutdown(s
->cli
);
6338 (context
->callbacks
.remove_cached_srv_fn
)(context
,
6341 DLIST_REMOVE(context
->internal
->_servers
, s
);
6345 context
->internal
->_servers
= NULL
;
6349 /* This is the polite way */
6350 if ((context
->callbacks
.purge_cached_fn
)(context
)) {
6351 DEBUG(1, ("Could not purge all servers, "
6352 "free_context failed.\n"));
6356 if (context
->internal
->_servers
) {
6357 DEBUG(1, ("Active servers in context, "
6358 "free_context failed.\n"));
6362 if (context
->internal
->_files
) {
6363 DEBUG(1, ("Active files in context, "
6364 "free_context failed.\n"));
6370 /* Things we have to clean up */
6371 SAFE_FREE(context
->workgroup
);
6372 SAFE_FREE(context
->netbios_name
);
6373 SAFE_FREE(context
->user
);
6375 DEBUG(3, ("Context %p succesfully freed\n", context
));
6376 SAFE_FREE(context
->internal
);
6383 * Each time the context structure is changed, we have binary backward
6384 * compatibility issues. Instead of modifying the public portions of the
6385 * context structure to add new options, instead, we put them in the internal
6386 * portion of the context structure and provide a set function for these new
6390 smbc_option_set(SMBCCTX
*context
,
6392 ... /* option_value */)
6398 smbc_get_auth_data_with_context_fn auth_fn
;
6402 va_start(ap
, option_name
);
6404 if (strcmp(option_name
, "debug_to_stderr") == 0) {
6406 * Log to standard error instead of standard output.
6408 option_value
.b
= (bool) va_arg(ap
, int);
6409 context
->internal
->_debug_stderr
= option_value
.b
;
6411 } else if (strcmp(option_name
, "full_time_names") == 0) {
6413 * Use new-style time attribute names, e.g. WRITE_TIME rather
6414 * than the old-style names such as M_TIME. This allows also
6415 * setting/getting CREATE_TIME which was previously
6416 * unimplemented. (Note that the old C_TIME was supposed to
6417 * be CHANGE_TIME but was confused and sometimes referred to
6420 option_value
.b
= (bool) va_arg(ap
, int);
6421 context
->internal
->_full_time_names
= option_value
.b
;
6423 } else if (strcmp(option_name
, "open_share_mode") == 0) {
6425 * The share mode to use for files opened with
6426 * smbc_open_ctx(). The default is SMBC_SHAREMODE_DENY_NONE.
6428 option_value
.i
= va_arg(ap
, int);
6429 context
->internal
->_share_mode
=
6430 (smbc_share_mode
) option_value
.i
;
6432 } else if (strcmp(option_name
, "auth_function") == 0) {
6434 * Use the new-style authentication function which includes
6437 option_value
.auth_fn
=
6438 va_arg(ap
, smbc_get_auth_data_with_context_fn
);
6439 context
->internal
->_auth_fn_with_context
=
6440 option_value
.auth_fn
;
6441 } else if (strcmp(option_name
, "user_data") == 0) {
6443 * Save a user data handle which may be retrieved by the user
6444 * with smbc_option_get()
6446 option_value
.v
= va_arg(ap
, void *);
6447 context
->internal
->_user_data
= option_value
.v
;
6455 * Retrieve the current value of an option
6458 smbc_option_get(SMBCCTX
*context
,
6461 if (strcmp(option_name
, "debug_stderr") == 0) {
6463 * Log to standard error instead of standard output.
6465 #if defined(__intptr_t_defined) || defined(HAVE_INTPTR_T)
6466 return (void *) (intptr_t) context
->internal
->_debug_stderr
;
6468 return (void *) context
->internal
->_debug_stderr
;
6470 } else if (strcmp(option_name
, "full_time_names") == 0) {
6472 * Use new-style time attribute names, e.g. WRITE_TIME rather
6473 * than the old-style names such as M_TIME. This allows also
6474 * setting/getting CREATE_TIME which was previously
6475 * unimplemented. (Note that the old C_TIME was supposed to
6476 * be CHANGE_TIME but was confused and sometimes referred to
6479 #if defined(__intptr_t_defined) || defined(HAVE_INTPTR_T)
6480 return (void *) (intptr_t) context
->internal
->_full_time_names
;
6482 return (void *) context
->internal
->_full_time_names
;
6485 } else if (strcmp(option_name
, "auth_function") == 0) {
6487 * Use the new-style authentication function which includes
6490 return (void *) context
->internal
->_auth_fn_with_context
;
6491 } else if (strcmp(option_name
, "user_data") == 0) {
6493 * Save a user data handle which may be retrieved by the user
6494 * with smbc_option_get()
6496 return context
->internal
->_user_data
;
6504 * Initialise the library etc
6506 * We accept a struct containing handle information.
6507 * valid values for info->debug from 0 to 100,
6508 * and insist that info->fn must be non-null.
6511 smbc_init_context(SMBCCTX
*context
)
6518 if (!context
|| !context
->internal
) {
6523 /* Do not initialise the same client twice */
6524 if (context
->internal
->_initialized
) {
6528 if ((!context
->callbacks
.auth_fn
&&
6529 !context
->internal
->_auth_fn_with_context
) ||
6530 context
->debug
< 0 ||
6531 context
->debug
> 100) {
6538 if (!smbc_initialized
) {
6540 * Do some library-wide intializations the first time we get
6543 bool conf_loaded
= False
;
6545 /* Set this to what the user wants */
6546 DEBUGLEVEL
= context
->debug
;
6550 setup_logging("libsmbclient", True
);
6551 if (context
->internal
->_debug_stderr
) {
6553 x_setbuf(x_stderr
, NULL
);
6556 /* Here we would open the smb.conf file if needed ... */
6558 in_client
= True
; /* FIXME, make a param */
6560 home
= getenv("HOME");
6562 slprintf(conf
, sizeof(conf
), "%s/.smb/smb.conf", home
);
6563 if (lp_load(conf
, True
, False
, False
, True
)) {
6566 DEBUG(5, ("Could not load config file: %s\n",
6573 * Well, if that failed, try the dyn_CONFIGFILE
6574 * Which points to the standard locn, and if that
6575 * fails, silently ignore it and use the internal
6579 if (!lp_load(dyn_CONFIGFILE
, True
, False
, False
, False
)) {
6580 DEBUG(5, ("Could not load config file: %s\n",
6584 * We loaded the global config file. Now lets
6585 * load user-specific modifications to the
6588 slprintf(conf
, sizeof(conf
),
6589 "%s/.smb/smb.conf.append", home
);
6590 if (!lp_load(conf
, True
, False
, False
, False
)) {
6592 ("Could not append config file: "
6599 load_interfaces(); /* Load the list of interfaces ... */
6601 reopen_logs(); /* Get logging working ... */
6604 * Block SIGPIPE (from lib/util_sock.c: write())
6605 * It is not needed and should not stop execution
6607 BlockSignals(True
, SIGPIPE
);
6609 /* Done with one-time initialisation */
6610 smbc_initialized
= 1;
6614 if (!context
->user
) {
6616 * FIXME: Is this the best way to get the user info?
6618 user
= getenv("USER");
6619 /* walk around as "guest" if no username can be found */
6620 if (!user
) context
->user
= SMB_STRDUP("guest");
6621 else context
->user
= SMB_STRDUP(user
);
6624 if (!context
->netbios_name
) {
6626 * We try to get our netbios name from the config. If that
6627 * fails we fall back on constructing our netbios name from
6630 if (global_myname()) {
6631 context
->netbios_name
= SMB_STRDUP(global_myname());
6635 * Hmmm, I want to get hostname as well, but I am too
6636 * lazy for the moment
6639 context
->netbios_name
= (char *)SMB_MALLOC(17);
6640 if (!context
->netbios_name
) {
6644 slprintf(context
->netbios_name
, 16,
6645 "smbc%s%d", context
->user
, pid
);
6649 DEBUG(1, ("Using netbios name %s.\n", context
->netbios_name
));
6651 if (!context
->workgroup
) {
6652 if (lp_workgroup()) {
6653 context
->workgroup
= SMB_STRDUP(lp_workgroup());
6656 /* TODO: Think about a decent default workgroup */
6657 context
->workgroup
= SMB_STRDUP("samba");
6661 DEBUG(1, ("Using workgroup %s.\n", context
->workgroup
));
6663 /* shortest timeout is 1 second */
6664 if (context
->timeout
> 0 && context
->timeout
< 1000)
6665 context
->timeout
= 1000;
6668 * FIXME: Should we check the function pointers here?
6671 context
->internal
->_initialized
= True
;
6677 /* Return the verion of samba, and thus libsmbclient */
6681 return samba_version_string();