forked from lastpass/lastpass-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lpass.c
212 lines (187 loc) · 5.13 KB
/
lpass.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
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
/*
* lpass - lastpass command line utility
*
* Copyright (C) 2014-2018 LastPass.
*
* 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.
*
* 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.
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
*
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*
* See LICENSE.OpenSSL for more details regarding this exception.
*/
#include "process.h"
#include "cmd.h"
#include "string.h"
#include "util.h"
#include "http.h"
#include "config.h"
#include "terminal.h"
#include "version.h"
#include "log.h"
#include <sys/stat.h>
#include <getopt.h>
#include <unistd.h>
#if (defined(__APPLE__) && defined(__MACH__)) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__) || defined(__OpenBSD__)
#include <libgen.h>
#endif
#define CMD(name) { #name, cmd_##name##_usage, cmd_##name }
static struct {
const char *name;
const char *usage;
int (*cmd)(int, char**);
} commands[] = {
CMD(login),
CMD(logout),
CMD(passwd),
CMD(show),
CMD(ls),
CMD(mv),
CMD(add),
CMD(edit),
CMD(generate),
CMD(duplicate),
CMD(rm),
CMD(status),
CMD(sync),
CMD(export),
CMD(import),
CMD(share)
};
#undef CMD
static void version(void)
{
terminal_printf("LastPass CLI v" LASTPASS_CLI_VERSION "\n");
}
static void help(void)
{
terminal_printf("Usage:\n");
printf(" %s {--help|--version}\n", ARGV[0]);
for (size_t i = 0; i < ARRAY_SIZE(commands); ++i)
printf(" %s %s\n", basename(ARGV[0]), commands[i].usage);
}
static int global_options(int argc, char *argv[])
{
static struct option long_options[] = {
{"version", no_argument, NULL, 'v'},
{"help", no_argument, NULL, 'h'},
{0, 0, 0, 0}
};
int option;
int option_index;
while ((option = getopt_long(argc, argv, "vh", long_options, &option_index)) != -1) {
switch (option) {
case 'v':
version();
return 0;
case 'h':
version();
printf("\n");
help();
return 0;
case '?':
help();
return option == 'h';
}
}
help();
return 1;
}
static void expand_aliases(int *argc, char ***argv)
{
int i;
const char *alias = (*argv)[0];
char **new_argv = NULL;
int argv_alloced;
int new_argc = 0;
_cleanup_free_ char *config_name;
xasprintf(&config_name, "alias.%s", alias);
_cleanup_free_ char *alias_val = config_read_string(config_name);
if (!alias_val)
return;
trim(alias_val);
/* split commandline and prepend to argv */
argv_alloced = 0;
new_argv = xcalloc(*argc + 1, sizeof(*new_argv));
char *tok = strtok(alias_val, " \t");
while (tok) {
if (new_argc >= argv_alloced) {
argv_alloced += 16;
new_argv = xreallocarray(new_argv,
argv_alloced + *argc + 1, sizeof(*new_argv));
}
new_argv[new_argc++] = xstrdup(tok);
tok = strtok(NULL, " \t");
}
/* copy in remaining items from argc */
for (i=1; i < *argc; i++) {
new_argv[new_argc++] = xstrdup((*argv)[i]);
}
new_argv[new_argc] = 0;
*argv = new_argv;
*argc = new_argc;
}
static int process_command(int argc, char *argv[])
{
expand_aliases(&argc, &argv);
for (size_t i = 0; i < ARRAY_SIZE(commands); ++i) {
if (argc && !strcmp(argv[0], commands[i].name))
return commands[i].cmd(argc, argv);
}
help();
return 1;
}
static void load_saved_environment(void)
{
_cleanup_free_ char *env = NULL;
env = config_read_string("env");
if (!env)
return;
for (char *tok = strtok(env, "\n"); tok; tok = strtok(NULL, "\n")) {
char *equals = strchr(tok, '=');
if (!equals || !*equals) {
warn("The environment line '%s' is invalid.", tok);
continue;
}
*equals = '\0';
if (setenv(tok, equals + 1, true))
warn_errno("The environment line '%s' is invalid.", tok);
}
}
int main(int argc, char *argv[])
{
/* For process.h to function. */
ARGC = argc;
ARGV = argv;
/* Do not remove this umask. Always keep at top. */
umask(0077);
if (http_init())
die("Unable to initialize curl");
load_saved_environment();
if (argc >= 2 && argv[1][0] != '-')
return process_command(argc - 1, argv + 1);
return global_options(argc, argv);
}