1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-20 08:23:50 +03:00

Initial revamp of the libsmbclient interface.

The libsmbclient interface has suffered from difficulty of improvement and
feature enrichment without causing ABI breakage.  Although there were a number
of issues, the primary ones were:

(a) the user of the library would manually manipulate the context structure
    members, meaning that nothing in the context structure could change other
    than adding stuff at the end;

(b) there were three methods of setting options: setting bits in a flags field
    within the context structure, setting explicit options variables within an
    options structure in the context structure, and by calling the
    smbc_option_set() function;

(c) the authentication callback did not traditionally provide enough
    information to the callee which required adding an option for a callback
    with a different signature, and now there are requests for even more
    information at the callback, requiring yet a third signature and option to
    set it (if we implement that feature).

This commit provides a reorganization of the code which fixes (a) and (b).
The context structure is now entirely opaque, and there are setter and getter
functions for manipulating it.  This makes maintaining ABI consistency much,
much easier.

Additionally, the options setting/getting has been unified into a single
mechanism using smbc_option_set() and smbc_option_get().

Yet to be completed is a refactoring of the authentication callback (c).

The test programs in examples/libsmbclient have been modified (if necessary;
some applications require no changes at all) for the new API and a few have
been minimally tested.

Derrell
This commit is contained in:
Derrell Lipman
2008-02-28 11:23:20 -05:00
parent aa9c0f5877
commit d4b4bae8de
18 changed files with 9221 additions and 7629 deletions

View File

