1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
3 Copyright (C) 2007 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 static void usage(const char *pn
)
36 "Reads PWMD protocol commands from standard input.\n\n"
37 "Usage: %s [-hv] [-E] [-s <socket>] [[-a [-P pinentry]] | [-p <password>]] [-S] [filename]\n"
38 " -E exit after a command failure\n"
41 " -a use pinentry(1) for password retrieval\n"
42 " -P path to the pinentry binary (/usr/bin/pinentry)\n"
43 " -S send the SAVE command after all others\n"
45 " -h this help text\n",
50 static void show_error(gpg_error_t error
)
52 fprintf(stderr
, "ERR %i %s\n", gpg_err_code(error
), pwmd_strerror(error
));
55 int main(int argc
, char *argv
[])
59 char *password
= NULL
;
60 char *filename
= NULL
;
61 char *socketpath
= NULL
;
62 char command
[8196], *p
;
63 int ret
= EXIT_SUCCESS
;
71 char *pinentry_path
= NULL
;
73 while ((opt
= getopt(argc
, argv
, "EhvaP:p:s:S")) != EOF
) {
82 socketpath
= xstrdup(optarg
);
85 password
= xstrdup(optarg
);
91 pinentry_path
= xstrdup(optarg
);
94 printf("%s (pwmc)\n%s\n", PACKAGE_STRING
, PACKAGE_BUGREPORT
);
102 if (use_pinentry
&& password
)
105 if (argc
- optind
== 1)
106 filename
= argv
[optind
];
110 if ((pwm
= pwmd_connect(socketpath
, &error
)) == NULL
) {
114 errx(EXIT_FAILURE
, "pwmd_connect(): %s", pwmd_strerror(error
));
118 if (pwmd_setopt(pwm
, &error
, PWMD_OPTION_PINENTRY
, 1) != PWMD_OK
) {
125 if (pwmd_setopt(pwm
, &error
, PWMD_OPTION_PINENTRY_PATH
, pinentry_path
) != PWMD_OK
) {
132 if (pwmd_setopt(pwm
, &error
, PWMD_OPTION_PINENTRY_TITLE
, "Password Manager Daemon") != PWMD_OK
) {
138 snprintf(command
, sizeof(command
), "A password is required for the "
139 "file \"%s\". Please\nenter the password below.", filename
);
141 if (pwmd_setopt(pwm
, &error
, PWMD_OPTION_PINENTRY_DESC
, command
) != PWMD_OK
) {
148 if (pwmd_setopt(pwm
, &error
, PWMD_OPTION_PASSWORD
, password
) != PWMD_OK
) {
158 if (filename
&& pwmd_open(pwm
, &error
, filename
) != PWMD_OK
) {
164 while ((p
= fgets(command
, sizeof(command
), stdin
)) != NULL
) {
168 if (p
[len
- 1] != '\n' && feof(stdin
) != 1) {
169 if ((t
= (char *)xrealloc(buf
, (total
+ len
+ 1) * sizeof(char))) == NULL
) {
173 memset(&command
, 0, sizeof(command
));
174 err(EXIT_FAILURE
, "xrealloc()");
178 memcpy(&buf
[total
], p
, len
);
185 if ((t
= (char *)xrealloc(buf
, (total
+ len
+ 1) * sizeof(char))) == NULL
) {
189 memset(&command
, 0, sizeof(command
));
190 err(EXIT_FAILURE
, "xrealloc()");
194 memcpy(&buf
[total
], p
, len
);
200 p
= buf
? buf
: command
;
202 if (p
[strlen(p
) - 1] == '\n')
203 p
[strlen(p
) - 1] = 0;
205 if (strcasecmp(p
, "BYE") == 0)
208 if (pwmd_command(pwm
, &result
, &error
, p
) != PWMD_OK
) {
215 memset(&command
, 0, sizeof(command
));
233 memset(&command
, 0, sizeof(command
));
236 if (result
[strlen(result
) - 1] == '\n')
237 result
[strlen(result
) - 1] = 0;
239 fwrite(result
, 1, strlen(result
), stdout
);
240 pwmd_free_result(result
);
245 memset(&command
, 0, sizeof(command
));
249 if (pwmd_save(pwm
, &error
) != PWMD_OK
) {
250 if (error
== EPWMD_BADKEY
|| error
== EPWMD_KEY
)