2 Copyright (C) by Ronnie Sahlberg <ronniesahlberg@gmail.com> 2010
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>.
18 /* Example program using the highlevel sync interface
21 #include "win32_compat.h"
25 #include <sys/statvfs.h>
28 #define SERVER "10.1.1.27"
29 #define EXPORT "/VIRTUAL"
30 #define NFSFILE "/BOOKS/Classics/Dracula.djvu.truncated"
31 #define NFSFILER "/BOOKS/Classics/Dracula.djvu.renamed"
32 #define NFSFILEW "/BOOKS/Classics/foo"
33 #define NFSDIR "/BOOKS/Classics/"
38 #pragma comment(lib, "ws2_32.lib")
41 #include <sys/statvfs.h>
48 #include <sys/types.h>
52 #include <rpc/rpc.h> /* for authunix_create() */
53 #include "libnfs-raw.h"
54 #include "libnfs-raw-mount.h"
64 char buf
[3*1024*1024+337];
66 int main(int argc _U_
, char *argv
[] _U_
)
68 struct nfs_context
*nfs
;
74 struct nfsdir
*nfsdir
;
75 struct nfsdirent
*nfsdirent
;
80 if (WSAStartup(MAKEWORD(2,2), &wsaData
) != 0) {
81 printf("Failed to start Winsock2\n");
86 client
.server
= SERVER
;
87 client
.export
= EXPORT
;
88 client
.is_finished
= 0;
89 export
= mount_getexports(SERVER
);
91 printf("exports on server %s\n", SERVER
);
94 printf("Export: %s\n", tmp
->ex_dir
);
98 mount_free_export_list(export
);
100 printf("no exports on server %s\n", SERVER
);
103 nfs
= nfs_init_context();
105 printf("failed to init context\n");
109 ret
= nfs_mount(nfs
, client
.server
, client
.export
);
111 printf("Failed to mount nfs share : %s\n", nfs_get_error(nfs
));
114 printf("mounted share successfully %s\n", nfs_get_error(nfs
));
117 ret
= nfs_stat(nfs
, NFSFILE
, &st
);
119 printf("Failed to stat(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
122 printf("Mode %04o\n", st
.st_mode
);
123 printf("Size %d\n", (int)st
.st_size
);
124 printf("Inode %04o\n", (int)st
.st_ino
);
126 ret
= nfs_open(nfs
, NFSFILE
, O_RDONLY
, &nfsfh
);
128 printf("Failed to open(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
133 ret
= nfs_read(nfs
, nfsfh
, 16, buf
);
135 printf("Failed to pread(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
138 printf("read %d bytes\n", ret
);
140 printf("%02x ", buf
[i
]&0xff);
144 ret
= nfs_read(nfs
, nfsfh
, sizeof(buf
), buf
);
146 printf("Failed to pread(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
149 printf("read %d bytes\n", ret
);
151 printf("%02x ", buf
[i
]&0xff);
154 ret
= nfs_read(nfs
, nfsfh
, sizeof(buf
), buf
);
156 printf("Failed to pread(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
159 printf("read %d bytes\n", ret
);
160 ret
= nfs_read(nfs
, nfsfh
, sizeof(buf
), buf
);
162 printf("Failed to pread(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
165 printf("read %d bytes\n", ret
);
166 ret
= nfs_read(nfs
, nfsfh
, sizeof(buf
), buf
);
168 printf("Failed to pread(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
171 printf("read %d bytes\n", ret
);
172 ret
= nfs_read(nfs
, nfsfh
, sizeof(buf
), buf
);
174 printf("Failed to pread(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
177 printf("read %d bytes\n", ret
);
178 ret
= nfs_read(nfs
, nfsfh
, sizeof(buf
), buf
);
180 printf("Failed to pread(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
183 printf("read %d bytes\n", ret
);
185 ret
= (int)nfs_lseek(nfs
, nfsfh
, 0, SEEK_CUR
, &offset
);
187 printf("Failed to lseek(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
190 printf("File position is %d\n", (int)offset
);
192 printf("seek to end of file\n");
193 ret
= (int)nfs_lseek(nfs
, nfsfh
, 0, SEEK_END
, &offset
);
195 printf("Failed to lseek(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
198 printf("File position is %d\n", (int)offset
);
200 ret
= nfs_fstat(nfs
, nfsfh
, &st
);
202 printf("Failed to stat(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
205 printf("Mode %04o\n", st
.st_mode
);
206 printf("Size %d\n", (int)st
.st_size
);
207 printf("Inode %04o\n", (int)st
.st_ino
);
210 ret
= nfs_close(nfs
, nfsfh
);
212 printf("Failed to close(%s): %s\n", NFSFILE
, nfs_get_error(nfs
));
216 ret
= nfs_opendir(nfs
, NFSDIR
, &nfsdir
);
218 printf("Failed to open(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
221 while((nfsdirent
= nfs_readdir(nfs
, nfsdir
)) != NULL
) {
223 printf("Inode:%d Name:%s ", (int)nfsdirent
->inode
, nfsdirent
->name
);
224 sprintf(&filename
, "%s/%s", NFSDIR
, nfsdirent
->name
);
225 ret
= nfs_open(nfs
, filename
, O_RDONLY
, &nfsfh
);
227 printf("Failed to open(%s) %s\n", filename
, nfs_get_error(nfs
));
230 ret
= nfs_read(nfs
, nfsfh
, sizeof(buf
), buf
);
232 printf("Error reading file\n");
235 printf("Read %d bytes\n", ret
);
236 ret
= nfs_close(nfs
, nfsfh
);
238 printf("Failed to close(%s): %s\n", NFSFILE
, nfs_get_error(nfs
));
242 nfs_closedir(nfs
, nfsdir
);
245 ret
= nfs_open(nfs
, NFSFILEW
, O_WRONLY
, &nfsfh
);
247 printf("Failed to open(%s) %s\n", NFSFILEW
, nfs_get_error(nfs
));
250 ret
= nfs_pwrite(nfs
, nfsfh
, 0, 16, buf
);
252 printf("Failed to pwrite(%s) %s\n", NFSFILEW
, nfs_get_error(nfs
));
255 ret
= nfs_fsync(nfs
, nfsfh
);
257 printf("Failed to fsync(%s) %s\n", NFSFILEW
, nfs_get_error(nfs
));
260 ret
= nfs_close(nfs
, nfsfh
);
262 printf("Failed to close(%s) %s\n", NFSFILEW
, nfs_get_error(nfs
));
267 ret
= nfs_statvfs(nfs
, NFSDIR
, &svfs
);
269 printf("Failed to statvfs(%s) %s\n", NFSDIR
, nfs_get_error(nfs
));
272 printf("files %d/%d/%d\n", (int)svfs
.f_files
, (int)svfs
.f_ffree
, (int)svfs
.f_favail
);
275 ret
= nfs_access(nfs
, NFSFILE
, R_OK
);
277 printf("Failed to access(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
281 nfs_set_auth(nfs
, authunix_create("Ronnies-Laptop", 0, 0, 0, NULL
));
283 ret
= nfs_link(nfs
, NFSFILE
, NFSFILER
);
285 printf("Failed to link(%s) %s\n", NFSFILE
, nfs_get_error(nfs
));
289 nfs_destroy_context(nfs
);
290 printf("nfsclient finished\n");