snapshot.c 9.15 KB
Newer Older
1 2 3 4 5
/*
 * Server-side snapshots
 *
 * Copyright (C) 1999 Alexandre Julliard
 *
6 7 8 9 10 11 12 13 14 15 16 17
 * 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
 * FIXME: heap snapshots not implemented
21 22
 */

23 24 25
#include "config.h"
#include "wine/port.h"

26 27 28
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
29
#include <stdarg.h>
30

31 32
#include "ntstatus.h"
#define WIN32_NO_STATUS
33
#include "windef.h"
34
#include "winternl.h"
35 36 37 38

#include "handle.h"
#include "process.h"
#include "thread.h"
39
#include "request.h"
40 41 42 43 44


struct snapshot
{
    struct object             obj;           /* object header */
45 46
    struct process           *process;       /* process of this snapshot (for modules and heaps) */
    struct process_snapshot  *processes;     /* processes snapshot */
47 48
    int                       process_count; /* count of processes */
    int                       process_pos;   /* current position in proc snapshot */
49 50 51 52 53 54
    struct thread_snapshot   *threads;       /* threads snapshot */
    int                       thread_count;  /* count of threads */
    int                       thread_pos;    /* current position in thread snapshot */
    struct module_snapshot   *modules;       /* modules snapshot */
    int                       module_count;  /* count of modules */
    int                       module_pos;    /* current position in module snapshot */
55 56 57 58 59 60 61
};

static void snapshot_dump( struct object *obj, int verbose );
static void snapshot_destroy( struct object *obj );

static const struct object_ops snapshot_ops =
{
62 63
    sizeof(struct snapshot),      /* size */
    snapshot_dump,                /* dump */
64
    no_get_type,                  /* get_type */
65 66 67 68
    no_add_queue,                 /* add_queue */
    NULL,                         /* remove_queue */
    NULL,                         /* signaled */
    NULL,                         /* satisfied */
69
    no_signal,                    /* signal */
70
    no_get_fd,                    /* get_fd */
71
    no_map_access,                /* map_access */
72 73
    default_get_sd,               /* get_sd */
    default_set_sd,               /* set_sd */
74
    no_lookup_name,               /* lookup_name */
75
    no_open_file,                 /* open_file */
76
    no_close_handle,              /* close_handle */
77
    snapshot_destroy              /* destroy */
78 79 80 81
};


/* create a new snapshot */
82
static struct snapshot *create_snapshot( process_id_t pid, int flags )
83
{
84
    struct process *process = NULL;
85
    struct snapshot *snapshot;
86

87
    /* need a process for modules and heaps */
88
    if (flags & (SNAP_MODULE|SNAP_HEAPLIST))
89
    {
90 91
        if (!pid) process = (struct process *)grab_object( current->process );
        else if (!(process = get_process_from_id( pid ))) return NULL;
92
    }
93

94
    if (!(snapshot = alloc_object( &snapshot_ops )))
95 96 97 98 99 100 101 102 103
    {
        if (process) release_object( process );
        return NULL;
    }

    snapshot->process = process;

    snapshot->process_pos = 0;
    snapshot->process_count = 0;
104
    if (flags & SNAP_PROCESS)
105 106 107 108
        snapshot->processes = process_snap( &snapshot->process_count );

    snapshot->thread_pos = 0;
    snapshot->thread_count = 0;
109
    if (flags & SNAP_THREAD)
110 111 112 113
        snapshot->threads = thread_snap( &snapshot->thread_count );

    snapshot->module_pos = 0;
    snapshot->module_count = 0;
114
    if (flags & SNAP_MODULE)
115 116
        snapshot->modules = module_snap( process, &snapshot->module_count );

117
    return snapshot;
118 119 120
}

/* get the next process in the snapshot */
121
static int snapshot_next_process( struct snapshot *snapshot, struct next_process_reply *reply )
122 123
{
    struct process_snapshot *ptr;
124
    struct process_dll *exe_module;
125

126 127
    if (!snapshot->process_count)
    {
128
        set_error( STATUS_INVALID_PARAMETER );  /* FIXME */
129 130
        return 0;
    }
131
    if (snapshot->process_pos >= snapshot->process_count)
132
    {
133
        set_error( STATUS_NO_MORE_FILES );
134 135
        return 0;
    }
136
    ptr = &snapshot->processes[snapshot->process_pos++];
137 138
    reply->count    = ptr->count;
    reply->pid      = get_process_id( ptr->process );
139
    reply->ppid     = ptr->process->parent ? get_process_id( ptr->process->parent ) : 0;
140 141
    reply->heap     = NULL;  /* FIXME */
    reply->module   = NULL;  /* FIXME */
142 143
    reply->threads  = ptr->threads;
    reply->priority = ptr->priority;
144
    reply->handles  = ptr->handles;
145
    if ((exe_module = get_process_exe_module( ptr->process )) && exe_module->filename)
146
    {
147
        data_size_t len = min( exe_module->namelen, get_reply_max_size() );
148
        set_reply_data( exe_module->filename, len );
149
    }
150 151 152
    return 1;
}

