2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
3 Ben Kibbey <bjk@luxsci.net>
5 This file is part of pwmd.
7 Pwmd is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 2 of the License, or
10 (at your option) any later version.
12 Pwmd is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Pwmd. If not, see <http://www.gnu.org/licenses/>.
28 #include <sys/types.h>
35 #include "pwmd-error.h"
37 #include "util-misc.h"
38 #include "util-string.h"
43 extern void log_write (const char *fmt
, ...);
46 valid_filename (const char *filename
)
50 if (!filename
|| !*filename
)
53 if (filename
[0] == '-' && filename
[1] == 0)
56 for (p
= filename
; *p
; p
++)
58 if (*p
== '/' || isspace (*p
))
66 get_pwd_entry(uid_t uid
, int which
)
68 struct passwd
*result
;
69 #ifdef HAVE_GETPWNAM_R
75 len
= sysconf (_SC_GETPW_R_SIZE_MAX
);
83 if (!getpwuid_r (uid
, &pw
, buf
, len
, &result
))
85 result
= getpwuid (uid
);
90 value
= str_dup (result
->pw_dir
);
92 value
= str_dup (result
->pw_name
);
95 #ifdef HAVE_GETPWNAM_R
102 get_username (uid_t uid
)
104 return get_pwd_entry (uid
, 1);
111 return home_directory
;
113 home_directory
= get_pwd_entry (getuid(), 0);
114 return home_directory
;
118 expand_homedir (char *str
)
124 char *dir
= get_pwd_entry(getuid(), 0);
125 char *s
= str_asprintf ("%s%s", dir
, p
);
131 return str_dup (str
);
135 parse_options (char **line
, struct argv_s
* args
[], void *data
)
148 if (*p
== '-' && *(p
+ 1) == '-')
151 char opt
[255] = { 0 }, value
[255] =
157 if (!*p
|| *p
== ' ')
165 for (tp
= opt
, len
= 0; *p
; p
++, len
++)
168 return GPG_ERR_LINE_TOO_LONG
;
170 if (*p
== ' ' || *p
== '=')
180 for (tp
= value
, len
= 0; *p
; p
++, len
++)
183 return GPG_ERR_LINE_TOO_LONG
;
190 else if (*p
== ' ' && !inquote
)
208 for (int i
= 0; args
[i
]; i
++)
210 if (!strcmp (args
[i
]->opt
, opt
))
212 log_write1 ("param: name='%s' value='%s'", opt
, value
);
213 if (args
[i
]->type
== OPTION_TYPE_NOARG
&& *value
)
214 return GPG_ERR_SYNTAX
;
215 else if (args
[i
]->type
== OPTION_TYPE_ARG
&& !*value
)
216 return GPG_ERR_SYNTAX
;
218 rc
= args
[i
]->func (data
, value
);
229 return GPG_ERR_UNKNOWN_OPTION
;
245 bin2hex (const unsigned char *data
, size_t len
)
247 size_t size
= len
* 2 + 1;
253 for (n
= 0; n
< len
; n
++)
257 sprintf (c
, "%02X", data
[n
]);
261 return str_dup (buf
);
265 plus_escape (const char *fmt
, ...)
272 if (str_vasprintf (&str
, fmt
, ap
) > 0)
276 for (p
= str
; *p
; p
++)
291 strip_texi (const char *str
)
294 char *s
= str_dup (str
);
300 for (p
= str
; *p
; p
++)
302 if (*p
== '@' && *(p
+ 1) != '@')
304 if (!strncasecmp (p
+ 1, "table", 5)
305 || !strncasecmp (p
+ 1, "end ", 4))
307 while (*p
++ != '\n');
311 else if (!strncasecmp (p
+ 1, "example", 7)
312 || !strncasecmp (p
+ 1, "end ", 4))
314 while (*p
++ != '\n');
318 else if (!strncasecmp (p
+ 1, "sp ", 3))
322 while (*p
&& isdigit (*p
++))
326 else if (!strncasecmp (p
+ 1, "item", 4))
329 while (*p
&& *p
!= '\n')
334 else if (!strncasecmp (p
+ 1, "pxref", 5))
341 else if (!strncasecmp (p
+ 1, "xref", 4))
349 while (*p
&& *p
!= '{')
363 while (*p
&& *p
!= '}')
372 else if (*p
== '@' && *(p
+ 1) == '@')
388 strip_texi_and_wrap (const char *str
)
390 char *tmp
= strip_texi (str
);
391 char *help
= xmalloc (strlen (tmp
+ 1) * 2);
395 for (p
= tmp
, ph
= help
, i
= 0; *p
; p
++, i
++)
397 if (i
== 78 || *p
== '\n')
404 while (!(*--t
== ' '))
420 while (*p
!= '\n' && *p
== ' ')
434 free_key (void *data
)
440 create_thread (void *(*cb
) (void *), void *data
,
441 pthread_t
* tid
, int detached
)
446 pthread_attr_init (&attr
);
449 pthread_attr_setdetachstate (&attr
, PTHREAD_CREATE_DETACHED
);
451 n
= pthread_create (tid
, &attr
, cb
, data
);
452 pthread_attr_destroy (&attr
);
453 return gpg_error_from_errno (n
);
457 cleanup_mutex_cb (void *arg
)
459 pthread_mutex_t
*m
= (pthread_mutex_t
*) arg
;
465 cleanup_fd_cb (void *arg
)
467 int fd
= *(int *) arg
;
474 cleanup_unlink_cb (void *arg
)
483 cleanup_cache_mutex (void *arg
)
489 valid_keygrip (const unsigned char *data
, size_t len
)
491 for (size_t i
= 0; i
< len
; i
++)
501 get_checksum (const char *filename
, unsigned char **r_crc
, size_t * r_crclen
)
508 if (stat (filename
, &st
) == -1)
509 return gpg_error_from_errno (errno
);
511 fd
= open (filename
, O_RDONLY
);
513 return gpg_error_from_errno (errno
);
515 pthread_cleanup_push (cleanup_fd_cb
, &fd
);
516 buf
= xmalloc (st
.st_size
);
519 pthread_cleanup_push (xfree
, buf
);
521 size_t len
= read (fd
, buf
, st
.st_size
);
522 if (len
== st
.st_size
)
528 len
= gcry_md_get_algo_dlen (GCRY_MD_CRC32
);
532 pthread_cleanup_push (xfree
, crc
);
533 gcry_md_hash_buffer (GCRY_MD_CRC32
, crc
, buf
, st
.st_size
);
536 pthread_cleanup_pop (0);
543 rc
= GPG_ERR_TOO_SHORT
;
545 pthread_cleanup_pop (1);
550 pthread_cleanup_pop (1);
554 wchar_t *str_to_wchar (const char *str
)
561 memset (&ps
, 0, sizeof(mbstate_t));
562 len
= mbsrtowcs (NULL
, &p
, 0, &ps
);
563 wc
= xcalloc (len
+1, sizeof(wchar_t));
565 memset (&ps
, 0, sizeof(mbstate_t));
566 len
= mbsrtowcs (wc
, &p
, len
, &ps
);