AllCommands.cxx 11.9 KB
Newer Older
1
/*
2
 * Copyright (C) 2003-2012 The Music Player Daemon Project
3
 * http://www.musicpd.org
Warren Dukes's avatar
Warren Dukes committed
4 5 6 7 8 9 10 11 12 13
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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.
14 15 16 17
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Warren Dukes's avatar
Warren Dukes committed
18 19
 */

20
#include "config.h"
Max Kellermann's avatar
Max Kellermann committed
21
#include "AllCommands.hxx"
Warren Dukes's avatar
Warren Dukes committed
22
#include "command.h"
23 24 25
#include "QueueCommands.hxx"
#include "PlayerCommands.hxx"
#include "PlaylistCommands.hxx"
26
#include "DatabaseCommands.hxx"
27 28
#include "OutputCommands.hxx"
#include "MessageCommands.hxx"
29
#include "OtherCommands.hxx"
30
#include "Permission.hxx"
Max Kellermann's avatar
Max Kellermann committed
31
#include "tag.h"
Max Kellermann's avatar
Max Kellermann committed
32 33
#include "protocol/Result.hxx"
#include "Client.hxx"
34
#include "util/Tokenizer.hxx"
Warren Dukes's avatar
Warren Dukes committed
35

36
#ifdef ENABLE_SQLITE
Max Kellermann's avatar
Max Kellermann committed
37 38
#include "StickerCommands.hxx"
#include "StickerDatabase.hxx"
39 40
#endif

Max Kellermann's avatar
Max Kellermann committed
41
#include <assert.h>
42
#include <string.h>
Warren Dukes's avatar
Warren Dukes committed
43

44 45 46 47 48 49 50
/*
 * The most we ever use is for search/find, and that limits it to the
 * number of tags we can have.  Add one for the command, and one extra
 * to catch errors clients may send us
 */
#define COMMAND_ARGV_MAX	(2+(TAG_NUM_OF_ITEM_TYPES*2))

Warren Dukes's avatar
Warren Dukes committed
51 52
/* if min: -1 don't check args *
 * if max: -1 no max args      */
53
struct command {
Max Kellermann's avatar
Max Kellermann committed
54
	const char *cmd;
Max Kellermann's avatar
Max Kellermann committed
55
	unsigned permission;
Avuton Olrich's avatar
Avuton Olrich committed
56 57
	int min;
	int max;
58
	enum command_return (*handler)(Client *client, int argc, char **argv);
59 60
};

61
/* don't be fooled, this is the command handler for "commands" command */
62
static enum command_return
63
handle_commands(Client *client,
64
		G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[]);
65

66
static enum command_return
67
handle_not_commands(Client *client,
68
		    G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[]);
69

70 71 72 73 74 75
/**
 * The command registry.
 *
 * This array must be sorted!
 */
