mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
s3: add a test to test libsmbclient
Signed-off-by: Bo Yang <boyang@samba.org>
This commit is contained in:
parent
b9fb8da591
commit
238bf25af4
@ -2,7 +2,7 @@ CC = gcc
|
||||
CFLAGS = -Wall -W -O2 -g -I../../../source/include
|
||||
LFLAGS = -L../../../source/bin
|
||||
|
||||
LIBS= -L/usr/lib -lsmbclient
|
||||
LIBS= -L/usr/lib -lsmbclient -ltalloc
|
||||
INCPATH= -I. -I/usr/include -I./include
|
||||
BIN_DIR=bin
|
||||
|
||||
@ -99,7 +99,8 @@ G_STAT = $(BIN_DIR)/stat_1 \
|
||||
$(BIN_DIR)/stat_3 \
|
||||
$(BIN_DIR)/stat_4 \
|
||||
$(BIN_DIR)/stat_5 \
|
||||
$(BIN_DIR)/stat_6
|
||||
$(BIN_DIR)/stat_6 \
|
||||
$(BIN_DIR)/stat_k
|
||||
|
||||
G_GETDENTS = $(BIN_DIR)/getdents_1 \
|
||||
$(BIN_DIR)/getdents_2 \
|
||||
@ -521,6 +522,10 @@ $(BIN_DIR)/stat_6: stat/stat_6.o
|
||||
@echo Linking $@
|
||||
@$(CC) $(LFLAGS) -o $@ stat/stat_6.o $(INCPATH) $(LIBS)
|
||||
|
||||
$(BIN_DIR)/stat_k: stat/stat_k.o
|
||||
@echo Linking $@
|
||||
@$(CC) $(LFLAGS) -o $@ stat/stat_k.o $(INCPATH) $(LIBS)
|
||||
|
||||
$(BIN_DIR)/getdents_1: getdents/getdents_1.o
|
||||
@echo Linking $@
|
||||
@$(CC) $(LFLAGS) -o $@ getdents/getdents_1.o $(INCPATH) $(LIBS)
|
||||
|
91
testsuite/libsmbclient/src/stat/stat_k.c
Normal file
91
testsuite/libsmbclient/src/stat/stat_k.c
Normal file
@ -0,0 +1,91 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <libsmbclient.h>
|
||||
|
||||
#define MAX_BUFF_SIZE 255
|
||||
char g_workgroup[MAX_BUFF_SIZE];
|
||||
char g_username[MAX_BUFF_SIZE];
|
||||
char g_password[MAX_BUFF_SIZE];
|
||||
char g_server[MAX_BUFF_SIZE];
|
||||
char g_share[MAX_BUFF_SIZE];
|
||||
|
||||
|
||||
void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen,
|
||||
char *username, int unmaxlen, char *password, int pwmaxlen)
|
||||
{
|
||||
|
||||
strncpy(workgroup, g_workgroup, wgmaxlen - 1);
|
||||
|
||||
strncpy(username, g_username, unmaxlen - 1);
|
||||
|
||||
strncpy(password, g_password, pwmaxlen - 1);
|
||||
|
||||
strcpy(g_server, server);
|
||||
strcpy(g_share, share);
|
||||
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
int err = -1;
|
||||
char url[MAX_BUFF_SIZE];
|
||||
struct stat st;
|
||||
char *user;
|
||||
SMBCCTX *ctx;
|
||||
|
||||
bzero(g_workgroup,MAX_BUFF_SIZE);
|
||||
bzero(url,MAX_BUFF_SIZE);
|
||||
|
||||
if ( argc == 2)
|
||||
{
|
||||
char *p;
|
||||
user = getenv("USER");
|
||||
if (!user) {
|
||||
printf("no user??\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
printf("username: %s\n", user);
|
||||
|
||||
p = strchr(user, '\\');
|
||||
if (! p) {
|
||||
printf("BAD username??\n");
|
||||
return 0;
|
||||
}
|
||||
strncpy(g_workgroup, user, strlen(user));
|
||||
g_workgroup[p - user] = 0;
|
||||
strncpy(g_username, p + 1, strlen(p + 1));
|
||||
memset(g_password, 0, sizeof(char) * MAX_BUFF_SIZE);
|
||||
strncpy(url,argv[1],strlen(argv[1]));
|
||||
|
||||
err = smbc_init(auth_fn, 10);
|
||||
if (err) {
|
||||
printf("init smbclient context failed!!\n");
|
||||
return err;
|
||||
}
|
||||
/* Using null context actually get the old context. */
|
||||
ctx = smbc_set_context(NULL);
|
||||
smbc_setOptionUseKerberos(ctx, 1);
|
||||
smbc_setOptionFallbackAfterKerberos(ctx, 1);
|
||||
smbc_setWorkgroup(ctx, g_workgroup);
|
||||
smbc_setUser(ctx, g_username);
|
||||
err = smbc_stat(url, &st);
|
||||
|
||||
if ( err < 0 ) {
|
||||
err = 1;
|
||||
printf("stat failed!!\n");
|
||||
}
|
||||
else {
|
||||
err = 0;
|
||||
printf("stat succeeded!!\n");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
return err;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user