symlink.c 7.71 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Server-side symbolic link object management
 *
 * Copyright (C) 2005 Vitaliy Margolen
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
 *
 */

#include "config.h"

#include <assert.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>

#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "winternl.h"
#include "ddk/wdm.h"

#include "handle.h"
#include "request.h"
#include "object.h"
#include "unicode.h"

40 41 42 43 44
static const WCHAR symlink_name[] = {'S','y','m','b','o','l','i','c','L','i','n','k'};

struct type_descr symlink_type =
{
    { symlink_name, sizeof(symlink_name) },   /* name */
45 46 47 48 49 50 51
    SYMBOLIC_LINK_ALL_ACCESS,                 /* valid_access */
    {                                         /* mapping */
        STANDARD_RIGHTS_READ | SYMBOLIC_LINK_QUERY,
        STANDARD_RIGHTS_WRITE,
        STANDARD_RIGHTS_EXECUTE | SYMBOLIC_LINK_QUERY,
        SYMBOLIC_LINK_ALL_ACCESS
    },
52 53
};

54 55 56 57
struct symlink
{
    struct object    obj;       /* object header */
    WCHAR           *target;    /* target of the symlink */
58
    data_size_t      len;       /* target len in bytes */
59 60 61 62
};

static void symlink_dump( struct object *obj, int verbose );
static struct object *symlink_lookup_name( struct object *obj, struct unicode_str *name,
63
                                           unsigned int attr, struct object *root );
64 65 66 67 68
static void symlink_destroy( struct object *obj );

static const struct object_ops symlink_ops =
{
    sizeof(struct symlink),       /* size */
69
    &symlink_type,                /* type */
70 71 72 73 74 75 76
    symlink_dump,                 /* dump */
    no_add_queue,                 /* add_queue */
    NULL,                         /* remove_queue */
    NULL,                         /* signaled */
    NULL,                         /* satisfied */
    no_signal,                    /* signal */
    no_get_fd,                    /* get_fd */
77
    default_map_access,           /* map_access */
78 79
    default_get_sd,               /* get_sd */
    default_set_sd,               /* set_sd */
80
    default_get_full_name,        /* get_full_name */
81
    symlink_lookup_name,          /* lookup_name */
82 83
    directory_link_name,          /* link_name */
    default_unlink_name,          /* unlink_name */
84
    no_open_file,                 /* open_file */
85
    no_kernel_obj_list,           /* get_kernel_obj_list */
86 87 88 89 90 91 92 93 94
    no_close_handle,              /* close_handle */
    symlink_destroy               /* destroy */
};

static void symlink_dump( struct object *obj, int verbose )
{
    struct symlink *symlink = (struct symlink *)obj;
    assert( obj->ops == &symlink_ops );

95
    fputs( "Symlink target=\"", stderr );
96
    dump_strW( symlink->target, symlink->len, stderr, "\"\"" );
97
    fputs( "\"\n", stderr );
98 99 100
}

static struct object *symlink_lookup_name( struct object *obj, struct unicode_str *name,
101
                                           unsigned int attr, struct object *root )
102 103 104 105 106 107
{
    struct symlink *symlink = (struct symlink *)obj;
    struct unicode_str target_str, name_left;
    struct object *target;

    assert( obj->ops == &symlink_ops );
108 109

    if (!name) return NULL;
110
    if (!name->len && (attr & OBJ_OPENLINK)) return NULL;
111
    if (obj == root) return NULL;
112

113 114
    if (!symlink->len) return get_root_directory();

115 116
    target_str.str = symlink->target;
    target_str.len = symlink->len;
117
    if ((target = lookup_named_object( NULL, &target_str, attr, &name_left )))
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
    {
        if (name_left.len)
        {
            release_object( target );
            target = NULL;
            set_error( STATUS_OBJECT_PATH_NOT_FOUND );
        }
    }
    return target;
}