static const struct command commands[] = {
Max Kellermann's avatar
Max Kellermann committed
76 77
	{ "add", PERMISSION_ADD, 1, 1, handle_add },
	{ "addid", PERMISSION_ADD, 1, 2, handle_addid },
78
	{ "channels", PERMISSION_READ, 0, 0, handle_channels },
Max Kellermann's avatar
Max Kellermann committed
79 80 81 82
	{ "clear", PERMISSION_CONTROL, 0, 0, handle_clear },
	{ "clearerror", PERMISSION_CONTROL, 0, 0, handle_clearerror },
	{ "close", PERMISSION_NONE, -1, -1, handle_close },
	{ "commands", PERMISSION_NONE, 0, 0, handle_commands },
83
	{ "config", PERMISSION_ADMIN, 0, 0, handle_config },
84
	{ "consume", PERMISSION_CONTROL, 1, 1, handle_consume },
Max Kellermann's avatar
Max Kellermann committed
85 86 87
	{ "count", PERMISSION_READ, 2, -1, handle_count },
	{ "crossfade", PERMISSION_CONTROL, 1, 1, handle_crossfade },
	{ "currentsong", PERMISSION_READ, 0, 0, handle_currentsong },
88
	{ "decoders", PERMISSION_READ, 0, 0, handle_decoders },
Max Kellermann's avatar
Max Kellermann committed
89 90 91 92 93
	{ "delete", PERMISSION_CONTROL, 1, 1, handle_delete },
	{ "deleteid", PERMISSION_CONTROL, 1, 1, handle_deleteid },
	{ "disableoutput", PERMISSION_ADMIN, 1, 1, handle_disableoutput },
	{ "enableoutput", PERMISSION_ADMIN, 1, 1, handle_enableoutput },
	{ "find", PERMISSION_READ, 2, -1, handle_find },
94
	{ "findadd", PERMISSION_READ, 2, -1, handle_findadd},
95
	{ "idle", PERMISSION_READ, 0, -1, handle_idle },
Max Kellermann's avatar
Max Kellermann committed
96 97 98 99 100 101 102
	{ "kill", PERMISSION_ADMIN, -1, -1, handle_kill },
	{ "list", PERMISSION_READ, 1, -1, handle_list },
	{ "listall", PERMISSION_READ, 0, 1, handle_listall },
	{ "listallinfo", PERMISSION_READ, 0, 1, handle_listallinfo },
	{ "listplaylist", PERMISSION_READ, 1, 1, handle_listplaylist },
	{ "listplaylistinfo", PERMISSION_READ, 1, 1, handle_listplaylistinfo },
	{ "listplaylists", PERMISSION_READ, 0, 0, handle_listplaylists },
103
	{ "load", PERMISSION_ADD, 1, 2, handle_load },
Max Kellermann's avatar
Max Kellermann committed
104
	{ "lsinfo", PERMISSION_READ, 0, 1, handle_lsinfo },
105 106
	{ "mixrampdb", PERMISSION_CONTROL, 1, 1, handle_mixrampdb },
	{ "mixrampdelay", PERMISSION_CONTROL, 1, 1, handle_mixrampdelay },
Max Kellermann's avatar
Max Kellermann committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	{ "move", PERMISSION_CONTROL, 2, 2, handle_move },
	{ "moveid", PERMISSION_CONTROL, 2, 2, handle_moveid },
	{ "next", PERMISSION_CONTROL, 0, 0, handle_next },
	{ "notcommands", PERMISSION_NONE, 0, 0, handle_not_commands },
	{ "outputs", PERMISSION_READ, 0, 0, handle_devices },
	{ "password", PERMISSION_NONE, 1, 1, handle_password },
	{ "pause", PERMISSION_CONTROL, 0, 1, handle_pause },
	{ "ping", PERMISSION_NONE, 0, 0, handle_ping },
	{ "play", PERMISSION_CONTROL, 0, 1, handle_play },
	{ "playid", PERMISSION_CONTROL, 0, 1, handle_playid },
	{ "playlist", PERMISSION_READ, 0, 0, handle_playlist },
	{ "playlistadd", PERMISSION_CONTROL, 2, 2, handle_playlistadd },
	{ "playlistclear", PERMISSION_CONTROL, 1, 1, handle_playlistclear },
	{ "playlistdelete", PERMISSION_CONTROL, 2, 2, handle_playlistdelete },
	{ "playlistfind", PERMISSION_READ, 2, -1, handle_playlistfind },
	{ "playlistid", PERMISSION_READ, 0, 1, handle_playlistid },
	{ "playlistinfo", PERMISSION_READ, 0, 1, handle_playlistinfo },
	{ "playlistmove", PERMISSION_CONTROL, 3, 3, handle_playlistmove },
	{ "playlistsearch", PERMISSION_READ, 2, -1, handle_playlistsearch },
	{ "plchanges", PERMISSION_READ, 1, 1, handle_plchanges },
	{ "plchangesposid", PERMISSION_READ, 1, 1, handle_plchangesposid },
	{ "previous", PERMISSION_CONTROL, 0, 0, handle_previous },
129 130
	{ "prio", PERMISSION_CONTROL, 2, -1, handle_prio },
	{ "prioid", PERMISSION_CONTROL, 2, -1, handle_prioid },
Max Kellermann's avatar
Max Kellermann committed
131
	{ "random", PERMISSION_CONTROL, 1, 1, handle_random },
132
	{ "readmessages", PERMISSION_READ, 0, 0, handle_read_messages },
Max Kellermann's avatar
Max Kellermann committed
133 134
	{ "rename", PERMISSION_CONTROL, 2, 2, handle_rename },
	{ "repeat", PERMISSION_CONTROL, 1, 1, handle_repeat },
135 136 137 138
	{ "replay_gain_mode", PERMISSION_CONTROL, 1, 1,
	  handle_replay_gain_mode },
	{ "replay_gain_status", PERMISSION_READ, 0, 0,
	  handle_replay_gain_status },
139
	{ "rescan", PERMISSION_CONTROL, 0, 1, handle_rescan },
Max Kellermann's avatar
Max Kellermann committed
140 141 142
	{ "rm", PERMISSION_CONTROL, 1, 1, handle_rm },
	{ "save", PERMISSION_CONTROL, 1, 1, handle_save },
	{ "search", PERMISSION_READ, 2, -1, handle_search },
143 144
	{ "searchadd", PERMISSION_ADD, 2, -1, handle_searchadd },
	{ "searchaddpl", PERMISSION_CONTROL, 3, -1, handle_searchaddpl },
Max Kellermann's avatar
Max Kellermann committed
145
	{ "seek", PERMISSION_CONTROL, 2, 2, handle_seek },
146
	{ "seekcur", PERMISSION_CONTROL, 1, 1, handle_seekcur },
Max Kellermann's avatar
Max Kellermann committed
147
	{ "seekid", PERMISSION_CONTROL, 2, 2, handle_seekid },
148
	{ "sendmessage", PERMISSION_CONTROL, 2, 2, handle_send_message },
Max Kellermann's avatar
Max Kellermann committed
149
	{ "setvol", PERMISSION_CONTROL, 1, 1, handle_setvol },
150
	{ "shuffle", PERMISSION_CONTROL, 0, 1, handle_shuffle },
151
	{ "single", PERMISSION_CONTROL, 1, 1, handle_single },
Max Kellermann's avatar
Max Kellermann committed
152 153
	{ "stats", PERMISSION_READ, 0, 0, handle_stats },
	{ "status", PERMISSION_READ, 0, 0, handle_status },
154 155 156
#ifdef ENABLE_SQLITE
	{ "sticker", PERMISSION_ADMIN, 3, -1, handle_sticker },
#endif
Max Kellermann's avatar
Max Kellermann committed
157
	{ "stop", PERMISSION_CONTROL, 0, 0, handle_stop },
158
	{ "subscribe", PERMISSION_READ, 1, 1, handle_subscribe },
Max Kellermann's avatar
Max Kellermann committed
159 160 161
	{ "swap", PERMISSION_CONTROL, 2, 2, handle_swap },
	{ "swapid", PERMISSION_CONTROL, 2, 2, handle_swapid },
	{ "tagtypes", PERMISSION_READ, 0, 0, handle_tagtypes },
162
	{ "unsubscribe", PERMISSION_READ, 1, 1, handle_unsubscribe },
163
	{ "update", PERMISSION_CONTROL, 0, 1, handle_update },
Max Kellermann's avatar
Max Kellermann committed
164
	{ "urlhandlers", PERMISSION_READ, 0, 0, handle_urlhandlers },
165 166 167 168
};

