2 Unix SMB/CIFS implementation.
3 SMB client library test program
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Richard Sharpe 2000
6 Copyright (C) John Terpsra 2000
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #include <libsmbclient.h>
31 void auth_fn(const char *server
, const char *share
,
32 char *workgroup
, int wgmaxlen
, char *username
, int unmaxlen
,
33 char *password
, int pwmaxlen
)
37 fprintf(stdout
, "Need password for //%s/%s\n", server
, share
);
39 fprintf(stdout
, "Enter workgroup: [%s] ", workgroup
);
40 fgets(temp
, sizeof(temp
), stdin
);
42 if (temp
[strlen(temp
) - 1] == 0x0a) /* A new line? */
43 temp
[strlen(temp
) - 1] = 0x00;
45 if (temp
[0]) strncpy(workgroup
, temp
, wgmaxlen
- 1);
47 fprintf(stdout
, "Enter username: [%s] ", username
);
48 fgets(temp
, sizeof(temp
), stdin
);
50 if (temp
[strlen(temp
) - 1] == 0x0a) /* A new line? */
51 temp
[strlen(temp
) - 1] = 0x00;
53 if (temp
[0]) strncpy(username
, temp
, unmaxlen
- 1);
55 fprintf(stdout
, "Enter password: [%s] ", password
);
56 fgets(temp
, sizeof(temp
), stdin
);
58 if (temp
[strlen(temp
) - 1] == 0x0a) /* A new line? */
59 temp
[strlen(temp
) - 1] = 0x00;
61 if (temp
[0]) strncpy(password
, temp
, pwmaxlen
- 1);
67 void print_list_fn(struct print_job_info
*pji
)
70 fprintf(stdout
, "Print job: ID: %u, Prio: %u, Size: %u, User: %s, Name: %s\n",
71 pji
->id
, pji
->priority
, pji
->size
, pji
->user
, pji
->name
);
77 int main(int argc
, char *argv
[])
79 int err
, fd
, dh1
, dh2
, dh3
, dsize
, dirc
;
80 const char *file
= "smb://samba/public/testfile.txt";
81 const char *file2
= "smb://samba/public/testfile2.txt";
87 err
= smbc_init(auth_fn
, 10); /* Initialize things */
91 fprintf(stderr
, "Initializing the smbclient library ...: %s\n", strerror(errno
));
97 /* Try to list the print jobs ... */
99 if (smbc_list_print_jobs("smb://samba/pclp", print_list_fn
) < 0) {
101 fprintf(stderr
, "Could not list print jobs: %s, %d\n", strerror(errno
), errno
);
106 /* Try to delete the last job listed */
110 fprintf(stdout
, "Trying to delete print job %u\n", global_id
);
112 if (smbc_unlink_print_job("smb://samba/pclp", global_id
) < 0) {
114 fprintf(stderr
, "Failed to unlink job id %u, %s, %u\n", global_id
,
115 strerror(errno
), errno
);
123 /* Try to print a file ... */
125 if (smbc_print_file("smb://samba/public/testfile2.txt", "smb://samba/pclp") < 0) {
127 fprintf(stderr
, "Failed to print job: %s %u\n", strerror(errno
), errno
);
132 /* Try to delete argv[1] as a file ... */
134 if (smbc_unlink(argv
[1]) < 0) {
136 fprintf(stderr
, "Could not unlink: %s, %s, %d\n",
137 argv
[1], strerror(errno
), errno
);
143 if ((dh1
= smbc_opendir("smb://"))<1) {
145 fprintf(stderr
, "Could not open directory: smb://: %s\n",
152 if ((dh2
= smbc_opendir("smb://sambanet")) < 0) {
154 fprintf(stderr
, "Could not open directory: smb://sambanet: %s\n",
161 if ((dh3
= smbc_opendir("smb://samba")) < 0) {
163 fprintf(stderr
, "Could not open directory: smb://samba: %s\n",
170 fprintf(stdout
, "Directory handles: %u, %u, %u\n", dh1
, dh2
, dh3
);
172 /* Now, list those directories, but in funny ways ... */
174 dirp
= (char *)dirbuf
;
176 if ((dirc
= smbc_getdents(dh1
, (struct smbc_dirent
*)dirp
,
177 sizeof(dirbuf
))) < 0) {
179 fprintf(stderr
, "Problems getting directory entries: %s\n",
186 /* Now, process the list of names ... */
188 fprintf(stdout
, "Directory listing, size = %u\n", dirc
);
192 dsize
= ((struct smbc_dirent
*)dirp
)->dirlen
;
193 fprintf(stdout
, "Dir Ent, Type: %u, Name: %s, Comment: %s\n",
194 ((struct smbc_dirent
*)dirp
)->smbc_type
,
195 ((struct smbc_dirent
*)dirp
)->name
,
196 ((struct smbc_dirent
*)dirp
)->comment
);
199 (char *)dirc
-= dsize
;
203 dirp
= (char *)dirbuf
;
205 if ((dirc
= smbc_getdents(dh2
, (struct smbc_dirent
*)dirp
,
206 sizeof(dirbuf
))) < 0) {
208 fprintf(stderr
, "Problems getting directory entries: %s\n",
215 /* Now, process the list of names ... */
217 fprintf(stdout
, "\nDirectory listing, size = %u\n", dirc
);
221 dsize
= ((struct smbc_dirent
*)dirp
)->dirlen
;
222 fprintf(stdout
, "Dir Ent, Type: %u, Name: %s, Comment: %s\n",
223 ((struct smbc_dirent
*)dirp
)->smbc_type
,
224 ((struct smbc_dirent
*)dirp
)->name
,
225 ((struct smbc_dirent
*)dirp
)->comment
);
228 (char *)dirc
-= dsize
;
232 dirp
= (char *)dirbuf
;
234 if ((dirc
= smbc_getdents(dh3
, (struct smbc_dirent
*)dirp
,
235 sizeof(dirbuf
))) < 0) {
237 fprintf(stderr
, "Problems getting directory entries: %s\n",
244 /* Now, process the list of names ... */
246 fprintf(stdout
, "Directory listing, size = %u\n", dirc
);
250 dsize
= ((struct smbc_dirent
*)dirp
)->dirlen
;
251 fprintf(stdout
, "\nDir Ent, Type: %u, Name: %s, Comment: %s\n",
252 ((struct smbc_dirent
*)dirp
)->smbc_type
,
253 ((struct smbc_dirent
*)dirp
)->name
,
254 ((struct smbc_dirent
*)dirp
)->comment
);
256 (char *)dirp
+= dsize
;
257 (char *)dirc
-= dsize
;
265 /* For now, open a file on a server that is hard coded ... later will
266 * read from the command line ...
269 fd
= smbc_open(file
, O_RDWR
| O_CREAT
| O_TRUNC
, 0666);
273 fprintf(stderr
, "Creating file: %s: %s\n", file
, strerror(errno
));
278 fprintf(stdout
, "Opened or created file: %s\n", file
);
280 /* Now, write some date to the file ... */
282 bzero(buff
, sizeof(buff
));
283 strcpy(buff
, "Some test data for the moment ...");
285 err
= smbc_write(fd
, buff
, sizeof(buff
));
289 fprintf(stderr
, "writing file: %s: %s\n", file
, strerror(errno
));
294 fprintf(stdout
, "Wrote %d bytes to file: %s\n", sizeof(buff
), buff
);
296 /* Now, seek the file back to offset 0 */
298 err
= smbc_lseek(fd
, SEEK_SET
, 0);
302 fprintf(stderr
, "Seeking file: %s: %s\n", file
, strerror(errno
));
307 fprintf(stdout
, "Completed lseek on file: %s\n", file
);
309 /* Now, read the file contents back ... */
311 err
= smbc_read(fd
, buff
, sizeof(buff
));
315 fprintf(stderr
, "Reading file: %s: %s\n", file
, strerror(errno
));
320 fprintf(stdout
, "Read file: %s\n", buff
); /* Should check the contents */
322 fprintf(stdout
, "Now fstat'ing file: %s\n", file
);
324 err
= smbc_fstat(fd
, &st1
);
328 fprintf(stderr
, "Fstat'ing file: %s: %s\n", file
, strerror(errno
));
334 /* Now, close the file ... */
336 err
= smbc_close(fd
);
340 fprintf(stderr
, "Closing file: %s: %s\n", file
, strerror(errno
));
344 /* Now, rename the file ... */
346 err
= smbc_rename(file
, file2
);
350 fprintf(stderr
, "Renaming file: %s to %s: %s\n", file
, file2
, strerror(errno
));
354 fprintf(stdout
, "Renamed file %s to %s\n", file
, file2
);
356 /* Now, create a file and delete it ... */
358 fprintf(stdout
, "Now, creating file: %s so we can delete it.\n", file
);
360 fd
= smbc_open(file
, O_RDWR
| O_CREAT
, 0666);
364 fprintf(stderr
, "Creating file: %s: %s\n", file
, strerror(errno
));
369 fprintf(stdout
, "Opened or created file: %s\n", file
);
371 err
= smbc_close(fd
);
375 fprintf(stderr
, "Closing file: %s: %s\n", file
, strerror(errno
));
380 /* Now, delete the file ... */
382 fprintf(stdout
, "File %s created, now deleting ...\n", file
);
384 err
= smbc_unlink(file
);
388 fprintf(stderr
, "Deleting file: %s: %s\n", file
, strerror(errno
));
393 /* Now, stat the file, file 2 ... */
395 fprintf(stdout
, "Now stat'ing file: %s\n", file
);
397 err
= smbc_stat(file2
, &st2
);
401 fprintf(stderr
, "Stat'ing file: %s: %s\n", file
, strerror(errno
));
406 fprintf(stdout
, "Stat'ed file: %s. Size = %d, mode = %04X\n", file2
,
407 (int)st2
.st_size
, st2
.st_mode
);
408 fprintf(stdout
, " time: %s\n", ctime(&st2
.st_atime
));
409 fprintf(stdout
, "Earlier stat: %s, Size = %d, mode = %04X\n", file
,
410 (int)st1
.st_size
, st1
.st_mode
);
411 fprintf(stdout
, " time: %s\n", ctime(&st1
.st_atime
));
413 /* Now, make a directory ... */
415 fprintf(stdout
, "Making directory smb://samba/public/make-dir\n");
417 if (smbc_mkdir("smb://samba/public/make-dir", 0666) < 0) {
419 fprintf(stderr
, "Error making directory: smb://samba/public/make-dir: %s\n",
422 if (errno
== EEXIST
) { /* Try to delete the directory */
424 fprintf(stdout
, "Trying to delete directory: smb://samba/public/make-dir\n");
426 if (smbc_rmdir("smb://samba/public/make-dir") < 0) { /* Error */
428 fprintf(stderr
, "Error removing directory: smb://samba/public/make-dir: %s\n", strerror(errno
));
434 fprintf(stdout
, "Making directory: smb://samba/public/make-dir\n");
436 if (smbc_mkdir("smb://samba/public/make-dir", 666) < 0) {
438 fprintf(stderr
, "Error making directory: smb://samba/public/make-dir: %s\n",
441 fprintf(stderr
, "I give up!\n");
453 fprintf(stdout
, "Made dir: make-dir\n");