static void symlink_destroy( struct object *obj )
{
    struct symlink *symlink = (struct symlink *)obj;
    assert( obj->ops == &symlink_ops );
    free( symlink->target );
}

136 137 138 139 140 141 142 143 144 145 146
struct object *create_root_symlink( struct object *root, const struct unicode_str *name,
                                    unsigned int attr, const struct security_descriptor *sd )
{
    struct symlink *symlink;

    if (!(symlink = create_named_object( root, &symlink_ops, name, attr, sd ))) return NULL;
    symlink->target = NULL;
    symlink->len = 0;
    return &symlink->obj;
}

147 148 149
struct object *create_symlink( struct object *root, const struct unicode_str *name,
                               unsigned int attr, const struct unicode_str *target,
                               const struct security_descriptor *sd )
150 151 152 153 154 155 156 157
{
    struct symlink *symlink;

    if (!target->len)
    {
        set_error( STATUS_INVALID_PARAMETER );
        return NULL;
    }
158 159
    if (!(symlink = create_named_object( root, &symlink_ops, name, attr, sd ))) return NULL;
    if (get_error() != STATUS_OBJECT_NAME_EXISTS && !(symlink->target = memdup( target->str, target->len )))
160
    {
161 162
        release_object( symlink );
        return NULL;
163
    }
164 165
    symlink->len = target->len;
    return &symlink->obj;
166 167
}

168 169 170 171 172 173 174 175 176
/* create a symlink pointing to an existing object */
struct object *create_obj_symlink( struct object *root, const struct unicode_str *name,
                                    unsigned int attr, struct object *target,
                                    const struct security_descriptor *sd )
{
    struct symlink *symlink;
    data_size_t len;
    WCHAR *target_name;

177
    if (!(target_name = target->ops->get_full_name( target, &len )))
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
    {
        set_error( STATUS_INVALID_PARAMETER );
        return NULL;
    }
    if ((symlink = create_named_object( root, &symlink_ops, name, attr, sd )) &&
        (get_error() != STATUS_OBJECT_NAME_EXISTS))
    {
        symlink->target = target_name;
        symlink->len = len;
    }
    else free( target_name );

    return &symlink->obj;
}

193 194 195 196

/* create a symbolic link object */
DECL_HANDLER(create_symlink)
{
197
    struct object *symlink;
198
    struct unicode_str name, target;
199
    struct object *root;
200
    const struct security_descriptor *sd;
201
    const struct object_attributes *objattr = get_req_object_attributes( &sd, &name, &root );
202

203 204
    if (!objattr) return;

205 206
    target.str = get_req_data_after_objattr( objattr, &target.len );
    target.len = (target.len / sizeof(WCHAR)) * sizeof(WCHAR);
207

208
    if ((symlink = create_symlink( root, &name, objattr->attributes, &target, sd )))
209
    {
210
        reply->handle = alloc_handle( current->process, symlink, req->access, objattr->attributes );
211 212 213 214 215 216 217 218 219
        release_object( symlink );
    }

    if (root) release_object( root );
}

/* open a symbolic link object */
DECL_HANDLER(open_symlink)
{
220
    struct unicode_str name = get_req_unicode_str();
221

222 223
    reply->handle = open_object( current->process, req->rootdir, req->access,
                                 &symlink_ops, &name, req->attributes | OBJ_OPENLINK );
224 225 226 227 228 229 230 231 232 233 234
}

/* query a symbolic link object */
DECL_HANDLER(query_symlink)
{
    struct symlink *symlink;

    symlink = (struct symlink *)get_handle_obj( current->process, req->handle,
                                                SYMBOLIC_LINK_QUERY, &symlink_ops );
    if (!symlink) return;

235
    reply->total = symlink->len;
236 237 238 239 240 241
    if (get_reply_max_size() < symlink->len)
        set_error( STATUS_BUFFER_TOO_SMALL );
    else
        set_reply_data( symlink->target, symlink->len );
    release_object( symlink );
}