summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2007-02-28 12:31:25 +0000
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2007-02-28 12:31:25 +0000
commitacfdab3a74249dc4e04078523a7fd10fd6fe4d5d (patch)
treec7b1187b7ceeef40c9ec3010980009637efb9d02 /input
parent40d70645a6e6954eaeb6790d7e191ff8f8d958f3 (diff)
Input: Using glib memory alloc functions
Diffstat (limited to 'input')
-rw-r--r--input/device.c57
-rw-r--r--input/storage.c35
2 files changed, 36 insertions, 56 deletions
diff --git a/input/device.c b/input/device.c
index 816342c0..a3e4d7de 100644
--- a/input/device.c
+++ b/input/device.c
@@ -113,11 +113,7 @@ static struct input_device *input_device_new(bdaddr_t *src, bdaddr_t *dst, uint3
{
struct input_device *idev;
- idev = malloc(sizeof(struct input_device));
- if (!idev)
- return NULL;
-
- memset(idev, 0, sizeof(struct input_device));
+ idev = g_new0(struct input_device, 1);
bacpy(&idev->src, src);
bacpy(&idev->dst, dst);
@@ -136,7 +132,7 @@ static void pending_connect_free(struct pending_connect *pc)
dbus_connection_unref(pc->conn);
if (pc->msg)
dbus_message_unref(pc->msg);
- free(pc);
+ g_free(pc);
}
static void input_device_free(struct input_device *idev)
@@ -144,13 +140,13 @@ static void input_device_free(struct input_device *idev)
if (!idev)
return;
if (idev->hidp.rd_data)
- free(idev->hidp.rd_data);
+ g_free(idev->hidp.rd_data);
if (idev->fake)
- free(idev->fake);
+ g_free(idev->fake);
if (idev->pending_connect)
pending_connect_free(idev->pending_connect);
- free(idev);
+ g_free(idev);
}
static struct pending_req *pending_req_new(DBusConnection *conn,
@@ -158,12 +154,11 @@ static struct pending_req *pending_req_new(DBusConnection *conn,
bdaddr_t *src, bdaddr_t *dst)
{
struct pending_req *pr;
- pr = malloc(sizeof(struct pending_req));
+ pr = g_try_new0(struct pending_req, 1);
if (!pr)
return NULL;
- memset(pr, 0, sizeof(struct pending_req));
- pr->adapter_path = strdup(adapter_path);
+ pr->adapter_path = g_strdup(adapter_path);
bacpy(&pr->src, src);
bacpy(&pr->dst, dst);
pr->conn = dbus_connection_ref(conn);
@@ -177,7 +172,7 @@ static void pending_req_free(struct pending_req *pr)
if (!pr)
return;
if (pr->adapter_path)
- free(pr->adapter_path);
+ g_free(pr->adapter_path);
if (pr->conn)
dbus_connection_unref(pr->conn);
if (pr->msg)
@@ -186,7 +181,7 @@ static void pending_req_free(struct pending_req *pr)
sdp_record_free(pr->pnp_rec);
if (pr->hid_rec)
sdp_record_free(pr->hid_rec);
- free(pr);
+ g_free(pr);
}
/*
@@ -304,7 +299,7 @@ static void extract_hid_record(sdp_record_t *rec, struct hidp_connadd_req *req)
pdlist = pdlist->val.dataseq;
pdlist = pdlist->next;
- req->rd_data = malloc(pdlist->unitSize);
+ req->rd_data = g_try_malloc0(pdlist->unitSize);
if (req->rd_data) {
memcpy(req->rd_data, (unsigned char *) pdlist->val.str, pdlist->unitSize);
req->rd_size = pdlist->unitSize;
@@ -1000,13 +995,12 @@ static DBusHandlerResult device_connect(DBusConnection *conn,
if (is_connected(idev))
return err_connection_failed(conn, msg, "Already connected");
- idev->pending_connect = malloc(sizeof(struct pending_connect));
+ idev->pending_connect = g_try_new0(struct pending_connect, 1);
if (!idev->pending_connect) {
error("Out of memory when allocating new struct pending_connect");
return DBUS_HANDLER_RESULT_NEED_MEMORY;
}
- memset(idev->pending_connect, 0, sizeof(struct pending_connect));
idev->pending_connect->conn = dbus_connection_ref(conn);
idev->pending_connect->msg = dbus_message_ref(msg);
@@ -1207,7 +1201,7 @@ static void input_manager_free(struct input_manager *mgr)
g_slist_free(mgr->paths);
}
- free(mgr);
+ g_free(mgr);
}
static int register_input_device(DBusConnection *conn,
@@ -1223,7 +1217,7 @@ static int register_input_device(DBusConnection *conn,
}
dbus_connection_get_object_path_data(conn, INPUT_PATH, (void *) &mgr);
- mgr->paths = g_slist_append(mgr->paths, strdup(path));
+ mgr->paths = g_slist_append(mgr->paths, g_strdup(path));
msg = dbus_message_new_signal(INPUT_PATH,
INPUT_MANAGER_INTERFACE, "DeviceCreated");
@@ -1322,11 +1316,11 @@ static int get_class(bdaddr_t *src, bdaddr_t *dst, uint32_t *cls)
return -ENOENT;
if (sscanf(str, "%x", cls) != 1) {
- free(str);
+ g_free(str);
return -ENOENT;
}
- free(str);
+ g_free(str);
return 0;
}
@@ -1641,18 +1635,8 @@ static void headset_record_reply(DBusPendingCall *call, void *data)
}
idev = input_device_new(&pr->src, &pr->dst, cls);
- if (!idev) {
- error("Out of memory when allocating new input");
- goto fail;
- }
- idev->fake = malloc(sizeof(struct fake_input));
- if (!idev->fake) {
- error("Out of memory when allocating new fake input");
- input_device_free(idev);
- goto fail;
- }
- memset(idev->fake, 0, sizeof(struct fake_input));
+ idev->fake = g_new0(struct fake_input, 1);
idev->fake->ch = ch;
/* FIXME: Store the fake input data */
@@ -1761,8 +1745,6 @@ static DBusHandlerResult manager_create_device(DBusConnection *conn,
}
idev = input_device_new(&mgr->src, &dst, cls);
- if (!idev)
- return DBUS_HANDLER_RESULT_NEED_MEMORY;
if (get_stored_device_info(&mgr->src, &idev->dst, &idev->hidp) < 0) {
struct pending_req *pr;
@@ -1852,7 +1834,7 @@ static DBusHandlerResult manager_remove_device(DBusConnection *conn,
return err_failed(conn, msg, "D-Bus path unregistration failed");
}
- free(l->data);
+ g_free(l->data);
mgr->paths = g_slist_remove(mgr->paths, l->data);
return send_message_and_unref(conn, reply);
@@ -1943,6 +1925,7 @@ static void stored_input(char *key, char *value, void *data)
return;
idev = input_device_new(src, &dst, cls);
+
if (parse_stored_device_info(value, &idev->hidp) < 0) {
input_device_free(idev);
return;
@@ -1977,8 +1960,8 @@ int input_dbus_init(void)
dbus_connection_set_exit_on_disconnect(connection, TRUE);
- mgr = malloc(sizeof(struct input_manager));
- memset(mgr, 0, sizeof(struct input_manager));
+ mgr = g_new0(struct input_manager, 1);
+
/* Fallback to catch invalid device path */
if (!dbus_connection_register_fallback(connection, INPUT_PATH,
&manager_table, mgr)) {
diff --git a/input/storage.c b/input/storage.c
index 5f467efb..ca96da0b 100644
--- a/input/storage.c
+++ b/input/storage.c
@@ -31,7 +31,6 @@
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
-#include <malloc.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/param.h>
@@ -43,6 +42,8 @@
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>
+#include <glib.h>
+
#include "textfile.h"
#include "logging.h"
@@ -64,12 +65,10 @@ int parse_stored_device_info(const char *str, struct hidp_connadd_req *req)
unsigned int vendor, product, version, subclass, country, parser, pos;
int i;
- desc = malloc(4096);
+ desc = g_try_malloc0(4096);
if (!desc)
return -ENOMEM;
- memset(desc, 0, 4096);
-
sscanf(str, "%04X:%04X:%04X %02X %02X %04X %4095s %08X %n",
&vendor, &product, &version, &subclass, &country,
&parser, desc, &req->flags, &pos);
@@ -84,9 +83,9 @@ int parse_stored_device_info(const char *str, struct hidp_connadd_req *req)
snprintf(req->name, 128, str + pos);
req->rd_size = strlen(desc) / 2;
- req->rd_data = malloc(req->rd_size);
+ req->rd_data = g_try_malloc0(req->rd_size);
if (!req->rd_data) {
- free(desc);
+ g_free(desc);
return -ENOMEM;
}
@@ -96,7 +95,7 @@ int parse_stored_device_info(const char *str, struct hidp_connadd_req *req)
req->rd_data[i] = (uint8_t) strtol(tmp, NULL, 16);
}
- free(desc);
+ g_free(desc);
return 0;
}
@@ -143,17 +142,16 @@ int store_device_info(bdaddr_t *src, bdaddr_t *dst, struct hidp_connadd_req *req
create_filename(filename, PATH_MAX, src, "hidd");
size = 15 + 3 + 3 + 5 + (req->rd_size * 2) + 1 + 9 + strlen(req->name) + 2;
- str = malloc(size);
+ str = g_try_malloc0(size);
if (!str)
return -ENOMEM;
- desc = malloc((req->rd_size * 2) + 1);
+ desc = g_try_malloc0((req->rd_size * 2) + 1);
if (!desc) {
- free(str);
+ g_free(str);
return -ENOMEM;
}
- memset(desc, 0, (req->rd_size * 2) + 1);
for (i = 0; i < req->rd_size; i++)
sprintf(desc + (i * 2), "%2.2X", req->rd_data[i]);
@@ -162,7 +160,7 @@ int store_device_info(bdaddr_t *src, bdaddr_t *dst, struct hidp_connadd_req *req
req->subclass, req->country, req->parser, desc,
req->flags, req->name);
- free(desc);
+ g_free(desc);
create_file(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
@@ -170,7 +168,7 @@ int store_device_info(bdaddr_t *src, bdaddr_t *dst, struct hidp_connadd_req *req
err = textfile_put(filename, addr, str);
- free(str);
+ g_free(str);
return err;
}
@@ -194,7 +192,7 @@ int encrypt_link(bdaddr_t *src, bdaddr_t *dst)
free(str);
- cr = malloc(sizeof(*cr) + sizeof(struct hci_conn_info));
+ cr = g_try_malloc0(sizeof(*cr) + sizeof(struct hci_conn_info));
if (!cr)
return -ENOMEM;
@@ -202,17 +200,16 @@ int encrypt_link(bdaddr_t *src, bdaddr_t *dst)
dev_id = hci_devid(addr);
if (dev_id < 0) {
- free(cr);
+ g_free(cr);
return -errno;
}
dd = hci_open_dev(dev_id);
if (dd < 0) {
- free(cr);
+ g_free(cr);
return -errno;
}
- memset(cr, 0, sizeof(*cr) + sizeof(struct hci_conn_info));
bacpy(&cr->bdaddr, dst);
cr->type = ACL_LINK;
@@ -237,14 +234,14 @@ int encrypt_link(bdaddr_t *src, bdaddr_t *dst)
}
done:
- free(cr);
+ g_free(cr);
hci_close_dev(dd);
return 0;
fail:
- free(cr);
+ g_free(cr);
err = errno;
hci_close_dev(dd);