2013-09-11 13:09:28 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
2013-09-11 13:09:30 +08:00
|
|
|
#include "util/dso.h"
|
2013-09-11 13:09:28 +08:00
|
|
|
#include "util/util.h"
|
|
|
|
#include "util/debug.h"
|
2017-03-26 04:34:26 +08:00
|
|
|
#include "util/callchain.h"
|
2013-09-11 13:09:28 +08:00
|
|
|
|
2014-11-13 10:05:27 +08:00
|
|
|
#include "symbol.h"
|
|
|
|
|
2015-08-08 06:24:05 +08:00
|
|
|
bool srcline_full_filename;
|
|
|
|
|
2017-03-26 04:34:25 +08:00
|
|
|
static const char *dso__name(struct dso *dso)
|
|
|
|
{
|
|
|
|
const char *dso_name;
|
|
|
|
|
|
|
|
if (dso->symsrc_filename)
|
|
|
|
dso_name = dso->symsrc_filename;
|
|
|
|
else
|
|
|
|
dso_name = dso->long_name;
|
|
|
|
|
|
|
|
if (dso_name[0] == '[')
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!strncmp(dso_name, "/tmp/perf-", 10))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return dso_name;
|
|
|
|
}
|
|
|
|
|
2017-03-26 04:34:26 +08:00
|
|
|
static int inline_list__append(char *filename, char *funcname, int line_nr,
|
|
|
|
struct inline_node *node, struct dso *dso)
|
|
|
|
{
|
|
|
|
struct inline_list *ilist;
|
|
|
|
char *demangled;
|
|
|
|
|
|
|
|
ilist = zalloc(sizeof(*ilist));
|
|
|
|
if (ilist == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ilist->filename = filename;
|
|
|
|
ilist->line_nr = line_nr;
|
|
|
|
|
|
|
|
if (dso != NULL) {
|
|
|
|
demangled = dso__demangle_sym(dso, 0, funcname);
|
|
|
|
if (demangled == NULL) {
|
|
|
|
ilist->funcname = funcname;
|
|
|
|
} else {
|
|
|
|
ilist->funcname = demangled;
|
|
|
|
free(funcname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
list_add_tail(&ilist->list, &node->val);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-11 13:09:32 +08:00
|
|
|
#ifdef HAVE_LIBBFD_SUPPORT
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implement addr2line using libbfd.
|
|
|
|
*/
|
|
|
|
#define PACKAGE "perf"
|
|
|
|
#include <bfd.h>
|
|
|
|
|
|
|
|
struct a2l_data {
|
|
|
|
const char *input;
|
2014-12-16 14:19:06 +08:00
|
|
|
u64 addr;
|
2013-09-11 13:09:32 +08:00
|
|
|
|
|
|
|
bool found;
|
|
|
|
const char *filename;
|
|
|
|
const char *funcname;
|
|
|
|
unsigned line;
|
|
|
|
|
|
|
|
bfd *abfd;
|
|
|
|
asymbol **syms;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int bfd_error(const char *string)
|
|
|
|
{
|
|
|
|
const char *errmsg;
|
|
|
|
|
|
|
|
errmsg = bfd_errmsg(bfd_get_error());
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
if (string)
|
|
|
|
pr_debug("%s: %s\n", string, errmsg);
|
|
|
|
else
|
|
|
|
pr_debug("%s\n", errmsg);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int slurp_symtab(bfd *abfd, struct a2l_data *a2l)
|
|
|
|
{
|
|
|
|
long storage;
|
|
|
|
long symcount;
|
|
|
|
asymbol **syms;
|
|
|
|
bfd_boolean dynamic = FALSE;
|
|
|
|
|
|
|
|
if ((bfd_get_file_flags(abfd) & HAS_SYMS) == 0)
|
|
|
|
return bfd_error(bfd_get_filename(abfd));
|
|
|
|
|
|
|
|
storage = bfd_get_symtab_upper_bound(abfd);
|
|
|
|
if (storage == 0L) {
|
|
|
|
storage = bfd_get_dynamic_symtab_upper_bound(abfd);
|
|
|
|
dynamic = TRUE;
|
|
|
|
}
|
|
|
|
if (storage < 0L)
|
|
|
|
return bfd_error(bfd_get_filename(abfd));
|
|
|
|
|
|
|
|
syms = malloc(storage);
|
|
|
|
if (dynamic)
|
|
|
|
symcount = bfd_canonicalize_dynamic_symtab(abfd, syms);
|
|
|
|
else
|
|
|
|
symcount = bfd_canonicalize_symtab(abfd, syms);
|
|
|
|
|
|
|
|
if (symcount < 0) {
|
|
|
|
free(syms);
|
|
|
|
return bfd_error(bfd_get_filename(abfd));
|
|
|
|
}
|
|
|
|
|
|
|
|
a2l->syms = syms;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void find_address_in_section(bfd *abfd, asection *section, void *data)
|
|
|
|
{
|
|
|
|
bfd_vma pc, vma;
|
|
|
|
bfd_size_type size;
|
|
|
|
struct a2l_data *a2l = data;
|
|
|
|
|
|
|
|
if (a2l->found)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((bfd_get_section_flags(abfd, section) & SEC_ALLOC) == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pc = a2l->addr;
|
|
|
|
vma = bfd_get_section_vma(abfd, section);
|
|
|
|
size = bfd_get_section_size(section);
|
|
|
|
|
|
|
|
if (pc < vma || pc >= vma + size)
|
|
|
|
return;
|
|
|
|
|
|
|
|
a2l->found = bfd_find_nearest_line(abfd, section, a2l->syms, pc - vma,
|
|
|
|
&a2l->filename, &a2l->funcname,
|
|
|
|
&a2l->line);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct a2l_data *addr2line_init(const char *path)
|
|
|
|
{
|
|
|
|
bfd *abfd;
|
|
|
|
struct a2l_data *a2l = NULL;
|
|
|
|
|
|
|
|
abfd = bfd_openr(path, NULL);
|
|
|
|
if (abfd == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!bfd_check_format(abfd, bfd_object))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
a2l = zalloc(sizeof(*a2l));
|
|
|
|
if (a2l == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
a2l->abfd = abfd;
|
|
|
|
a2l->input = strdup(path);
|
|
|
|
if (a2l->input == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (slurp_symtab(abfd, a2l))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
return a2l;
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (a2l) {
|
2014-01-09 22:07:59 +08:00
|
|
|
zfree((char **)&a2l->input);
|
2013-09-11 13:09:32 +08:00
|
|
|
free(a2l);
|
|
|
|
}
|
|
|
|
bfd_close(abfd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addr2line_cleanup(struct a2l_data *a2l)
|
|
|
|
{
|
|
|
|
if (a2l->abfd)
|
|
|
|
bfd_close(a2l->abfd);
|
2014-01-09 22:07:59 +08:00
|
|
|
zfree((char **)&a2l->input);
|
2013-12-28 03:55:14 +08:00
|
|
|
zfree(&a2l->syms);
|
2013-09-11 13:09:32 +08:00
|
|
|
free(a2l);
|
|
|
|
}
|
|
|
|
|
2015-09-02 02:47:19 +08:00
|
|
|
#define MAX_INLINE_NEST 1024
|
|
|
|
|
2017-03-26 04:34:26 +08:00
|
|
|
static void inline_list__reverse(struct inline_node *node)
|
|
|
|
{
|
|
|
|
struct inline_list *ilist, *n;
|
|
|
|
|
|
|
|
list_for_each_entry_safe_reverse(ilist, n, &node->val, list)
|
|
|
|
list_move_tail(&ilist->list, &node->val);
|
|
|
|
}
|
|
|
|
|
2014-12-16 14:19:06 +08:00
|
|
|
static int addr2line(const char *dso_name, u64 addr,
|
2015-09-02 02:47:19 +08:00
|
|
|
char **file, unsigned int *line, struct dso *dso,
|
2017-03-26 04:34:26 +08:00
|
|
|
bool unwind_inlines, struct inline_node *node)
|
2013-09-11 13:09:32 +08:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2013-12-03 15:23:07 +08:00
|
|
|
struct a2l_data *a2l = dso->a2l;
|
|
|
|
|
|
|
|
if (!a2l) {
|
|
|
|
dso->a2l = addr2line_init(dso_name);
|
|
|
|
a2l = dso->a2l;
|
|
|
|
}
|
2013-09-11 13:09:32 +08:00
|
|
|
|
|
|
|
if (a2l == NULL) {
|
|
|
|
pr_warning("addr2line_init failed for %s\n", dso_name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a2l->addr = addr;
|
2013-12-03 15:23:07 +08:00
|
|
|
a2l->found = false;
|
|
|
|
|
2013-09-11 13:09:32 +08:00
|
|
|
bfd_map_over_sections(a2l->abfd, find_address_in_section, a2l);
|
|
|
|
|
2015-09-02 02:47:19 +08:00
|
|
|
if (a2l->found && unwind_inlines) {
|
|
|
|
int cnt = 0;
|
|
|
|
|
|
|
|
while (bfd_find_inliner_info(a2l->abfd, &a2l->filename,
|
|
|
|
&a2l->funcname, &a2l->line) &&
|
2017-03-26 04:34:26 +08:00
|
|
|
cnt++ < MAX_INLINE_NEST) {
|
|
|
|
|
|
|
|
if (node != NULL) {
|
|
|
|
if (inline_list__append(strdup(a2l->filename),
|
|
|
|
strdup(a2l->funcname),
|
|
|
|
a2l->line, node,
|
|
|
|
dso) != 0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((node != NULL) &&
|
|
|
|
(callchain_param.order != ORDER_CALLEE)) {
|
|
|
|
inline_list__reverse(node);
|
|
|
|
}
|
2015-09-02 02:47:19 +08:00
|
|
|
}
|
|
|
|
|
2013-09-11 13:09:32 +08:00
|
|
|
if (a2l->found && a2l->filename) {
|
|
|
|
*file = strdup(a2l->filename);
|
|
|
|
*line = a2l->line;
|
|
|
|
|
|
|
|
if (*file)
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-12-03 15:23:07 +08:00
|
|
|
void dso__free_a2l(struct dso *dso)
|
|
|
|
{
|
|
|
|
struct a2l_data *a2l = dso->a2l;
|
|
|
|
|
|
|
|
if (!a2l)
|
|
|
|
return;
|
|
|
|
|
|
|
|
addr2line_cleanup(a2l);
|
|
|
|
|
|
|
|
dso->a2l = NULL;
|
|
|
|
}
|
|
|
|
|
2017-03-26 04:34:26 +08:00
|
|
|
static struct inline_node *addr2inlines(const char *dso_name, u64 addr,
|
|
|
|
struct dso *dso)
|
|
|
|
{
|
|
|
|
char *file = NULL;
|
|
|
|
unsigned int line = 0;
|
|
|
|
struct inline_node *node;
|
|
|
|
|
|
|
|
node = zalloc(sizeof(*node));
|
|
|
|
if (node == NULL) {
|
|
|
|
perror("not enough memory for the inline node");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&node->val);
|
|
|
|
node->addr = addr;
|
|
|
|
|
|
|
|
if (!addr2line(dso_name, addr, &file, &line, dso, TRUE, node))
|
|
|
|
goto out_free_inline_node;
|
|
|
|
|
|
|
|
if (list_empty(&node->val))
|
|
|
|
goto out_free_inline_node;
|
|
|
|
|
|
|
|
return node;
|
|
|
|
|
|
|
|
out_free_inline_node:
|
|
|
|
inline_node__delete(node);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-09-11 13:09:32 +08:00
|
|
|
#else /* HAVE_LIBBFD_SUPPORT */
|
|
|
|
|
2017-03-26 04:34:25 +08:00
|
|
|
static int filename_split(char *filename, unsigned int *line_nr)
|
|
|
|
{
|
|
|
|
char *sep;
|
|
|
|
|
|
|
|
sep = strchr(filename, '\n');
|
|
|
|
if (sep)
|
|
|
|
*sep = '\0';
|
|
|
|
|
|
|
|
if (!strcmp(filename, "??:0"))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
sep = strchr(filename, ':');
|
|
|
|
if (sep) {
|
|
|
|
*sep++ = '\0';
|
|
|
|
*line_nr = strtoul(sep, NULL, 0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-16 14:19:06 +08:00
|
|
|
static int addr2line(const char *dso_name, u64 addr,
|
2013-12-03 15:23:07 +08:00
|
|
|
char **file, unsigned int *line_nr,
|
2015-09-02 02:47:19 +08:00
|
|
|
struct dso *dso __maybe_unused,
|
2017-03-26 04:34:26 +08:00
|
|
|
bool unwind_inlines __maybe_unused,
|
|
|
|
struct inline_node *node __maybe_unused)
|
2013-09-11 13:09:28 +08:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char cmd[PATH_MAX];
|
|
|
|
char *filename = NULL;
|
|
|
|
size_t len;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
scnprintf(cmd, sizeof(cmd), "addr2line -e %s %016"PRIx64,
|
|
|
|
dso_name, addr);
|
|
|
|
|
|
|
|
fp = popen(cmd, "r");
|
|
|
|
if (fp == NULL) {
|
|
|
|
pr_warning("popen failed for %s\n", dso_name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (getline(&filename, &len, fp) < 0 || !len) {
|
|
|
|
pr_warning("addr2line has no output for %s\n", dso_name);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2017-03-26 04:34:25 +08:00
|
|
|
ret = filename_split(filename, line_nr);
|
|
|
|
if (ret != 1) {
|
2013-09-11 13:09:28 +08:00
|
|
|
free(filename);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2017-03-26 04:34:25 +08:00
|
|
|
*file = filename;
|
|
|
|
|
2013-09-11 13:09:28 +08:00
|
|
|
out:
|
|
|
|
pclose(fp);
|
|
|
|
return ret;
|
|
|
|
}
|
2013-12-03 15:23:07 +08:00
|
|
|
|
|
|
|
void dso__free_a2l(struct dso *dso __maybe_unused)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-03-26 04:34:26 +08:00
|
|
|
static struct inline_node *addr2inlines(const char *dso_name, u64 addr,
|
|
|
|
struct dso *dso __maybe_unused)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char cmd[PATH_MAX];
|
|
|
|
struct inline_node *node;
|
|
|
|
char *filename = NULL;
|
|
|
|
size_t len;
|
|
|
|
unsigned int line_nr = 0;
|
|
|
|
|
|
|
|
scnprintf(cmd, sizeof(cmd), "addr2line -e %s -i %016"PRIx64,
|
|
|
|
dso_name, addr);
|
|
|
|
|
|
|
|
fp = popen(cmd, "r");
|
|
|
|
if (fp == NULL) {
|
|
|
|
pr_err("popen failed for %s\n", dso_name);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = zalloc(sizeof(*node));
|
|
|
|
if (node == NULL) {
|
|
|
|
perror("not enough memory for the inline node");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&node->val);
|
|
|
|
node->addr = addr;
|
|
|
|
|
|
|
|
while (getline(&filename, &len, fp) != -1) {
|
|
|
|
if (filename_split(filename, &line_nr) != 1) {
|
|
|
|
free(filename);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inline_list__append(filename, NULL, line_nr, node,
|
|
|
|
NULL) != 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
filename = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
pclose(fp);
|
|
|
|
|
|
|
|
if (list_empty(&node->val)) {
|
|
|
|
inline_node__delete(node);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2013-09-11 13:09:32 +08:00
|
|
|
#endif /* HAVE_LIBBFD_SUPPORT */
|
2013-09-11 13:09:28 +08:00
|
|
|
|
2013-12-03 15:23:10 +08:00
|
|
|
/*
|
|
|
|
* Number of addr2line failures (without success) before disabling it for that
|
|
|
|
* dso.
|
|
|
|
*/
|
|
|
|
#define A2L_FAIL_LIMIT 123
|
|
|
|
|
2015-09-02 02:47:19 +08:00
|
|
|
char *__get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
|
2017-03-19 05:49:28 +08:00
|
|
|
bool show_sym, bool show_addr, bool unwind_inlines)
|
2013-09-11 13:09:28 +08:00
|
|
|
{
|
2013-10-10 11:51:31 +08:00
|
|
|
char *file = NULL;
|
|
|
|
unsigned line = 0;
|
2013-09-11 13:09:31 +08:00
|
|
|
char *srcline;
|
2013-12-11 02:19:23 +08:00
|
|
|
const char *dso_name;
|
2013-09-11 13:09:28 +08:00
|
|
|
|
2013-09-11 13:09:31 +08:00
|
|
|
if (!dso->has_srcline)
|
2014-11-13 10:05:24 +08:00
|
|
|
goto out;
|
2013-09-11 13:09:31 +08:00
|
|
|
|
2017-03-26 04:34:25 +08:00
|
|
|
dso_name = dso__name(dso);
|
|
|
|
if (dso_name == NULL)
|
2013-09-11 13:09:29 +08:00
|
|
|
goto out;
|
|
|
|
|
2017-03-26 04:34:26 +08:00
|
|
|
if (!addr2line(dso_name, addr, &file, &line, dso, unwind_inlines, NULL))
|
2013-09-11 13:09:29 +08:00
|
|
|
goto out;
|
2013-09-11 13:09:28 +08:00
|
|
|
|
2015-08-08 06:24:05 +08:00
|
|
|
if (asprintf(&srcline, "%s:%u",
|
|
|
|
srcline_full_filename ? file : basename(file),
|
|
|
|
line) < 0) {
|
2013-12-03 15:23:10 +08:00
|
|
|
free(file);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
dso->a2l_fails = 0;
|
2013-09-11 13:09:28 +08:00
|
|
|
|
|
|
|
free(file);
|
|
|
|
return srcline;
|
2013-09-11 13:09:31 +08:00
|
|
|
|
|
|
|
out:
|
2013-12-03 15:23:10 +08:00
|
|
|
if (dso->a2l_fails && ++dso->a2l_fails > A2L_FAIL_LIMIT) {
|
|
|
|
dso->has_srcline = 0;
|
|
|
|
dso__free_a2l(dso);
|
|
|
|
}
|
2017-03-19 05:49:28 +08:00
|
|
|
|
|
|
|
if (!show_addr)
|
|
|
|
return (show_sym && sym) ?
|
|
|
|
strndup(sym->name, sym->namelen) : NULL;
|
|
|
|
|
2014-11-13 10:05:27 +08:00
|
|
|
if (sym) {
|
2014-12-16 14:19:06 +08:00
|
|
|
if (asprintf(&srcline, "%s+%" PRIu64, show_sym ? sym->name : "",
|
2014-11-13 10:05:27 +08:00
|
|
|
addr - sym->start) < 0)
|
|
|
|
return SRCLINE_UNKNOWN;
|
2014-12-16 14:19:06 +08:00
|
|
|
} else if (asprintf(&srcline, "%s[%" PRIx64 "]", dso->short_name, addr) < 0)
|
2014-11-13 10:05:24 +08:00
|
|
|
return SRCLINE_UNKNOWN;
|
|
|
|
return srcline;
|
2013-09-11 13:09:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void free_srcline(char *srcline)
|
|
|
|
{
|
|
|
|
if (srcline && strcmp(srcline, SRCLINE_UNKNOWN) != 0)
|
|
|
|
free(srcline);
|
|
|
|
}
|
2015-09-02 02:47:19 +08:00
|
|
|
|
|
|
|
char *get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
|
2017-03-19 05:49:28 +08:00
|
|
|
bool show_sym, bool show_addr)
|
2015-09-02 02:47:19 +08:00
|
|
|
{
|
2017-03-19 05:49:28 +08:00
|
|
|
return __get_srcline(dso, addr, sym, show_sym, show_addr, false);
|
2015-09-02 02:47:19 +08:00
|
|
|
}
|
2017-03-26 04:34:26 +08:00
|
|
|
|
|
|
|
struct inline_node *dso__parse_addr_inlines(struct dso *dso, u64 addr)
|
|
|
|
{
|
|
|
|
const char *dso_name;
|
|
|
|
|
|
|
|
dso_name = dso__name(dso);
|
|
|
|
if (dso_name == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return addr2inlines(dso_name, addr, dso);
|
|
|
|
}
|
|
|
|
|
|
|
|
void inline_node__delete(struct inline_node *node)
|
|
|
|
{
|
|
|
|
struct inline_list *ilist, *tmp;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(ilist, tmp, &node->val, list) {
|
|
|
|
list_del_init(&ilist->list);
|
|
|
|
zfree(&ilist->filename);
|
|
|
|
zfree(&ilist->funcname);
|
|
|
|
free(ilist);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(node);
|
|
|
|
}
|