AROS: add inet_pton emulation and make sure we use recv/send and not read/write
[deb_libnfs.git] / examples / nfsclient-sync.c
CommitLineData
84004dbf
RS
1/*
2 Copyright (C) by Ronnie Sahlberg <ronniesahlberg@gmail.com> 2010
3
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.
8
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.
13
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/>.
16*/
17
67336940
RS
18#define _FILE_OFFSET_BITS 64
19#define _GNU_SOURCE
20
84004dbf
RS
21/* Example program using the highlevel sync interface
22 */
a8a1b858
M
23#ifdef WIN32
24#include "win32_compat.h"
25#else
67336940 26#include <string.h>
a8a1b858
M
27#include <fcntl.h>
28#include <sys/stat.h>
29#include <sys/statvfs.h>
30#endif
31
eecdc4f3
RS
32
33#if defined(WIN32)
eecdc4f3
RS
34#pragma comment(lib, "ws2_32.lib")
35WSADATA wsaData;
36#else
37#include <sys/statvfs.h>
38#include <unistd.h>
39#endif
40
84004dbf
RS
41#include <stdio.h>
42#include <stdlib.h>
43#include <stdint.h>
67336940 44#include <inttypes.h>
84004dbf
RS
45#include <sys/types.h>
46#include <sys/stat.h>
84004dbf 47#include <fcntl.h>
763cd6e3 48#include "libnfs-zdr.h"
84004dbf 49#include "libnfs.h"
67336940
RS
50#include <rpc/rpc.h> /* for authunix_create() */
51#include <popt.h>
df5af25f
RS
52#include "libnfs-raw.h"
53#include "libnfs-raw-mount.h"
84004dbf
RS
54
55struct client {
56 char *server;
57 char *export;
58 uint32_t mount_port;
59 int is_finished;
60};
61
62
67336940 63char buf[3*1024*1024+337];
e078d276 64
67336940
RS
65void print_usage(void)
66{
67 fprintf(stderr, "Usage: nfsclient-sync [-?|--help] [--usage] <url>\n");
e078d276 68}
69
67336940
RS
70void print_help(void)
71{
72 fprintf(stderr, "Usage: nfsclient-sync [OPTION...] <url>\n");
73 fprintf(stderr, "\n");
74 fprintf(stderr, "Help options:\n");
75 fprintf(stderr, " -?, --help Show this help message\n");
76 fprintf(stderr, " --usage Display brief usage message\n");
77 fprintf(stderr, "\n");
78 fprintf(stderr, "NFS URL format : nfs://<server>/<export-path>\n");
79 fprintf(stderr, "\n");
80 fprintf(stderr, "<host> is either of:\n");
81 fprintf(stderr, " \"hostname\" nfs.example\n");
82 fprintf(stderr, " \"ipv4-address\" 10.1.1.27\n");
83 fprintf(stderr, " \"ipv6-address\" [fce0::1]\n");
84}
cdb19ec1 85
67336940 86int main(int argc, char *argv[])
84004dbf 87{
67336940
RS
88 struct nfs_context *nfs = NULL;
89 int i, ret, res;
183451cf 90 uint64_t offset;
84004dbf
RS
91 struct client client;
92 struct stat st;
93 struct nfsfh *nfsfh;
94 struct nfsdir *nfsdir;
95 struct nfsdirent *nfsdirent;
84004dbf 96 struct statvfs svfs;
df5af25f 97 exports export, tmp;
67336940
RS
98 int show_help = 0, show_usage = 0;
99 poptContext pc;
100 const char **extra_argv;
101 int extra_argc = 0;
102 const char *url = NULL;
103 char *server = NULL, *path = NULL, *strp;
104
105 struct poptOption popt_options[] = {
106 { "help", '?', POPT_ARG_NONE, &show_help, 0, "Show this help message", NULL },
107 { "usage", 0, POPT_ARG_NONE, &show_usage, 0, "Display brief usage message", NULL },
108 POPT_TABLEEND
109 };
df5af25f 110
eecdc4f3
RS
111#if defined(WIN32)
112 if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0) {
113 printf("Failed to start Winsock2\n");
114 exit(10);
115 }
116#endif
117
67336940
RS
118 pc = poptGetContext(argv[0], argc, argv, popt_options, POPT_CONTEXT_POSIXMEHARDER);
119 if ((res = poptGetNextOpt(pc)) < -1) {
120 fprintf(stderr, "Failed to parse option : %s %s\n",
121 poptBadOption(pc, 0), poptStrerror(res));
84004dbf
RS
122 exit(10);
123 }
67336940
RS
124 extra_argv = poptGetArgs(pc);
125 if (extra_argv) {
126 url = *extra_argv;
127 extra_argv++;
128 while (extra_argv[extra_argc]) {
129 extra_argc++;
130 }
84004dbf 131 }
67336940 132 poptFreeContext(pc);
84004dbf 133
67336940
RS
134 if (show_help != 0) {
135 print_help();
136 exit(0);
84004dbf 137 }
84004dbf 138
67336940
RS
139 if (show_usage != 0) {
140 print_usage();
141 exit(0);
84004dbf
RS
142 }
143
67336940
RS
144 if (url == NULL) {
145 fprintf(stderr, "No URL specified.\n");
146 print_usage();
147 exit(0);
84004dbf 148 }
67336940
RS
149
150 if (strncmp(url, "nfs://", 6)) {
151 fprintf(stderr, "Invalid URL specified.\n");
152 print_usage();
153 exit(0);
84004dbf 154 }
67336940
RS
155
156 server = strdup(url + 6);
157 if (server == NULL) {
158 fprintf(stderr, "Failed to strdup server string\n");
57187d21
RS
159 exit(10);
160 }
67336940
RS
161 if (server[0] == '/' || server[0] == '\0') {
162 fprintf(stderr, "Invalid server string.\n");
163 free(server);
57187d21
RS
164 exit(10);
165 }
67336940
RS
166 strp = strchr(server, '/');
167 if (strp == NULL) {
168 fprintf(stderr, "Invalid URL specified.\n");
169 print_usage();
170 free(server);
171 exit(0);
57187d21 172 }
67336940
RS
173 path = strdup(strp);
174 if (path == NULL) {
175 fprintf(stderr, "Failed to strdup server string\n");
176 free(server);
57187d21
RS
177 exit(10);
178 }
67336940
RS
179 if (path[0] != '/') {
180 fprintf(stderr, "Invalid path.\n");
181 free(server);
182 free(path);
57187d21
RS
183 exit(10);
184 }
67336940
RS
185 *strp = 0;
186
187 client.server = server;
188 client.export = path;
189 client.is_finished = 0;
84004dbf 190
84004dbf 191
67336940
RS
192 nfs = nfs_init_context();
193 if (nfs == NULL) {
194 printf("failed to init context\n");
195 goto finished;
84004dbf 196 }
84004dbf 197
67336940 198 ret = nfs_mount(nfs, client.server, client.export);
84004dbf 199 if (ret != 0) {
67336940
RS
200 printf("Failed to mount nfs share : %s\n", nfs_get_error(nfs));
201 goto finished;
84004dbf 202 }
84004dbf
RS
203
204
67336940 205 ret = nfs_opendir(nfs, "/", &nfsdir);
84004dbf 206 if (ret != 0) {
67336940 207 printf("Failed to opendir(\"/\")\n", nfs_get_error(nfs));
84004dbf
RS
208 exit(10);
209 }
210 while((nfsdirent = nfs_readdir(nfs, nfsdir)) != NULL) {
67336940
RS
211 char path[1024];
212
213 if (!strcmp(nfsdirent->name, ".") || !strcmp(nfsdirent->name, "..")) {
214 continue;
57187d21 215 }
67336940
RS
216
217 snprintf(path, 1024, "%s/%s", "/", nfsdirent->name);
218 ret = nfs_stat(nfs, path, &st);
219 if (ret != 0) {
220 fprintf(stderr, "Failed to stat(%s) %s\n", path, nfs_get_error(nfs));
221 continue;
57187d21 222 }
67336940
RS
223
224 switch (st.st_mode & S_IFMT) {
225 case S_IFLNK:
226 case S_IFREG:
227 printf("-");
228 break;
229 case S_IFDIR:
230 printf("d");
231 break;
232 case S_IFCHR:
233 printf("c");
234 break;
235 case S_IFBLK:
236 printf("b");
237 break;
57187d21 238 }
67336940
RS
239 printf("%c%c%c",
240 "-r"[!!(st.st_mode & S_IRUSR)],
241 "-w"[!!(st.st_mode & S_IWUSR)],
242 "-x"[!!(st.st_mode & S_IXUSR)]
243 );
244 printf("%c%c%c",
245 "-r"[!!(st.st_mode & S_IRGRP)],
246 "-w"[!!(st.st_mode & S_IWGRP)],
247 "-x"[!!(st.st_mode & S_IXGRP)]
248 );
249 printf("%c%c%c",
250 "-r"[!!(st.st_mode & S_IROTH)],
251 "-w"[!!(st.st_mode & S_IWOTH)],
252 "-x"[!!(st.st_mode & S_IXOTH)]
253 );
254 printf(" %2d", st.st_nlink);
255 printf(" %5d", st.st_uid);
256 printf(" %5d", st.st_gid);
257 printf(" %12" PRId64, st.st_size);
258
259 printf(" %s\n", nfsdirent->name);
84004dbf
RS
260 }
261 nfs_closedir(nfs, nfsdir);
262
263
67336940
RS
264finished:
265 free(server);
266 free(path);
267 if (nfs != NULL) {
268 nfs_destroy_context(nfs);
84004dbf 269 }
84004dbf
RS
270 return 0;
271}
df5af25f 272