]> arthur.barton.de Git - netatalk.git/blob - libatalk/adouble/ad_conv.c
Don't convert AppleDouble v2 file of symlinks, delete it
[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     const char *adpath;
61     int adflags;
62     uint32_t ctime, mtime, afpinfo = 0;
63     char *emptyad;
64
65     LOG(log_debug, logtype_ad,"ad_conv_v22ea_hf(\"%s\"): BEGIN", fullpathname(path));
66
67     switch (S_IFMT & sp->st_mode) {
68     case S_IFREG:
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     EC_ZERO( ad_conv_v22ea_hf(path, sp, vol) );
178     EC_ZERO( ad_conv_v22ea_rf(path, sp, vol) );
179
180     EC_NULL( adpath = ad_path(path, adflags) );
181     LOG(log_debug, logtype_ad,"ad_conv_v22ea_hf(\"%s\"): deleting adouble:v2 file: \"%s\"",
182         path, fullpathname(adpath));
183
184     unlink(adpath);
185
186 EC_CLEANUP:
187     if (errno == ENOENT)
188         EC_STATUS(0);
189
190     unbecome_root();
191
192     EC_EXIT;
193 }
194
195 /*!
196  * Remove hexencoded dots and slashes (":2e" and ":2f")
197  */
198 static int ad_conv_dehex(const char *path, const struct stat *sp, const struct vol *vol, const char **newpathp)
199 {
200     EC_INIT;
201     static char buf[MAXPATHLEN];
202     const char *adpath, *p;
203     int adflags = S_ISDIR(sp->st_mode) ? ADFLAGS_DIR : 0;
204     bstring newpath = NULL;
205
206     LOG(log_debug, logtype_ad,"ad_conv_dehex(\"%s\"): BEGIN", fullpathname(path));
207
208     *newpathp = NULL;
209
210     if ((p = strchr(path, ':')) == NULL)
211         goto EC_CLEANUP;
212
213     EC_NULL( newpath = bfromcstr(path) );
214
215     EC_ZERO( bfindreplace(newpath, bfromcstr(":2e"), bfromcstr("."), 0) );
216     EC_ZERO( bfindreplace(newpath, bfromcstr(":2f"), bfromcstr(":"), 0) );
217     
218     become_root();
219     if (adflags != ADFLAGS_DIR)
220         rename(vol->ad_path(path, 0), vol->ad_path(bdata(newpath), 0));
221     rename(path, bdata(newpath));
222     unbecome_root();
223
224     strlcpy(buf, bdata(newpath), sizeof(buf));
225     *newpathp = buf;
226
227 EC_CLEANUP:
228     if (newpath)
229         bdestroy(newpath);
230     EC_EXIT;
231 }
232
233 /*!
234  * AppleDouble and encoding conversion on the fly
235  *
236  * @param path      (r) path to file or directory
237  * @param sp        (r) stat(path)
238  * @param vol       (r) volume handle
239  * @param newpath   (w) if encoding changed, new name. Can be NULL.
240  *
241  * @returns         -1 on internal error, otherwise 0. newpath is NULL if no character conversion was done,
242  *                  otherwise newpath points to a static string with the converted name
243  */
244 int ad_convert(const char *path, const struct stat *sp, const struct vol *vol, const char **newpath)
245 {
246     EC_INIT;
247     const char *p;
248
249     LOG(log_debug, logtype_ad,"ad_convert(\"%s\"): BEGIN", fullpathname(path));
250
251     if (newpath)
252         *newpath = NULL;
253
254     if ((vol->v_adouble == AD_VERSION_EA) && !(vol->v_flags & AFPVOL_NOV2TOEACONV))
255         EC_ZERO( ad_conv_v22ea(path, sp, vol) );
256
257     if (vol->v_adouble == AD_VERSION_EA) {
258         EC_ZERO( ad_conv_dehex(path, sp, vol, &p) );
259         if (p && newpath)
260             *newpath = p;
261     }
262
263 EC_CLEANUP:
264     LOG(log_debug, logtype_ad,"ad_convert(\"%s\"): END: %d", fullpathname(path), ret);
265     EC_EXIT;
266 }
267