]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_conv.c
c68cad45c881aaef42b12fdaf514ee22c319a3ac
[netatalk.git] / libatalk / adouble / ad_conv.c
1 /*
2  * Copyright (c) 2012 Frank Lahm
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 2 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
15 /*!
16  * @file
17  * Part of Netatalk's AppleDouble implementatation
18  * @sa include/atalk/adouble.h
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif /* HAVE_CONFIG_H */
24
25 #include <errno.h>
26 #include <sys/param.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdarg.h>
30 #include <arpa/inet.h>
31
32 #include <atalk/logger.h>
33 #include <atalk/adouble.h>
34 #include <atalk/util.h>
35 #include <atalk/unix.h>
36 #include <atalk/ea.h>
37 #include <atalk/bstrlib.h>
38 #include <atalk/bstradd.h>
39 #include <atalk/compat.h>
40 #include <atalk/errchk.h>
41 #include <atalk/volume.h>
42
43 #include "ad_lock.h"
44
45 static char emptyfilad[32] = {0,0,0,0,0,0,0,0,
46                               0,0,0,0,0,0,0,0,
47                               0,0,0,0,0,0,0,0,
48                               0,0,0,0,0,0,0,0};
49
50 static char emptydirad[32] = {0,0,0,0,0,0,0,0,
51                               0,0,0,0,0,0,1,0,
52                               0,0,0,0,0,0,0,0,
53                               0,0,0,0,0,0,0,0};
54
55 static int ad_conv_v22ea_hf(const char *path, const struct stat *sp, const struct vol *vol)
56 {
57     EC_INIT;
58     struct adouble adv2;
59     struct adouble adea;
60     int adflags;
61     uint32_t ctime, mtime, afpinfo = 0;
62     char *emptyad;
63
64     LOG(log_debug, logtype_ad,"ad_conv_v22ea_hf(\"%s\"): BEGIN", fullpathname(path));
65
66     switch (S_IFMT & sp->st_mode) {
67     case S_IFREG:
68     case S_IFDIR:
69         break;
70     default:
71         return 0;
72     }
73
74     ad_init(&adea, vol);
75     ad_init_old(&adv2, AD_VERSION2, adea.ad_options);
76
77     adflags = S_ISDIR(sp->st_mode) ? ADFLAGS_DIR : 0;
78
79     /* Open and lock adouble:v2 file */
80     EC_ZERO( ad_open(&adv2, path, adflags | ADFLAGS_HF | ADFLAGS_RDWR) );
81
82     EC_NEG1_LOG( ad_tmplock(&adv2, ADEID_RFORK, ADLOCK_WR | ADLOCK_FILELOCK, 0, 0, 0) );
83     EC_NEG1_LOG( adv2.ad_ops->ad_header_read(path, &adv2, sp) );
84
85     /* Check if it's a non-empty header */
86     if (S_ISREG(sp->st_mode))
87         emptyad = &emptyfilad[0];
88     else
89         emptyad = &emptydirad[0];
90
91     if (ad_getentrylen(&adv2, ADEID_COMMENT) != 0)
92         goto copy;
93     if (ad_getentryoff(&adv2, ADEID_FINDERI)
94         && (ad_getentrylen(&adv2, ADEID_FINDERI) == ADEDLEN_FINDERI)
95         && (memcmp(ad_entry(&adv2, ADEID_FINDERI), emptyad, ADEDLEN_FINDERI) != 0))
96         goto copy;
97     if (ad_getentryoff(&adv2, ADEID_FILEDATESI)) {
98         EC_ZERO_LOG( ad_getdate(&adv2, AD_DATE_CREATE | AD_DATE_UNIX, &ctime) );
99         EC_ZERO_LOG( ad_getdate(&adv2, AD_DATE_MODIFY | AD_DATE_UNIX, &mtime) );
100         if ((ctime != mtime) || (mtime != sp->st_mtime))
101             goto copy;
102     }
103     if (ad_getentryoff(&adv2, ADEID_AFPFILEI)) {
104         if (memcmp(ad_entry(&adv2, ADEID_AFPFILEI), &afpinfo, ADEDLEN_AFPFILEI) != 0)
105             goto copy;
106     }
107
108     LOG(log_debug, logtype_ad,"ad_conv_v22ea_hf(\"%s\"): default adouble", fullpathname(path), ret);
109     goto EC_CLEANUP;
110
111 copy:
112     /* Create a adouble:ea meta EA */
113     LOG(log_debug, logtype_ad,"ad_conv_v22ea_hf(\"%s\"): copying adouble", fullpathname(path), ret);
114     EC_ZERO_LOGSTR( ad_open(&adea, path, adflags | ADFLAGS_HF | ADFLAGS_RDWR | ADFLAGS_CREATE),
115                     "ad_conv_v22ea_hf(\"%s\"): error creating metadata EA: %s",
116                     fullpathname(path), strerror(errno));
117     EC_ZERO_LOG( ad_copy_header(&adea, &adv2) );
118     ad_flush(&adea);
119
120 EC_CLEANUP:
121     EC_ZERO_LOG( ad_close(&adv2, ADFLAGS_HF | ADFLAGS_SETSHRMD) );
122     EC_ZERO_LOG( ad_close(&adea, ADFLAGS_HF | ADFLAGS_SETSHRMD) );
123     LOG(log_debug, logtype_ad,"ad_conv_v22ea_hf(\"%s\"): END: %d", fullpathname(path), ret);
124     EC_EXIT;
125 }
126
127 static int ad_conv_v22ea_rf(const char *path, const struct stat *sp, const struct vol *vol)
128 {
129     EC_INIT;
130     struct adouble adv2;
131     struct adouble adea;
132
133     LOG(log_debug, logtype_ad,"ad_conv_v22ea_rf(\"%s\"): BEGIN", fullpathname(path));
134
135     switch (S_IFMT & sp->st_mode) {
136     case S_IFREG:
137         break;
138     default:
139         return 0;
140     }
141
142     if (S_ISDIR(sp->st_mode))
143         return 0;
144
145     ad_init(&adea, vol);
146     ad_init_old(&adv2, AD_VERSION2, adea.ad_options);
147
148     /* Open and lock adouble:v2 file */
149     EC_ZERO( ad_open(&adv2, path, ADFLAGS_HF | ADFLAGS_RF | ADFLAGS_RDWR) );
150
151     if (adv2.ad_rlen > 0) {
152         EC_NEG1_LOG( ad_tmplock(&adv2, ADEID_RFORK, ADLOCK_WR | ADLOCK_FILELOCK, 0, 0, 0) );
153
154         /* Create a adouble:ea resource fork */
155         EC_ZERO_LOG( ad_open(&adea, path, ADFLAGS_HF | ADFLAGS_RF | ADFLAGS_RDWR | ADFLAGS_CREATE, 0666) );
156
157         EC_ZERO_LOG( copy_fork(ADEID_RFORK, &adea, &adv2) );
158         adea.ad_rlen = adv2.ad_rlen;
159         ad_flush(&adea);
160     }
161
162 EC_CLEANUP:
163     EC_ZERO_LOG( ad_close(&adv2, ADFLAGS_HF | ADFLAGS_RF) );
164     EC_ZERO_LOG( ad_close(&adea, ADFLAGS_HF | ADFLAGS_RF) );
165     LOG(log_debug, logtype_ad,"ad_conv_v22ea_rf(\"%s\"): END: %d", fullpathname(path), ret);
166     EC_EXIT;
167 }
168
169 static int ad_conv_v22ea(const char *path, const struct stat *sp, const struct vol *vol)
170 {
171     EC_INIT;
172     const char *adpath;
173     int adflags = S_ISDIR(sp->st_mode) ? ADFLAGS_DIR : 0;
174
175     become_root();
176
177     if (ad_conv_v22ea_hf(path, sp, vol) != 0)
178         goto delete;
179     if (ad_conv_v22ea_rf(path, sp, vol) != 0)
180         goto delete;
181
182 delete:
183     EC_NULL( adpath = ad_path(path, adflags) );
184     LOG(log_debug, logtype_ad,"ad_conv_v22ea_hf(\"%s\"): deleting adouble:v2 file: \"%s\"",
185         path, fullpathname(adpath));
186
187     unlink(adpath);
188
189 EC_CLEANUP:
190     if (errno == ENOENT)
191         EC_STATUS(0);
192
193     unbecome_root();
194
195     EC_EXIT;
196 }
197
198 /*!
199  * Remove hexencoded dots and slashes (":2e" and ":2f")
200  */
201 static int ad_conv_dehex(const char *path, const struct stat *sp, const struct vol *vol, const char **newpathp)
202 {
203     EC_INIT;
204     static char buf[MAXPATHLEN];
205     int adflags = S_ISDIR(sp->st_mode) ? ADFLAGS_DIR : 0;
206     bstring newpath = NULL;
207     static bstring str2e = NULL;
208     static bstring str2f = NULL;
209     static bstring strdot = NULL;
210     static bstring strcolon = NULL;
211
212     if (str2e == NULL) {
213         str2e = bfromcstr(":2e");
214         str2f = bfromcstr(":2f");
215         strdot = bfromcstr(".");
216         strcolon = bfromcstr(":");
217     }
218
219     LOG(log_debug, logtype_ad,"ad_conv_dehex(\"%s\"): BEGIN", fullpathname(path));
220
221     *newpathp = NULL;
222
223     if (((strstr(path, ":2e")) == NULL) && ((strstr(path, ":2f")) == NULL) )
224         goto EC_CLEANUP;
225
226     EC_NULL( newpath = bfromcstr(path) );
227
228     EC_ZERO( bfindreplace(newpath, str2e, strdot, 0) );
229     EC_ZERO( bfindreplace(newpath, str2f, strcolon, 0) );
230     
231     become_root();
232     if (adflags != ADFLAGS_DIR)
233         rename(vol->ad_path(path, 0), vol->ad_path(bdata(newpath), 0));
234     rename(path, bdata(newpath));
235     unbecome_root();
236
237     strlcpy(buf, bdata(newpath), sizeof(buf));
238     *newpathp = buf;
239
240 EC_CLEANUP:
241     if (newpath)
242         bdestroy(newpath);
243     EC_EXIT;
244 }
245
246 /*!
247  * AppleDouble and encoding conversion on the fly
248  *
249  * @param path      (r) path to file or directory
250  * @param sp        (r) stat(path)
251  * @param vol       (r) volume handle
252  * @param newpath   (w) if encoding changed, new name. Can be NULL.
253  *
254  * @returns         -1 on internal error, otherwise 0. newpath is NULL if no character conversion was done,
255  *                  otherwise newpath points to a static string with the converted name
256  */
257 int ad_convert(const char *path, const struct stat *sp, const struct vol *vol, const char **newpath)
258 {
259     EC_INIT;
260     const char *p;
261
262     LOG(log_debug, logtype_ad,"ad_convert(\"%s\"): BEGIN", fullpathname(path));
263
264     if (newpath)
265         *newpath = NULL;
266
267     if (vol->v_flags & AFPVOL_RO)
268         EC_EXIT_STATUS(0);
269
270     if ((vol->v_adouble == AD_VERSION_EA) && !(vol->v_flags & AFPVOL_NOV2TOEACONV))
271         EC_ZERO( ad_conv_v22ea(path, sp, vol) );
272
273     if (vol->v_adouble == AD_VERSION_EA) {
274         EC_ZERO( ad_conv_dehex(path, sp, vol, &p) );
275         if (p && newpath)
276             *newpath = p;
277     }
278
279 EC_CLEANUP:
280     LOG(log_debug, logtype_ad,"ad_convert(\"%s\"): END: %d", fullpathname(path), ret);
281     EC_EXIT;
282 }
283