[BACK]Return to cmd-show-environment.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/cmd-show-environment.c, Revision 1.22

1.22    ! nicm        1: /* $OpenBSD: cmd-show-environment.c,v 1.21 2016/10/14 22:14:22 nicm Exp $ */
1.1       nicm        2:
                      3: /*
1.18      nicm        4:  * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        5:  *
                      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.
                      9:  *
                     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.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
                     21: #include <stdlib.h>
                     22: #include <string.h>
                     23:
                     24: #include "tmux.h"
                     25:
                     26: /*
                     27:  * Show environment.
                     28:  */
                     29:
1.22    ! nicm       30: static enum cmd_retval cmd_show_environment_exec(struct cmd *,
        !            31:                            struct cmdq_item *);
1.10      nicm       32:
1.20      nicm       33: static char    *cmd_show_environment_escape(struct environ_entry *);
1.22    ! nicm       34: static void     cmd_show_environment_print(struct cmd *, struct cmdq_item *,
1.20      nicm       35:                     struct environ_entry *);
1.1       nicm       36:
                     37: const struct cmd_entry cmd_show_environment_entry = {
1.15      nicm       38:        .name = "show-environment",
                     39:        .alias = "showenv",
                     40:
                     41:        .args = { "gst:", 0, 1 },
                     42:        .usage = "[-gs] " CMD_TARGET_SESSION_USAGE " [name]",
                     43:
1.16      nicm       44:        .tflag = CMD_SESSION_CANFAIL,
                     45:
1.21      nicm       46:        .flags = CMD_AFTERHOOK,
1.15      nicm       47:        .exec = cmd_show_environment_exec
1.1       nicm       48: };
                     49:
1.20      nicm       50: static char *
1.10      nicm       51: cmd_show_environment_escape(struct environ_entry *envent)
                     52: {
                     53:        const char      *value = envent->value;
                     54:        char             c, *out, *ret;
                     55:
                     56:        out = ret = xmalloc(strlen(value) * 2 + 1); /* at most twice the size */
                     57:        while ((c = *value++) != '\0') {
                     58:                /* POSIX interprets $ ` " and \ in double quotes. */
                     59:                if (c == '$' || c == '`' || c == '"' || c == '\\')
                     60:                        *out++ = '\\';
                     61:                *out++ = c;
                     62:        }
                     63:        *out = '\0';
                     64:
1.11      nicm       65:        return (ret);
1.10      nicm       66: }
                     67:
1.20      nicm       68: static void
1.22    ! nicm       69: cmd_show_environment_print(struct cmd *self, struct cmdq_item *item,
1.10      nicm       70:     struct environ_entry *envent)
                     71: {
                     72:        char    *escaped;
                     73:
                     74:        if (!args_has(self->args, 's')) {
                     75:                if (envent->value != NULL)
1.22    ! nicm       76:                        cmdq_print(item, "%s=%s", envent->name, envent->value);
1.10      nicm       77:                else
1.22    ! nicm       78:                        cmdq_print(item, "-%s", envent->name);
1.10      nicm       79:                return;
                     80:        }
                     81:
                     82:        if (envent->value != NULL) {
                     83:                escaped = cmd_show_environment_escape(envent);
1.22    ! nicm       84:                cmdq_print(item, "%s=\"%s\"; export %s;", envent->name, escaped,
1.10      nicm       85:                    envent->name);
                     86:                free(escaped);
                     87:        } else
1.22    ! nicm       88:                cmdq_print(item, "unset %s;", envent->name);
1.10      nicm       89: }
                     90:
1.20      nicm       91: static enum cmd_retval
1.22    ! nicm       92: cmd_show_environment_exec(struct cmd *self, struct cmdq_item *item)
1.1       nicm       93: {
1.3       nicm       94:        struct args             *args = self->args;
                     95:        struct environ          *env;
                     96:        struct environ_entry    *envent;
1.19      nicm       97:        const char              *target;
1.1       nicm       98:
1.19      nicm       99:        if ((target = args_get(args, 't')) != NULL) {
1.22    ! nicm      100:                if (item->state.tflag.s == NULL) {
        !           101:                        cmdq_error(item, "no such session: %s", target);
1.19      nicm      102:                        return (CMD_RETURN_ERROR);
                    103:                }
                    104:        }
                    105:
                    106:        if (args_has(self->args, 'g'))
1.12      nicm      107:                env = global_environ;
1.19      nicm      108:        else {
1.22    ! nicm      109:                if (item->state.tflag.s == NULL) {
1.19      nicm      110:                        target = args_get(args, 't');
                    111:                        if (target != NULL)
1.22    ! nicm      112:                                cmdq_error(item, "no such session: %s", target);
1.19      nicm      113:                        else
1.22    ! nicm      114:                                cmdq_error(item, "no current session");
1.19      nicm      115:                        return (CMD_RETURN_ERROR);
                    116:                }
1.22    ! nicm      117:                env = item->state.tflag.s->environ;
1.19      nicm      118:        }
1.5       nicm      119:
                    120:        if (args->argc != 0) {
                    121:                envent = environ_find(env, args->argv[0]);
                    122:                if (envent == NULL) {
1.22    ! nicm      123:                        cmdq_error(item, "unknown variable: %s", args->argv[0]);
1.6       nicm      124:                        return (CMD_RETURN_ERROR);
1.5       nicm      125:                }
1.22    ! nicm      126:                cmd_show_environment_print(self, item, envent);
1.6       nicm      127:                return (CMD_RETURN_NORMAL);
1.1       nicm      128:        }
                    129:
1.12      nicm      130:        envent = environ_first(env);
                    131:        while (envent != NULL) {
1.22    ! nicm      132:                cmd_show_environment_print(self, item, envent);
1.12      nicm      133:                envent = environ_next(envent);
                    134:        }
1.6       nicm      135:        return (CMD_RETURN_NORMAL);
1.1       nicm      136: }