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
|
/***
This file is part of LockPassword
Copyright (C) 2020-2021 Aleksandr D. Goncharov (Joursoir) <chat@joursoir.net>
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 3 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, see <https://www.gnu.org/licenses/>.
***/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/stat.h>
#include "constants.h"
#include "exec-cmd.h"
#include "xstd.h"
struct cmd_struct {
const char *cmd;
int (*func)(int, char **);
};
static struct cmd_struct commands[] = {
{ "init", cmd_init },
{ "insert", cmd_insert },
{ "show", cmd_showtree },
{ "edit", cmd_edit },
{ "generate", cmd_generate },
{ "rm", cmd_remove },
{ "mv", cmd_move },
{ "help", cmd_help },
{ "version", cmd_version },
{ NULL, NULL }
};
static struct cmd_struct *get_cmd(const char *name)
{
if(!name)
return NULL;
struct cmd_struct *ptr;
for(ptr = commands; ptr->cmd; ptr++) {
if(strcmp(name, ptr->cmd) == 0)
return ptr;
}
return NULL;
}
static int goto_maindir()
{
int retval = 0, result;
char *rootdir = xstrcat(getenv("HOME"), LOCKPASS_DIR, "/");
if(chdir(rootdir)) // failed
{
// create main directory:
result = mkdir(rootdir, S_IRWXU);
if(result) {
if(errno != EEXIST)
errprint_ptr(&retval, 1, "%s", strerror(errno));
}
else // try again:
retval = chdir(rootdir);
}
free(rootdir);
return retval;
}
int main(int argc, char *argv[])
{
if(!isatty(STDIN_FILENO))
errprint_r(1, "Please, use a terminal to run this application\n");
if(goto_maindir())
errprint_r(1, "%s", strerror(errno));
struct cmd_struct *ptr = get_cmd(argv[1]);
if(ptr)
return ptr->func(--argc, ++argv);
cmd_help(argc, argv);
return 1;
}
|