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
|
/* Check per-thread error strings.
Copyright (C) 2016 Petr Tesarik <ptesarik@suse.com>
This file is free software; you can redistribute it and/or modify
it under the terms of either
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at
your option) any later version
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at
your option) any later version
or both in parallel, as here.
libkdumpfile 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
General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <pthread.h>
#include <libkdumpfile/kdumpfile.h>
#include "testutil.h"
static pthread_mutex_t attr_mutex = PTHREAD_MUTEX_INITIALIZER;
static enum {
state_get_nokey,
state_get_nodata,
state_check_nokey,
state_check_nodata
} state = state_get_nokey;
static pthread_cond_t state_cond = PTHREAD_COND_INITIALIZER;
static void *
get_nokey(void *arg)
{
kdump_ctx_t *ctx = arg;
kdump_attr_t attr;
kdump_status res;
char *err, *ret;
pthread_mutex_lock(&attr_mutex);
res = kdump_get_attr(ctx, "non.existent", &attr);
if (res == KDUMP_OK)
return (void*) "non.existent is a valid key?!";
else if (res != KDUMP_ERR_NOKEY)
return (void*) kdump_get_err(ctx);
err = strdup(kdump_get_err(ctx));
if (!err)
return (void*) "Cannot copy error string";
state = state_get_nodata;
pthread_cond_signal(&state_cond);
while (state != state_check_nokey)
pthread_cond_wait(&state_cond, &attr_mutex);
ret = NULL;
if (strcmp(err, kdump_get_err(ctx))) {
fprintf(stderr, "nokey: '%s' != '%s'\n",
err, kdump_get_err(ctx));
ret = "KDUMP_ERR_NOKEY error string has changed";
}
state = state_check_nodata;
pthread_cond_signal(&state_cond);
pthread_mutex_unlock(&attr_mutex);
free(err);
return ret;
}
static void *
get_novalue(void *arg)
{
kdump_ctx_t *ctx = arg;
kdump_attr_t attr;
kdump_status res;
char *err, *ret;
pthread_mutex_lock(&attr_mutex);
while (state != state_get_nodata)
pthread_cond_wait(&state_cond, &attr_mutex);
res = kdump_get_attr(ctx, "xen.type", &attr);
if (res == KDUMP_OK)
return (void*) "xen.type has a value?!";
else if (res != KDUMP_ERR_NODATA)
return (void*) kdump_get_err(ctx);
err = strdup(kdump_get_err(ctx));
if (!err)
return (void*) "Cannot copy error string";
state = state_check_nokey;
pthread_cond_signal(&state_cond);
while (state != state_check_nodata)
pthread_cond_wait(&state_cond, &attr_mutex);
ret = NULL;
if (strcmp(err, kdump_get_err(ctx))) {
fprintf(stderr, "nodata: '%s' != '%s'\n",
err, kdump_get_err(ctx));
ret = "KDUMP_ERR_NODATA error string has changed";
}
pthread_mutex_unlock(&attr_mutex);
free(err);
return ret;
}
static int
run_threads(kdump_ctx_t *ctx)
{
struct {
pthread_t id;
kdump_ctx_t *ctx;
} tinfo[2];
pthread_attr_t attr;
unsigned i;
int res, rc;
res = pthread_attr_init(&attr);
if (res) {
fprintf(stderr, "pthread_attr_init: %s\n", strerror(res));
return TEST_ERR;
}
if (! (tinfo[0].ctx = kdump_clone(ctx, 0)) ) {
fprintf(stderr, "Cannot allocate clone: %s\n", strerror(res));
return TEST_ERR;
}
res = pthread_create(&tinfo[0].id, &attr, get_nokey, tinfo[0].ctx);
if (res) {
fprintf(stderr, "pthread_create: %s\n", strerror(res));
return TEST_ERR;
}
if (! (tinfo[1].ctx = kdump_clone(ctx, 0)) ) {
fprintf(stderr, "Cannot allocate clone: %s\n", strerror(res));
return TEST_ERR;
}
res = pthread_create(&tinfo[1].id, &attr, get_novalue, tinfo[1].ctx);
if (res) {
fprintf(stderr, "pthread_create: %s\n", strerror(res));
return TEST_ERR;
}
rc = TEST_OK;
for (i = 0; i < ARRAY_SIZE(tinfo); ++i) {
void *retval;
res = pthread_join(tinfo[i].id, &retval);
kdump_free(tinfo[i].ctx);
if (res) {
fprintf(stderr, "pthread_join: %s\n", strerror(res));
return TEST_ERR;
}
if (retval) {
fprintf(stderr, "Thread %u failed: %s\n",
i, (const char*) retval);
rc = TEST_FAIL;
}
}
return rc;
}
int
main(int argc, char **argv)
{
kdump_ctx_t *ctx;
int rc;
ctx = kdump_new();
if (!ctx) {
perror("Cannot initialize dump context");
return TEST_ERR;
}
rc = run_threads(ctx);
kdump_free(ctx);
return rc;
}
|