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.
21 #include "win32_compat.h"
28 #define SERVER "10.1.1.27"
29 #define EXPORT "/VIRTUAL"
30 #define NFSFILE "/BOOKS/Classics/Dracula.djvu"
31 #define NFSDIR "/BOOKS/Classics/"
36 #include <sys/types.h>
39 #include "libnfs-raw.h"
40 #include "libnfs-raw-mount.h"
42 struct rpc_context
*mount_context
;
52 void mount_export_cb(struct rpc_context
*mount_context
, int status
, void *data
, void *private_data
)
54 struct client
*client
= private_data
;
55 exports export
= *(exports
*)data
;
58 printf("MOUNT/EXPORT failed with \"%s\"\n", rpc_get_error(mount_context
));
62 printf("Got exports list from server %s\n", client
->server
);
63 while (export
!= NULL
) {
64 printf("Export: %s\n", export
->ex_dir
);
65 export
= export
->ex_next
;
70 client
->is_finished
= 1;
73 void nfs_opendir_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
75 struct client
*client
= private_data
;
76 struct nfsdir
*nfsdir
= data
;
77 struct nfsdirent
*nfsdirent
;
80 printf("opendir failed with \"%s\"\n", (char *)data
);
84 printf("opendir successful\n");
85 while((nfsdirent
= nfs_readdir(nfs
, nfsdir
)) != NULL
) {
86 printf("Inode:%d Name:%s\n", (int)nfsdirent
->inode
, nfsdirent
->name
);
88 nfs_closedir(nfs
, nfsdir
);
90 mount_context
= rpc_init_context();
91 if (mount_getexports_async(mount_context
, client
->server
, mount_export_cb
, client
) != 0) {
92 printf("Failed to start MOUNT/EXPORT\n");
97 void nfs_close_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
99 struct client
*client
= private_data
;
102 printf("close failed with \"%s\"\n", (char *)data
);
106 printf("close successful\n");
107 printf("call opendir(%s)\n", NFSDIR
);
108 if (nfs_opendir_async(nfs
, NFSDIR
, nfs_opendir_cb
, client
) != 0) {
109 printf("Failed to start async nfs close\n");
114 void nfs_fstat_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
116 struct client
*client
= private_data
;
120 printf("fstat call failed with \"%s\"\n", (char *)data
);
124 printf("Got reply from server for fstat(%s).\n", NFSFILE
);
125 st
= (struct stat
*)data
;
126 printf("Mode %04o\n", st
->st_mode
);
127 printf("Size %d\n", (int)st
->st_size
);
128 printf("Inode %04o\n", (int)st
->st_ino
);
130 printf("Close file\n");
131 if (nfs_close_async(nfs
, client
->nfsfh
, nfs_close_cb
, client
) != 0) {
132 printf("Failed to start async nfs close\n");
137 void nfs_read_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
139 struct client
*client
= private_data
;
144 printf("read failed with \"%s\"\n", (char *)data
);
148 printf("read successful with %d bytes of data\n", status
);
151 printf("%02x ", read_data
[i
]&0xff);
154 printf("Fstat file :%s\n", NFSFILE
);
155 if (nfs_fstat_async(nfs
, client
->nfsfh
, nfs_fstat_cb
, client
) != 0) {
156 printf("Failed to start async nfs fstat\n");
161 void nfs_open_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
163 struct client
*client
= private_data
;
167 printf("open call failed with \"%s\"\n", (char *)data
);
172 client
->nfsfh
= nfsfh
;
173 printf("Got reply from server for open(%s). Handle:%p\n", NFSFILE
, data
);
174 printf("Read first 64 bytes\n");
175 if (nfs_pread_async(nfs
, nfsfh
, 0, 64, nfs_read_cb
, client
) != 0) {
176 printf("Failed to start async nfs open\n");
181 void nfs_stat_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
183 struct client
*client
= private_data
;
187 printf("stat call failed with \"%s\"\n", (char *)data
);
191 printf("Got reply from server for stat(%s).\n", NFSFILE
);
192 st
= (struct stat
*)data
;
193 printf("Mode %04o\n", st
->st_mode
);
194 printf("Size %d\n", (int)st
->st_size
);
195 printf("Inode %04o\n", (int)st
->st_ino
);
197 printf("Open file for reading :%s\n", NFSFILE
);
198 if (nfs_open_async(nfs
, NFSFILE
, O_RDONLY
, nfs_open_cb
, client
) != 0) {
199 printf("Failed to start async nfs open\n");
204 void nfs_mount_cb(int status
, struct nfs_context
*nfs
, void *data
, void *private_data
)
206 struct client
*client
= private_data
;
209 printf("mount/mnt call failed with \"%s\"\n", (char *)data
);
213 printf("Got reply from server for MOUNT/MNT procedure.\n");
214 printf("Stat file :%s\n", NFSFILE
);
215 if (nfs_stat_async(nfs
, NFSFILE
, nfs_stat_cb
, client
) != 0) {
216 printf("Failed to start async nfs stat\n");
223 int main(int argc _U_
, char *argv
[] _U_
)
225 struct nfs_context
*nfs
;
227 struct client client
;
228 struct pollfd pfds
[2]; /* nfs:0 mount:1 */
230 client
.server
= SERVER
;
231 client
.export
= EXPORT
;
232 client
.is_finished
= 0;
234 nfs
= nfs_init_context();
236 printf("failed to init context\n");
240 ret
= nfs_mount_async(nfs
, client
.server
, client
.export
, nfs_mount_cb
, &client
);
242 printf("Failed to start async nfs mount\n");
249 pfds
[0].fd
= nfs_get_fd(nfs
);
250 pfds
[0].events
= nfs_which_events(nfs
);
253 if (mount_context
!= 0 && rpc_get_fd(mount_context
) != -1) {
254 pfds
[1].fd
= rpc_get_fd(mount_context
);
255 pfds
[1].events
= rpc_which_events(mount_context
);
258 if (poll(&pfds
[0], 2, -1) < 0) {
259 printf("Poll failed");
262 if (mount_context
!= NULL
) {
263 if (rpc_service(mount_context
, pfds
[1].revents
) < 0) {
264 printf("rpc_service failed\n");
268 if (nfs_service(nfs
, pfds
[0].revents
) < 0) {
269 printf("nfs_service failed\n");
272 if (client
.is_finished
) {
277 nfs_destroy_context(nfs
);
278 if (mount_context
!= NULL
) {
279 rpc_destroy_context(mount_context
);
280 mount_context
= NULL
;
282 printf("nfsclient finished\n");