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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
|
/*
* Copyright (c) 2009 Frank Lahm <franklahm@gmail.com>
* Copyright (c) 1991, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <sys/types.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <sysexits.h>
#include <unistd.h>
#include <stdarg.h>
#include <string.h>
#include <libgen.h>
#ifdef HAVE_SOLARIS_ACLS
#include <sys/acl.h>
#endif /* HAVE_SOLARIS_ACLS */
#ifdef HAVE_POSIX_ACLS
#include <sys/types.h>
#include <sys/acl.h>
#endif /* HAVE_POSIX_ACLS */
#include <atalk/util.h>
#include <atalk/cnid.h>
#include <atalk/volinfo.h>
#include <atalk/bstrlib.h>
#include <atalk/bstradd.h>
#include <atalk/logger.h>
#include <atalk/errchk.h>
#include <atalk/unicode.h>
#include "ad.h"
int log_verbose; /* Logging flag */
void _log(enum logtype lt, char *fmt, ...)
{
int len;
static char logbuffer[1024];
va_list args;
if ( (lt == STD) || (log_verbose == 1)) {
va_start(args, fmt);
len = vsnprintf(logbuffer, 1023, fmt, args);
va_end(args);
logbuffer[1023] = 0;
printf("%s\n", logbuffer);
}
}
/*!
* Load volinfo and initialize struct vol
*
* Only opens "dbd" volumes !
*
* @param path (r) path to evaluate
* @param vol (rw) structure to initialize
*
* @returns 0 on success, exits on error
*/
int openvol(const char *path, afpvol_t *vol)
{
int flags = 0;
memset(vol, 0, sizeof(afpvol_t));
/* try to find a .AppleDesktop/.volinfo */
if (loadvolinfo((char *)path, &vol->volinfo) != 0)
return -1;
if (STRCMP(vol->volinfo.v_cnidscheme, != , "dbd"))
ERROR("\"%s\" isn't a \"dbd\" CNID volume!", vol->volinfo.v_path);
if (vol_load_charsets(&vol->volinfo) == -1)
ERROR("Error loading charsets!");
/* Sanity checks to ensure we can touch this volume */
if (vol->volinfo.v_adouble != AD_VERSION2)
ERROR("Unsupported adouble versions: %u", vol->volinfo.v_adouble);
if (vol->volinfo.v_vfs_ea != AFPVOL_EA_SYS)
ERROR("Unsupported Extended Attributes option: %u", vol->volinfo.v_vfs_ea);
/* initialize sufficient struct vol for VFS initialisation */
vol->volume.v_adouble = AD_VERSION2;
vol->volume.v_vfs_ea = AFPVOL_EA_SYS;
initvol_vfs(&vol->volume);
if ((vol->volinfo.v_flags & AFPVOL_NODEV))
flags |= CNID_FLAG_NODEV;
if ((vol->volume.v_cdb = cnid_open(vol->volinfo.v_path,
0000,
"dbd",
flags,
vol->volinfo.v_dbd_host,
vol->volinfo.v_dbd_port)) == NULL)
ERROR("Cant initialize CNID database connection for %s", vol->volinfo.v_path);
cnid_getstamp(vol->volume.v_cdb,
vol->db_stamp,
sizeof(vol->db_stamp));
return 0;
}
void closevol(afpvol_t *vol)
{
if (vol->volume.v_cdb)
cnid_close(vol->volume.v_cdb);
memset(vol, 0, sizeof(afpvol_t));
}
/*
Taken form afpd/desktop.c
*/
char *utompath(const struct volinfo *volinfo, const char *upath)
{
static char mpath[ MAXPATHLEN + 2]; /* for convert_charset dest_len parameter +2 */
char *m;
const char *u;
uint16_t flags = CONV_IGNORE | CONV_UNESCAPEHEX;
size_t outlen;
if (!upath)
return NULL;
m = mpath;
u = upath;
outlen = strlen(upath);
if ((volinfo->v_casefold & AFPVOL_UTOMUPPER))
flags |= CONV_TOUPPER;
else if ((volinfo->v_casefold & AFPVOL_UTOMLOWER))
flags |= CONV_TOLOWER;
if ((volinfo->v_flags & AFPVOL_EILSEQ)) {
flags |= CONV__EILSEQ;
}
/* convert charsets */
if ((size_t)-1 == ( outlen = convert_charset(volinfo->v_volcharset,
CH_UTF8_MAC,
volinfo->v_maccharset,
u, outlen, mpath, MAXPATHLEN, &flags)) ) {
SLOG("Conversion from %s to %s for %s failed.",
volinfo->v_volcodepage, volinfo->v_maccodepage, u);
return NULL;
}
return(m);
}
/*!
* Convert dot encoding of basename _in place_
*
* path arg can be "[/][dir/ | ...]filename". It will be converted in place
* possible encoding ".file" as ":2efile" which means the result will be
* longer then the original which means provide a big enough buffer.
*
* @param svol (r) source volume
* @param dvol (r) destinatio volume
* @param path (rw) path to convert _in place_
* @param buflen (r) size of path buffer (max strlen == buflen -1)
*
* @returns 0 on sucess, -1 on error
*/
int convert_dots_encoding(const afpvol_t *svol, const afpvol_t *dvol, char *path, size_t buflen)
{
static charset_t from = (charset_t) -1;
static char buf[MAXPATHLEN+2];
char *bname = stripped_slashes_basename(path);
int pos = bname - path;
uint16_t flags = 0;
if ( ! svol->volinfo.v_path) {
/* no source volume: escape special chars (eg ':') */
from = dvol->volinfo.v_volcharset; /* src = dst charset */
flags |= CONV_ESCAPEHEX;
} else {
from = svol->volinfo.v_volcharset;
}
if ( (svol->volinfo.v_path)
&& ! (svol->volinfo.v_flags & AFPVOL_USEDOTS)
&& (dvol->volinfo.v_flags & AFPVOL_USEDOTS)) {
/* source is without dots, destination is with */
flags |= CONV_UNESCAPEHEX;
} else if (! (dvol->volinfo.v_flags & AFPVOL_USEDOTS)) {
flags |= CONV_ESCAPEDOTS;
}
int len = convert_charset(from,
dvol->volinfo.v_volcharset,
dvol->volinfo.v_maccharset,
bname, strlen(bname),
buf, MAXPATHLEN,
&flags);
if (len == -1)
return -1;
if (strlcpy(bname, buf, MAXPATHLEN - pos) > MAXPATHLEN - pos)
return -1;
return 0;
}
/*!
* ResolvesCNID of a given paths
*
* path might be:
* (a) relative:
* "dir/subdir" with cwd: "/afp_volume/topdir"
* (b) absolute:
* "/afp_volume/dir/subdir"
*
* path MUST be pointing inside vol, this is usually the case as vol has been build from
* path using loadvolinfo and friends.
*
* @param vol (r) pointer to afpvol_t
* @param path (r) path, see above
* @param did (rw) parent CNID of returned CNID
*
* @returns CNID of path
*/
cnid_t cnid_for_path(const afpvol_t *vol,
const char *path,
cnid_t *did)
{
EC_INIT;
cnid_t cnid;
bstring rpath = NULL;
bstring statpath = NULL;
struct bstrList *l = NULL;
struct stat st;
cnid = htonl(2);
EC_NULL(rpath = rel_path_in_vol(path, vol->volinfo.v_path));
EC_NULL(statpath = bfromcstr(vol->volinfo.v_path));
EC_ZERO(bcatcstr(statpath, "/"));
l = bsplit(rpath, '/');
for (int i = 0; i < l->qty ; i++) {
*did = cnid;
EC_ZERO(bconcat(statpath, l->entry[i]));
EC_ZERO_LOGSTR(lstat(cfrombstr(statpath), &st),
"lstat(rpath: %s, elem: %s): %s: %s",
cfrombstr(rpath), cfrombstr(l->entry[i]),
cfrombstr(statpath), strerror(errno));
if ((cnid = cnid_add(vol->volume.v_cdb,
&st,
*did,
cfrombstr(l->entry[i]),
blength(l->entry[i]),
0)) == CNID_INVALID) {
EC_FAIL;
}
EC_ZERO(bcatcstr(statpath, "/"));
}
EC_CLEANUP:
bdestroy(rpath);
bstrListDestroy(l);
bdestroy(statpath);
if (ret != 0)
return CNID_INVALID;
return cnid;
}
/*!
* Resolves CNID of a given paths parent directory
*
* path might be:
* (a) relative:
* "dir/subdir" with cwd: "/afp_volume/topdir"
* (b) absolute:
* "/afp_volume/dir/subdir"
*
* path MUST be pointing inside vol, this is usually the case as vol has been build from
* path using loadvolinfo and friends.
*
* @param vol (r) pointer to afpvol_t
* @param path (r) path, see above
* @param did (rw) parent CNID of returned CNID
*
* @returns CNID of path
*/
cnid_t cnid_for_paths_parent(const afpvol_t *vol,
const char *path,
cnid_t *did)
{
EC_INIT;
cnid_t cnid;
bstring rpath = NULL;
bstring statpath = NULL;
struct bstrList *l = NULL;
struct stat st;
*did = htonl(1);
cnid = htonl(2);
EC_NULL(rpath = rel_path_in_vol(path, vol->volinfo.v_path));
EC_NULL(statpath = bfromcstr(vol->volinfo.v_path));
l = bsplit(rpath, '/');
if (l->qty == 1)
/* only one path element, means parent dir cnid is volume root = 2 */
goto EC_CLEANUP;
for (int i = 0; i < (l->qty - 1); i++) {
*did = cnid;
EC_ZERO(bconcat(statpath, l->entry[i]));
EC_ZERO_LOGSTR(lstat(cfrombstr(statpath), &st),
"lstat(rpath: %s, elem: %s): %s: %s",
cfrombstr(rpath), cfrombstr(l->entry[i]),
cfrombstr(statpath), strerror(errno));
if ((cnid = cnid_add(vol->volume.v_cdb,
&st,
*did,
cfrombstr(l->entry[i]),
blength(l->entry[i]),
0)) == CNID_INVALID) {
EC_FAIL;
}
EC_ZERO(bcatcstr(statpath, "/"));
}
EC_CLEANUP:
bdestroy(rpath);
bstrListDestroy(l);
bdestroy(statpath);
if (ret != 0)
return CNID_INVALID;
return cnid;
}
|