📄 ftypes.c
字号:
/* * $Id: ftypes.c,v 1.6 2002/02/05 22:50:17 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> * Copyright 2001 Gerald Combs * * This program is free software; you can redistribute it and/or * modify it under the terms of 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. * * This program 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 a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include <ftypes-int.h>/* Keep track of ftype_t's via their ftenum number */static ftype_t* type_list[FT_NUM_TYPES];/* Space for quickly allocating/de-allocating fvalue_t's */static GMemChunk *gmc_fvalue = NULL;/* These are the ftype registration functions that need to be called. * This list and the initialization function could be produced * via a script, like the dissector registration, but there's so few * that I don't mind doing it by hand for now. */void ftype_register_bytes(void);void ftype_register_double(void);void ftype_register_integers(void);void ftype_register_ipv4(void);void ftype_register_none(void);void ftype_register_string(void);void ftype_register_time(void);void ftype_register_tvbuff(void);/* Initialize the ftype module. */voidftypes_initialize(void){ ftype_register_bytes(); ftype_register_double(); ftype_register_integers(); ftype_register_ipv4(); ftype_register_none(); ftype_register_string(); ftype_register_time(); ftype_register_tvbuff(); if (gmc_fvalue) g_mem_chunk_destroy(gmc_fvalue); gmc_fvalue = g_mem_chunk_new("gmc_fvalue", sizeof(fvalue_t), 200 * sizeof(fvalue_t), G_ALLOC_AND_FREE);}voidftypes_cleanup(void){ if (gmc_fvalue) g_mem_chunk_destroy(gmc_fvalue);}/* Each ftype_t is registered via this function */voidftype_register(enum ftenum ftype, ftype_t *ft){ /* Check input */ g_assert(ftype < FT_NUM_TYPES); /* Don't re-register. */ g_assert(type_list[ftype] == NULL); type_list[ftype] = ft;}/* Given an ftenum number, return an ftype_t* */static ftype_t*ftype_lookup(enum ftenum ftype){ ftype_t* result; /* Check input */ g_assert(ftype < FT_NUM_TYPES); result = type_list[ftype]; /* Check output. */ g_assert(result != NULL); return result;}/* Returns a string representing the name of the type. Useful * for glossary production. */const char*ftype_name(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->name;}const char*ftype_pretty_name(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->pretty_name;}intftype_length(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->wire_size;}gbooleanftype_can_slice(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->slice ? TRUE : FALSE;}gbooleanftype_can_eq(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->cmp_eq ? TRUE : FALSE;}gbooleanftype_can_ne(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->cmp_ne ? TRUE : FALSE;}gbooleanftype_can_gt(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->cmp_gt ? TRUE : FALSE;}gbooleanftype_can_ge(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->cmp_ge ? TRUE : FALSE;}gbooleanftype_can_lt(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->cmp_lt ? TRUE : FALSE;}gbooleanftype_can_le(enum ftenum ftype){ ftype_t *ft; ft = ftype_lookup(ftype); return ft->cmp_le ? TRUE : FALSE;}/* ---------------------------------------------------------- *//* Allocate and initialize an fvalue_t, given an ftype */fvalue_t*fvalue_new(ftenum_t ftype){ fvalue_t *fv; ftype_t *ft; FvalueNewFunc new_value; fv = g_mem_chunk_alloc(gmc_fvalue); ft = ftype_lookup(ftype); fv->ftype = ft; new_value = ft->new_value; if (new_value) { new_value(fv); } return fv;}/* Free all memory used by an fvalue_t */voidfvalue_free(fvalue_t *fv){ FvalueFreeFunc free_value; free_value = fv->ftype->free_value; if (free_value) { free_value(fv); } g_mem_chunk_free(gmc_fvalue, fv);}fvalue_t*fvalue_from_string(ftenum_t ftype, char *s, LogFunc logfunc){ fvalue_t *fv; fv = fvalue_new(ftype); if (fv->ftype->val_from_string) { if (fv->ftype->val_from_string(fv, s, logfunc)) { return fv; } } else { logfunc("\"%s\" cannot be converted to %s.", s, ftype_pretty_name(ftype)); } fvalue_free(fv); return NULL;}const char*fvalue_type_name(fvalue_t *fv){ return fv->ftype->name;}guintfvalue_length(fvalue_t *fv){ if (fv->ftype->len) return fv->ftype->len(fv); else return fv->ftype->wire_size;}typedef struct { fvalue_t *fv; GByteArray *bytes; gboolean slice_failure;} slice_data_t;static voidslice_func(gpointer data, gpointer user_data){ drange_node *drnode = data; slice_data_t *slice_data = user_data; gint start_offset; gint length = 0; gint end_offset = 0; guint field_length; fvalue_t *fv; drange_node_end_t ending; if (slice_data->slice_failure) { return; } start_offset = drange_node_get_start_offset(drnode); ending = drange_node_get_ending(drnode); fv = slice_data->fv; field_length = fvalue_length(fv); /* Check for negative start */ if (start_offset < 0) { start_offset = field_length + start_offset; } /* Check the end type, and set both end_offset and length */ if (ending == TO_THE_END) { end_offset = field_length; length = end_offset - start_offset; } else if (ending == LENGTH) { length = drange_node_get_length(drnode); if (length < 0) { end_offset = field_length + length; if (end_offset > start_offset) { length = end_offset - start_offset + 1; } else { slice_data->slice_failure = TRUE; return; } } else { end_offset = start_offset + length; } } else if (ending == OFFSET) { end_offset = drange_node_get_end_offset(drnode); if (end_offset < 0) { end_offset = field_length + end_offset; if (end_offset > start_offset) { length = end_offset - start_offset + 1; } else { slice_data->slice_failure = TRUE; return; } } else { length = end_offset - start_offset + 1; } } else { g_assert_not_reached(); }/* g_debug("(NEW) start_offset=%d length=%d end_offset=%d", start_offset, length, end_offset); */ if (start_offset > (int) field_length || end_offset > (int) field_length) { slice_data->slice_failure = TRUE; return; } fv->ftype->slice(fv, slice_data->bytes, start_offset, length);}/* Returns a new FT_BYTES fvalue_t* if possible, otherwise NULL */fvalue_t*fvalue_slice(fvalue_t *fv, drange *drange){ slice_data_t slice_data; fvalue_t *new_fv; slice_data.fv = fv; slice_data.bytes = g_byte_array_new(); slice_data.slice_failure = FALSE; /* XXX - We could make some optimizations here based on * drange_has_total_length() and * drange_get_max_offset(). */ drange_foreach_drange_node(drange, slice_func, &slice_data); new_fv = fvalue_new(FT_BYTES); fvalue_set(new_fv, slice_data.bytes, TRUE); return new_fv;}voidfvalue_set(fvalue_t *fv, gpointer value, gboolean already_copied){ g_assert(fv->ftype->set_value); fv->ftype->set_value(fv, value, already_copied);}voidfvalue_set_integer(fvalue_t *fv, guint32 value){ g_assert(fv->ftype->set_value_integer); fv->ftype->set_value_integer(fv, value);}voidfvalue_set_floating(fvalue_t *fv, gdouble value){ g_assert(fv->ftype->set_value_floating); fv->ftype->set_value_floating(fv, value);}gpointerfvalue_get(fvalue_t *fv){ g_assert(fv->ftype->get_value); return fv->ftype->get_value(fv);}guint32fvalue_get_integer(fvalue_t *fv){ g_assert(fv->ftype->get_value_integer); return fv->ftype->get_value_integer(fv);}doublefvalue_get_floating(fvalue_t *fv){ g_assert(fv->ftype->get_value_floating); return fv->ftype->get_value_floating(fv);}gbooleanfvalue_eq(fvalue_t *a, fvalue_t *b){ /* XXX - check compatibility of a and b */ g_assert(a->ftype->cmp_eq); return a->ftype->cmp_eq(a, b);}gbooleanfvalue_ne(fvalue_t *a, fvalue_t *b){ /* XXX - check compatibility of a and b */ g_assert(a->ftype->cmp_ne); return a->ftype->cmp_ne(a, b);}gbooleanfvalue_gt(fvalue_t *a, fvalue_t *b){ /* XXX - check compatibility of a and b */ g_assert(a->ftype->cmp_gt); return a->ftype->cmp_gt(a, b);}gbooleanfvalue_ge(fvalue_t *a, fvalue_t *b){ /* XXX - check compatibility of a and b */ g_assert(a->ftype->cmp_ge); return a->ftype->cmp_ge(a, b);}gbooleanfvalue_lt(fvalue_t *a, fvalue_t *b){ /* XXX - check compatibility of a and b */ g_assert(a->ftype->cmp_lt); return a->ftype->cmp_lt(a, b);}gbooleanfvalue_le(fvalue_t *a, fvalue_t *b){ /* XXX - check compatibility of a and b */ g_assert(a->ftype->cmp_le); return a->ftype->cmp_le(a, b);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -