File: smb2-cp.c

package info (click to toggle)
libsmb2 6.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,424 kB
  • sloc: ansic: 32,679; sh: 221; makefile: 189; cpp: 98
file content (265 lines) | stat: -rw-r--r-- 6,365 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/* 
   Copyright (C) by Ronnie Sahlberg <ronniesahlberg@gmail.com> 2024
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, see <http://www.gnu.org/licenses/>.
*/

#define _FILE_OFFSET_BITS 64
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif

#include <inttypes.h>
#if !defined(__amigaos4__) && !defined(__AMIGA__) && !defined(__AROS__)
#include <poll.h>
#endif
#include <fcntl.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <time.h>
#include <unistd.h>

#include "smb2.h"
#include "libsmb2.h"
#include "libsmb2-raw.h"

#ifdef __AROS__
#include "asprintf.h"
#endif

struct file_context {
	int is_smb2;
	int fd;
	struct smb2_context *smb2;
	struct smb2fh *smb2fh;
	struct smb2_url *url;
};

void usage(void)
{
	fprintf(stderr, "Usage: smb2-cp <src> <dst>\n");
	fprintf(stderr, "<src>,<dst> can either be a local file or "
			"an smb2 URL.\n");
	exit(0);
}

static void
free_file_context(struct file_context *file_context)
{
	if (file_context->fd != -1) {
		close(file_context->fd);
	}
	if (file_context->smb2fh != NULL) {
		smb2_close(file_context->smb2, file_context->smb2fh);
	}
	if (file_context->smb2 != NULL) {
		smb2_destroy_context(file_context->smb2);
	}
	smb2_destroy_url(file_context->url);
	free(file_context);
}

static int
fstat_file(struct file_context *fc, struct stat *st)
{
	if (fc->is_smb2 == 0) {
		return fstat(fc->fd, st);
	} else {
		int res;
		struct smb2_stat_64 smb2_st;
		res = smb2_fstat(fc->smb2, fc->smb2fh, &smb2_st);
		st->st_dev          = 0;
		st->st_ino          = (ino_t)smb2_st.smb2_ino;
#ifndef WIN32
		st->st_mode         = 0;
		st->st_nlink        = (nlink_t)smb2_st.smb2_nlink;
		st->st_blksize      = 4096;
		st->st_blocks       = (smb2_st.smb2_size + 4096 - 1) % 4096;
#endif
		st->st_uid          = 0;
		st->st_gid          = 0;
		st->st_rdev         = 0;
		st->st_size         = (off_t)smb2_st.smb2_size;
		st->st_atime        = smb2_st.smb2_atime;
		st->st_mtime        = smb2_st.smb2_mtime;
		st->st_ctime        = smb2_st.smb2_ctime;

		return res;
	}
}

static ssize_t
file_pread(struct file_context *fc, uint8_t *buf, size_t count, off_t off)
{
	if (fc->is_smb2 == 0) {
		lseek(fc->fd, off, SEEK_SET);
		return read(fc->fd, buf, count);
	} else {
		return smb2_pread(fc->smb2, fc->smb2fh, buf, count, off);
	}
}

static ssize_t
file_pwrite(struct file_context *fc, uint8_t *buf, size_t count, off_t off)
{
	if (fc->is_smb2 == 0) {
		lseek(fc->fd, off, SEEK_SET);
		return write(fc->fd, buf, count);
	} else {
		return smb2_pwrite(fc->smb2, fc->smb2fh, buf, count, off);
	}
}

static struct file_context *
open_file(const char *url, int flags)
{
	struct file_context *file_context;

	file_context = malloc(sizeof(struct file_context));
	if (file_context == NULL) {
		fprintf(stderr, "Failed to malloc file_context\n");
		return NULL;
	}
	file_context->is_smb2 = 0;
	file_context->fd     = -1;
	file_context->smb2    = NULL;
	file_context->smb2fh  = NULL;
	file_context->url    = NULL;

	if (strncmp(url, "smb://", 6)) {
		file_context->is_smb2 = 0;
		file_context->fd = open(url, flags, 0660);
		if (file_context->fd == -1) {		
			fprintf(stderr, "Failed to open %s\n", url);
			free_file_context(file_context);
			return NULL;
		}
		return file_context;
	}

	file_context->is_smb2 = 1;

	file_context->smb2 = smb2_init_context();
	if (file_context->smb2 == NULL) {
		fprintf(stderr, "failed to init context\n");
		free_file_context(file_context);
		return NULL;
	}

	file_context->url = smb2_parse_url(file_context->smb2, url);
	if (file_context->url == NULL) {
		fprintf(stderr, "%s\n", smb2_get_error(file_context->smb2));
		free_file_context(file_context);
		return NULL;
	}

	if (smb2_connect_share(file_context->smb2, file_context->url->server,
			       file_context->url->share,
			       file_context->url->user) != 0) {
		fprintf(stderr, "Failed to mount smb2 share : %s\n",
			       smb2_get_error(file_context->smb2));
		free_file_context(file_context);
		return NULL;
	}

	file_context->smb2fh = smb2_open(file_context->smb2, file_context->url->path, flags);
	if (file_context->smb2fh == NULL) {
		fprintf(stderr, "Failed to open file %s: %s\n",
			       file_context->url->path,
			       smb2_get_error(file_context->smb2));
		free_file_context(file_context);
		return NULL;
	}
	return file_context;
}

#define BUFSIZE 1024*1024
static uint8_t buf[BUFSIZE];

int main(int argc, char *argv[])
{
	struct stat st;
	struct file_context *src;
	struct file_context *dst;
	off_t off;
	ssize_t count;
	
#ifdef WIN32
	if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0) {
		printf("Failed to start Winsock2\n");
		return 10;
	}
#endif

#ifdef AROS
	aros_init_socket();
#endif

	if (argc != 3) {
		usage();
	}

	src = open_file(argv[1], O_RDONLY);
	if (src == NULL) {
		fprintf(stderr, "Failed to open %s\n", argv[1]);
		return 10;
	}

	dst = open_file(argv[2], O_WRONLY|O_CREAT|O_TRUNC);
	if (dst == NULL) {
		fprintf(stderr, "Failed to open %s\n", argv[2]);
		free_file_context(src);
		return 10;
	}

	if (fstat_file(src, &st) != 0) {
		fprintf(stderr, "Failed to fstat source file\n");
		free_file_context(src);
		free_file_context(dst);
		return 10;
	}

	off = 0;
	while (off < st.st_size) {
		count = (size_t)(st.st_size - off);
		if (count > BUFSIZE) {
			count = BUFSIZE;
		}
		count = file_pread(src, buf, count, off);
		if (count < 0) {
			fprintf(stderr, "Failed to read from source file\n");
			free_file_context(src);
			free_file_context(dst);
			return 10;
		}
		count = file_pwrite(dst, buf, count, off);
		if (count < 0) {
			fprintf(stderr, "Failed to write to dest file\n");
			free_file_context(src);
			free_file_context(dst);
			return 10;
		}

		off += count;
	}
	printf("copied %d bytes\n", (int)off);

	free_file_context(src);
	free_file_context(dst);

	return 0;
}