aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-07-14 17:52:09 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2020-07-15 15:39:33 +0200
commit5196cd56415e9fa97d78b92ea1803606205710c4 (patch)
treee70dc0f22f6a07297ba38ce51ab3530fe1a8fe46 /src
parent837fb6e47113bf09d08ef8a79d4d466edd289404 (diff)
e1_input: Use osmo_use_count in e1inp_line
osmo_use_count is available since libosmocore 1.1.0 release, so bump required libosmocore version in autotools and packages. struct e1inp_line field refcnt is kept in order to keep ABI compatibility accessing struct fields. The new use_count is added at the end. Size of struct changing is fine since it is allocated through an API and a pointer should be used by clients. e1inp_line_clone API is changed but it's not used by anyone outside libosmo-abis, so it's fine. Related: OS#4624 Change-Id: I0658b2e9c452598025cc0f1d0b060076171767cc
Diffstat (limited to 'src')
-rw-r--r--src/e1_input.c95
-rw-r--r--src/input/ipaccess.c14
2 files changed, 66 insertions, 43 deletions
diff --git a/src/e1_input.c b/src/e1_input.c
index 9ea4f17..fc0370d 100644
--- a/src/e1_input.c
+++ b/src/e1_input.c
@@ -26,6 +26,7 @@
#include <stdio.h>
#include <unistd.h>
+#include <inttypes.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
@@ -366,6 +367,48 @@ int e1inp_ts_config_hdlc(struct e1inp_ts *ts, struct e1inp_line *line,
return 0;
}
+static int e1inp_line_use_cb(struct osmo_use_count_entry *use_count_entry, int32_t old_use_count,
+ const char *file, int file_line)
+{
+ char buf[512];
+ struct osmo_use_count *uc = use_count_entry->use_count;
+ struct e1inp_line *line = uc->talloc_object;
+
+ LOGPSRC(DLINP, LOGL_INFO, file, file_line,
+ "E1L(%u) Line (%p) reference count %s changed %" PRId32 " -> %" PRId32 " [%s]\n",
+ (line)->num, line, use_count_entry->use,
+ old_use_count, use_count_entry->count,
+ osmo_use_count_name_buf(buf, sizeof(buf), uc));
+
+ if (!use_count_entry->count)
+ osmo_use_count_free(use_count_entry);
+
+ if (osmo_use_count_total(uc) > 0)
+ return 0;
+
+ /* Remove our counter group from libosmocore's global counter
+ * list if we are freeing the last remaining talloc context.
+ * Otherwise we get a use-after-free when libosmocore's timer
+ * ticks again and attempts to update these counters (OS#3011).
+ *
+ * Note that talloc internally counts "secondary" references
+ * _in addition to_ the initial allocation context, so yes,
+ * we must check for *zero* remaining secondary contexts here. */
+ if (talloc_reference_count(line->rate_ctr) == 0) {
+ rate_ctr_group_free(line->rate_ctr);
+ } else {
+ /* We are not freeing the last talloc context.
+ * Instead of calling talloc_free(), unlink this 'line' pointer
+ * which serves as one of several talloc contexts for the rate
+ * counters and driver private state. */
+ talloc_unlink(line, line->rate_ctr);
+ if (line->driver_data)
+ talloc_unlink(line, line->driver_data);
+ }
+ talloc_free(line);
+ return 0;
+}
+
struct e1inp_line *e1inp_line_find(uint8_t e1_nr)
{
struct e1inp_line *e1i_line;
@@ -417,14 +460,18 @@ e1inp_line_create(uint8_t e1_nr, const char *driver_name)
line->ts[i].num = i+1;
line->ts[i].line = line;
}
- line->refcnt++;
+
+ line->use_count.talloc_object = line;
+ line->use_count.use_cb = e1inp_line_use_cb;
+ e1inp_line_get2(line, "ctor");
+
llist_add_tail(&line->list, &e1inp_line_list);
return line;
}
struct e1inp_line *
-e1inp_line_clone(void *ctx, struct e1inp_line *line)
+e1inp_line_clone(void *ctx, struct e1inp_line *line, const char *use)
{
struct e1inp_line *clone;
@@ -453,47 +500,23 @@ e1inp_line_clone(void *ctx, struct e1inp_line *line)
if (line->driver_data)
clone->driver_data = talloc_reference(clone, line->driver_data);
- clone->refcnt = 1;
+ clone->use_count = (struct osmo_use_count) {
+ .talloc_object = clone,
+ .use_cb = e1inp_line_use_cb,
+ .use_counts = {0},
+ };
+ e1inp_line_get2(clone, use); /* Clone is used internally for bfd */
return clone;
}
void e1inp_line_get(struct e1inp_line *line)
{
- int old_refcnt = line->refcnt++;
-
- LOGPIL(line, DLINP, LOGL_DEBUG, "Line '%s' (%p) reference count get: %d -> %d\n",
- line->name, line, old_refcnt, line->refcnt);
+ e1inp_line_get2(line, "unknown");
}
void e1inp_line_put(struct e1inp_line *line)
{
- int old_refcnt = line->refcnt--;
-
- LOGPIL(line, DLINP, LOGL_DEBUG, "Line '%s' (%p) reference count put: %d -> %d\n",
- line->name, line, old_refcnt, line->refcnt);
-
- if (line->refcnt == 0) {
- /* Remove our counter group from libosmocore's global counter
- * list if we are freeing the last remaining talloc context.
- * Otherwise we get a use-after-free when libosmocore's timer
- * ticks again and attempts to update these counters (OS#3011).
- *
- * Note that talloc internally counts "secondary" references
- * _in addition to_ the initial allocation context, so yes,
- * we must check for *zero* remaining secondary contexts here. */
- if (talloc_reference_count(line->rate_ctr) == 0) {
- rate_ctr_group_free(line->rate_ctr);
- } else {
- /* We are not freeing the last talloc context.
- * Instead of calling talloc_free(), unlink this 'line' pointer
- * which serves as one of several talloc contexts for the rate
- * counters and driver private state. */
- talloc_unlink(line, line->rate_ctr);
- if (line->driver_data)
- talloc_unlink(line, line->driver_data);
- }
- talloc_free(line);
- }
+ e1inp_line_put2(line, "unknown");
}
void
@@ -586,7 +609,7 @@ e1inp_sign_link_create(struct e1inp_ts *ts, enum e1inp_sign_type type,
link->tei = tei;
link->sapi = sapi;
- e1inp_line_get(link->ts->line);
+ e1inp_line_get2(link->ts->line, "e1inp_sign_link");
llist_add_tail(&link->list, &ts->sign.sign_links);
@@ -609,7 +632,7 @@ void e1inp_sign_link_destroy(struct e1inp_sign_link *link)
if (link->ts->line->driver->close)
link->ts->line->driver->close(link);
- e1inp_line_put(link->ts->line);
+ e1inp_line_put2(link->ts->line, "e1inp_sign_link");
talloc_free(link);
}
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 917a195..5d17839 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -293,7 +293,7 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
/* Finally, we know which OML link is associated with
* this RSL link, attach it to this socket. */
bfd->data = new_line = sign_link->ts->line;
- e1inp_line_get(new_line);
+ e1inp_line_get2(new_line, "ipa_bfd");
ts = e1inp_line_ipa_rsl_ts(new_line, unit_data.trx_id);
newbfd = &ts->driver.ipaccess.fd;
@@ -310,7 +310,7 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
goto err;
}
/* now we can release the dummy RSL line. */
- e1inp_line_put(line);
+ e1inp_line_put2(line, "ipa_bfd");
e1i_ts = ipaccess_line_ts(newbfd, new_line);
ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, newbfd, "rsl_bsc_to_bts");
@@ -328,7 +328,7 @@ err:
close(bfd->fd);
bfd->fd = -1;
}
- e1inp_line_put(line);
+ e1inp_line_put2(line, "ipa_bfd");
return -1;
}
@@ -603,7 +603,7 @@ static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
struct osmo_fd *bfd;
/* clone virtual E1 line for this new OML link. */
- line = e1inp_line_clone(tall_ipa_ctx, link->line);
+ line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
if (line == NULL) {
LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
return -ENOMEM;
@@ -642,7 +642,7 @@ err_socket:
err_line:
close(bfd->fd);
bfd->fd = -1;
- e1inp_line_put(line);
+ e1inp_line_put2(line, "ipa_bfd");
return ret;
}
@@ -655,7 +655,7 @@ static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
/* We don't know yet which OML link to associate it with. Thus, we
* allocate a temporary E1 line until we have received ID. */
- line = e1inp_line_clone(tall_ipa_ctx, link->line);
+ line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
if (line == NULL) {
LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
return -ENOMEM;
@@ -692,7 +692,7 @@ err_socket:
err_line:
close(bfd->fd);
bfd->fd = -1;
- e1inp_line_put(line);
+ e1inp_line_put2(line, "ipa_bfd");
return ret;
}