summaryrefslogtreecommitdiffstats
path: root/meta-agl-core/files
AgeCommit message (Expand)AuthorFilesLines
2021-12-22meta-app-framework: tweak agl-driver definitionScott Murray1-0/+1
2021-11-04meta-agl-core: Update weston/agl-compositor initScott Murray2-2/+3
2021-04-26meta-pipewire: update to pipewire 0.3.25 and wireplumber masterGeorge Kiagiadakis2-0/+2
2020-12-17SPEC-3723: restructure meta-aglJan-Simon Moeller2-0/+154
121'>121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
/*
 * Copyright 2018 Konsulko Group
 * Author: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <pthread.h>
#include <semaphore.h>

#include <glib.h>
#include <stdlib.h>
#include <gio/gio.h>
#include <glib-object.h>

#include <json-c/json.h>

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

#include "network-api.h"
#include "network-common.h"

static const struct property_info manager_props[] = {
	{ .name = "State", 		.fmt = "s", },
	{ .name = "OfflineMode",	.fmt = "b", },
	{ .name = "SessionMode",	.fmt = "b", },
	{ },
};

static const struct property_info technology_props[] = {
	{ .name = "Name", 		.fmt = "s", },
	{ .name = "Type", 		.fmt = "s", },
	{ .name = "Powered", 		.fmt = "b", },
	{ .name = "Connected",		.fmt = "b", },
	{ .name = "Tethering",		.fmt = "b", },
	{ .name = "TetheringIdentifier",.fmt = "s", },
	{ .name = "TetheringPassphrase",.fmt = "s", },
	{ },
};

static const struct property_info service_props[] = {
	/* simple types */
	{ .name = "State",		.fmt = "s", },
	{ .name = "Error",		.fmt = "s", },
	{ .name = "Type",		.fmt = "s", },
	{ .name = "Name",		.fmt = "s", },
	{ .name = "Favorite",		.fmt = "b", },
	{ .name = "Immutable",		.fmt = "b", },
	{ .name = "AutoConnect",	.fmt = "b", },
	{ .name = "Strength",		.fmt = "y", },
	{ .name = "Security",		.fmt = "as", },
	{ .name = "Roaming",		.fmt = "b", },

	/* complex types with configuration (but no subtype) */
	{
		.name	= "Nameservers",
		.fmt	= "as",
		.flags	= PI_CONFIG,
	}, {
		.name	= "Timeservers",
		.fmt	= "as",
		.flags	= PI_CONFIG,
	}, {
		.name	= "Domains",
		.fmt	= "as",
		.flags	= PI_CONFIG,
	}, {
		.name	= "mDNS",
		.fmt	= "b",
		.flags	= PI_CONFIG,
	},

	/* complex types with subtypes */
	{
		.name	= "IPv4",
		.fmt	= "{sv}",
		.flags	= PI_CONFIG,
		.sub	= (const struct property_info []) {
			{ .name = "Method",		.fmt = "s", },
			{ .name = "Address",		.fmt = "s", },
			{ .name = "Netmask",		.fmt = "s", },
			{ .name = "Gateway",		.fmt = "s", },
			{ },
		},
	}, {
		.name	= "IPv6",
		.fmt	= "{sv}",
		.flags	= PI_CONFIG,
		.sub	= (const struct property_info []) {
			{ .name = "Method",		.fmt = "s", },
			{ .name = "Address",		.fmt = "s", },
			{ .name = "PrefixLength",	.fmt = "y", },
			{ .name = "Gateway",		.fmt = "s", },
			{ .name = "Privacy",		.fmt = "s", },
			{ },
		},
	}, {
		.name	= "Proxy",
		.fmt	= "{sv}",
		.flags	= PI_CONFIG,
		.sub	= (const struct property_info []) {
			{ .name = "Method",		.fmt = "s", },
			{ .name = "URL",		.fmt = "s", },
			{ .name = "Servers",		.fmt = "as", },
			{ .name = "Excludes",		.fmt = "as", },
			{ },
		},
	}, {
		.name	= "Ethernet",
		.fmt	= "{sv}",
		.sub	= (const struct property_info []) {
			{ .name = "Method",		.fmt = "s", },
			{ .name = "Interface",		.fmt = "s", },
			{ .name = "Address",		.fmt = "s", },
			{ .name = "MTU",		.fmt = "q", },
			{ },
		},
	}, {
		.name	= "Provider",
		.fmt	= "{sv}",
		.flags	= PI_CONFIG,
		.sub	= (const struct property_info []) {
			{ .name = "Host",		.fmt = "s", },
			{ .name = "Domain",		.fmt = "s", },
			{ .name = "Name",		.fmt = "s", },
			{ .name = "Type",		.fmt = "s", },
			{ },
		},
	},
	{ }
};