153
/* get the next thread in the snapshot */
154
static int snapshot_next_thread( struct snapshot *snapshot, struct next_thread_reply *reply )
155 156 157 158 159 160 161 162
{
    struct thread_snapshot *ptr;

    if (!snapshot->thread_count)
    {
        set_error( STATUS_INVALID_PARAMETER );  /* FIXME */
        return 0;
    }
163
    if (snapshot->thread_pos >= snapshot->thread_count)
164 165 166 167 168
    {
        set_error( STATUS_NO_MORE_FILES );
        return 0;
    }
    ptr = &snapshot->threads[snapshot->thread_pos++];
169 170 171 172 173
    reply->count     = ptr->count;
    reply->pid       = get_process_id( ptr->thread->process );
    reply->tid       = get_thread_id( ptr->thread );
    reply->base_pri  = ptr->priority;
    reply->delta_pri = 0;  /* FIXME */
174 175 176 177
    return 1;
}

/* get the next module in the snapshot */
178
static int snapshot_next_module( struct snapshot *snapshot, struct next_module_reply *reply )
179 180 181 182 183 184 185 186
{
    struct module_snapshot *ptr;

    if (!snapshot->module_count)
    {
        set_error( STATUS_INVALID_PARAMETER );  /* FIXME */
        return 0;
    }
187
    if (snapshot->module_pos >= snapshot->module_count)
188 189 190 191 192
    {
        set_error( STATUS_NO_MORE_FILES );
        return 0;
    }
    ptr = &snapshot->modules[snapshot->module_pos++];
193 194
    reply->pid  = get_process_id( snapshot->process );
    reply->base = ptr->base;
195 196 197
    reply->size = ptr->size;
    if (ptr->filename)
    {
198
        data_size_t len = min( ptr->namelen, get_reply_max_size() );
199 200
        set_reply_data( ptr->filename, len );
    }
201 202 203
    return 1;
}

204 205 206 207
static void snapshot_dump( struct object *obj, int verbose )
{
    struct snapshot *snapshot = (struct snapshot *)obj;
    assert( obj->ops == &snapshot_ops );
208 209
    fprintf( stderr, "Snapshot: %d procs %d threads %d modules\n",
             snapshot->process_count, snapshot->thread_count, snapshot->module_count );
210 211 212 213 214 215 216 217 218 219
}

static void snapshot_destroy( struct object *obj )
{
    int i;
    struct snapshot *snapshot = (struct snapshot *)obj;
    assert( obj->ops == &snapshot_ops );
    if (snapshot->process_count)
    {
        for (i = 0; i < snapshot->process_count; i++)
220 221 222 223 224 225 226 227
            release_object( snapshot->processes[i].process );
        free( snapshot->processes );
    }
    if (snapshot->thread_count)
    {
        for (i = 0; i < snapshot->thread_count; i++)
            release_object( snapshot->threads[i].thread );
        free( snapshot->threads );
228
    }
229 230 231 232 233 234
    if (snapshot->module_count)
    {
        for (i = 0; i < snapshot->module_count; i++)
            free( snapshot->modules[i].filename );
        free( snapshot->modules );
    }
235
    if (snapshot->process) release_object( snapshot->process );
236
}
237 238 239 240

/* create a snapshot */
DECL_HANDLER(create_snapshot)
{
241
    struct snapshot *snapshot;
242

243
    reply->handle = 0;
244
    if ((snapshot = create_snapshot( req->pid, req->flags )))
245
    {
246
        reply->handle = alloc_handle( current->process, snapshot, 0, req->attributes );
247
        release_object( snapshot );
248 249 250 251 252 253
    }
}

/* get the next process from a snapshot */
DECL_HANDLER(next_process)
{
254 255 256 257 258
    struct snapshot *snapshot;

    if ((snapshot = (struct snapshot *)get_handle_obj( current->process, req->handle,
                                                       0, &snapshot_ops )))
    {
259 260
        if (req->reset) snapshot->process_pos = 0;
        snapshot_next_process( snapshot, reply );
261 262
        release_object( snapshot );
    }
263
}
264 265 266 267 268 269 270 271 272

/* get the next thread from a snapshot */
DECL_HANDLER(next_thread)
{
    struct snapshot *snapshot;

    if ((snapshot = (struct snapshot *)get_handle_obj( current->process, req->handle,
                                                       0, &snapshot_ops )))
    {
273 274
        if (req->reset) snapshot->thread_pos = 0;
        snapshot_next_thread( snapshot, reply );
275 276 277 278 279 280 281 282 283 284 285 286
        release_object( snapshot );
    }
}

/* get the next module from a snapshot */
DECL_HANDLER(next_module)
{
    struct snapshot *snapshot;

    if ((snapshot = (struct snapshot *)get_handle_obj( current->process, req->handle,
                                                       0, &snapshot_ops )))
    {
287 288
        if (req->reset) snapshot->module_pos = 0;
        snapshot_next_module( snapshot, reply );
289 290 291
        release_object( snapshot );
    }
}