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
) {
107 if (argc
- optind
== 1)
108 filename
= argv
[optind
];
112 if ((pwm
= pwmd_connect(socketpath
, &error
)) == NULL
) {
114 errx(EXIT_FAILURE
, "pwmd_connect(): %s", pwmd_strerror(error
));
118 error
= pwmd_setopt(pwm
, PWMD_OPTION_PINENTRY
, 1);
128 error
= pwmd_setopt(pwm
, PWMD_OPTION_PINENTRY_PATH
, pinentry_path
);
138 error
= pwmd_setopt(pwm
, PWMD_OPTION_PINENTRY_TITLE
, "Password Manager Daemon");
147 snprintf(command
, sizeof(command
), "A password is required for the "
148 "file \"%s\". Please\nenter the password below.", filename
);
150 error
= pwmd_setopt(pwm
, PWMD_OPTION_PINENTRY_DESC
, command
);
160 error
= pwmd_setopt(pwm
, PWMD_OPTION_PASSWORD
, password
);
173 error
= pwmd_open(pwm
, filename
);
182 while ((p
= fgets(command
, sizeof(command
), stdin
)) != NULL
) {
186 if (p
[len
- 1] != '\n' && feof(stdin
) != 1) {
187 if ((t
= (char *)xrealloc(buf
, (total
+ len
+ 1) * sizeof(char))) == NULL
) {
191 memset(&command
, 0, sizeof(command
));
192 err(EXIT_FAILURE
, "xrealloc()");
196 memcpy(&buf
[total
], p
, len
);
203 if ((t
= (char *)xrealloc(buf
, (total
+ len
+ 1) * sizeof(char))) == NULL
) {
207 memset(&command
, 0, sizeof(command
));
208 err(EXIT_FAILURE
, "xrealloc()");
212 memcpy(&buf
[total
], p
, len
);
218 p
= buf
? buf
: command
;
220 if (p
[strlen(p
) - 1] == '\n')
221 p
[strlen(p
) - 1] = 0;
223 if (strcasecmp(p
, "BYE") == 0)
226 error
= pwmd_command(pwm
, &result
, p
);
235 memset(&command
, 0, sizeof(command
));
253 memset(&command
, 0, sizeof(command
));
256 if (result
[strlen(result
) - 1] == '\n')
257 result
[strlen(result
) - 1] = 0;
259 fwrite(result
, 1, strlen(result
), stdout
);
260 pwmd_free_result(result
);
268 memset(&command
, 0, sizeof(command
));
272 error
= pwmd_save(pwm
);
275 if (error
== EPWMD_BADKEY
|| error
== EPWMD_KEY
)