Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Commit

Permalink
sol-gatt: Fix keeping pending callbacks around
Browse files Browse the repository at this point in the history
There was a problem that some cases of GATT pending callback were being
kept around for more time than was necessary.

For that to work it was also needed to pay more attention to the lifetime
of the buffer passed to sol_gatt_pending_reply().

Signed-off-by: Vinicius Costa Gomes <[email protected]>
  • Loading branch information
vcgomes committed May 25, 2016
1 parent 0a74ad1 commit 3babe7f
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions src/lib/comms/sol-gatt-impl-bluez.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ sol_gatt_pending_reply(struct sol_gatt_pending *pending, int error,
case PENDING_NOTIFY:
r = -EINVAL;
pending->buf = buf;
/* 'buf' if going to be destroyed when the notification is sent */
buf = NULL;

SOL_NULL_CHECK_GOTO(pending->buf, done);

if (attr->type == SOL_GATT_ATTR_TYPE_DESCRIPTOR)
Expand All @@ -156,37 +159,40 @@ sol_gatt_pending_reply(struct sol_gatt_pending *pending, int error,
attr->_priv, interface, "Value", NULL);
SOL_INT_CHECK_GOTO(r, < 0, done);
break;

case PENDING_REMOTE_READ:
pending->read((void *)pending->user_data, true, pending->attr, buf);
pending->read = NULL;
sol_ptr_vector_remove(&pending_ops, pending);
destroy_pending(pending);
break;
/* Called the pending callback, nothing more to do. */
return 0;

case PENDING_REMOTE_WRITE:
pending->write((void *)pending->user_data, true, pending->attr);
pending->write = NULL;
sol_ptr_vector_remove(&pending_ops, pending);
destroy_pending(pending);
break;
}

if (!reply)
/* Called the pending callback, nothing more to do. */
return 0;
}

r = sd_bus_send(NULL, reply, NULL);
sd_bus_message_unref(reply);
SOL_INT_CHECK_GOTO(r, < 0, done);
done:
if (buf)
sol_buffer_fini(buf);

return 0;
if (pending->m && !reply) {
if (r)
r = sd_bus_message_new_method_errno(pending->m, &reply, r, NULL);
else
r = sd_bus_message_new_method_return(pending->m, &reply);

done:
if (r && pending->m) {
r = sd_bus_message_new_method_errno(pending->m, &reply, r, NULL);
SOL_INT_CHECK(r, < 0, r);
}

if (reply) {
r = sd_bus_send(NULL, reply, NULL);

sd_bus_message_unref(reply);

SOL_INT_CHECK(r, < 0, r);
}

Expand Down Expand Up @@ -290,7 +296,7 @@ attr_method(enum pending_type type, sd_bus_message *m, void *userdata, sd_bus_er
sol_ptr_vector_del_last(&pending_ops);

error_append:
free(pending);
destroy_pending(pending);

error:
if (r < 0) {
Expand Down Expand Up @@ -827,7 +833,7 @@ prepare_update(enum pending_type type, const struct sol_gatt_attr *attr)
sol_ptr_vector_del_last(&pending_ops);

error_append:
free(pending);
destroy_pending(pending);
return r;
}

Expand Down Expand Up @@ -920,7 +926,7 @@ sol_gatt_read_attr(struct sol_bt_conn *conn, struct sol_gatt_attr *attr,
sol_ptr_vector_del_last(&pending_ops);

error_append:
free(pending);
destroy_pending(pending);
return r;
}

Expand Down Expand Up @@ -957,6 +963,6 @@ sol_gatt_write_attr(struct sol_bt_conn *conn, struct sol_gatt_attr *attr,
sol_ptr_vector_del_last(&pending_ops);

error_append:
free(pending);
destroy_pending(pending);
return r;
}

0 comments on commit 3babe7f

Please sign in to comment.