Fix leak in format_get_command.
[tmux-openbsd.git] / cmd.c
blob2edda6330cfeb02af8a80df5d802cb1bc889d31f
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
20 #include <sys/time.h>
22 #include <fnmatch.h>
23 #include <paths.h>
24 #include <pwd.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <unistd.h>
29 #include "tmux.h"
31 const struct cmd_entry *cmd_table[] = {
32 &cmd_attach_session_entry,
33 &cmd_bind_key_entry,
34 &cmd_break_pane_entry,
35 &cmd_capture_pane_entry,
36 &cmd_choose_buffer_entry,
37 &cmd_choose_client_entry,
38 &cmd_choose_list_entry,
39 &cmd_choose_session_entry,
40 &cmd_choose_tree_entry,
41 &cmd_choose_window_entry,
42 &cmd_clear_history_entry,
43 &cmd_clock_mode_entry,
44 &cmd_command_prompt_entry,
45 &cmd_confirm_before_entry,
46 &cmd_copy_mode_entry,
47 &cmd_delete_buffer_entry,
48 &cmd_detach_client_entry,
49 &cmd_display_message_entry,
50 &cmd_display_panes_entry,
51 &cmd_find_window_entry,
52 &cmd_has_session_entry,
53 &cmd_if_shell_entry,
54 &cmd_join_pane_entry,
55 &cmd_kill_pane_entry,
56 &cmd_kill_server_entry,
57 &cmd_kill_session_entry,
58 &cmd_kill_window_entry,
59 &cmd_last_pane_entry,
60 &cmd_last_window_entry,
61 &cmd_link_window_entry,
62 &cmd_list_buffers_entry,
63 &cmd_list_clients_entry,
64 &cmd_list_commands_entry,
65 &cmd_list_keys_entry,
66 &cmd_list_panes_entry,
67 &cmd_list_sessions_entry,
68 &cmd_list_windows_entry,
69 &cmd_load_buffer_entry,
70 &cmd_lock_client_entry,
71 &cmd_lock_server_entry,
72 &cmd_lock_session_entry,
73 &cmd_move_pane_entry,
74 &cmd_move_window_entry,
75 &cmd_new_session_entry,
76 &cmd_new_window_entry,
77 &cmd_next_layout_entry,
78 &cmd_next_window_entry,
79 &cmd_paste_buffer_entry,
80 &cmd_pipe_pane_entry,
81 &cmd_previous_layout_entry,
82 &cmd_previous_window_entry,
83 &cmd_refresh_client_entry,
84 &cmd_rename_session_entry,
85 &cmd_rename_window_entry,
86 &cmd_resize_pane_entry,
87 &cmd_respawn_pane_entry,
88 &cmd_respawn_window_entry,
89 &cmd_rotate_window_entry,
90 &cmd_run_shell_entry,
91 &cmd_save_buffer_entry,
92 &cmd_select_layout_entry,
93 &cmd_select_pane_entry,
94 &cmd_select_window_entry,
95 &cmd_send_keys_entry,
96 &cmd_send_prefix_entry,
97 &cmd_server_info_entry,
98 &cmd_set_buffer_entry,
99 &cmd_set_environment_entry,
100 &cmd_set_option_entry,
101 &cmd_set_window_option_entry,
102 &cmd_show_buffer_entry,
103 &cmd_show_environment_entry,
104 &cmd_show_messages_entry,
105 &cmd_show_options_entry,
106 &cmd_show_window_options_entry,
107 &cmd_source_file_entry,
108 &cmd_split_window_entry,
109 &cmd_start_server_entry,
110 &cmd_suspend_client_entry,
111 &cmd_swap_pane_entry,
112 &cmd_swap_window_entry,
113 &cmd_switch_client_entry,
114 &cmd_unbind_key_entry,
115 &cmd_unlink_window_entry,
116 &cmd_wait_for_entry,
117 NULL
120 int cmd_session_better(struct session *, struct session *, int);
121 struct session *cmd_choose_session_list(struct sessionslist *);
122 struct session *cmd_choose_session(int);
123 struct client *cmd_choose_client(struct clients *);
124 struct client *cmd_lookup_client(const char *);
125 struct session *cmd_lookup_session(const char *, int *);
126 struct session *cmd_lookup_session_id(const char *);
127 struct winlink *cmd_lookup_window(struct session *, const char *, int *);
128 int cmd_lookup_index(struct session *, const char *, int *);
129 struct window_pane *cmd_lookup_paneid(const char *);
130 struct winlink *cmd_lookup_winlink_windowid(struct session *, const char *);
131 struct window *cmd_lookup_windowid(const char *);
132 struct session *cmd_window_session(struct cmd_q *, struct window *,
133 struct winlink **);
134 struct winlink *cmd_find_window_offset(const char *, struct session *, int *);
135 int cmd_find_index_offset(const char *, struct session *, int *);
136 struct window_pane *cmd_find_pane_offset(const char *, struct winlink *);
139 cmd_pack_argv(int argc, char **argv, char *buf, size_t len)
141 size_t arglen;
142 int i;
144 *buf = '\0';
145 for (i = 0; i < argc; i++) {
146 if (strlcpy(buf, argv[i], len) >= len)
147 return (-1);
148 arglen = strlen(argv[i]) + 1;
149 buf += arglen;
150 len -= arglen;
153 return (0);
157 cmd_unpack_argv(char *buf, size_t len, int argc, char ***argv)
159 int i;
160 size_t arglen;
162 if (argc == 0)
163 return (0);
164 *argv = xcalloc(argc, sizeof **argv);
166 buf[len - 1] = '\0';
167 for (i = 0; i < argc; i++) {
168 if (len == 0) {
169 cmd_free_argv(argc, *argv);
170 return (-1);
173 arglen = strlen(buf) + 1;
174 (*argv)[i] = xstrdup(buf);
175 buf += arglen;
176 len -= arglen;
179 return (0);
182 char **
183 cmd_copy_argv(int argc, char *const *argv)
185 char **new_argv;
186 int i;
188 if (argc == 0)
189 return (NULL);
190 new_argv = xcalloc(argc, sizeof *new_argv);
191 for (i = 0; i < argc; i++) {
192 if (argv[i] != NULL)
193 new_argv[i] = xstrdup(argv[i]);
195 return (new_argv);
198 void
199 cmd_free_argv(int argc, char **argv)
201 int i;
203 if (argc == 0)
204 return;
205 for (i = 0; i < argc; i++)
206 free(argv[i]);
207 free(argv);
210 struct cmd *
211 cmd_parse(int argc, char **argv, const char *file, u_int line, char **cause)
213 const struct cmd_entry **entryp, *entry;
214 struct cmd *cmd;
215 struct args *args;
216 char s[BUFSIZ];
217 int ambiguous = 0;
219 *cause = NULL;
220 if (argc == 0) {
221 xasprintf(cause, "no command");
222 return (NULL);
225 entry = NULL;
226 for (entryp = cmd_table; *entryp != NULL; entryp++) {
227 if ((*entryp)->alias != NULL &&
228 strcmp((*entryp)->alias, argv[0]) == 0) {
229 ambiguous = 0;
230 entry = *entryp;
231 break;
234 if (strncmp((*entryp)->name, argv[0], strlen(argv[0])) != 0)
235 continue;
236 if (entry != NULL)
237 ambiguous = 1;
238 entry = *entryp;
240 /* Bail now if an exact match. */
241 if (strcmp(entry->name, argv[0]) == 0)
242 break;
244 if (ambiguous)
245 goto ambiguous;
246 if (entry == NULL) {
247 xasprintf(cause, "unknown command: %s", argv[0]);
248 return (NULL);
251 args = args_parse(entry->args_template, argc, argv);
252 if (args == NULL)
253 goto usage;
254 if (entry->args_lower != -1 && args->argc < entry->args_lower)
255 goto usage;
256 if (entry->args_upper != -1 && args->argc > entry->args_upper)
257 goto usage;
259 cmd = xcalloc(1, sizeof *cmd);
260 cmd->entry = entry;
261 cmd->args = args;
263 if (file != NULL)
264 cmd->file = xstrdup(file);
265 cmd->line = line;
267 return (cmd);
269 ambiguous:
270 *s = '\0';
271 for (entryp = cmd_table; *entryp != NULL; entryp++) {
272 if (strncmp((*entryp)->name, argv[0], strlen(argv[0])) != 0)
273 continue;
274 if (strlcat(s, (*entryp)->name, sizeof s) >= sizeof s)
275 break;
276 if (strlcat(s, ", ", sizeof s) >= sizeof s)
277 break;
279 s[strlen(s) - 2] = '\0';
280 xasprintf(cause, "ambiguous command: %s, could be: %s", argv[0], s);
281 return (NULL);
283 usage:
284 if (args != NULL)
285 args_free(args);
286 xasprintf(cause, "usage: %s %s", entry->name, entry->usage);
287 return (NULL);
290 size_t
291 cmd_print(struct cmd *cmd, char *buf, size_t len)
293 size_t off, used;
295 off = xsnprintf(buf, len, "%s ", cmd->entry->name);
296 if (off + 1 < len) {
297 used = args_print(cmd->args, buf + off, len - off - 1);
298 if (used == 0)
299 off--;
300 else
301 off += used;
302 buf[off] = '\0';
304 return (off);
308 * Figure out the current session. Use: 1) the current session, if the command
309 * context has one; 2) the most recently used session containing the pty of the
310 * calling client, if any; 3) the session specified in the TMUX variable from
311 * the environment (as passed from the client); 4) the most recently used
312 * session from all sessions.
314 struct session *
315 cmd_current_session(struct cmd_q *cmdq, int prefer_unattached)
317 struct client *c = cmdq->client;
318 struct session *s;
319 struct sessionslist ss;
320 struct winlink *wl;
321 struct window_pane *wp;
322 const char *path;
323 int found;
325 if (c != NULL && c->session != NULL)
326 return (c->session);
329 * If the name of the calling client's pty is known, build a list of
330 * the sessions that contain it and if any choose either the first or
331 * the newest.
333 path = c == NULL ? NULL : c->tty.path;
334 if (path != NULL) {
335 ARRAY_INIT(&ss);
336 RB_FOREACH(s, sessions, &sessions) {
337 found = 0;
338 RB_FOREACH(wl, winlinks, &s->windows) {
339 TAILQ_FOREACH(wp, &wl->window->panes, entry) {
340 if (strcmp(wp->tty, path) == 0) {
341 found = 1;
342 break;
345 if (found)
346 break;
348 if (found)
349 ARRAY_ADD(&ss, s);
352 s = cmd_choose_session_list(&ss);
353 ARRAY_FREE(&ss);
354 if (s != NULL)
355 return (s);
358 return (cmd_choose_session(prefer_unattached));
361 /* Is this session better? */
363 cmd_session_better(struct session *s, struct session *best,
364 int prefer_unattached)
366 if (best == NULL)
367 return (1);
368 if (prefer_unattached) {
369 if (!(best->flags & SESSION_UNATTACHED) &&
370 (s->flags & SESSION_UNATTACHED))
371 return (1);
372 else if ((best->flags & SESSION_UNATTACHED) &&
373 !(s->flags & SESSION_UNATTACHED))
374 return (0);
376 return (timercmp(&s->activity_time, &best->activity_time, >));
380 * Find the most recently used session, preferring unattached if the flag is
381 * set.
383 struct session *
384 cmd_choose_session(int prefer_unattached)
386 struct session *s, *best;
388 best = NULL;
389 RB_FOREACH(s, sessions, &sessions) {
390 if (cmd_session_better(s, best, prefer_unattached))
391 best = s;
393 return (best);
396 /* Find the most recently used session from a list. */
397 struct session *
398 cmd_choose_session_list(struct sessionslist *ss)
400 struct session *s, *sbest;
401 struct timeval *tv = NULL;
402 u_int i;
404 sbest = NULL;
405 for (i = 0; i < ARRAY_LENGTH(ss); i++) {
406 if ((s = ARRAY_ITEM(ss, i)) == NULL)
407 continue;
409 if (tv == NULL || timercmp(&s->activity_time, tv, >)) {
410 sbest = s;
411 tv = &s->activity_time;
415 return (sbest);
419 * Find the current client. First try the current client if set, then pick the
420 * most recently used of the clients attached to the current session if any,
421 * then of all clients.
423 struct client *
424 cmd_current_client(struct cmd_q *cmdq)
426 struct session *s;
427 struct client *c;
428 struct clients cc;
429 u_int i;
431 if (cmdq->client != NULL && cmdq->client->session != NULL)
432 return (cmdq->client);
435 * No current client set. Find the current session and return the
436 * newest of its clients.
438 s = cmd_current_session(cmdq, 0);
439 if (s != NULL && !(s->flags & SESSION_UNATTACHED)) {
440 ARRAY_INIT(&cc);
441 for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
442 if ((c = ARRAY_ITEM(&clients, i)) == NULL)
443 continue;
444 if (s == c->session)
445 ARRAY_ADD(&cc, c);
448 c = cmd_choose_client(&cc);
449 ARRAY_FREE(&cc);
450 if (c != NULL)
451 return (c);
454 return (cmd_choose_client(&clients));
457 /* Choose the most recently used client from a list. */
458 struct client *
459 cmd_choose_client(struct clients *cc)
461 struct client *c, *cbest;
462 struct timeval *tv = NULL;
463 u_int i;
465 cbest = NULL;
466 for (i = 0; i < ARRAY_LENGTH(cc); i++) {
467 if ((c = ARRAY_ITEM(cc, i)) == NULL)
468 continue;
469 if (c->session == NULL)
470 continue;
472 if (tv == NULL || timercmp(&c->activity_time, tv, >)) {
473 cbest = c;
474 tv = &c->activity_time;
478 return (cbest);
481 /* Find the target client or report an error and return NULL. */
482 struct client *
483 cmd_find_client(struct cmd_q *cmdq, const char *arg, int quiet)
485 struct client *c;
486 char *tmparg;
487 size_t arglen;
489 /* A NULL argument means the current client. */
490 if (arg == NULL) {
491 c = cmd_current_client(cmdq);
492 if (c == NULL && !quiet)
493 cmdq_error(cmdq, "no clients");
494 return (c);
496 tmparg = xstrdup(arg);
498 /* Trim a single trailing colon if any. */
499 arglen = strlen(tmparg);
500 if (arglen != 0 && tmparg[arglen - 1] == ':')
501 tmparg[arglen - 1] = '\0';
503 /* Find the client, if any. */
504 c = cmd_lookup_client(tmparg);
506 /* If no client found, report an error. */
507 if (c == NULL && !quiet)
508 cmdq_error(cmdq, "client not found: %s", tmparg);
510 free(tmparg);
511 return (c);
515 * Lookup a client by device path. Either of a full match and a match without a
516 * leading _PATH_DEV ("/dev/") is accepted.
518 struct client *
519 cmd_lookup_client(const char *name)
521 struct client *c;
522 const char *path;
523 u_int i;
525 for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
526 c = ARRAY_ITEM(&clients, i);
527 if (c == NULL || c->session == NULL || c->tty.path == NULL)
528 continue;
529 path = c->tty.path;
531 /* Check for exact matches. */
532 if (strcmp(name, path) == 0)
533 return (c);
535 /* Check without leading /dev if present. */
536 if (strncmp(path, _PATH_DEV, (sizeof _PATH_DEV) - 1) != 0)
537 continue;
538 if (strcmp(name, path + (sizeof _PATH_DEV) - 1) == 0)
539 return (c);
542 return (NULL);
545 /* Find the target session or report an error and return NULL. */
546 struct session *
547 cmd_lookup_session_id(const char *arg)
549 char *endptr;
550 long id;
552 if (arg[0] != '$')
553 return (NULL);
554 id = strtol(arg + 1, &endptr, 10);
555 if (arg[1] != '\0' && *endptr == '\0')
556 return (session_find_by_id(id));
557 return (NULL);
560 /* Lookup a session by name. If no session is found, NULL is returned. */
561 struct session *
562 cmd_lookup_session(const char *name, int *ambiguous)
564 struct session *s, *sfound;
566 *ambiguous = 0;
568 /* Look for $id first. */
569 if ((s = cmd_lookup_session_id(name)) != NULL)
570 return (s);
573 * Look for matches. First look for exact matches - session names must
574 * be unique so an exact match can't be ambigious and can just be
575 * returned.
577 if ((s = session_find(name)) != NULL)
578 return (s);
581 * Otherwise look for partial matches, returning early if it is found to
582 * be ambiguous.
584 sfound = NULL;
585 RB_FOREACH(s, sessions, &sessions) {
586 if (strncmp(name, s->name, strlen(name)) == 0 ||
587 fnmatch(name, s->name, 0) == 0) {
588 if (sfound != NULL) {
589 *ambiguous = 1;
590 return (NULL);
592 sfound = s;
595 return (sfound);
599 * Lookup a window or return -1 if not found or ambigious. First try as an
600 * index and if invalid, use fnmatch or leading prefix. Return NULL but fill in
601 * idx if the window index is a valid number but there is no window with that
602 * index.
604 struct winlink *
605 cmd_lookup_window(struct session *s, const char *name, int *ambiguous)
607 struct winlink *wl, *wlfound;
608 const char *errstr;
609 u_int idx;
611 *ambiguous = 0;
613 /* Try as a window id. */
614 if ((wl = cmd_lookup_winlink_windowid(s, name)) != NULL)
615 return (wl);
617 /* First see if this is a valid window index in this session. */
618 idx = strtonum(name, 0, INT_MAX, &errstr);
619 if (errstr == NULL) {
620 if ((wl = winlink_find_by_index(&s->windows, idx)) != NULL)
621 return (wl);
624 /* Look for exact matches, error if more than one. */
625 wlfound = NULL;
626 RB_FOREACH(wl, winlinks, &s->windows) {
627 if (strcmp(name, wl->window->name) == 0) {
628 if (wlfound != NULL) {
629 *ambiguous = 1;
630 return (NULL);
632 wlfound = wl;
635 if (wlfound != NULL)
636 return (wlfound);
638 /* Now look for pattern matches, again error if multiple. */
639 wlfound = NULL;
640 RB_FOREACH(wl, winlinks, &s->windows) {
641 if (strncmp(name, wl->window->name, strlen(name)) == 0 ||
642 fnmatch(name, wl->window->name, 0) == 0) {
643 if (wlfound != NULL) {
644 *ambiguous = 1;
645 return (NULL);
647 wlfound = wl;
650 if (wlfound != NULL)
651 return (wlfound);
653 return (NULL);
657 * Find a window index - if the window doesn't exist, check if it is a
658 * potential index and return it anyway.
661 cmd_lookup_index(struct session *s, const char *name, int *ambiguous)
663 struct winlink *wl;
664 const char *errstr;
665 u_int idx;
667 if ((wl = cmd_lookup_window(s, name, ambiguous)) != NULL)
668 return (wl->idx);
669 if (*ambiguous)
670 return (-1);
672 idx = strtonum(name, 0, INT_MAX, &errstr);
673 if (errstr == NULL)
674 return (idx);
676 return (-1);
679 /* Lookup pane id. An initial % means a pane id. */
680 struct window_pane *
681 cmd_lookup_paneid(const char *arg)
683 const char *errstr;
684 u_int paneid;
686 if (*arg != '%')
687 return (NULL);
689 paneid = strtonum(arg + 1, 0, UINT_MAX, &errstr);
690 if (errstr != NULL)
691 return (NULL);
692 return (window_pane_find_by_id(paneid));
695 /* Lookup window id in a session. An initial @ means a window id. */
696 struct winlink *
697 cmd_lookup_winlink_windowid(struct session *s, const char *arg)
699 const char *errstr;
700 u_int windowid;
702 if (*arg != '@')
703 return (NULL);
705 windowid = strtonum(arg + 1, 0, UINT_MAX, &errstr);
706 if (errstr != NULL)
707 return (NULL);
708 return (winlink_find_by_window_id(&s->windows, windowid));
711 /* Lookup window id. An initial @ means a window id. */
712 struct window *
713 cmd_lookup_windowid(const char *arg)
715 const char *errstr;
716 u_int windowid;
718 if (*arg != '@')
719 return (NULL);
721 windowid = strtonum(arg + 1, 0, UINT_MAX, &errstr);
722 if (errstr != NULL)
723 return (NULL);
724 return (window_find_by_id(windowid));
727 /* Find session and winlink for window. */
728 struct session *
729 cmd_window_session(struct cmd_q *cmdq, struct window *w, struct winlink **wlp)
731 struct session *s;
732 struct sessionslist ss;
733 struct winlink *wl;
735 /* If this window is in the current session, return that winlink. */
736 s = cmd_current_session(cmdq, 0);
737 if (s != NULL) {
738 wl = winlink_find_by_window(&s->windows, w);
739 if (wl != NULL) {
740 if (wlp != NULL)
741 *wlp = wl;
742 return (s);
746 /* Otherwise choose from all sessions with this window. */
747 ARRAY_INIT(&ss);
748 RB_FOREACH(s, sessions, &sessions) {
749 if (winlink_find_by_window(&s->windows, w) != NULL)
750 ARRAY_ADD(&ss, s);
752 s = cmd_choose_session_list(&ss);
753 ARRAY_FREE(&ss);
754 if (wlp != NULL)
755 *wlp = winlink_find_by_window(&s->windows, w);
756 return (s);
759 /* Find the target session or report an error and return NULL. */
760 struct session *
761 cmd_find_session(struct cmd_q *cmdq, const char *arg, int prefer_unattached)
763 struct session *s;
764 struct window_pane *wp;
765 struct window *w;
766 struct client *c;
767 char *tmparg;
768 size_t arglen;
769 int ambiguous;
771 /* A NULL argument means the current session. */
772 if (arg == NULL)
773 return (cmd_current_session(cmdq, prefer_unattached));
775 /* Lookup as pane id or window id. */
776 if ((wp = cmd_lookup_paneid(arg)) != NULL)
777 return (cmd_window_session(cmdq, wp->window, NULL));
778 if ((w = cmd_lookup_windowid(arg)) != NULL)
779 return (cmd_window_session(cmdq, w, NULL));
781 /* Trim a single trailing colon if any. */
782 tmparg = xstrdup(arg);
783 arglen = strlen(tmparg);
784 if (arglen != 0 && tmparg[arglen - 1] == ':')
785 tmparg[arglen - 1] = '\0';
787 /* An empty session name is the current session. */
788 if (*tmparg == '\0') {
789 free(tmparg);
790 return (cmd_current_session(cmdq, prefer_unattached));
793 /* Find the session, if any. */
794 s = cmd_lookup_session(tmparg, &ambiguous);
796 /* If it doesn't, try to match it as a client. */
797 if (s == NULL && (c = cmd_lookup_client(tmparg)) != NULL)
798 s = c->session;
800 /* If no session found, report an error. */
801 if (s == NULL) {
802 if (ambiguous)
803 cmdq_error(cmdq, "more than one session: %s", tmparg);
804 else
805 cmdq_error(cmdq, "session not found: %s", tmparg);
808 free(tmparg);
809 return (s);
812 /* Find the target session and window or report an error and return NULL. */
813 struct winlink *
814 cmd_find_window(struct cmd_q *cmdq, const char *arg, struct session **sp)
816 struct session *s;
817 struct winlink *wl;
818 struct window_pane *wp;
819 const char *winptr;
820 char *sessptr = NULL;
821 int ambiguous = 0;
824 * Find the current session. There must always be a current session, if
825 * it can't be found, report an error.
827 if ((s = cmd_current_session(cmdq, 0)) == NULL) {
828 cmdq_error(cmdq, "can't establish current session");
829 return (NULL);
832 /* A NULL argument means the current session and window. */
833 if (arg == NULL) {
834 if (sp != NULL)
835 *sp = s;
836 return (s->curw);
839 /* Lookup as pane id. */
840 if ((wp = cmd_lookup_paneid(arg)) != NULL) {
841 s = cmd_window_session(cmdq, wp->window, &wl);
842 if (sp != NULL)
843 *sp = s;
844 return (wl);
847 /* Time to look at the argument. If it is empty, that is an error. */
848 if (*arg == '\0')
849 goto not_found;
851 /* Find the separating colon and split into window and session. */
852 winptr = strchr(arg, ':');
853 if (winptr == NULL)
854 goto no_colon;
855 winptr++; /* skip : */
856 sessptr = xstrdup(arg);
857 *strchr(sessptr, ':') = '\0';
859 /* Try to lookup the session if present. */
860 if (*sessptr != '\0') {
861 if ((s = cmd_lookup_session(sessptr, &ambiguous)) == NULL)
862 goto no_session;
864 if (sp != NULL)
865 *sp = s;
868 * Then work out the window. An empty string is the current window,
869 * otherwise try special cases then to look it up in the session.
871 if (*winptr == '\0')
872 wl = s->curw;
873 else if (winptr[0] == '!' && winptr[1] == '\0')
874 wl = TAILQ_FIRST(&s->lastw);
875 else if (winptr[0] == '^' && winptr[1] == '\0')
876 wl = RB_MIN(winlinks, &s->windows);
877 else if (winptr[0] == '$' && winptr[1] == '\0')
878 wl = RB_MAX(winlinks, &s->windows);
879 else if (winptr[0] == '+' || winptr[0] == '-')
880 wl = cmd_find_window_offset(winptr, s, &ambiguous);
881 else
882 wl = cmd_lookup_window(s, winptr, &ambiguous);
883 if (wl == NULL)
884 goto not_found;
886 if (sessptr != NULL)
887 free(sessptr);
888 return (wl);
890 no_colon:
892 * No colon in the string, first try special cases, then as a window
893 * and lastly as a session.
895 if (arg[0] == '!' && arg[1] == '\0') {
896 if ((wl = TAILQ_FIRST(&s->lastw)) == NULL)
897 goto not_found;
898 } else if (arg[0] == '+' || arg[0] == '-') {
899 if ((wl = cmd_find_window_offset(arg, s, &ambiguous)) == NULL)
900 goto lookup_session;
901 } else if ((wl = cmd_lookup_window(s, arg, &ambiguous)) == NULL)
902 goto lookup_session;
904 if (sp != NULL)
905 *sp = s;
907 return (wl);
909 lookup_session:
910 if (ambiguous)
911 goto not_found;
912 if (*arg != '\0' && (s = cmd_lookup_session(arg, &ambiguous)) == NULL)
913 goto no_session;
915 if (sp != NULL)
916 *sp = s;
918 return (s->curw);
920 no_session:
921 if (ambiguous)
922 cmdq_error(cmdq, "multiple sessions: %s", arg);
923 else
924 cmdq_error(cmdq, "session not found: %s", arg);
925 free(sessptr);
926 return (NULL);
928 not_found:
929 if (ambiguous)
930 cmdq_error(cmdq, "multiple windows: %s", arg);
931 else
932 cmdq_error(cmdq, "window not found: %s", arg);
933 free(sessptr);
934 return (NULL);
937 struct winlink *
938 cmd_find_window_offset(const char *winptr, struct session *s, int *ambiguous)
940 struct winlink *wl;
941 int offset = 1;
943 if (winptr[1] != '\0')
944 offset = strtonum(winptr + 1, 1, INT_MAX, NULL);
945 if (offset == 0)
946 wl = cmd_lookup_window(s, winptr, ambiguous);
947 else {
948 if (winptr[0] == '+')
949 wl = winlink_next_by_number(s->curw, s, offset);
950 else
951 wl = winlink_previous_by_number(s->curw, s, offset);
954 return (wl);
958 * Find the target session and window index, whether or not it exists in the
959 * session. Return -2 on error or -1 if no window index is specified. This is
960 * used when parsing an argument for a window target that may not exist (for
961 * example if it is going to be created).
964 cmd_find_index(struct cmd_q *cmdq, const char *arg, struct session **sp)
966 struct session *s;
967 struct winlink *wl;
968 const char *winptr;
969 char *sessptr = NULL;
970 int idx, ambiguous = 0;
973 * Find the current session. There must always be a current session, if
974 * it can't be found, report an error.
976 if ((s = cmd_current_session(cmdq, 0)) == NULL) {
977 cmdq_error(cmdq, "can't establish current session");
978 return (-2);
981 /* A NULL argument means the current session and "no window" (-1). */
982 if (arg == NULL) {
983 if (sp != NULL)
984 *sp = s;
985 return (-1);
988 /* Time to look at the argument. If it is empty, that is an error. */
989 if (*arg == '\0')
990 goto not_found;
992 /* Find the separating colon. If none, assume the current session. */
993 winptr = strchr(arg, ':');
994 if (winptr == NULL)
995 goto no_colon;
996 winptr++; /* skip : */
997 sessptr = xstrdup(arg);
998 *strchr(sessptr, ':') = '\0';
1000 /* Try to lookup the session if present. */
1001 if (sessptr != NULL && *sessptr != '\0') {
1002 if ((s = cmd_lookup_session(sessptr, &ambiguous)) == NULL)
1003 goto no_session;
1005 if (sp != NULL)
1006 *sp = s;
1009 * Then work out the window. An empty string is a new window otherwise
1010 * try to look it up in the session.
1012 if (*winptr == '\0')
1013 idx = -1;
1014 else if (winptr[0] == '!' && winptr[1] == '\0') {
1015 if ((wl = TAILQ_FIRST(&s->lastw)) == NULL)
1016 goto not_found;
1017 idx = wl->idx;
1018 } else if (winptr[0] == '+' || winptr[0] == '-') {
1019 if ((idx = cmd_find_index_offset(winptr, s, &ambiguous)) < 0)
1020 goto invalid_index;
1021 } else if ((idx = cmd_lookup_index(s, winptr, &ambiguous)) == -1)
1022 goto invalid_index;
1024 free(sessptr);
1025 return (idx);
1027 no_colon:
1029 * No colon in the string, first try special cases, then as a window
1030 * and lastly as a session.
1032 if (arg[0] == '!' && arg[1] == '\0') {
1033 if ((wl = TAILQ_FIRST(&s->lastw)) == NULL)
1034 goto not_found;
1035 idx = wl->idx;
1036 } else if (arg[0] == '+' || arg[0] == '-') {
1037 if ((idx = cmd_find_index_offset(arg, s, &ambiguous)) < 0)
1038 goto lookup_session;
1039 } else if ((idx = cmd_lookup_index(s, arg, &ambiguous)) == -1)
1040 goto lookup_session;
1042 if (sp != NULL)
1043 *sp = s;
1045 return (idx);
1047 lookup_session:
1048 if (ambiguous)
1049 goto not_found;
1050 if (*arg != '\0' && (s = cmd_lookup_session(arg, &ambiguous)) == NULL)
1051 goto no_session;
1053 if (sp != NULL)
1054 *sp = s;
1056 return (-1);
1058 no_session:
1059 if (ambiguous)
1060 cmdq_error(cmdq, "multiple sessions: %s", arg);
1061 else
1062 cmdq_error(cmdq, "session not found: %s", arg);
1063 free(sessptr);
1064 return (-2);
1066 invalid_index:
1067 if (ambiguous)
1068 goto not_found;
1069 cmdq_error(cmdq, "invalid index: %s", arg);
1071 free(sessptr);
1072 return (-2);
1074 not_found:
1075 if (ambiguous)
1076 cmdq_error(cmdq, "multiple windows: %s", arg);
1077 else
1078 cmdq_error(cmdq, "window not found: %s", arg);
1079 free(sessptr);
1080 return (-2);
1084 cmd_find_index_offset(const char *winptr, struct session *s, int *ambiguous)
1086 int idx, offset = 1;
1088 if (winptr[1] != '\0')
1089 offset = strtonum(winptr + 1, 1, INT_MAX, NULL);
1090 if (offset == 0)
1091 idx = cmd_lookup_index(s, winptr, ambiguous);
1092 else {
1093 if (winptr[0] == '+') {
1094 if (s->curw->idx == INT_MAX)
1095 idx = cmd_lookup_index(s, winptr, ambiguous);
1096 else
1097 idx = s->curw->idx + offset;
1098 } else {
1099 if (s->curw->idx == 0)
1100 idx = cmd_lookup_index(s, winptr, ambiguous);
1101 else
1102 idx = s->curw->idx - offset;
1106 return (idx);
1110 * Find the target session, window and pane number or report an error and
1111 * return NULL. The pane number is separated from the session:window by a .,
1112 * such as mysession:mywindow.0.
1114 struct winlink *
1115 cmd_find_pane(struct cmd_q *cmdq,
1116 const char *arg, struct session **sp, struct window_pane **wpp)
1118 struct session *s;
1119 struct winlink *wl;
1120 const char *period, *errstr;
1121 char *winptr, *paneptr;
1122 u_int idx;
1124 /* Get the current session. */
1125 if ((s = cmd_current_session(cmdq, 0)) == NULL) {
1126 cmdq_error(cmdq, "can't establish current session");
1127 return (NULL);
1129 if (sp != NULL)
1130 *sp = s;
1132 /* A NULL argument means the current session, window and pane. */
1133 if (arg == NULL) {
1134 *wpp = s->curw->window->active;
1135 return (s->curw);
1138 /* Lookup as pane id. */
1139 if ((*wpp = cmd_lookup_paneid(arg)) != NULL) {
1140 s = cmd_window_session(cmdq, (*wpp)->window, &wl);
1141 if (sp != NULL)
1142 *sp = s;
1143 return (wl);
1146 /* Look for a separating period. */
1147 if ((period = strrchr(arg, '.')) == NULL)
1148 goto no_period;
1150 /* Pull out the window part and parse it. */
1151 winptr = xstrdup(arg);
1152 winptr[period - arg] = '\0';
1153 if (*winptr == '\0')
1154 wl = s->curw;
1155 else if ((wl = cmd_find_window(cmdq, winptr, sp)) == NULL)
1156 goto error;
1158 /* Find the pane section and look it up. */
1159 paneptr = winptr + (period - arg) + 1;
1160 if (*paneptr == '\0')
1161 *wpp = wl->window->active;
1162 else if (paneptr[0] == '+' || paneptr[0] == '-')
1163 *wpp = cmd_find_pane_offset(paneptr, wl);
1164 else {
1165 idx = strtonum(paneptr, 0, INT_MAX, &errstr);
1166 if (errstr != NULL)
1167 goto lookup_string;
1168 *wpp = window_pane_at_index(wl->window, idx);
1169 if (*wpp == NULL)
1170 goto lookup_string;
1173 free(winptr);
1174 return (wl);
1176 lookup_string:
1177 /* Try pane string description. */
1178 if ((*wpp = window_find_string(wl->window, paneptr)) == NULL) {
1179 cmdq_error(cmdq, "can't find pane: %s", paneptr);
1180 goto error;
1183 free(winptr);
1184 return (wl);
1186 no_period:
1187 /* Try as a pane number alone. */
1188 idx = strtonum(arg, 0, INT_MAX, &errstr);
1189 if (errstr != NULL)
1190 goto lookup_window;
1192 /* Try index in the current session and window. */
1193 if ((*wpp = window_pane_at_index(s->curw->window, idx)) == NULL)
1194 goto lookup_window;
1196 return (s->curw);
1198 lookup_window:
1199 /* Try pane string description. */
1200 if ((*wpp = window_find_string(s->curw->window, arg)) != NULL)
1201 return (s->curw);
1203 /* Try as a window and use the active pane. */
1204 if ((wl = cmd_find_window(cmdq, arg, sp)) != NULL)
1205 *wpp = wl->window->active;
1206 return (wl);
1208 error:
1209 free(winptr);
1210 return (NULL);
1213 struct window_pane *
1214 cmd_find_pane_offset(const char *paneptr, struct winlink *wl)
1216 struct window *w = wl->window;
1217 struct window_pane *wp = w->active;
1218 u_int offset = 1;
1220 if (paneptr[1] != '\0')
1221 offset = strtonum(paneptr + 1, 1, INT_MAX, NULL);
1222 if (offset > 0) {
1223 if (paneptr[0] == '+')
1224 wp = window_pane_next_by_number(w, wp, offset);
1225 else
1226 wp = window_pane_previous_by_number(w, wp, offset);
1229 return (wp);
1232 /* Replace the first %% or %idx in template by s. */
1233 char *
1234 cmd_template_replace(const char *template, const char *s, int idx)
1236 char ch, *buf;
1237 const char *ptr;
1238 int replaced;
1239 size_t len;
1241 if (strchr(template, '%') == NULL)
1242 return (xstrdup(template));
1244 buf = xmalloc(1);
1245 *buf = '\0';
1246 len = 0;
1247 replaced = 0;
1249 ptr = template;
1250 while (*ptr != '\0') {
1251 switch (ch = *ptr++) {
1252 case '%':
1253 if (*ptr < '1' || *ptr > '9' || *ptr - '0' != idx) {
1254 if (*ptr != '%' || replaced)
1255 break;
1256 replaced = 1;
1258 ptr++;
1260 len += strlen(s);
1261 buf = xrealloc(buf, 1, len + 1);
1262 strlcat(buf, s, len + 1);
1263 continue;
1265 buf = xrealloc(buf, 1, len + 2);
1266 buf[len++] = ch;
1267 buf[len] = '\0';
1270 return (buf);