cbb615f4db
noticed by wiz
645 lines
15 KiB
C
645 lines
15 KiB
C
/* $NetBSD: node.c,v 1.9 2007/02/27 13:28:39 pooka Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 2006 Antti Kantee. 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.
|
|
* 3. The name of the company nor the name of the author may be used to
|
|
* endorse or promote products derived from this software without specific
|
|
* prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
#ifndef lint
|
|
__RCSID("$NetBSD: node.c,v 1.9 2007/02/27 13:28:39 pooka Exp $");
|
|
#endif /* !lint */
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "psshfs.h"
|
|
#include "sftp_proto.h"
|
|
|
|
int
|
|
psshfs_node_lookup(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
enum vtype *newtype, voff_t *newsize, dev_t *newrdev,
|
|
const struct puffs_cn *pcn)
|
|
{
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
struct psshfs_ctx *pctx = pu->pu_privdata;
|
|
struct puffs_node *pn_dir = opc;
|
|
struct psshfs_node *psn, *psn_dir = pn_dir->pn_data;
|
|
struct puffs_node *pn;
|
|
struct psshfs_dir *pd;
|
|
int rv;
|
|
|
|
if (PCNISDOTDOT(pcn)) {
|
|
psn = psn_dir->parent->pn_data;
|
|
psn->reclaimed = 0;
|
|
|
|
*newnode = psn_dir->parent;
|
|
*newtype = VDIR;
|
|
return 0;
|
|
}
|
|
|
|
rv = sftp_readdir(pcc, pctx, pn_dir);
|
|
if (rv) {
|
|
assert(rv != ENOENT);
|
|
return rv;
|
|
}
|
|
|
|
pd = lookup(psn_dir->dir, psn_dir->dentnext, pcn->pcn_name);
|
|
if (!pd) {
|
|
return ENOENT;
|
|
}
|
|
|
|
if (pd->entry)
|
|
pn = pd->entry;
|
|
else
|
|
pn = makenode(pu, pn_dir, pd, &pd->va);
|
|
|
|
psn = pn->pn_data;
|
|
psn->reclaimed = 0;
|
|
|
|
*newnode = pn;
|
|
*newsize = pn->pn_va.va_size;
|
|
*newtype = pn->pn_va.va_type;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
psshfs_node_getattr(struct puffs_cc *pcc, void *opc, struct vattr *vap,
|
|
const struct puffs_cred *pcr, pid_t pid)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn = opc;
|
|
struct psshfs_node *psn = pn->pn_data;
|
|
struct vattr va;
|
|
|
|
rv = 0;
|
|
|
|
if ((time(NULL) - psn->attrread) >= PSSHFS_REFRESHIVAL) {
|
|
psbuf_req_str(pb, SSH_FXP_LSTAT, reqid, PNPATH(pn));
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_attrs(pb, &va);
|
|
if (rv)
|
|
goto out;
|
|
|
|
#if 0
|
|
/*
|
|
* check if the file was modified from below us
|
|
*
|
|
* XXX: what's the right place(s) to do this?
|
|
* XXX2: resolution only per second, since sftp doesn't
|
|
* support nanoseconds
|
|
*/
|
|
if (psn->attrread)
|
|
if (pn->pn_va.va_mtime.tv_sec != va.va_mtime.tv_sec)
|
|
puffs_inval_pagecache_node(pu, opc);
|
|
#endif
|
|
|
|
puffs_setvattr(&pn->pn_va, &va);
|
|
psn->attrread = time(NULL);
|
|
}
|
|
|
|
memcpy(vap, &pn->pn_va, sizeof(struct vattr));
|
|
|
|
out:
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_setattr(struct puffs_cc *pcc, void *opc,
|
|
const struct vattr *va, const struct puffs_cred *pcr, pid_t pid)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct vattr kludgeva;
|
|
struct puffs_node *pn = opc;
|
|
|
|
psbuf_req_str(pb, SSH_FXP_SETSTAT, reqid, PNPATH(pn));
|
|
|
|
memcpy(&kludgeva, va, sizeof(struct vattr));
|
|
|
|
/* XXX: kludge due to openssh server implementation */
|
|
if (va->va_atime.tv_sec != PUFFS_VNOVAL
|
|
&& va->va_mtime.tv_sec == PUFFS_VNOVAL) {
|
|
if (pn->pn_va.va_mtime.tv_sec != PUFFS_VNOVAL)
|
|
kludgeva.va_mtime.tv_sec = pn->pn_va.va_mtime.tv_sec;
|
|
else
|
|
kludgeva.va_mtime.tv_sec = va->va_atime.tv_sec;
|
|
}
|
|
if (va->va_mtime.tv_sec != PUFFS_VNOVAL
|
|
&& va->va_atime.tv_sec == PUFFS_VNOVAL) {
|
|
if (pn->pn_va.va_atime.tv_sec != PUFFS_VNOVAL)
|
|
kludgeva.va_atime.tv_sec = pn->pn_va.va_atime.tv_sec;
|
|
else
|
|
kludgeva.va_atime.tv_sec = va->va_mtime.tv_sec;
|
|
}
|
|
|
|
psbuf_put_vattr(pb, &kludgeva);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_status(pb);
|
|
if (rv == 0)
|
|
puffs_setvattr(&pn->pn_va, &kludgeva);
|
|
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_create(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
const struct puffs_cn *pcn, const struct vattr *va)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn = opc;
|
|
struct puffs_node *pn_new;
|
|
char *fhand = NULL;
|
|
uint32_t fhandlen;
|
|
|
|
pn_new = allocnode(pu, pn, pcn->pcn_name, va);
|
|
if (!pn) {
|
|
rv = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
psbuf_req_str(pb, SSH_FXP_OPEN, reqid, PCNPATH(pcn));
|
|
psbuf_put_4(pb, SSH_FXF_WRITE | SSH_FXF_CREAT | SSH_FXF_TRUNC);
|
|
psbuf_put_vattr(pb, va);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_handle(pb, &fhand, &fhandlen);
|
|
if (rv)
|
|
goto out;
|
|
|
|
reqid = NEXTREQ(pctx);
|
|
psbuf_recycle(pb, PSB_OUT);
|
|
psbuf_req_data(pb, SSH_FXP_CLOSE, reqid, fhand, fhandlen);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
rv = psbuf_expect_status(pb);
|
|
|
|
if (rv == 0)
|
|
*newnode = pn_new;
|
|
else
|
|
nukenode(pn_new, pcn->pcn_name, 1);
|
|
|
|
out:
|
|
free(fhand);
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_readdir(struct puffs_cc *pcc, void *opc, struct dirent *dent,
|
|
const struct puffs_cred *pcr, off_t *readoff, size_t *reslen)
|
|
{
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
struct psshfs_ctx *pctx = pu->pu_privdata;
|
|
struct puffs_node *pn = opc;
|
|
struct psshfs_node *psn = pn->pn_data;
|
|
struct psshfs_dir *pd;
|
|
int i, rv;
|
|
|
|
rv = sftp_readdir(pcc, pctx, pn);
|
|
if (rv)
|
|
return rv;
|
|
|
|
for (i = *readoff; i < psn->dentnext; i++) {
|
|
pd = &psn->dir[i];
|
|
if (pd->valid == 0)
|
|
continue;
|
|
if (!puffs_nextdent(&dent, pd->entryname,
|
|
pd->va.va_fileid, puffs_vtype2dt(pd->va.va_type), reslen))
|
|
break;
|
|
}
|
|
|
|
*readoff = i;
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
psshfs_node_read(struct puffs_cc *pcc, void *opc, uint8_t *buf,
|
|
off_t offset, size_t *resid, const struct puffs_cred *pcr,
|
|
int ioflag)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn = opc;
|
|
char *fhand = NULL;
|
|
struct vattr va;
|
|
uint32_t readlen, fhandlen;
|
|
|
|
if (pn->pn_va.va_type == VDIR) {
|
|
rv = EISDIR;
|
|
goto out;
|
|
}
|
|
|
|
puffs_vattr_null(&va);
|
|
psbuf_req_str(pb, SSH_FXP_OPEN, reqid, PNPATH(pn));
|
|
psbuf_put_4(pb, SSH_FXF_READ);
|
|
psbuf_put_vattr(pb, &va);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_handle(pb, &fhand, &fhandlen);
|
|
if (rv)
|
|
goto out;
|
|
|
|
readlen = *resid;
|
|
reqid = NEXTREQ(pctx);
|
|
psbuf_recycle(pb, PSB_OUT);
|
|
psbuf_req_data(pb, SSH_FXP_READ, reqid, fhand, fhandlen);
|
|
psbuf_put_8(pb, offset);
|
|
psbuf_put_4(pb, readlen);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_do_data(pb, buf, &readlen);
|
|
if (rv == 0)
|
|
*resid -= readlen;
|
|
|
|
reqid = NEXTREQ(pctx);
|
|
psbuf_recycle(pb, PSB_OUT);
|
|
psbuf_req_data(pb, SSH_FXP_CLOSE, reqid, fhand, fhandlen);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
/* don't care */
|
|
|
|
out:
|
|
free(fhand);
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
/* XXX: we should getattr for size */
|
|
int
|
|
psshfs_node_write(struct puffs_cc *pcc, void *opc, uint8_t *buf,
|
|
off_t offset, size_t *resid, const struct puffs_cred *cred,
|
|
int ioflag)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn = opc;
|
|
char *fhand = NULL;
|
|
struct vattr va, kludgeva1, kludgeva2;
|
|
uint32_t writelen, oflags, fhandlen;
|
|
|
|
if (pn->pn_va.va_type == VDIR) {
|
|
rv = EISDIR;
|
|
goto out;
|
|
}
|
|
|
|
/*
|
|
* XXXX: this is wrong - we shouldn't muck the file permissions
|
|
* at this stage any more. However, we need this, since currently
|
|
* we can't tell the sftp server "hey, this data was already
|
|
* authenticated to UBC, it's ok to let us write this". Yes, it
|
|
* will fail e.g. if we don't own the file. Tough love.
|
|
*
|
|
* TODO-point: Investigate solving this with open filehandles
|
|
* or something like that.
|
|
*/
|
|
kludgeva1 = pn->pn_va;
|
|
|
|
puffs_vattr_null(&kludgeva2);
|
|
kludgeva2.va_mode = 0700;
|
|
rv = psshfs_node_setattr(pcc, opc, &kludgeva2, cred, 0);
|
|
if (rv)
|
|
goto out;
|
|
|
|
/* XXXcontinuation: ok, file is mode 700 now, we can open it rw */
|
|
|
|
oflags = SSH_FXF_WRITE;
|
|
#if 0
|
|
/*
|
|
* At least OpenSSH doesn't appear to support this, so can't
|
|
* do it the right way.
|
|
*/
|
|
if (ioflag & PUFFS_IO_APPEND)
|
|
oflags |= SSH_FXF_APPEND;
|
|
#endif
|
|
if (ioflag & PUFFS_IO_APPEND)
|
|
offset = pn->pn_va.va_size;
|
|
|
|
puffs_vattr_null(&va);
|
|
psbuf_req_str(pb, SSH_FXP_OPEN, reqid, PNPATH(pn));
|
|
psbuf_put_4(pb, oflags);
|
|
psbuf_put_vattr(pb, &va);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_handle(pb, &fhand, &fhandlen);
|
|
if (rv)
|
|
goto out;
|
|
|
|
/* moreXXX: file is open, revert old creds for crying out loud! */
|
|
rv = psshfs_node_setattr(pcc, opc, &kludgeva1, cred, 0);
|
|
|
|
/* are we screwed a la royal jelly? */
|
|
if (rv)
|
|
goto closefile;
|
|
|
|
writelen = *resid;
|
|
reqid = NEXTREQ(pctx);
|
|
psbuf_recycle(pb, PSB_OUT);
|
|
psbuf_req_data(pb, SSH_FXP_WRITE, reqid, fhand, fhandlen);
|
|
psbuf_put_8(pb, offset);
|
|
psbuf_put_data(pb, buf, writelen);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_status(pb);
|
|
if (rv == 0)
|
|
*resid = 0;
|
|
|
|
if (pn->pn_va.va_size < offset + writelen)
|
|
pn->pn_va.va_size = offset + writelen;
|
|
|
|
closefile:
|
|
reqid = NEXTREQ(pctx);
|
|
psbuf_recycle(pb, PSB_OUT);
|
|
psbuf_req_data(pb, SSH_FXP_CLOSE, reqid, fhand, fhandlen);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
/* dontcare */
|
|
out:
|
|
free(fhand);
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_readlink(struct puffs_cc *pcc, void *opc,
|
|
const struct puffs_cred *cred, char *linkvalue, size_t *linklen)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn = opc;
|
|
char *linktmp = NULL;
|
|
uint32_t count;
|
|
|
|
if (pctx->protover < 3) {
|
|
rv = EOPNOTSUPP;
|
|
goto out;
|
|
}
|
|
|
|
psbuf_req_str(pb, SSH_FXP_READLINK, reqid, PNPATH(pn));
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_name(pb, &count);
|
|
if (count != 1) {
|
|
rv = EPROTO;
|
|
goto out;
|
|
}
|
|
rv = psbuf_get_str(pb, &linktmp, (uint32_t *)linklen);
|
|
if (rv)
|
|
rv = 0;
|
|
else {
|
|
rv = EPROTO;
|
|
goto out;
|
|
}
|
|
(void) memcpy(linkvalue, linktmp, *linklen);
|
|
|
|
out:
|
|
free(linktmp);
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_remove(struct puffs_cc *pcc, void *opc, void *targ,
|
|
const struct puffs_cn *pcn)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn_targ = targ;
|
|
|
|
if (pn_targ->pn_va.va_type == VDIR) {
|
|
rv = EPERM;
|
|
goto out;
|
|
}
|
|
|
|
psbuf_req_str(pb, SSH_FXP_REMOVE, reqid, PNPATH(pn_targ));
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_status(pb);
|
|
|
|
if (rv == 0)
|
|
nukenode(pn_targ, pcn->pcn_name, 0);
|
|
|
|
out:
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_mkdir(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
const struct puffs_cn *pcn, const struct vattr *va)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn = opc;
|
|
struct puffs_node *pn_new;
|
|
|
|
pn_new = allocnode(pu, pn, pcn->pcn_name, va);
|
|
if (!pn_new) {
|
|
rv = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
psbuf_req_str(pb, SSH_FXP_MKDIR, reqid, PCNPATH(pcn));
|
|
psbuf_put_vattr(pb, va);
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_status(pb);
|
|
|
|
if (rv == 0)
|
|
*newnode = pn_new;
|
|
else
|
|
nukenode(pn_new, pcn->pcn_name, 1);
|
|
|
|
out:
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_rmdir(struct puffs_cc *pcc, void *opc, void *targ,
|
|
const struct puffs_cn *pcn)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn_targ = targ;
|
|
|
|
psbuf_req_str(pb, SSH_FXP_RMDIR, reqid, PNPATH(pn_targ));
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_status(pb);
|
|
if (rv == 0)
|
|
nukenode(pn_targ, pcn->pcn_name, 0);
|
|
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_symlink(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
const struct puffs_cn *pcn, const struct vattr *va,
|
|
const char *link_target)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn = opc;
|
|
struct puffs_node *pn_new;
|
|
|
|
if (pctx->protover < 3) {
|
|
rv = EOPNOTSUPP;
|
|
goto out;
|
|
}
|
|
|
|
pn_new = allocnode(pu, pn, pcn->pcn_name, va);
|
|
if (!pn) {
|
|
rv = ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
/*
|
|
* XXX: ietf says: source, target. openssh says: ietf who?
|
|
* Let's go with openssh and build quirk tables later if we care
|
|
*/
|
|
psbuf_req_str(pb, SSH_FXP_SYMLINK, reqid, link_target);
|
|
psbuf_put_str(pb, PCNPATH(pcn));
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_status(pb);
|
|
if (rv == 0)
|
|
*newnode = pn_new;
|
|
else
|
|
nukenode(pn_new, pcn->pcn_name, 1);
|
|
|
|
out:
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
int
|
|
psshfs_node_rename(struct puffs_cc *pcc, void *opc, void *src,
|
|
const struct puffs_cn *pcn_src, void *targ_dir, void *targ,
|
|
const struct puffs_cn *pcn_targ)
|
|
{
|
|
PSSHFSAUTOVAR(pcc);
|
|
struct puffs_node *pn_sf = src;
|
|
struct puffs_node *pn_td = targ_dir, *pn_tf = targ;
|
|
struct psshfs_node *psn_targdir = pn_td->pn_data;
|
|
|
|
if (pctx->protover < 2) {
|
|
rv = EOPNOTSUPP;
|
|
goto out;
|
|
}
|
|
|
|
if (pn_tf) {
|
|
/* XXX: no backend implementation for now, so call directly */
|
|
rv = psshfs_node_remove(pcc, targ_dir, pn_tf, pcn_targ);
|
|
if (rv)
|
|
goto out;
|
|
}
|
|
|
|
psbuf_req_str(pb, SSH_FXP_RENAME, reqid, PCNPATH(pcn_src));
|
|
psbuf_put_str(pb, PCNPATH(pcn_targ));
|
|
pssh_outbuf_enqueue(pctx, pb, pcc, reqid);
|
|
|
|
puffs_cc_yield(pcc);
|
|
|
|
rv = psbuf_expect_status(pb);
|
|
if (rv == 0) {
|
|
struct psshfs_dir *pd;
|
|
|
|
/*
|
|
* XXX: interfaces didn't quite work with rename..
|
|
* the song remains the same. go figure .. ;)
|
|
*/
|
|
nukenode(pn_sf, pcn_src->pcn_name, 0);
|
|
pd = direnter(pn_td, pcn_targ->pcn_name);
|
|
pd->entry = pn_sf;
|
|
puffs_setvattr(&pd->va, &pn_sf->pn_va);
|
|
|
|
if (opc != targ_dir) {
|
|
psn_targdir->childcount++;
|
|
if (pn_sf->pn_va.va_type == VDIR)
|
|
pn_td->pn_va.va_nlink++;
|
|
}
|
|
}
|
|
|
|
out:
|
|
PSSHFSRETURN(rv);
|
|
}
|
|
|
|
/*
|
|
* So this file system happened to be written in such a way that
|
|
* lookup for ".." is hard if we lose the in-memory node. We'd
|
|
* need to recreate the entire directory structure from the root
|
|
* node up to the ".." node we're looking up.
|
|
*
|
|
* And since our entire fs structure is purely fictional (i.e. it's
|
|
* only in-memory, not fetchable from the server), the easiest way
|
|
* to deal with it is to not allow nodes with children to be
|
|
* reclaimed.
|
|
*
|
|
* If a node with children is being attempted to be reclaimed, we
|
|
* just mark it "reclaimed" but leave it as is until all its children
|
|
* have been reclaimed. If a lookup for that node is done meanwhile,
|
|
* it will be found by lookup() and we just remove the "reclaimed"
|
|
* bit.
|
|
*/
|
|
int
|
|
psshfs_node_reclaim(struct puffs_cc *pcc, void *opc, pid_t pid)
|
|
{
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
struct puffs_node *pn = opc, *pn_next;
|
|
struct psshfs_node *psn = pn->pn_data;
|
|
|
|
psn->reclaimed = 1;
|
|
for (; pn != pu->pu_pn_root; pn = pn_next) {
|
|
psn = pn->pn_data;
|
|
if (psn->reclaimed == 0 || psn->childcount != 0)
|
|
break;
|
|
|
|
pn_next = psn->parent;
|
|
doreclaim(pn);
|
|
}
|
|
|
|
return 0;
|
|
}
|