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
|
/*
Homework n.2
Estendere l'esempio 'move.c' visto a lezione per supportare i 2 casi speciali:
- spostamento cross-filesystem: individuato tale caso, il file deve essere
spostato utilizzando la strategia "copia & cancella";
- spostamento di un link simbolico: individuato tale caso, il link simbolico
deve essere ricreato a destinazione con lo stesso contenuto (ovvero il percorso
che denota l'oggetto referenziato); notate come tale spostamento potrebbe
rendere il nuovo link simbolico non effettivamente valido.
La sintassi da supportare e' la seguente:
$ homework-2 <pathname sorgente> <pathname destinazione>
*/
#include <fcntl.h>
#include <libgen.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
/* Function from the homework 1 */
int copyfile(int*, int*);
int main(int argc, char** argv)
{
struct stat src, dst;
char buffer[1024];
int fd_src, fd_dst;
int size;
if (argc < 3) {
fprintf(stderr, "Usage: %s <src> <dst>", argv[0]);
exit(1);
}
if (lstat(argv[1], &src) == -1) {
perror("lstat");
exit(1);
}
switch (src.st_mode & S_IFMT) {
case S_IFREG:
strncpy(buffer, argv[2], 1024);
stat(dirname(buffer), &dst);
/* Destination's father must be a directory */
if (!S_ISDIR(dst.st_mode)) {
fprintf(stderr, "Destination is not a directory");
}
if (dst.st_dev == src.st_dev) {
if (link(argv[1], argv[2]) == -1) {
perror("link");
exit(1);
}
} else {
if ((fd_src = open(argv[1], O_RDONLY)) == -1) {
perror("Error opening source");
exit(1);
}
if ((fd_dst = open(argv[2], O_CREAT | O_TRUNC | O_WRONLY, (src.st_mode & 0777))) == -1) {
perror("Error opening destination");
exit(1);
}
copyfile(&fd_src, &fd_dst);
close(fd_src);
close(fd_dst);
}
break;
case S_IFLNK:
if ((size = readlink(argv[1], buffer, 1024)) == -1) {
perror("readlink");
exit(1);
}
buffer[size] = '\0';
if (symlink(buffer, argv[2]) == -1) {
perror("symlink");
exit(1);
}
break;
default:
fprintf(stderr, "Source file type not supported");
}
if (unlink(argv[1]) == -1) {
perror("ulink");
exit(1);
}
return 0;
}
int copyfile(int* src, int* dst)
{
int n;
char buffer[1024];
do {
if ((n = read(*src, buffer, 1024)) == -1) {
perror("read");
exit(1);
}
if (write(*dst, buffer, n) == -1) {
perror("write");
exit(1);
}
} while (n > 0);
return n;
}
|