source: roaraudio/libroar/pinentry.c @ 1237:f7c55376fad3

Last change on this file since 1237:f7c55376fad3 was 1237:f7c55376fad3, checked in by phi, 15 years ago

test for tty dev

File size: 6.5 KB
Line 
1//pinentry.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of libroar a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroar is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 *  NOTE for everyone want's to change something and send patches:
24 *  read README and HACKING! There a addition information on
25 *  the license of this document you need to read before you send
26 *  any patches.
27 *
28 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
29 *  or libpulse*:
30 *  The libs libroaresd, libroararts and libroarpulse link this lib
31 *  and are therefore GPL. Because of this it may be illigal to use
32 *  them with any software that uses libesd, libartsc or libpulse*.
33 */
34
35#include "libroar.h"
36
37int roar_pinentry_open (struct roar_pinentry * pe, int flags, char * display, char * tty, char * term) {
38 int in[2], out[2];
39
40 if ( pe == NULL )
41  return -1;
42
43 memset(pe, 0, sizeof(struct roar_pinentry));
44 pe->in  = -1;
45 pe->out = -1;
46
47#ifdef ROAR_HAVE_BIN_PINENTRY
48 if ( display == NULL )
49  display = getenv("DISPLAY");
50
51 if ( display == NULL )
52  display = "(NONE)";
53
54 if ( tty == NULL )
55  tty = ttyname(ROAR_STDIN);
56
57 if ( tty == NULL )
58#ifdef ROAR_DEFAULT_TTY
59  tty = ROAR_DEFAULT_TTY;
60#else
61  return -1;
62#endif
63
64 if ( term == NULL )
65  term = getenv("TERM");
66
67 if ( term == NULL )
68  term = "dumb";
69
70 // open some pipes...
71 if ( pipe(in) != 0 )
72  return -1;
73
74 if ( pipe(out) != 0 ) {
75  close(in[0]);
76  close(in[1]);
77  return -1;
78 }
79
80 pe->pid = fork();
81
82 switch (pe->pid) {
83  case -1:
84    close(in[0]);
85    close(in[1]);
86    close(out[0]);
87    close(out[1]);
88    return -1;
89   break;
90  case 0:
91    close(in[0]);
92    close(out[1]);
93    close(ROAR_STDIN);
94    close(ROAR_STDOUT);
95
96    if ( dup2(out[0], ROAR_STDIN) == -1 )
97     _exit(1);
98
99    if ( dup2(in[1], ROAR_STDOUT) == -1 )
100     _exit(1);
101
102    execlp(ROAR_HAVE_BIN_PINENTRY, "RoarAudio", "--display", display, "--ttytype", term, "--ttyname", tty, NULL);
103
104    _exit(1);
105   break;
106 }
107
108 close(in[1]);
109 close(out[0]);
110
111 pe->in  = in[0];
112 pe->out = out[1];
113
114 pe->fin = fdopen(in[0], "r");
115
116 roar_pinentry_recv(pe, NULL, NULL);
117
118 return 0;
119#else
120 return -1;
121#endif
122}
123
124int roar_pinentry_simple_open(struct roar_pinentry * pe) {
125 return roar_pinentry_open(pe, 0, NULL, NULL, NULL);
126}
127
128int roar_pinentry_close(struct roar_pinentry * pe) {
129 if ( pe == NULL )
130  return -1;
131
132 if ( pe->opened == 0 )
133  return 0;
134
135 if ( pe->out != -1 )
136  close(pe->out);
137
138 if ( pe->fin != NULL )
139  fclose(pe->fin);
140
141 if ( pe->in  != -1 )
142  close(pe->in);
143
144 memset(pe, 0, sizeof(struct roar_pinentry));
145
146 return 0;
147}
148
149int roar_pinentry_send (struct roar_pinentry * pe, char * cmd,  char * args) {
150 size_t len;
151
152 if ( pe == NULL )
153  return -1;
154
155 if ( cmd == NULL )
156  return -1;
157
158 len = strlen(cmd);
159
160 if ( write(pe->out, cmd, len) != len )
161  return -1;
162
163 if ( args != NULL ) {
164  len = strlen(args);
165
166  if ( write(pe->out, args, len) != len )
167   return -1;
168 }
169
170 if ( write(pe->out, "\n", 1) != 1 )
171  return -1;
172
173 return 0;
174}
175
176
177#define MAX_LINE_SIZE 2048
178int roar_pinentry_recv (struct roar_pinentry * pe, char ** line, char ** opts) {
179 char realbuf[MAX_LINE_SIZE];
180 char * tp;
181
182 if ( pe == NULL )
183  return -1;
184
185 if ( pe->fin == NULL )
186  return -1;
187
188 if ( fgets(realbuf, MAX_LINE_SIZE, pe->fin) == NULL )
189  return -1;
190
191 tp = realbuf + strlen(realbuf) - 1;
192
193 for (; *tp == '\r' || *tp == '\n'; tp--)
194  *tp = 0;
195
196 if ( (tp = strstr(realbuf, " ")) == NULL ) {
197  if ( line != NULL )
198   *line = strdup(realbuf);
199
200  if ( opts != NULL )
201   *opts = NULL;
202
203  if ( !strcmp(realbuf, "OK") ) {
204   return 0;
205  } else if ( !strcmp(realbuf, "ERR") ) {
206   return 1;
207  } else {
208   return -1;
209  }
210 } else {
211  *tp = 0;
212
213  if ( !strcmp(realbuf, "D") ) {
214   if ( opts != NULL )
215    *opts = strdup(tp+1);
216
217   return roar_pinentry_recv(pe, line, NULL);
218  }
219
220  if ( line != NULL )
221   *line = strdup(realbuf);
222
223  if ( opts != NULL )
224   *opts = NULL;
225
226  if ( !strcmp(realbuf, "OK") ) {
227   return 0;
228  } else if ( !strcmp(realbuf, "ERR") ) {
229   return 1;
230  } else {
231   return -1;
232  }
233 }
234
235 return -1;
236}
237
238int roar_pinentry_req  (struct roar_pinentry * pe, char * cmd,  char * args, char ** line, char ** opts) {
239 if ( pe == NULL )
240  return -1;
241
242 if ( roar_pinentry_send(pe, cmd, args) != 0 )
243  return -1;
244
245 return roar_pinentry_recv(pe, line, opts);
246}
247
248int roar_pinentry_set_desc (struct roar_pinentry * pe, char * desc) {
249 return roar_pinentry_set(pe, "DESC", desc);
250}
251
252int roar_pinentry_set_prompt(struct roar_pinentry * pe, char * prompt) {
253 return roar_pinentry_set(pe, "PROMPT", prompt);
254}
255
256int roar_pinentry_set_yes  (struct roar_pinentry * pe, char * yes) {
257 return roar_pinentry_set(pe, "OK", yes);
258}
259
260int roar_pinentry_set_no   (struct roar_pinentry * pe, char * no) {
261 return roar_pinentry_set(pe, "CANCEL", no);
262}
263
264int roar_pinentry_set      (struct roar_pinentry * pe, char * obj, char * text) {
265 char req[80] = "SET";
266
267 if ( pe == NULL )
268  return -1;
269
270 if ( obj == NULL )
271  return -1;
272
273 if ( strlen(obj) > (80-1 /* \0 */ + 3 /* "SET" */ + 1 /* " " */) )
274  return -1;
275
276 strncat(req, obj, 80-5);
277 strncat(req, " ", 2);
278
279 return roar_pinentry_req(pe, req, text, NULL, NULL);
280}
281
282int roar_pinentry_getpin   (struct roar_pinentry * pe, char ** pw, char * desc, char * prompt) {
283 if ( pe == NULL )
284  return -1;
285
286 if ( pw == NULL )
287  return -1;
288
289 if ( desc != NULL )
290  if ( roar_pinentry_set_desc(pe, desc) != 0 )
291   return -1;
292
293 if ( prompt != NULL )
294  if ( roar_pinentry_set_prompt(pe, prompt) != 0 )
295   return -1;
296
297 if ( roar_pinentry_req(pe, "GETPIN", NULL, NULL, pw) == -1 )
298  return -1;
299
300 return 0;
301}
302
303int roar_pinentry_confirm  (struct roar_pinentry * pe, char * desc, char * yes, char * no) {
304 if ( pe == NULL )
305  return -1;
306
307 if ( desc != NULL )
308  if ( roar_pinentry_set_desc(pe, desc) != 0 )
309   return -1;
310
311 if ( yes != NULL )
312  if ( roar_pinentry_set_yes(pe, yes) != 0 )
313   return -1;
314
315 if ( no != NULL )
316  if ( roar_pinentry_set_no(pe, no) != 0 )
317   return -1;
318
319 return roar_pinentry_req(pe, "CONFIRM", NULL, NULL, NULL);
320}
321
322//ll
Note: See TracBrowser for help on using the repository browser.