@@ -5,7 +5,7 @@
Copyright (C) Richard Sharpe 2000
Copyright (C) John Terpstra 2000
Copyright (C) Tom Jansen (Ninja ISD) 2002
Copyright (C) Derrell Lipman 2003
Copyright (C) Derrell Lipman 2003, 2008
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -23,8 +23,7 @@
#include "includes.h"
#include "include/libsmb_internal.h"
#include "libsmb_internal.h"
struct smbc_compat_fdlist {
SMBCFILE * file;
@@ -39,7 +38,8 @@ static struct smbc_compat_fdlist * smbc_compat_fd_in_use = NULL;
static struct smbc_compat_fdlist * smbc_compat_fd_avail = NULL;
/* Find an fd and return the SMBCFILE * or NULL on failure */
static SMBCFILE * find_fd(int fd)
static SMBCFILE *
find_fd(int fd)
{
struct smbc_compat_fdlist * f = smbc_compat_fd_in_use;
while (f) {
@@ -51,7 +51,8 @@ static SMBCFILE * find_fd(int fd)
}
/* Add an fd, returns 0 on success, -1 on error with errno set */
static int add_fd(SMBCFILE * file)
static int
add_fd(SMBCFILE * file)
{
struct smbc_compat_fdlist * f = smbc_compat_fd_avail;
@@ -90,7 +91,8 @@ static int add_fd(SMBCFILE * file)
/* Delete an fd, returns 0 on success */
static int del_fd(int fd)
static int
del_fd(int fd)
{
struct smbc_compat_fdlist * f = smbc_compat_fd_in_use;
@@ -112,15 +114,17 @@ static int del_fd(int fd)
int smbc_init(smbc_get_auth_data_fn fn, int debug)
int
smbc_init(smbc_get_auth_data_fn fn,
int debug)
{
if (!smbc_compat_initialized) {
statcont = smbc_new_context();
if (!statcont)
return -1;
statcont->debug = debug;
statcont->callbacks.auth_fn = fn;
smbc_setDebug(statcont, debug);
smbc_setFunctionAuthData(statcont, fn);
if (!smbc_init_context(statcont)) {
smbc_free_context(statcont, False);
@@ -135,7 +139,8 @@ int smbc_init(smbc_get_auth_data_fn fn, int debug)
}
SMBCCTX *smbc_set_context(SMBCCTX * context)
SMBCCTX *
smbc_set_context(SMBCCTX * context)
{
SMBCCTX *old_context = statcont;
@@ -151,307 +156,387 @@ SMBCCTX *smbc_set_context(SMBCCTX * context)
}
int smbc_open(const char *furl, int flags, mode_t mode)
int
smbc_open(const char *furl,
int flags,
mode_t mode)
{
SMBCFILE * file;
int fd;
file = (statcont->open)(statcont, furl, flags, mode);
file = smbc_getFunctionOpen(statcont)(statcont, furl, flags, mode);
if (!file)
return -1;
fd = add_fd(file);
if (fd == -1)
(statcont->close_fn)(statcont, file);
smbc_getFunctionClose(statcont)(statcont, file);
return fd;
}
int smbc_creat(const char *furl, mode_t mode)
int
smbc_creat(const char *furl,
mode_t mode)
{
SMBCFILE * file;
int fd;
file = (statcont->creat)(statcont, furl, mode);
file = smbc_getFunctionCreat(statcont)(statcont, furl, mode);
if (!file)
return -1;
fd = add_fd(file);
if (fd == -1) {
/* Hmm... should we delete the file too ? I guess we could try */
(statcont->close_fn)(statcont, file);
(statcont->unlink)(statcont, furl);
smbc_getFunctionClose(statcont)(statcont, file);
smbc_getFunctionUnlink(statcont)(statcont, furl);
}
return fd;
}
ssize_t smbc_read(int fd, void *buf, size_t bufsize)
ssize_t
smbc_read(int fd,
void *buf,
size_t bufsize)
{
SMBCFILE * file = find_fd(fd);
return (statcont->read)(statcont, file, buf, bufsize);
return smbc_getFunctionRead(statcont)(statcont, file, buf, bufsize);
}
ssize_t smbc_write(int fd, void *buf, size_t bufsize)
ssize_t
smbc_write(int fd,
void *buf,
size_t bufsize)
{
SMBCFILE * file = find_fd(fd);
return (statcont->write)(statcont, file, buf, bufsize);
return smbc_getFunctionWrite(statcont)(statcont, file, buf, bufsize);
}
off_t smbc_lseek(int fd, off_t offset, int whence)
off_t
smbc_lseek(int fd,
off_t offset,
int whence)
{
SMBCFILE * file = find_fd(fd);
return (statcont->lseek)(statcont, file, offset, whence);
return smbc_getFunctionLseek(statcont)(statcont, file, offset, whence);
}
int smbc_close(int fd)
int
smbc_close(int fd)
{
SMBCFILE * file = find_fd(fd);
del_fd(fd);
return (statcont->close_fn)(statcont, file);
return smbc_getFunctionClose(statcont)(statcont, file);
}
int smbc_unlink(const char *fname)
int
smbc_unlink(const char *fname)
{
return (statcont->unlink)(statcont, fname);
return smbc_getFunctionUnlink(statcont)(statcont, fname);
}
int smbc_rename(const char *ourl, const char *nurl)
int
smbc_rename(const char *ourl,
const char *nurl)
{
return (statcont->rename)(statcont, ourl, statcont, nurl);
return smbc_getFunctionRename(statcont)(statcont, ourl,
statcont, nurl);
}
int smbc_opendir(const char *durl)
int
smbc_opendir(const char *durl)
{
SMBCFILE * file;
int fd;
file = (statcont->opendir)(statcont, durl);
file = smbc_getFunctionOpendir(statcont)(statcont, durl);
if (!file)
return -1;
fd = add_fd(file);
if (fd == -1)
(statcont->closedir)(statcont, file);
smbc_getFunctionClosedir(statcont)(statcont, file);
return fd;
}
int smbc_closedir(int dh)
int
smbc_closedir(int dh)
{
SMBCFILE * file = find_fd(dh);
del_fd(dh);
return (statcont->closedir)(statcont, file);
return smbc_getFunctionClosedir(statcont)(statcont, file);
}
int smbc_getdents(unsigned int dh, struct smbc_dirent *dirp, int count)
int
smbc_getdents(unsigned int dh,
struct smbc_dirent *dirp,
int count)
{
SMBCFILE * file = find_fd(dh);
return (statcont->getdents)(statcont, file,dirp, count);
return smbc_getFunctionGetdents(statcont)(statcont, file, dirp, count);
}
struct smbc_dirent* smbc_readdir(unsigned int dh)
struct smbc_dirent *
smbc_readdir(unsigned int dh)
{
SMBCFILE * file = find_fd(dh);
return (statcont->readdir)(statcont, file);
return smbc_getFunctionReaddir(statcont)(statcont, file);
}
off_t smbc_telldir(int dh)
off_t
smbc_telldir(int dh)
{
SMBCFILE * file = find_fd(dh);
return (statcont->telldir)(statcont, file);
return smbc_getFunctionTelldir(statcont)(statcont, file);
}
int smbc_lseekdir(int fd, off_t offset)
int
smbc_lseekdir(int fd,
off_t offset)
{
SMBCFILE * file = find_fd(fd);
return (statcont->lseekdir)(statcont, file, offset);
return smbc_getFunctionLseekdir(statcont)(statcont, file, offset);
}
int smbc_mkdir(const char *durl, mode_t mode)
int
smbc_mkdir(const char *durl,
mode_t mode)
{
return (statcont->mkdir)(statcont, durl, mode);
return smbc_getFunctionMkdir(statcont)(statcont, durl, mode);
}
int smbc_rmdir(const char *durl)
int
smbc_rmdir(const char *durl)
{
return (statcont->rmdir)(statcont, durl);
return smbc_getFunctionRmdir(statcont)(statcont, durl);
}
int smbc_stat(const char *url, struct stat *st)
int
smbc_stat(const char *url,
struct stat *st)
{
return (statcont->stat)(statcont, url, st);
return smbc_getFunctionStat(statcont)(statcont, url, st);
}
int smbc_fstat(int fd, struct stat *st)
int
smbc_fstat(int fd,
struct stat *st)
{
SMBCFILE * file = find_fd(fd);
return (statcont->fstat)(statcont, file, st);
return smbc_getFunctionFstat(statcont)(statcont, file, st);
}
int smbc_ftruncate(int fd, off_t size)
int
smbc_ftruncate(int fd,
off_t size)
{
SMBCFILE * file = find_fd(fd);
return (statcont->ftruncate)(statcont, file, size);
return smbc_getFunctionFtruncate(statcont)(statcont, file, size);
}
int smbc_chmod(const char *url, mode_t mode)
int
smbc_chmod(const char *url,
mode_t mode)
{
return (statcont->chmod)(statcont, url, mode);
return smbc_getFunctionChmod(statcont)(statcont, url, mode);
}
int smbc_utimes(const char *fname, struct timeval *tbuf)
int
smbc_utimes(const char *fname,
struct timeval *tbuf)
{
return (statcont->utimes)(statcont, fname, tbuf);
return smbc_getFunctionUtimes(statcont)(statcont, fname, tbuf);
}
#ifdef HAVE_UTIME_H
int smbc_utime(const char *fname, struct utimbuf *utbuf)
int
smbc_utime(const char *fname,
struct utimbuf *utbuf)
{
struct timeval tv[2];
if (utbuf == NULL)
return (statcont->utimes)(statcont, fname, NULL);
return smbc_getFunctionUtimes(statcont)(statcont, fname, NULL);
tv[0].tv_sec = utbuf->actime;
tv[1].tv_sec = utbuf->modtime;
tv[0].tv_usec = tv[1].tv_usec = 0;
return (statcont->utimes)(statcont, fname, tv);
return smbc_getFunctionUtimes(statcont)(statcont, fname, tv);
}
#endif
int smbc_setxattr(const char *fname,
const char *name,
const void *value,
size_t size,
int flags)
int
smbc_setxattr(const char *fname,
const char *name,
const void *value,
size_t size,
int flags)
{
return (statcont->setxattr)(statcont, fname, name, value, size, flags);
return smbc_getFunctionSetxattr(statcont)(statcont,
fname, name,
value, size, flags);
}
int smbc_lsetxattr(const char *fname,
const char *name,
const void *value,
size_t size,
int flags)
int
smbc_lsetxattr(const char *fname,
const char *name,
const void *value,
size_t size,
int flags)
{
return (statcont->setxattr)(statcont, fname, name, value, size, flags);
return smbc_getFunctionSetxattr(statcont)(statcont,
fname, name,
value, size, flags);
}
int smbc_fsetxattr(int fd,
const char *name,
const void *value,
size_t size,
int flags)
int
smbc_fsetxattr(int fd,
const char *name,
const void *value,
size_t size,
int flags)
{
SMBCFILE * file = find_fd(fd);
if (file == NULL) {
errno = EBADF;
return -1;
}
return (statcont->setxattr)(statcont, file->fname,
name, value, size, flags);
return smbc_getFunctionSetxattr(statcont)(statcont,
file->fname, name,
value, size, flags);
}
int smbc_getxattr(const char *fname,
const char *name,
const void *value,
size_t size)
int
smbc_getxattr(const char *fname,
const char *name,
const void *value,
size_t size)
{
return (statcont->getxattr)(statcont, fname, name, value, size);
return smbc_getFunctionGetxattr(statcont)(statcont,
fname, name,
value, size);
}
int smbc_lgetxattr(const char *fname,
const char *name,
const void *value,
size_t size)
int
smbc_lgetxattr(const char *fname,
const char *name,
const void *value,
size_t size)
{
return (statcont->getxattr)(statcont, fname, name, value, size);
return smbc_getFunctionGetxattr(statcont)(statcont,
fname, name,
value, size);
}
int smbc_fgetxattr(int fd,
const char *name,
const void *value,
size_t size)
int
smbc_fgetxattr(int fd,
const char *name,
const void *value,
size_t size)
{
SMBCFILE * file = find_fd(fd);
if (file == NULL) {
errno = EBADF;
return -1;
}
return (statcont->getxattr)(statcont, file->fname, name, value, size);
return smbc_getFunctionGetxattr(statcont)(statcont,
file->fname, name,
value, size);
}
int smbc_removexattr(const char *fname,
const char *name)
int
smbc_removexattr(const char *fname,
const char *name)
{
return (statcont->removexattr)(statcont, fname, name);
return smbc_getFunctionRemovexattr(statcont)(statcont, fname, name);
}
int smbc_lremovexattr(const char *fname,
const char *name)
int
smbc_lremovexattr(const char *fname,
const char *name)
{
return (statcont->removexattr)(statcont, fname, name);
return smbc_getFunctionRemovexattr(statcont)(statcont, fname, name);
}
int smbc_fremovexattr(int fd,
const char *name)
int
smbc_fremovexattr(int fd,
const char *name)
{
SMBCFILE * file = find_fd(fd);
if (file == NULL) {
errno = EBADF;
return -1;
}
return (statcont->removexattr)(statcont, file->fname, name);
return smbc_getFunctionRemovexattr(statcont)(statcont,
file->fname, name);
}
int smbc_listxattr(const char *fname,
char *list,
size_t size)
int
smbc_listxattr(const char *fname,
char *list,
size_t size)
{
return (statcont->listxattr)(statcont, fname, list, size);
return smbc_getFunctionListxattr(statcont)(statcont,
fname, list, size);
}
int smbc_llistxattr(const char *fname,
char *list,
size_t size)
int
smbc_llistxattr(const char *fname,
char *list,
size_t size)
{
return (statcont->listxattr)(statcont, fname, list, size);
return smbc_getFunctionListxattr(statcont)(statcont,
fname, list, size);
}
int smbc_flistxattr(int fd,
char *list,
size_t size)
int
smbc_flistxattr(int fd,
char *list,
size_t size)
{
SMBCFILE * file = find_fd(fd);
if (file == NULL) {
errno = EBADF;
return -1;
}
return (statcont->listxattr)(statcont, file->fname, list, size);
return smbc_getFunctionListxattr(statcont)(statcont,
file->fname, list, size);
}
int smbc_print_file(const char *fname, const char *printq)
int
smbc_print_file(const char *fname,
const char *printq)
{
return (statcont->print_file)(statcont, fname, statcont, printq);
return smbc_getFunctionPrintFile(statcont)(statcont, fname,
statcont, printq);
}
int smbc_open_print_job(const char *fname)
int
smbc_open_print_job(const char *fname)
{
SMBCFILE * file = (statcont->open_print_job)(statcont, fname);
SMBCFILE * file;
file = smbc_getFunctionOpenPrintJob(statcont)(statcont, fname);
if (!file) return -1;
return file->cli_fd;
}
int smbc_list_print_jobs(const char *purl, smbc_list_print_job_fn fn)
int
smbc_list_print_jobs(const char *purl,
smbc_list_print_job_fn fn)
{
return (statcont->list_print_jobs)(statcont, purl, fn);
return smbc_getFunctionListPrintJobs(statcont)(statcont, purl, fn);
}
int smbc_unlink_print_job(const char *purl, int id)
int
smbc_unlink_print_job(const char *purl,
int id)
{
return (statcont->unlink_print_job)(statcont, purl, id);
return smbc_getFunctionUnlinkPrintJob(statcont)(statcont, purl, id);
}