-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.c
363 lines (281 loc) · 7.81 KB
/
client.c
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/queue.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>
#include "message.h"
#include "vec.h"
#define BUFFER_SIZE 512
#define MAX_CHILDREN 5
void backup(char *file, int server_fifo);
int global_clean(int server_fifo);
void restore(char *file, int server_fifo);
void delete(char *file, int server_fifo);
int get_server_pipe(char* fifo_path, int size);
int get_server_root(char* server_root, int size);
int is_dir(char *path);
int is_file(char *path);
void fill_vec(char *dir, char *aux, int aux_size, vec_str_t* vec);
void get_all_files(char *dir, char *aux, int aux_size);
void count_dead(int pid);
void write_succ_message();
void write_fail_message();
int print_help();
int alive;
char* current_file;
int ret;
int main(int argc, char* argv[]) {
char server_fifo_path[PATH_SIZE];
int i, server_fifo;
// Verifica se os argumentos são válidos
if (argc == 1 || (strcmp(argv[1], "delete") && strcmp(argv[1], "gc") &&
strcmp(argv[1], "backup") && strcmp(argv[1], "restore") &&
strcmp(argv[1], "--help"))) {
fprintf(stderr, "Utilização: sobucli [MODO] ...[FICHEIROS]\
\nTente 'sobucli --help' para mais ajuda.\n");
return -1;
}
if (argc == 2 && strcmp(argv[1], "gc") && strcmp(argv[1], "--help")) {
fprintf(stderr, "No files specified\n");
return -1;
}
if (!strcmp(argv[1], "backup")) {
for(i = 2; i < argc; i++) {
if (access(argv[i], F_OK) == -1) {
fprintf(stderr, "Ficheiro '%s' não existe.\n", argv[i]);
return -2;
}
if (access(argv[i], R_OK) == -1) {
fprintf(stderr, "Sem Permissões. Impossível ler ficheiro '%s'.\n", argv[i]);
return -2;
}
}
}
signal(SIGCHLD, count_dead);
// Prepara e envia informação a partir dos argumentos
i = get_server_pipe(server_fifo_path, PATH_SIZE);
if (i == -1) {
write(2, "Não foi possível comunicar com o servidor.\n", 45);
return -3;
}
server_fifo = open(server_fifo_path, O_WRONLY);
if (server_fifo == -1){
perror("Erro ao tentar comunicar com servidor.");
return -4;
}
if (!strcmp(argv[1], "gc"))
return global_clean(server_fifo);
if (!strcmp(argv[1], "--help"))
return print_help();
for(i = 2; i < argc; i++) {
if (alive == MAX_CHILDREN)
pause();
alive++;
if (!fork()) {
current_file = get_file_name(argv[i]);
if (!strcmp(argv[1], "backup"))
backup(argv[i], server_fifo);
else if (!strcmp(argv[1], "restore"))
restore(argv[i], server_fifo);
else if (!strcmp(argv[1], "delete"))
delete(argv[i], server_fifo);
_exit(0);
}
if (!strcmp(argv[1], "restore"))
wait(NULL);
}
while (alive > 0)
wait(NULL);
close(server_fifo);
return ret;
}
void backup(char *file, int server_fifo) {
MESSAGE msg;
char cdir[PATH_SIZE], chunk[CHUNK_SIZE], aux[CHUNK_SIZE];
int i, f, status;
vec_str_t files;
pid_t pid;
uid_t uid = getuid();
vec_init(&files);
msg = empty_message();
pid = getpid();
signal(SIGUSR1, write_succ_message);
signal(SIGUSR2, write_fail_message);
if (is_dir(file))
fill_vec(file, aux, CHUNK_SIZE, &files);
else
vec_push(&files, file);
for (i=0; i < files.length; i++) {
realpath(files.data[i], cdir);
f = open(cdir, O_RDONLY);
while((status = read(f, chunk, CHUNK_SIZE)) > 0) {
change_message(msg, "backup", uid, pid, cdir, chunk, status, NOT_FNSHD);
write(server_fifo, msg, sizeof(*msg));
}
change_message(msg, "backup", uid, pid, cdir, "", 0, FINISHED);
write(server_fifo, msg, sizeof(*msg));
close(f);
pause();
if (!ret)
printf("%s: copiado\n", files.data[i]);
else
printf("%s: erro ao copiar\n", files.data[i]);
}
freeMessage(msg);
}
void restore(char *file, int server_fifo) {
MESSAGE msg = empty_message();
char client_fifo_path[PATH_SIZE];
int f, st, client_fifo;
uid_t uid = getuid();
pid_t pid = getpid();
signal(SIGUSR1, write_succ_message);
signal(SIGUSR2, write_fail_message);
change_message(msg, "restore", uid, pid, file, "", 0, FINISHED);
write(server_fifo, msg, sizeof(*msg));
pause();
if (ret) {
printf("%s: ficheiro não existe\n", file);
freeMessage(msg);
return;
}
get_server_root(client_fifo_path, PATH_SIZE);
sprintf(client_fifo_path, "%s%d", client_fifo_path, (int) pid);
client_fifo = open(client_fifo_path, O_RDONLY);
read(client_fifo, msg, sizeof(*msg));
if ((st = msg->status) == NOT_FNSHD)
unlink(msg->file_path);
do {
f = open(msg->file_path, O_CREAT | O_WRONLY | O_APPEND, 0644);
write(f, msg->chunk, msg->chunk_size);
close(f);
read(client_fifo, msg, sizeof(*msg));
st = msg->status;
} while(st);
if (!ret)
printf("%s: recuperado\n", file);
else
printf("%s: erro ao recuperar\n", file);
freeMessage(msg);
close(client_fifo);
}
void delete(char* file, int server_fifo) {
MESSAGE msg = empty_message();
pid_t pid = getpid();
uid_t uid = getuid();
signal(SIGUSR1, write_succ_message);
signal(SIGUSR2, write_fail_message);
change_message(msg, "delete", uid, pid, file, "", 0, FINISHED);
write(server_fifo, msg, sizeof(*msg));
pause();
if (!ret)
printf("%s: apagado\n", file);
else
printf("%s: erro ao apagar\n", file);
freeMessage(msg);
}
int global_clean(int server_fifo) {
MESSAGE msg;
uid_t uid = getuid();
pid_t pid = getpid();
msg = init_message("gc", uid, pid, "", "", 0, FINISHED);
write(server_fifo, msg, sizeof(*msg));
freeMessage(msg);
return 0;
}
/**
* Coloca o path para o pipe do servidor em fifo_path
*/
int get_server_pipe(char* fifo_path, int size) {
char server_user[BUFFER_SIZE], info_path[PATH_SIZE];
int file;
uid_t uid;
struct passwd *pw;
strncpy(info_path, "/tmp/sobu_running_user", PATH_SIZE);
file = open(info_path, O_RDONLY);
if (errno == ENOENT) return -1;
read(file, server_user, BUFFER_SIZE);
close(file);
uid = (uid_t) atoi(server_user);
pw = getpwuid(uid);
strncpy(fifo_path, pw->pw_dir, size);
strncat(fifo_path, "/.Backup/sobupipe", size);
return 0;
}
/**
* Coloca o path para o pipe do servidor em fifo_path
*/
int get_server_root(char* server_root, int size) {
char server_user[BUFFER_SIZE], info_path[PATH_SIZE];
int file;
uid_t uid;
struct passwd *pw;
strncpy(info_path, "/tmp/sobu_running_user", PATH_SIZE);
file = open(info_path, O_RDONLY);
if (errno == ENOENT) return -1;
read(file, server_user, BUFFER_SIZE);
close(file);
uid = (uid_t) atoi(server_user);
pw = getpwuid(uid);
strncpy(server_root, pw->pw_dir, size);
strncat(server_root, "/.Backup/", size);
return 0;
}
void fill_vec(char *dir, char *aux, int aux_size, vec_str_t* vec) {
char* tmp;
get_all_files(dir, aux, aux_size);
strtok(aux, "\n");
while((tmp = strtok(NULL, "\n"))) {
if (is_file(tmp)) vec_push(vec, tmp);
}
}
void get_all_files(char *dir, char *aux, int aux_size) {
int pp[2];
pipe(pp);
if(!fork()) {
close(pp[0]);
dup2(pp[1], 1);
execlp("find", "find", dir, NULL);
perror("Erro ao tentar abrir diretoria");
_exit(1);
}
wait(NULL);
close(pp[1]);
read(pp[0], aux, aux_size);
close(pp[0]);
}
int is_dir(char *path) {
struct stat path_stat;
stat(path, &path_stat);
return S_ISDIR(path_stat.st_mode);
}
int is_file(char *path) {
struct stat path_stat;
stat(path, &path_stat);
return S_ISREG(path_stat.st_mode);
}
// decrementa o numero de filhos vivos
void count_dead(int pid) {
waitpid(pid, NULL, WCONTINUED);
alive--;
}
// escreve a mensagem de sucesso enviada pelo utilizador
void write_succ_message() {
ret = 0;
}
// escreve a mensagem de erro enviada pelo utilizador
void write_fail_message() {
ret = 1;
}
int print_help() {
printf("MODOS:\n");
printf("backup - Guarda ficheiro(s) especificados.\n");
printf("restore - Coloca ficheiro(s) na sua diretoria original.\n");
printf("delete - Apaga a entrada do(s) ficheiro(s) dados.\n");
printf("gc - Apaga dados irrelevantes da raiz do backup.\n");
return 0;
}