]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/unix.c
9fd11e615d5e9e798d9302a4e93eca492ff47dd3
[netatalk.git] / libatalk / util / unix.c
1 /*
2   $Id: unix.c,v 1.5 2010-02-28 17:02:49 didg Exp $
3   Copyright (c) 2010 Frank Lahm <franklahm@gmail.com>
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation; either version 2 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14 */
15
16 /*!
17  * @file
18  * Netatalk utility functions
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif /* HAVE_CONFIG_H */
24
25 #include <unistd.h>
26 #include <stdint.h>
27 #include <errno.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <dirent.h>
34
35 #include <atalk/adouble.h>
36 #include <atalk/ea.h>
37 #include <atalk/afp.h>
38 #include <atalk/logger.h>
39 #include <atalk/volume.h>
40 #include <atalk/vfs.h>
41 #include <atalk/util.h>
42 #include <atalk/unix.h>
43
44 /*!
45  * @brief get cwd in static buffer
46  *
47  * @returns pointer to path or pointer to error messages on error
48  */
49 const char *getcwdpath(void)
50 {
51     static char cwd[MAXPATHLEN + 1];
52     char *p;
53
54     if ((p = getcwd(cwd, MAXPATHLEN)) != NULL)
55         return p;
56     else
57         return strerror(errno);
58 }
59
60 /*!
61  * @brief symlink safe chdir replacement
62  *
63  * Only chdirs to dir if it doesn't contain symlinks.
64  *
65  * @returns 1 if a path element is a symlink, 0 otherwise, -1 on syserror
66  */
67 int lchdir(struct vol *vol, const char *dir)
68 {
69     char buf[MAXPATHLEN+1];
70
71     if (chdir(dir) != 0)
72         return -1;
73
74     /* 
75      * Cases:
76      * chdir request   | realpath result | ret
77      * (after getwcwd) |                 |
78      * =======================================
79      * /a/b/.          | /a/b            | 0
80      * /a/b/.          | /c              | 1
81      * /a/b/.          | /c/d/e/f        | 1
82      */
83     if (getcwd(buf, MAXPATHLEN) == NULL)
84         return 1;
85
86     for (int i = 0; vol->v_path[i]; i++) {
87         if (buf[i] != vol->v_path[i]) {
88             return 1;
89         }
90     }
91         
92     return 0;
93 }