static const unsigned num_commands = sizeof(commands) / sizeof(commands[0]);

169
static bool
170
command_available(G_GNUC_UNUSED const struct command *cmd)
171 172 173 174 175 176 177 178 179
{
#ifdef ENABLE_SQLITE
	if (strcmp(cmd->cmd, "sticker") == 0)
		return sticker_enabled();
#endif

	return true;
}

180
/* don't be fooled, this is the command handler for "commands" command */
181
static enum command_return
182
handle_commands(Client *client,
183
		G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
184 185 186 187 188 189 190
{
	const unsigned permission = client_get_permission(client);
	const struct command *cmd;

	for (unsigned i = 0; i < num_commands; ++i) {
		cmd = &commands[i];

191 192
		if (cmd->permission == (permission & cmd->permission) &&
		    command_available(cmd))
193 194 195
			client_printf(client, "command: %s\n", cmd->cmd);
	}

196
	return COMMAND_RETURN_OK;
197 198
}

199
static enum command_return
200
handle_not_commands(Client *client,
201
		    G_GNUC_UNUSED int argc, G_GNUC_UNUSED char *argv[])
202 203 204 205 206 207 208
{
	const unsigned permission = client_get_permission(client);
	const struct command *cmd;

	for (unsigned i = 0; i < num_commands; ++i) {
		cmd = &commands[i];

Max Kellermann's avatar
Max Kellermann committed
209
		if (cmd->permission != (permission & cmd->permission))
210 211 212
			client_printf(client, "command: %s\n", cmd->cmd);
	}

213
	return COMMAND_RETURN_OK;
214 215
}

Max Kellermann's avatar
Max Kellermann committed
216
void command_init(void)
Avuton Olrich's avatar
Avuton Olrich committed
217
{
218 219 220 221 222
#ifndef NDEBUG
	/* ensure that the command list is sorted */
	for (unsigned i = 0; i < num_commands - 1; ++i)
		assert(strcmp(commands[i].cmd, commands[i + 1].cmd) < 0);
#endif
Avuton Olrich's avatar
Avuton Olrich committed
223 224
}

Max Kellermann's avatar
Max Kellermann committed
225
void command_finish(void)
Avuton Olrich's avatar
Avuton Olrich committed
226
{
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
}

static const struct command *
command_lookup(const char *name)
{
	unsigned a = 0, b = num_commands, i;
	int cmp;

	/* binary search */
	do {
		i = (a + b) / 2;

		cmp = strcmp(name, commands[i].cmd);
		if (cmp == 0)
			return &commands[i];
		else if (cmp < 0)
			b = i;
		else if (cmp > 0)
			a = i + 1;
	} while (a < b);

	return NULL;
Avuton Olrich's avatar
Avuton Olrich committed
249 250
}

251
static bool
252
command_check_request(const struct command *cmd, Client *client,
Max Kellermann's avatar
Max Kellermann committed
253
		      unsigned permission, int argc, char *argv[])
Avuton Olrich's avatar
Avuton Olrich committed
254 255 256
{
	int min = cmd->min + 1;
	int max = cmd->max + 1;
Warren Dukes's avatar
Warren Dukes committed
257

Max Kellermann's avatar
Max Kellermann committed
258
	if (cmd->permission != (permission & cmd->permission)) {
259 260 261 262
		if (client != NULL)
			command_error(client, ACK_ERROR_PERMISSION,
				      "you don't have permission for \"%s\"",
				      cmd->cmd);
263
		return false;
Warren Dukes's avatar
Warren Dukes committed
264 265
	}

Avuton Olrich's avatar
Avuton Olrich committed
266
	if (min == 0)
267
		return true;
Warren Dukes's avatar
Warren Dukes committed
268

Avuton Olrich's avatar
Avuton Olrich committed
269
	if (min == max && max != argc) {
270 271 272 273
		if (client != NULL)
			command_error(client, ACK_ERROR_ARG,
				      "wrong number of arguments for \"%s\"",
				      argv[0]);
274
		return false;
Avuton Olrich's avatar
Avuton Olrich committed
275
	} else if (argc < min) {
276 277 278
		if (client != NULL)
			command_error(client, ACK_ERROR_ARG,
				      "too few arguments for \"%s\"", argv[0]);
279
		return false;
Avuton Olrich's avatar
Avuton Olrich committed
280
	} else if (argc > max && max /* != 0 */ ) {
281 282 283
		if (client != NULL)
			command_error(client, ACK_ERROR_ARG,
				      "too many arguments for \"%s\"", argv[0]);
284
		return false;
Avuton Olrich's avatar
Avuton Olrich committed
285
	} else
286
		return true;
Warren Dukes's avatar
Warren Dukes committed
287 288
}

289
static const struct command *
290
command_checked_lookup(Client *client, unsigned permission,
Max Kellermann's avatar
Max Kellermann committed
291
		       int argc, char *argv[])
Warren Dukes's avatar
Warren Dukes committed
292
{
293
	const struct command *cmd;
Warren Dukes's avatar
Warren Dukes committed
294

295
	current_command = "";
Warren Dukes's avatar
Warren Dukes committed
296

297
	if (argc == 0)
Avuton Olrich's avatar
Avuton Olrich committed
298
		return NULL;
Warren Dukes's avatar
Warren Dukes committed
299

300 301
	cmd = command_lookup(argv[0]);
	if (cmd == NULL) {
302 303 304
		if (client != NULL)
			command_error(client, ACK_ERROR_UNKNOWN,
				      "unknown command \"%s\"", argv[0]);
Avuton Olrich's avatar
Avuton Olrich committed
305 306
		return NULL;
	}
Warren Dukes's avatar
Warren Dukes committed
307

Warren Dukes's avatar
Warren Dukes committed
308 309
	current_command = cmd->cmd;

310
	if (!command_check_request(cmd, client, permission, argc, argv))
311 312 313 314 315
		return NULL;

	return cmd;
}

316
enum command_return
317
command_process(Client *client, unsigned num, char *line)
318
{
319
	GError *error = NULL;
320 321
	int argc;
	char *argv[COMMAND_ARGV_MAX] = { NULL };
322
	const struct command *cmd;
323
	enum command_return ret = COMMAND_RETURN_ERROR;
324

325 326
	command_list_num = num;

327 328
	/* get the command name (first word on the line) */

329 330
	Tokenizer tokenizer(line);
	argv[0] = tokenizer.NextWord(&error);
331 332
	if (argv[0] == NULL) {
		current_command = "";
333
		if (tokenizer.IsEnd())
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
			command_error(client, ACK_ERROR_UNKNOWN,
				      "No command given");
		else {
			command_error(client, ACK_ERROR_UNKNOWN,
				      "%s", error->message);
			g_error_free(error);
		}
		current_command = NULL;

		return COMMAND_RETURN_ERROR;
	}

	argc = 1;

	/* now parse the arguments (quoted or unquoted) */

	while (argc < (int)G_N_ELEMENTS(argv) &&
	       (argv[argc] =
352
		tokenizer.NextParam(&error)) != NULL)
353 354 355 356 357 358 359 360 361 362 363 364 365
		++argc;

	/* some error checks; we have to set current_command because
	   command_error() expects it to be set */

	current_command = argv[0];

	if (argc >= (int)G_N_ELEMENTS(argv)) {
		command_error(client, ACK_ERROR_ARG, "Too many arguments");
		current_command = NULL;
		return COMMAND_RETURN_ERROR;
	}

366
	if (!tokenizer.IsEnd()) {
367 368 369 370 371 372 373 374
		command_error(client, ACK_ERROR_ARG,
			      "%s", error->message);
		current_command = NULL;
		g_error_free(error);
		return COMMAND_RETURN_ERROR;
	}

	/* look up and invoke the command handler */
375

Max Kellermann's avatar
Max Kellermann committed
376 377
	cmd = command_checked_lookup(client, client_get_permission(client),
				     argc, argv);
Eric Wong's avatar
Eric Wong committed
378 379
	if (cmd)
		ret = cmd->handler(client, argc, argv);
Warren Dukes's avatar
Warren Dukes committed
380

Warren Dukes's avatar
Warren Dukes committed
381
	current_command = NULL;
Max Kellermann's avatar
Max Kellermann committed
382
	command_list_num = 0;
Warren Dukes's avatar
Warren Dukes committed
383

384
	return ret;
Warren Dukes's avatar
Warren Dukes committed
385
}