]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/findlib/attribs.c
db3e63a306ec095616032b3c4a40b2d43033ccf3
[bacula/bacula] / bacula / src / findlib / attribs.c
1 /*
2  *  Encode and decode standard Unix attributes and
3  *   Extended attributes for Win32 and
4  *   other non-Unix systems, or Unix systems with ACLs, ...
5  *
6  *    Kern Sibbald, October MMII
7  *
8  *   Version $Id$
9  *
10  */
11 /*
12    Copyright (C) 2000-2003 Kern Sibbald and John Walker
13
14    This program is free software; you can redistribute it and/or
15    modify it under the terms of the GNU General Public License as
16    published by the Free Software Foundation; either version 2 of
17    the License, or (at your option) any later version.
18
19    This program is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22    General Public License for more details.
23
24    You should have received a copy of the GNU General Public
25    License along with this program; if not, write to the Free
26    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27    MA 02111-1307, USA.
28
29  */
30
31 #include "bacula.h"
32 #include "find.h"
33 #include "jcr.h"
34
35 #ifdef HAVE_CYGWIN
36 #include <windows.h>
37
38 /* Forward referenced subroutines */
39 static
40 int set_win32_attributes(void *jcr, char *fname, char *ofile, char *lname, 
41                          int type, int stream, struct stat *statp,
42                          char *attribsEx, BFILE *ofd);
43 void unix_name_to_win32(POOLMEM **win32_name, char *name);
44 extern "C" HANDLE get_osfhandle(int fd);
45 void win_error(void *jcr, char *prefix, POOLMEM *ofile);
46 #endif
47
48 /* For old systems that don't have lchown() use chown() */
49 #ifndef HAVE_LCHOWN
50 #define lchown chown
51 #endif
52
53 /*=============================================================*/
54 /*                                                             */
55 /*             ***  A l l  S y s t e m s ***                   */
56 /*                                                             */
57 /*=============================================================*/
58
59
60 /* Encode a stat structure into a base64 character string */
61 void encode_stat(char *buf, struct stat *statp, uint32_t LinkFI)
62 {
63    char *p = buf;
64    /*
65     * NOTE: we should use rdev as major and minor device if
66     * it is a block or char device (S_ISCHR(statp->st_mode)
67     * or S_ISBLK(statp->st_mode)).  In all other cases,
68     * it is not used.   
69     *
70     */
71    p += to_base64((int64_t)statp->st_dev, p);
72    *p++ = ' ';                        /* separate fields with a space */
73    p += to_base64((int64_t)statp->st_ino, p);
74    *p++ = ' ';
75    p += to_base64((int64_t)statp->st_mode, p);
76    *p++ = ' ';
77    p += to_base64((int64_t)statp->st_nlink, p);
78    *p++ = ' ';
79    p += to_base64((int64_t)statp->st_uid, p);
80    *p++ = ' ';
81    p += to_base64((int64_t)statp->st_gid, p);
82    *p++ = ' ';
83    p += to_base64((int64_t)statp->st_rdev, p);
84    *p++ = ' ';
85    p += to_base64((int64_t)statp->st_size, p);
86    *p++ = ' ';
87    p += to_base64((int64_t)statp->st_blksize, p);
88    *p++ = ' ';
89    p += to_base64((int64_t)statp->st_blocks, p);
90    *p++ = ' ';
91    p += to_base64((int64_t)statp->st_atime, p);
92    *p++ = ' ';
93    p += to_base64((int64_t)statp->st_mtime, p);
94    *p++ = ' ';
95    p += to_base64((int64_t)statp->st_ctime, p);
96    *p++ = ' ';
97    p += to_base64((int64_t)LinkFI, p);
98 /* FreeBSD function */
99 #ifdef HAVE_CHFLAGS
100    *p++ = ' ';
101    p += to_base64((int64_t)statp->st_flags, p);
102 #endif
103    *p = 0;
104    return;
105 }
106
107
108
109 /* Decode a stat packet from base64 characters */
110 void
111 decode_stat(char *buf, struct stat *statp, uint32_t *LinkFI) 
112 {
113    char *p = buf;
114    int64_t val;
115
116    p += from_base64(&val, p);
117    statp->st_dev = val;
118    p++;                               /* skip space */
119    p += from_base64(&val, p);
120    statp->st_ino = val;
121    p++;
122    p += from_base64(&val, p);
123    statp->st_mode = val;
124    p++;
125    p += from_base64(&val, p);
126    statp->st_nlink = val;
127    p++;
128    p += from_base64(&val, p);
129    statp->st_uid = val;
130    p++;
131    p += from_base64(&val, p);
132    statp->st_gid = val;
133    p++;
134    p += from_base64(&val, p);
135    statp->st_rdev = val;
136    p++;
137    p += from_base64(&val, p);
138    statp->st_size = val;
139    p++;
140    p += from_base64(&val, p);
141    statp->st_blksize = val;
142    p++;
143    p += from_base64(&val, p);
144    statp->st_blocks = val;
145    p++;
146    p += from_base64(&val, p);
147    statp->st_atime = val;
148    p++;
149    p += from_base64(&val, p);
150    statp->st_mtime = val;
151    p++;
152    p += from_base64(&val, p);
153    statp->st_ctime = val;
154    /* Optional FileIndex of hard linked file data */
155    if (*p == ' ' || (*p != 0 && *(p+1) == ' ')) {
156       p++;
157       p += from_base64(&val, p);
158       *LinkFI = (uint32_t)val;
159   } else {
160       *LinkFI = 0;
161   }
162 /* FreeBSD user flags */
163 #ifdef HAVE_CHFLAGS
164    if (*p == ' ' || (*p != 0 && *(p+1) == ' ')) {
165       p++;
166       p += from_base64(&val, p);
167       statp->st_flags = (uint32_t)val;
168   } else {
169       statp->st_flags  = 0;
170   }
171 #endif
172 }
173
174 /*
175  * Set file modes, permissions and times
176  *
177  *  fname is the original filename  
178  *  ofile is the output filename (may be in a different directory)
179  *
180  * Returns:  1 on success
181  *           0 on failure
182  */
183 int set_attributes(void *jcr, char *fname, char *ofile, char *lname, 
184                    int type, int stream, struct stat *statp,
185                    char *attribsEx, BFILE *ofd)
186 {
187    struct utimbuf ut;    
188    mode_t old_mask;
189    int stat = 1;
190
191 #ifdef HAVE_CYGWIN
192    if (set_win32_attributes(jcr, fname, ofile, lname, type, stream,
193                             statp, attribsEx, ofd)) {
194       return 1;
195    }
196    /*
197     * If Windows stuff failed, e.g. attempt to restore Unix file
198     *  to Windows, simply fall through and we will do it the     
199     *  universal way.
200     */
201 #endif
202
203    old_mask = umask(0);
204    if (is_bopen(ofd)) {
205       bclose(ofd);                    /* first close file */
206    }
207
208    ut.actime = statp->st_atime;
209    ut.modtime = statp->st_mtime;
210
211    /* ***FIXME**** optimize -- don't do if already correct */
212    /* 
213     * For link, change owner of link using lchown, but don't
214     *   try to do a chmod as that will update the file behind it.
215     */
216    if (type == FT_LNK) {
217       /* Change owner of link, not of real file */
218       if (lchown(ofile, statp->st_uid, statp->st_gid) < 0) {
219          Jmsg2(jcr, M_WARNING, 0, "Unable to set file owner %s: ERR=%s\n",
220             ofile, strerror(errno));
221          stat = 0;
222       }
223    } else {
224       if (chown(ofile, statp->st_uid, statp->st_gid) < 0) {
225          Jmsg2(jcr, M_WARNING, 0, "Unable to set file owner %s: ERR=%s\n",
226             ofile, strerror(errno));
227          stat = 0;
228       }
229       if (chmod(ofile, statp->st_mode) < 0) {
230          Jmsg2(jcr, M_WARNING, 0, "Unable to set file modes %s: ERR=%s\n",
231             ofile, strerror(errno));
232          stat = 0;
233       }
234
235       /* FreeBSD user flags */
236 #ifdef HAVE_CHFLAGS
237       if (chflags(ofile, statp->st_flags) < 0) {
238          Jmsg2(jcr, M_WARNING, 0, "Unable to set file flags %s: ERR=%s\n",
239             ofile, strerror(errno));
240          stat = 0;
241       }
242
243 #endif
244       /*
245        * Reset file times.
246        */
247       if (utime(ofile, &ut) < 0) {
248          Jmsg2(jcr, M_ERROR, 0, "Unable to set file times %s: ERR=%s\n",
249             ofile, strerror(errno));
250          stat = 0;
251       }
252    }
253    umask(old_mask);
254    return stat;
255 }
256
257
258 /*=============================================================*/
259 /*                                                             */
260 /*                 * * *  U n i x * * * *                      */
261 /*                                                             */
262 /*=============================================================*/
263
264 #ifndef HAVE_CYGWIN
265     
266 /*
267  * If you have a Unix system with extended attributes (e.g.
268  *  ACLs for Solaris, do it here.
269  */
270 int encode_attribsEx(void *jcr, char *attribsEx, FF_PKT *ff_pkt)
271 {
272    *attribsEx = 0;                    /* no extended attributes */
273    return STREAM_UNIX_ATTRIBUTES;
274 }
275
276 #endif
277
278
279
280 /*=============================================================*/
281 /*                                                             */
282 /*                 * * *  W i n 3 2 * * * *                    */
283 /*                                                             */
284 /*=============================================================*/
285
286 #ifdef HAVE_CYGWIN
287
288 int NoGetFileAttributesEx = 0;
289
290 int encode_attribsEx(void *jcr, char *attribsEx, FF_PKT *ff_pkt)
291 {
292    char *p = attribsEx;
293    WIN32_FILE_ATTRIBUTE_DATA atts;
294    ULARGE_INTEGER li;
295
296    attribsEx[0] = 0;                  /* no extended attributes */
297
298    if (NoGetFileAttributesEx) {
299       return STREAM_UNIX_ATTRIBUTES;
300    }
301
302    unix_name_to_win32(&ff_pkt->sys_fname, ff_pkt->fname);
303    if (!GetFileAttributesEx(ff_pkt->sys_fname, GetFileExInfoStandard,
304                             (LPVOID)&atts)) {
305       win_error(jcr, "GetFileAttributesEx:", ff_pkt->sys_fname);
306       return STREAM_WIN32_ATTRIBUTES;
307    }
308
309    p += to_base64((uint64_t)atts.dwFileAttributes, p);
310    *p++ = ' ';                        /* separate fields with a space */
311    li.LowPart = atts.ftCreationTime.dwLowDateTime;
312    li.HighPart = atts.ftCreationTime.dwHighDateTime;
313    p += to_base64((uint64_t)li.QuadPart, p);
314    *p++ = ' ';
315    li.LowPart = atts.ftLastAccessTime.dwLowDateTime;
316    li.HighPart = atts.ftLastAccessTime.dwHighDateTime;
317    p += to_base64((uint64_t)li.QuadPart, p);
318    *p++ = ' ';
319    li.LowPart = atts.ftLastWriteTime.dwLowDateTime;
320    li.HighPart = atts.ftLastWriteTime.dwHighDateTime;
321    p += to_base64((uint64_t)li.QuadPart, p);
322    *p++ = ' ';
323    p += to_base64((uint64_t)atts.nFileSizeHigh, p);
324    *p++ = ' ';
325    p += to_base64((uint64_t)atts.nFileSizeLow, p);
326    *p = 0;
327    return STREAM_WIN32_ATTRIBUTES;
328 }
329
330 /* Define attributes that are legal to set with SetFileAttributes() */
331 #define SET_ATTRS ( \
332          FILE_ATTRIBUTE_ARCHIVE| \
333          FILE_ATTRIBUTE_HIDDEN| \
334          FILE_ATTRIBUTE_NORMAL| \
335          FILE_ATTRIBUTE_NOT_CONTENT_INDEXED| \
336          FILE_ATTRIBUTE_OFFLINE| \
337          FILE_ATTRIBUTE_READONLY| \
338          FILE_ATTRIBUTE_SYSTEM| \
339          FILE_ATTRIBUTE_TEMPORARY)
340
341
342 /*
343  * Set Extended File Attributes for Win32
344  *
345  *  fname is the original filename  
346  *  ofile is the output filename (may be in a different directory)
347  *
348  * Returns:  1 on success
349  *           0 on failure
350  */
351 static
352 int set_win32_attributes(void *jcr, char *fname, char *ofile, char *lname, 
353                          int type, int stream, struct stat *statp,
354                          char *attribsEx, BFILE *ofd)
355 {
356    char *p = attribsEx;
357    int64_t val;
358    WIN32_FILE_ATTRIBUTE_DATA atts;
359    ULARGE_INTEGER li;
360    int stat;
361    POOLMEM *win32_ofile;
362
363    if (!p || !*p) {                   /* we should have attributes */
364       Dmsg2(100, "Attributes missing. of=%s ofd=%d\n", ofile, ofd->fid);
365       if (is_bopen(ofd)) {
366          bclose(ofd);
367       }
368       return 0;
369    } else {
370       Dmsg2(100, "Attribs %s = %s\n", ofile, attribsEx);
371    }
372
373    p += from_base64(&val, p);
374    atts.dwFileAttributes = val;
375    p++;                               /* skip space */
376    p += from_base64(&val, p);
377    li.QuadPart = val;
378    atts.ftCreationTime.dwLowDateTime = li.LowPart;
379    atts.ftCreationTime.dwHighDateTime = li.HighPart;
380    p++;                               /* skip space */
381    p += from_base64(&val, p);
382    li.QuadPart = val;
383    atts.ftLastAccessTime.dwLowDateTime = li.LowPart;
384    atts.ftLastAccessTime.dwHighDateTime = li.HighPart;
385    p++;                               /* skip space */
386    p += from_base64(&val, p);
387    li.QuadPart = val;
388    atts.ftLastWriteTime.dwLowDateTime = li.LowPart;
389    atts.ftLastWriteTime.dwHighDateTime = li.HighPart;
390    p++;   
391    p += from_base64(&val, p);
392    atts.nFileSizeHigh = val;
393    p++;
394    p += from_base64(&val, p);
395    atts.nFileSizeLow = val;
396
397    /* At this point, we have reconstructed the WIN32_FILE_ATTRIBUTE_DATA pkt */
398
399    /* Convert to Windows path format */
400    win32_ofile = get_pool_memory(PM_FNAME);
401    unix_name_to_win32(&win32_ofile, ofile);
402
403    if (!is_bopen(ofd)) {
404       Dmsg1(100, "File not open: %s\n", ofile);
405       bopen(ofd, ofile, O_RDWR|O_BINARY, 0);   /* attempt to open the file */
406    }
407
408    if (is_bopen(ofd)) {
409       Dmsg1(100, "SetFileTime %s\n", ofile);
410       stat = SetFileTime(get_osfhandle(ofd->fid),
411                          &atts.ftCreationTime,
412                          &atts.ftLastAccessTime,
413                          &atts.ftLastWriteTime);
414       if (stat != 1) {
415          win_error(jcr, "SetFileTime:", win32_ofile);
416       }
417       bclose(ofd);
418    }
419
420    Dmsg1(100, "SetFileAtts %s\n", ofile);
421    stat = SetFileAttributes(win32_ofile, atts.dwFileAttributes & SET_ATTRS);
422    if (stat != 1) {
423       win_error(jcr, "SetFileAttributes:", win32_ofile);
424    }
425    free_pool_memory(win32_ofile);
426    return 1;
427 }
428
429 void win_error(void *vjcr, char *prefix, POOLMEM *win32_ofile)
430 {
431    JCR *jcr = (JCR *)vjcr; 
432    DWORD lerror = GetLastError();
433    LPTSTR msg;
434    FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|
435                  FORMAT_MESSAGE_FROM_SYSTEM,
436                  NULL,
437                  lerror,
438                  0,
439                  (LPTSTR)&msg,
440                  0,
441                  NULL);
442    Dmsg3(100, "Error in %s on file %s: ERR=%s\n", prefix, win32_ofile, msg);
443    Jmsg3(jcr, M_INFO, 0, _("Error in %s file %s: ERR=%s\n"), prefix, win32_ofile, msg);
444    LocalFree(msg);
445 }
446
447 /* Cygwin API definition */
448 extern "C" void cygwin_conv_to_win32_path(const char *path, char *win32_path);
449
450 void unix_name_to_win32(POOLMEM **win32_name, char *name)
451 {
452    /* One extra byte should suffice, but we double it */
453    *win32_name = check_pool_memory_size(*win32_name, 2*strlen(name)+1);
454    cygwin_conv_to_win32_path(name, *win32_name);
455 }
456
457 #endif  /* HAVE_CYGWIN */