const struct property_info *connman_get_property_info(
		const char *access_type, GError **error)
{
	const struct property_info *pi = NULL;

	if (!strcmp(access_type, CONNMAN_AT_MANAGER))
		pi = manager_props;
	else if (!strcmp(access_type, CONNMAN_AT_TECHNOLOGY))
		pi = technology_props;
	else if (!strcmp(access_type, CONNMAN_AT_SERVICE))
		pi = service_props;
	else
		g_set_error(error, NB_ERROR, NB_ERROR_ILLEGAL_ARGUMENT,
				"illegal %s argument", access_type);
	return pi;
}

gboolean connman_property_dbus2json(const char *access_type,
		json_object *jprop, const gchar *key, GVariant *var,
		gboolean *is_config,
		GError **error)
{
	const struct property_info *pi;
	gboolean ret;

	*is_config = FALSE;
	pi = connman_get_property_info(access_type, error);
	if (!pi)
		return FALSE;

	ret = root_property_dbus2json(jprop, pi, key, var, is_config);
	if (!ret)
		g_set_error(error, NB_ERROR, NB_ERROR_UNKNOWN_PROPERTY,
				"unknown %s property %s",
				access_type, key);

	return ret;
}


void connman_decode_call_error(struct network_state *ns,
		const char *access_type, const char *type_arg,
		const char *method,
		GError **error)
{
	if (!error || !*error)
		return;

	if (strstr((*error)->message,
		   "org.freedesktop.DBus.Error.UnknownObject")) {

		if (!strcmp(method, "SetProperty") ||
		    !strcmp(method, "GetProperty") ||
		    !strcmp(method, "ClearProperty")) {

			g_clear_error(error);
			g_set_error(error, NB_ERROR,
					NB_ERROR_UNKNOWN_PROPERTY,
					"unknown %s property on %s",
					access_type, type_arg);

		} else if (!strcmp(method, "Connect") ||
			   !strcmp(method, "Disconnect") ||
			   !strcmp(method, "Remove") ||
			   !strcmp(method, "ResetCounters") ||
			   !strcmp(method, "MoveAfter") ||
			   !strcmp(method, "MoveBefore")) {

			g_clear_error(error);
			g_set_error(error, NB_ERROR,
					NB_ERROR_UNKNOWN_SERVICE,
					"unknown service %s",
					type_arg);

		} else if (!strcmp(method, "Scan")) {

			g_clear_error(error);
			g_set_error(error, NB_ERROR,
					NB_ERROR_UNKNOWN_TECHNOLOGY,
					"unknown technology %s",
					type_arg);
		}
	}
}

GVariant *connman_call(struct network_state *ns,
		const char *access_type, const char *type_arg,
		const char *method, GVariant *params, GError **error)
{
	const char *path;
	const char *interface;
	GVariant *reply;

	if (!type_arg && (!strcmp(access_type, CONNMAN_AT_TECHNOLOGY) ||
			  !strcmp(access_type, CONNMAN_AT_SERVICE))) {
		g_set_error(error, NB_ERROR, NB_ERROR_MISSING_ARGUMENT,
				"missing %s argument",
				access_type);
		return NULL;
	}

	if (!strcmp(access_type, CONNMAN_AT_MANAGER)) {
		path = CONNMAN_MANAGER_PATH;
		interface = CONNMAN_MANAGER_INTERFACE;
	} else if (!strcmp(access_type, CONNMAN_AT_TECHNOLOGY)) {
		path = CONNMAN_TECHNOLOGY_PATH(type_arg);
		interface = CONNMAN_TECHNOLOGY_INTERFACE;
	} else if (!strcmp(access_type, CONNMAN_AT_SERVICE)) {
		path = CONNMAN_SERVICE_PATH(type_arg);
		interface = CONNMAN_SERVICE_INTERFACE;
	} else {
		g_set_error(error, NB_ERROR, NB_ERROR_ILLEGAL_ARGUMENT,
				"illegal %s argument",
				access_type);
		return NULL;
	}

	reply = g_dbus_connection_call_sync(ns->conn,
			CONNMAN_SERVICE, path, interface, method, params,
			NULL, G_DBUS_CALL_FLAGS_NONE, DBUS_REPLY_TIMEOUT,
			NULL, error);
	connman_decode_call_error(ns, access_type, type_arg, method,
			error);
	if (!reply) {
		if (error && *error)
			g_dbus_error_strip_remote_error(*error);
		AFB_ERROR("Error calling %s%s%s %s method %s",
				access_type,
				type_arg ? "/" : "",
				type_arg ? type_arg : "",
				method,
				error && *error ? (*error)->message :
					"unspecified");
	}

	return reply;
}

