2011-06-17 16:35:11 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
|
|
* as published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
#include "ubusd.h"
|
|
|
|
#include "ubusd_obj.h"
|
|
|
|
|
|
|
|
struct avl_tree obj_types;
|
|
|
|
struct avl_tree objects;
|
|
|
|
struct avl_tree path;
|
|
|
|
|
|
|
|
static void ubus_unref_object_type(struct ubus_object_type *type)
|
|
|
|
{
|
|
|
|
struct ubus_method *m;
|
|
|
|
|
|
|
|
if (--type->refcount > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (!list_empty(&type->methods)) {
|
|
|
|
m = list_first_entry(&type->methods, struct ubus_method, list);
|
|
|
|
list_del(&m->list);
|
|
|
|
free(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
ubus_free_id(&obj_types, &type->id);
|
|
|
|
free(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool ubus_create_obj_method(struct ubus_object_type *type, struct blob_attr *attr)
|
|
|
|
{
|
|
|
|
struct ubus_method *m;
|
|
|
|
int bloblen = blob_raw_len(attr);
|
|
|
|
|
|
|
|
m = calloc(1, sizeof(*m) + bloblen);
|
|
|
|
if (!m)
|
|
|
|
return false;
|
|
|
|
|
2011-03-27 01:39:14 +01:00
|
|
|
list_add_tail(&m->list, &type->methods);
|
2010-12-06 03:51:58 +01:00
|
|
|
memcpy(m->data, attr, bloblen);
|
|
|
|
m->name = blobmsg_name(m->data);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ubus_object_type *ubus_create_obj_type(struct blob_attr *sig)
|
|
|
|
{
|
|
|
|
struct ubus_object_type *type;
|
|
|
|
struct blob_attr *pos;
|
|
|
|
int rem;
|
|
|
|
|
|
|
|
type = calloc(1, sizeof(*type));
|
|
|
|
type->refcount = 1;
|
|
|
|
|
2011-02-05 00:21:27 +01:00
|
|
|
if (!ubus_alloc_id(&obj_types, &type->id, 0))
|
2010-12-06 03:51:58 +01:00
|
|
|
goto error_free;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&type->methods);
|
|
|
|
|
|
|
|
blob_for_each_attr(pos, sig, rem) {
|
|
|
|
if (!blobmsg_check_attr(pos, true))
|
|
|
|
goto error_unref;
|
|
|
|
|
|
|
|
if (!ubus_create_obj_method(type, pos))
|
|
|
|
goto error_unref;
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
|
|
|
|
error_unref:
|
|
|
|
ubus_unref_object_type(type);
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
error_free:
|
|
|
|
free(type);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ubus_object_type *ubus_get_obj_type(uint32_t obj_id)
|
|
|
|
{
|
|
|
|
struct ubus_object_type *type;
|
|
|
|
struct ubus_id *id;
|
|
|
|
|
|
|
|
id = ubus_find_id(&obj_types, obj_id);
|
|
|
|
if (!id)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
type = container_of(id, struct ubus_object_type, id);
|
|
|
|
type->refcount++;
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2011-02-05 00:21:27 +01:00
|
|
|
struct ubus_object *ubusd_create_object_internal(struct ubus_object_type *type, uint32_t id)
|
|
|
|
{
|
|
|
|
struct ubus_object *obj;
|
|
|
|
|
|
|
|
obj = calloc(1, sizeof(*obj));
|
|
|
|
if (!obj)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!ubus_alloc_id(&objects, &obj->id, id))
|
|
|
|
goto error_free;
|
|
|
|
|
|
|
|
obj->type = type;
|
|
|
|
INIT_LIST_HEAD(&obj->list);
|
2011-02-06 01:53:58 +01:00
|
|
|
INIT_LIST_HEAD(&obj->events);
|
2012-12-13 18:44:15 +01:00
|
|
|
INIT_LIST_HEAD(&obj->subscribers);
|
|
|
|
INIT_LIST_HEAD(&obj->target_list);
|
2011-02-05 01:29:52 +01:00
|
|
|
if (type)
|
|
|
|
type->refcount++;
|
2011-02-05 00:21:27 +01:00
|
|
|
|
|
|
|
return obj;
|
|
|
|
|
|
|
|
error_free:
|
|
|
|
free(obj);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
struct ubus_object *ubusd_create_object(struct ubus_client *cl, struct blob_attr **attr)
|
|
|
|
{
|
|
|
|
struct ubus_object *obj;
|
|
|
|
struct ubus_object_type *type = NULL;
|
|
|
|
|
|
|
|
if (attr[UBUS_ATTR_OBJTYPE])
|
2011-02-06 21:37:37 +01:00
|
|
|
type = ubus_get_obj_type(blob_get_u32(attr[UBUS_ATTR_OBJTYPE]));
|
2010-12-06 03:51:58 +01:00
|
|
|
else if (attr[UBUS_ATTR_SIGNATURE])
|
|
|
|
type = ubus_create_obj_type(attr[UBUS_ATTR_SIGNATURE]);
|
|
|
|
|
2011-02-05 00:21:27 +01:00
|
|
|
obj = ubusd_create_object_internal(type, 0);
|
2011-02-05 19:53:14 +01:00
|
|
|
if (type)
|
|
|
|
ubus_unref_object_type(type);
|
2011-02-05 00:21:27 +01:00
|
|
|
|
|
|
|
if (!obj)
|
|
|
|
return NULL;
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
if (attr[UBUS_ATTR_OBJPATH]) {
|
|
|
|
obj->path.key = strdup(blob_data(attr[UBUS_ATTR_OBJPATH]));
|
2011-02-05 00:21:27 +01:00
|
|
|
if (!obj->path.key)
|
|
|
|
goto free;
|
|
|
|
|
|
|
|
if (avl_insert(&path, &obj->path) != 0) {
|
2011-04-13 20:13:42 +02:00
|
|
|
free((void *) obj->path.key);
|
2011-02-05 00:21:27 +01:00
|
|
|
obj->path.key = NULL;
|
|
|
|
goto free;
|
|
|
|
}
|
2011-02-10 01:31:52 +01:00
|
|
|
ubusd_send_obj_event(obj, true);
|
2010-12-06 03:51:58 +01:00
|
|
|
}
|
|
|
|
|
2011-01-31 02:41:32 +01:00
|
|
|
obj->client = cl;
|
2010-12-06 03:51:58 +01:00
|
|
|
list_add(&obj->list, &cl->objects);
|
2011-02-05 19:53:14 +01:00
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
return obj;
|
|
|
|
|
2011-02-05 00:21:27 +01:00
|
|
|
free:
|
|
|
|
ubusd_free_object(obj);
|
2010-12-06 03:51:58 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-12-14 13:11:40 +01:00
|
|
|
void ubus_subscribe(struct ubus_object *obj, struct ubus_object *target)
|
2012-05-19 21:09:35 +02:00
|
|
|
{
|
2012-12-13 18:44:15 +01:00
|
|
|
struct ubus_subscription *s;
|
2012-12-14 13:00:49 +01:00
|
|
|
bool first = list_empty(&target->subscribers);
|
2012-05-19 21:09:35 +02:00
|
|
|
|
2012-12-14 13:11:40 +01:00
|
|
|
s = calloc(1, sizeof(*s));
|
2012-12-13 18:44:15 +01:00
|
|
|
if (!s)
|
2012-05-19 21:09:35 +02:00
|
|
|
return;
|
|
|
|
|
2012-12-13 18:44:15 +01:00
|
|
|
s->subscriber = obj;
|
|
|
|
s->target = target;
|
|
|
|
list_add(&s->list, &target->subscribers);
|
|
|
|
list_add(&s->target_list, &obj->target_list);
|
2012-12-14 13:00:49 +01:00
|
|
|
|
|
|
|
if (first)
|
|
|
|
ubus_notify_subscription(target);
|
2012-05-19 21:09:35 +02:00
|
|
|
}
|
|
|
|
|
2012-12-13 18:44:15 +01:00
|
|
|
void ubus_unsubscribe(struct ubus_subscription *s)
|
2012-05-19 21:09:35 +02:00
|
|
|
{
|
2012-12-14 13:00:49 +01:00
|
|
|
struct ubus_object *obj = s->target;
|
|
|
|
|
2012-12-13 18:44:15 +01:00
|
|
|
list_del(&s->list);
|
|
|
|
list_del(&s->target_list);
|
|
|
|
free(s);
|
2012-12-14 13:00:49 +01:00
|
|
|
|
|
|
|
if (list_empty(&obj->subscribers))
|
|
|
|
ubus_notify_subscription(obj);
|
2012-05-19 21:09:35 +02:00
|
|
|
}
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
void ubusd_free_object(struct ubus_object *obj)
|
|
|
|
{
|
2012-12-13 18:44:15 +01:00
|
|
|
struct ubus_subscription *s, *tmp;
|
2012-05-19 21:09:35 +02:00
|
|
|
|
2012-12-13 18:44:15 +01:00
|
|
|
list_for_each_entry_safe(s, tmp, &obj->target_list, target_list) {
|
|
|
|
ubus_unsubscribe(s);
|
2012-05-19 21:09:35 +02:00
|
|
|
}
|
2012-12-13 18:44:15 +01:00
|
|
|
list_for_each_entry_safe(s, tmp, &obj->subscribers, list) {
|
|
|
|
ubus_notify_unsubscribe(s);
|
2012-05-19 21:09:35 +02:00
|
|
|
}
|
|
|
|
|
2011-02-05 19:53:14 +01:00
|
|
|
ubusd_event_cleanup_object(obj);
|
2010-12-06 03:51:58 +01:00
|
|
|
if (obj->path.key) {
|
2011-02-10 01:31:52 +01:00
|
|
|
ubusd_send_obj_event(obj, false);
|
2010-12-06 03:51:58 +01:00
|
|
|
avl_delete(&path, &obj->path);
|
2011-04-13 20:13:42 +02:00
|
|
|
free((void *) obj->path.key);
|
2010-12-06 03:51:58 +01:00
|
|
|
}
|
2011-02-05 00:21:27 +01:00
|
|
|
if (!list_empty(&obj->list))
|
|
|
|
list_del(&obj->list);
|
2010-12-06 03:51:58 +01:00
|
|
|
ubus_free_id(&objects, &obj->id);
|
2011-02-05 01:29:52 +01:00
|
|
|
if (obj->type)
|
|
|
|
ubus_unref_object_type(obj->type);
|
2010-12-06 03:51:58 +01:00
|
|
|
free(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init ubusd_obj_init(void)
|
|
|
|
{
|
|
|
|
ubus_init_id_tree(&objects);
|
|
|
|
ubus_init_id_tree(&obj_types);
|
2011-02-05 01:29:52 +01:00
|
|
|
ubus_init_string_tree(&path, false);
|
|
|
|
ubusd_event_init();
|
2010-12-06 03:51:58 +01:00
|
|
|
}
|