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 async interface.
25 #include "win32_compat.h"
38 #define SERVER "10.1.1.27"
39 #define EXPORT "/VIRTUAL"
40 #define NFSFILE "/BOOKS/Classics/Dracula.djvu"
41 #define NFSDIR "/BOOKS/Classics/"
46 #include <sys/types.h>
48 #include "libnfs-zdr.h"
50 #include "libnfs-raw.h"
51 #include "libnfs-raw-mount.h"
53 struct rpc_context
*mount_context
;
63 void mount_export_cb(struct rpc_context
*mount_context
, int status
, void *data
, void *private_data
)
65 struct client
*client
= private_data
;
66 exports export
= *(exports
*)data
;
69 printf("MOUNT/EXPORT failed with \"%s\"\n", rpc_get_error(mount_context
));
73 printf("Got exports list from server %s\n", client
->server
);
74 while (export
!= NULL
) {
75 printf("Export: %s\n", export
->ex_dir
);
76 export
= export
->ex_next
;
81 client
->is_finished
= 1;
84 void nfs_opendir_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
86 struct client
*client
= private_data
;
87 struct nfsdir
*nfsdir
= data
;
88 struct nfsdirent
*nfsdirent
;
91 printf("opendir failed with \"%s\"\n", (char *)data
);
95 printf("opendir successful\n");
96 while((nfsdirent
= nfs_readdir(nfs
, nfsdir
)) != NULL
) {
97 printf("Inode:%d Name:%s\n", (int)nfsdirent
->inode
, nfsdirent
->name
);
99 nfs_closedir(nfs
, nfsdir
);
101 mount_context
= rpc_init_context();
102 if (mount_getexports_async(mount_context
, client
->server
, mount_export_cb
, client
) != 0) {
103 printf("Failed to start MOUNT/EXPORT\n");
108 void nfs_close_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
110 struct client
*client
= private_data
;
113 printf("close failed with \"%s\"\n", (char *)data
);
117 printf("close successful\n");
118 printf("call opendir(%s)\n", NFSDIR
);
119 if (nfs_opendir_async(nfs
, NFSDIR
, nfs_opendir_cb
, client
) != 0) {
120 printf("Failed to start async nfs close\n");
125 void nfs_fstat_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
127 struct client
*client
= private_data
;
131 printf("fstat call failed with \"%s\"\n", (char *)data
);
135 printf("Got reply from server for fstat(%s).\n", NFSFILE
);
136 st
= (struct stat
*)data
;
137 printf("Mode %04o\n", st
->st_mode
);
138 printf("Size %d\n", (int)st
->st_size
);
139 printf("Inode %04o\n", (int)st
->st_ino
);
141 printf("Close file\n");
142 if (nfs_close_async(nfs
, client
->nfsfh
, nfs_close_cb
, client
) != 0) {
143 printf("Failed to start async nfs close\n");
148 void nfs_read_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
150 struct client
*client
= private_data
;
155 printf("read failed with \"%s\"\n", (char *)data
);
159 printf("read successful with %d bytes of data\n", status
);
162 printf("%02x ", read_data
[i
]&0xff);
165 printf("Fstat file :%s\n", NFSFILE
);
166 if (nfs_fstat_async(nfs
, client
->nfsfh
, nfs_fstat_cb
, client
) != 0) {
167 printf("Failed to start async nfs fstat\n");
172 void nfs_open_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
174 struct client
*client
= private_data
;
178 printf("open call failed with \"%s\"\n", (char *)data
);
183 client
->nfsfh
= nfsfh
;
184 printf("Got reply from server for open(%s). Handle:%p\n", NFSFILE
, data
);
185 printf("Read first 64 bytes\n");
186 if (nfs_pread_async(nfs
, nfsfh
, 0, 64, nfs_read_cb
, client
) != 0) {
187 printf("Failed to start async nfs open\n");
192 void nfs_stat_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
194 struct client
*client
= private_data
;
198 printf("stat call failed with \"%s\"\n", (char *)data
);
202 printf("Got reply from server for stat(%s).\n", NFSFILE
);
203 st
= (struct stat
*)data
;
204 printf("Mode %04o\n", st
->st_mode
);
205 printf("Size %d\n", (int)st
->st_size
);
206 printf("Inode %04o\n", (int)st
->st_ino
);
208 printf("Open file for reading :%s\n", NFSFILE
);
209 if (nfs_open_async(nfs
, NFSFILE
, O_RDONLY
, nfs_open_cb
, client
) != 0) {
210 printf("Failed to start async nfs open\n");
215 void nfs_mount_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
217 struct client
*client
= private_data
;
220 printf("mount/mnt call failed with \"%s\"\n", (char *)data
);
224 printf("Got reply from server for MOUNT/MNT procedure.\n");
225 printf("Stat file :%s\n", NFSFILE
);
226 if (nfs_stat_async(nfs
, NFSFILE
, nfs_stat_cb
, client
) != 0) {
227 printf("Failed to start async nfs stat\n");
234 int main(int argc _U_
, char *argv
[] _U_
)
236 struct nfs_context
*nfs
;
238 struct client client
;
239 struct pollfd pfds
[2]; /* nfs:0 mount:1 */
241 client
.server
= SERVER
;
242 client
.export
= EXPORT
;
243 client
.is_finished
= 0;
245 nfs
= nfs_init_context();
247 printf("failed to init context\n");
251 ret
= nfs_mount_async(nfs
, client
.server
, client
.export
, nfs_mount_cb
, &client
);
253 printf("Failed to start async nfs mount\n");
260 pfds
[0].fd
= nfs_get_fd(nfs
);
261 pfds
[0].events
= nfs_which_events(nfs
);
264 if (mount_context
!= 0 && rpc_get_fd(mount_context
) != -1) {
265 pfds
[1].fd
= rpc_get_fd(mount_context
);
266 pfds
[1].events
= rpc_which_events(mount_context
);
269 if (poll(&pfds
[0], 2, -1) < 0) {
270 printf("Poll failed");
273 if (mount_context
!= NULL
) {
274 if (rpc_service(mount_context
, pfds
[1].revents
) < 0) {
275 printf("rpc_service failed\n");
279 if (nfs_service(nfs
, pfds
[0].revents
) < 0) {
280 printf("nfs_service failed\n");
283 if (client
.is_finished
) {
288 nfs_destroy_context(nfs
);
289 if (mount_context
!= NULL
) {
290 rpc_destroy_context(mount_context
);
291 mount_context
= NULL
;
293 printf("nfsclient finished\n");