static void connman_call_async_ready(GObject *source_object,
		GAsyncResult *res, gpointer user_data)
{
	struct connman_pending_work *cpw = user_data;
	struct network_state *ns = cpw->ns;
	GVariant *result;
	GError *error = NULL;

	result = g_dbus_connection_call_finish(ns->conn, res, &error);

	cpw->callback(cpw->user_data, result, &error);

	g_clear_error(&error);
	g_cancellable_reset(cpw->cancel);
	g_free(cpw);
}

void connman_cancel_call(struct network_state *ns,
		struct connman_pending_work *cpw)
{
	g_cancellable_cancel(cpw->cancel);
}

struct connman_pending_work *
connman_call_async(struct network_state *ns,
		const char *access_type, const char *type_arg,
		const char *method, GVariant *params, GError **error,
		void (*callback)(void *user_data, GVariant *result, GError **error),
		void *user_data)
{
	const char *path;
	const char *interface;
	struct connman_pending_work *cpw;

	if (!type_arg && (!strcmp(access_type, CONNMAN_AT_TECHNOLOGY) ||
			  !strcmp(access_type, CONNMAN_AT_SERVICE))) {
		g_set_error(error, NB_ERROR, NB_ERROR_MISSING_ARGUMENT,
				"missing %s argument",
				access_type);
		return NULL;
	}

	if (!strcmp(access_type, CONNMAN_AT_MANAGER)) {
		path = CONNMAN_MANAGER_PATH;
		interface = CONNMAN_MANAGER_INTERFACE;
	} else if (!strcmp(access_type, CONNMAN_AT_TECHNOLOGY)) {
		path = CONNMAN_TECHNOLOGY_PATH(type_arg);
		interface = CONNMAN_TECHNOLOGY_INTERFACE;
	} else if (!strcmp(access_type, CONNMAN_AT_SERVICE)) {
		path = CONNMAN_SERVICE_PATH(type_arg);
		interface = CONNMAN_SERVICE_INTERFACE;
	} else {
		g_set_error(error, NB_ERROR, NB_ERROR_ILLEGAL_ARGUMENT,
				"illegal %s argument",
				access_type);
		return NULL;
	}

	cpw = g_malloc(sizeof(*cpw));
	if (!cpw) {
		g_set_error(error, NB_ERROR, NB_ERROR_OUT_OF_MEMORY,
				"out of memory");
		return NULL;
	}
	cpw->ns = ns;
	cpw->user_data = user_data;
	cpw->cancel = g_cancellable_new();
	if (!cpw->cancel) {
		g_free(cpw);
		g_set_error(error, NB_ERROR, NB_ERROR_OUT_OF_MEMORY,
				"out of memory");
		return NULL;
	}
	cpw->callback = callback;

	g_dbus_connection_call(ns->conn,
			CONNMAN_SERVICE, path, interface, method, params,
			NULL,	/* reply type */
			G_DBUS_CALL_FLAGS_NONE, DBUS_REPLY_TIMEOUT,
			cpw->cancel,	/* cancellable? */
			connman_call_async_ready,
			cpw);

	return cpw;
}

