2 Unix SMB/Netbios implementation.
3 SMB client library implementation
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Richard Sharpe 2000, 2002
6 Copyright (C) John Terpstra 2000
7 Copyright (C) Tom Jansen (Ninja ISD) 2002
8 Copyright (C) Derrell Lipman 2003-2008
9 Copyright (C) Jeremy Allison 2007, 2008
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "libsmb/libsmb.h"
27 #include "libsmbclient.h"
28 #include "libsmb_internal.h"
29 #include "../libcli/smb/smbXcli_base.h"
32 * Generate an inode number from file name for those things that need it
36 generate_inode(SMBCCTX
*context
,
39 if (!context
|| !context
->internal
->initialized
) {
44 if (!*name
) return 2; /* FIXME, why 2 ??? */
45 return (ino_t
)str_checksum(name
);
49 * Routine to put basic stat info into a stat structure ... Used by stat and
54 setup_stat(SMBCCTX
*context
,
60 TALLOC_CTX
*frame
= talloc_stackframe();
64 if (IS_DOS_DIR(mode
)) {
65 st
->st_mode
= SMBC_DIR_MODE
;
67 st
->st_mode
= SMBC_FILE_MODE
;
70 if (IS_DOS_ARCHIVE(mode
)) st
->st_mode
|= S_IXUSR
;
71 if (IS_DOS_SYSTEM(mode
)) st
->st_mode
|= S_IXGRP
;
72 if (IS_DOS_HIDDEN(mode
)) st
->st_mode
|= S_IXOTH
;
73 if (!IS_DOS_READONLY(mode
)) st
->st_mode
|= S_IWUSR
;
76 #ifdef HAVE_STAT_ST_BLKSIZE
79 #ifdef HAVE_STAT_ST_BLOCKS
80 st
->st_blocks
= (size
+511)/512;
82 #ifdef HAVE_STRUCT_STAT_ST_RDEV
85 st
->st_uid
= getuid();
86 st
->st_gid
= getgid();
88 if (IS_DOS_DIR(mode
)) {
94 if (st
->st_ino
== 0) {
95 st
->st_ino
= generate_inode(context
, fname
);
99 return True
; /* FIXME: Is this needed ? */
103 * Routine to stat a file given a name
107 SMBC_stat_ctx(SMBCCTX
*context
,
115 char *password
= NULL
;
116 char *workgroup
= NULL
;
118 struct timespec write_time_ts
;
119 struct timespec access_time_ts
;
120 struct timespec change_time_ts
;
125 TALLOC_CTX
*frame
= talloc_stackframe();
127 if (!context
|| !context
->internal
->initialized
) {
128 errno
= EINVAL
; /* Best I can think of ... */
139 DEBUG(4, ("smbc_stat(%s)\n", fname
));
141 if (SMBC_parse_path(frame
,
157 if (!user
|| user
[0] == (char)0) {
158 user
= talloc_strdup(frame
, smbc_getUser(context
));
166 srv
= SMBC_server(frame
, context
, True
,
167 server
, port
, share
, &workgroup
, &user
, &password
);
170 return -1; /* errno set by SMBC_server */
173 if (!SMBC_getatr(context
, srv
, path
, &mode
, &size
,
179 errno
= SMBC_errno(context
, srv
->cli
);
186 setup_stat(context
, st
, fname
, size
, mode
);
188 st
->st_atime
= convert_timespec_to_time_t(access_time_ts
);
189 st
->st_ctime
= convert_timespec_to_time_t(change_time_ts
);
190 st
->st_mtime
= convert_timespec_to_time_t(write_time_ts
);
191 st
->st_dev
= srv
->dev
;
198 * Routine to stat a file given an fd
202 SMBC_fstat_ctx(SMBCCTX
*context
,
206 struct timespec change_time_ts
;
207 struct timespec access_time_ts
;
208 struct timespec write_time_ts
;
214 char *password
= NULL
;
216 char *targetpath
= NULL
;
217 struct cli_state
*targetcli
= NULL
;
220 TALLOC_CTX
*frame
= talloc_stackframe();
223 if (!context
|| !context
->internal
->initialized
) {
229 if (!file
|| !SMBC_dlist_contains(context
->internal
->files
, file
)) {
237 return smbc_getFunctionFstatdir(context
)(context
, file
, st
);
240 /*d_printf(">>>fstat: parsing %s\n", file->fname);*/
241 if (SMBC_parse_path(frame
,
257 /*d_printf(">>>fstat: resolving %s\n", path);*/
258 status
= cli_resolve_path(frame
, "", context
->internal
->auth_info
,
259 file
->srv
->cli
, path
,
260 &targetcli
, &targetpath
);
261 if (!NT_STATUS_IS_OK(status
)) {
262 d_printf("Could not resolve %s\n", path
);
267 /*d_printf(">>>fstat: resolved path as %s\n", targetpath);*/
269 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
270 targetcli
, file
->cli_fd
, &mode
, &size
,
276 time_t change_time
, access_time
, write_time
;
278 if (!NT_STATUS_IS_OK(cli_getattrE(targetcli
, file
->cli_fd
, &mode
, &size
,
279 &change_time
, &access_time
, &write_time
))) {
284 change_time_ts
= convert_time_t_to_timespec(change_time
);
285 access_time_ts
= convert_time_t_to_timespec(access_time
);
286 write_time_ts
= convert_time_t_to_timespec(write_time
);
291 setup_stat(context
, st
, file
->fname
, size
, mode
);
293 st
->st_atime
= convert_timespec_to_time_t(access_time_ts
);
294 st
->st_ctime
= convert_timespec_to_time_t(change_time_ts
);
295 st
->st_mtime
= convert_timespec_to_time_t(write_time_ts
);
296 st
->st_dev
= file
->srv
->dev
;
304 * Routine to obtain file system information given a path
307 SMBC_statvfs_ctx(SMBCCTX
*context
,
316 /* Determine if the provided path is a file or a folder */
317 if (SMBC_stat_ctx(context
, path
, &statbuf
) < 0) {
321 /* Is it a file or a directory? */
322 if (S_ISDIR(statbuf
.st_mode
)) {
323 /* It's a directory. */
324 if ((pFile
= SMBC_opendir_ctx(context
, path
)) == NULL
) {
328 } else if (S_ISREG(statbuf
.st_mode
)) {
330 if ((pFile
= SMBC_open_ctx(context
, path
,
331 O_RDONLY
, 0)) == NULL
) {
336 /* It's neither a file nor a directory. Not supported. */
341 /* Now we have an open file handle, so just use SMBC_fstatvfs */
342 ret
= SMBC_fstatvfs_ctx(context
, pFile
, st
);
344 /* Close the file or directory */
346 SMBC_closedir_ctx(context
, pFile
);
348 SMBC_close_ctx(context
, pFile
);
356 * Routine to obtain file system information given an fd
360 SMBC_fstatvfs_ctx(SMBCCTX
*context
,
364 unsigned long flags
= 0;
366 struct cli_state
*cli
= file
->srv
->cli
;
368 /* Initialize all fields (at least until we actually use them) */
369 memset(st
, 0, sizeof(*st
));
372 * The state of each flag is such that the same bits are unset as
373 * would typically be unset on a local file system on a POSIX OS. Thus
374 * the bit is on, for example, only for case-insensitive file systems
375 * since most POSIX file systems are case sensitive and fstatvfs()
376 * would typically return zero in these bits on such a local file
380 /* See if the server has UNIX CIFS support */
381 if (! SERVER_HAS_UNIX_CIFS(cli
)) {
382 uint64_t total_allocation_units
;
383 uint64_t caller_allocation_units
;
384 uint64_t actual_allocation_units
;
385 uint64_t sectors_per_allocation_unit
;
386 uint64_t bytes_per_sector
;
389 /* Nope. If size data is available... */
390 status
= cli_get_fs_full_size_info(cli
,
391 &total_allocation_units
,
392 &caller_allocation_units
,
393 &actual_allocation_units
,
394 §ors_per_allocation_unit
,
396 if (NT_STATUS_IS_OK(status
)) {
398 /* ... then provide it */
400 (unsigned long) bytes_per_sector
;
403 (unsigned long) sectors_per_allocation_unit
;
406 (fsblkcnt_t
) total_allocation_units
;
408 (fsblkcnt_t
) actual_allocation_units
;
411 flags
|= SMBC_VFS_FEATURE_NO_UNIXCIFS
;
413 uint32 optimal_transfer_size
;
415 uint64_t total_blocks
;
416 uint64_t blocks_available
;
417 uint64_t user_blocks_available
;
418 uint64_t total_file_nodes
;
419 uint64_t free_file_nodes
;
420 uint64_t fs_identifier
;
423 /* Has UNIXCIFS. If POSIX filesystem info is available... */
424 status
= cli_get_posix_fs_info(cli
,
425 &optimal_transfer_size
,
429 &user_blocks_available
,
433 if (NT_STATUS_IS_OK(status
)) {
435 /* ... then what's provided here takes precedence. */
437 (unsigned long) block_size
;
439 (fsblkcnt_t
) total_blocks
;
441 (fsblkcnt_t
) blocks_available
;
443 (fsblkcnt_t
) user_blocks_available
;
445 (fsfilcnt_t
) total_file_nodes
;
447 (fsfilcnt_t
) free_file_nodes
;
450 (unsigned long) fs_identifier
;
455 /* See if the share is case sensitive */
456 if (!NT_STATUS_IS_OK(cli_get_fs_attr_info(cli
, &fs_attrs
))) {
458 * We can't determine the case sensitivity of
459 * the share. We have no choice but to use the
460 * user-specified case sensitivity setting.
462 if (! smbc_getOptionCaseSensitive(context
)) {
463 flags
|= SMBC_VFS_FEATURE_CASE_INSENSITIVE
;
466 if (! (fs_attrs
& FILE_CASE_SENSITIVE_SEARCH
)) {
467 flags
|= SMBC_VFS_FEATURE_CASE_INSENSITIVE
;
471 /* See if DFS is supported */
472 if ((smb1cli_conn_capabilities(cli
->conn
) & CAP_DFS
) && cli
->dfsroot
) {
473 flags
|= SMBC_VFS_FEATURE_DFS
;
476 #if HAVE_STATVFS_F_FLAG
478 #elif HAVE_STATVFS_F_FLAGS