json_object *connman_get_properties(struct network_state *ns,
		const char *access_type, const char *type_arg,
		GError **error)
{
	const struct property_info *pi = NULL;
	const char *method = NULL;
	GVariant *reply = NULL;
	GVariantIter *array, *array2;
	GVariant *var = NULL;
	const gchar *path = NULL;
	const gchar *key = NULL;
	const gchar *basename;
	json_object *jprop = NULL, *jresp = NULL, *jtype = NULL;
	gboolean is_config;

	pi = connman_get_property_info(access_type, error);
	if (!pi)
		return NULL;

	method = NULL;
	if (!strcmp(access_type, CONNMAN_AT_MANAGER))
		method = "GetProperties";
	else if (!strcmp(access_type, CONNMAN_AT_TECHNOLOGY))
		method = "GetTechnologies";
	else if (!strcmp(access_type, CONNMAN_AT_SERVICE))
		method = "GetServices";

	if (!method) {
		g_set_error(error, NB_ERROR, NB_ERROR_ILLEGAL_ARGUMENT,
				"illegal %s argument",
				access_type);
		return NULL;
	}

	reply = connman_call(ns, CONNMAN_AT_MANAGER, NULL,
			method, NULL, error);
	if (!reply)
		return NULL;

	if (!strcmp(access_type, CONNMAN_AT_MANAGER)) {
		jprop = json_object_new_object();
		g_variant_get(reply, "(a{sv})", &array);
		while (g_variant_iter_loop(array, "{sv}", &key, &var)) {
			root_property_dbus2json(jprop, pi,
					key, var, &is_config);
		}
		g_variant_iter_free(array);
		g_variant_unref(reply);
		jresp = jprop;
	} else {
		if (!type_arg)
			jresp = json_object_new_array();

		g_variant_get(reply, "(a(oa{sv}))", &array);
		while (g_variant_iter_loop(array, "(oa{sv})", &path, &array2)) {

			/* a basename must exist and be at least 1 character wide */
			basename = strrchr(path, '/');
			if (!basename || strlen(basename) <= 1)
				continue;
			basename++;

			if (!type_arg) {
				jtype = json_object_new_object();
				json_object_object_add(jtype, access_type,
						json_object_new_string(basename));
			} else if (g_strcmp0(basename, type_arg))
				continue;

			jprop = json_object_new_object();
			while (g_variant_iter_loop(array2, "{sv}", &key, &var)) {
				root_property_dbus2json(jprop, pi,
						key, var, &is_config);
			}

			if (!type_arg) {
				json_object_object_add(jtype, "properties", jprop);
				json_object_array_add(jresp, jtype);
			}
		}
		g_variant_iter_free(array);
		g_variant_unref(reply);

		if (type_arg && jprop)
			jresp = jprop;

	}

	if (!jresp) {
		if (type_arg)
			g_set_error(error, NB_ERROR, NB_ERROR_ILLEGAL_ARGUMENT,
					"Bad %s %s", access_type, type_arg);
		else
			g_set_error(error, NB_ERROR, NB_ERROR_ILLEGAL_ARGUMENT,
					"No %s", access_type);
	}

	return jresp;
}

json_object *connman_get_property(struct network_state *ns,
		const char *access_type, const char *type_arg,
		gboolean is_json_name, const char *name, GError **error)
{
	const struct property_info *pi;
	json_object *jprop, *jval;

	pi = connman_get_property_info(access_type, error);
	if (!pi)
		return NULL;

	jprop = connman_get_properties(ns, access_type, type_arg, error);
	if (!jprop)
		return NULL;

	jval = get_named_property(pi, is_json_name, name, jprop);
	json_object_put(jprop);

	if (!jval)
		g_set_error(error, NB_ERROR, NB_ERROR_BAD_PROPERTY,
				"Bad property %s on %s%s%s", name,
				access_type,
				type_arg ? "/" : "",
				type_arg ? type_arg : "");
	return jval;
}

/* NOTE: jval is consumed */
gboolean connman_set_property(struct network_state *ns,
		const char *access_type, const char *type_arg,
		gboolean is_json_name, const char *name, json_object *jval,
		GError **error)
{
	const struct property_info *pi;
	GVariant *reply, *arg;
	gboolean is_config;
	gchar *propname;

	/* get start of properties */
	pi = connman_get_property_info(access_type, error);
	if (!pi)
		return FALSE;

	/* get actual property */
	pi = property_by_name(pi, is_json_name, name, &is_config);
	if (!pi) {
		g_set_error(error, NB_ERROR, NB_ERROR_UNKNOWN_PROPERTY,
				"unknown property with name %s", name);
		json_object_put(jval);
		return FALSE;
	}

	/* convert to gvariant */
	arg = property_json_to_gvariant(pi, NULL, NULL, jval, error);

	/* we don't need this anymore */
	json_object_put(jval);
	jval = NULL;

	/* no variant? error */
	if (!arg)
		return FALSE;

	if (!is_config)
		propname = g_strdup(pi->name);
	else
		propname = configuration_dbus_name(pi->name);

	reply = connman_call(ns, access_type, type_arg,
			"SetProperty",
			g_variant_new("(sv)", propname, arg),
			error);

	g_free(propname);

	if (!reply)
		return FALSE;

	g_variant_unref(reply);

	return TRUE;
}