2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015
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
))
65 /* If 'user' is null then lookup entry for 'uid'. Caller must free 'buf'. */
67 get_pwd_struct (const char *user
, uid_t uid
, struct passwd
*pw
, char **buf
)
69 #ifdef HAVE_GETPWNAM_R
70 struct passwd
*result
;
73 len
= sysconf (_SC_GETPW_R_SIZE_MAX
);
83 if (!getpwnam_r (user
, pw
, *buf
, len
, &result
))
88 if (!getpwuid_r (uid
, pw
, *buf
, len
, &result
))
98 return getpwnam (user
);
100 return getpwuid (uid
);
105 get_pwd_entry(uid_t uid
, int which
)
109 struct passwd
*result
= get_pwd_struct (NULL
, uid
, &pw
, &buf
);
118 value
= str_dup (result
->pw_dir
);
120 value
= str_dup (result
->pw_name
);
128 get_username (uid_t uid
)
130 return get_pwd_entry (uid
, 1);
137 return home_directory
;
139 home_directory
= get_pwd_entry (getuid(), 0);
140 return home_directory
;
144 expand_homedir (char *str
)
150 char *dir
= get_pwd_entry(getuid(), 0);
151 char *s
= str_asprintf ("%s%s", dir
, p
);
157 return str_dup (str
);
161 parse_options (char **line
, struct argv_s
* args
[], void *data
)
174 if (*p
== '-' && *(p
+ 1) == '-')
177 char opt
[255] = { 0 }, value
[255] =
183 if (!*p
|| *p
== ' ')
191 for (tp
= opt
, len
= 0; *p
; p
++, len
++)
194 return GPG_ERR_LINE_TOO_LONG
;
196 if (*p
== ' ' || *p
== '=')
206 for (tp
= value
, len
= 0; *p
; p
++, len
++)
209 return GPG_ERR_LINE_TOO_LONG
;
216 else if (*p
== ' ' && !inquote
)
234 for (int i
= 0; args
[i
]; i
++)
236 if (!strcmp (args
[i
]->opt
, opt
))
238 log_write1 ("param: name='%s' value='%s'", opt
, value
);
239 if (args
[i
]->type
== OPTION_TYPE_NOARG
&& *value
)
240 return GPG_ERR_SYNTAX
;
241 else if (args
[i
]->type
== OPTION_TYPE_ARG
&& !*value
)
242 return GPG_ERR_SYNTAX
;
244 rc
= args
[i
]->func (data
, value
);
255 return GPG_ERR_UNKNOWN_OPTION
;
271 bin2hex (const unsigned char *data
, size_t len
)
273 size_t size
= len
* 2 + 1;
279 for (n
= 0; n
< len
; n
++)
283 sprintf (c
, "%02X", data
[n
]);
287 return str_dup (buf
);
291 plus_escape (const char *fmt
, ...)
298 if (str_vasprintf (&str
, fmt
, ap
) > 0)
302 for (p
= str
; *p
; p
++)
317 strip_texi (const char *str
)
320 char *s
= str_dup (str
);
326 for (p
= str
; *p
; p
++)
328 if (*p
== '@' && *(p
+ 1) != '@')
330 if (!strncasecmp (p
+ 1, "table", 5)
331 || !strncasecmp (p
+ 1, "end ", 4))
333 while (*p
++ != '\n');
337 else if (!strncasecmp (p
+ 1, "example", 7)
338 || !strncasecmp (p
+ 1, "end ", 4))
340 while (*p
++ != '\n');
344 else if (!strncasecmp (p
+ 1, "sp ", 3))
348 while (*p
&& isdigit (*p
++))
352 else if (!strncasecmp (p
+ 1, "item", 4))
355 while (*p
&& *p
!= '\n')
360 else if (!strncasecmp (p
+ 1, "pxref", 5))
367 else if (!strncasecmp (p
+ 1, "xref", 4))
375 while (*p
&& *p
!= '{')
389 while (*p
&& *p
!= '}')
398 else if (*p
== '@' && *(p
+ 1) == '@')
414 strip_texi_and_wrap (const char *str
)
416 char *tmp
= strip_texi (str
);
417 char *help
= xmalloc (strlen (tmp
) * 2 + 1);
421 for (p
= tmp
, ph
= help
, i
= 0; *p
; p
++, i
++)
423 if (i
== 78 || *p
== '\n')
430 while (!(*--t
== ' '))
446 while (*p
!= '\n' && *p
== ' ')
460 free_key (void *data
)
466 create_thread (void *(*cb
) (void *), void *data
,
467 pthread_t
* tid
, int detached
)
472 pthread_attr_init (&attr
);
475 pthread_attr_setdetachstate (&attr
, PTHREAD_CREATE_DETACHED
);
477 n
= pthread_create (tid
, &attr
, cb
, data
);
478 pthread_attr_destroy (&attr
);
479 return gpg_error_from_errno (n
);
483 cleanup_mutex_cb (void *arg
)
485 pthread_mutex_t
*m
= (pthread_mutex_t
*) arg
;
491 cleanup_fd_cb (void *arg
)
493 int fd
= *(int *) arg
;
500 cleanup_unlink_cb (void *arg
)
509 cleanup_cache_mutex (void *arg
)
515 valid_keygrip (const unsigned char *data
, size_t len
)
517 for (size_t i
= 0; i
< len
; i
++)
527 get_checksum (const char *filename
, unsigned char **r_crc
, size_t * r_crclen
)
534 if (stat (filename
, &st
) == -1)
535 return gpg_error_from_errno (errno
);
537 fd
= open (filename
, O_RDONLY
);
539 return gpg_error_from_errno (errno
);
541 pthread_cleanup_push (cleanup_fd_cb
, &fd
);
542 buf
= xmalloc (st
.st_size
);
545 pthread_cleanup_push (xfree
, buf
);
547 size_t len
= read (fd
, buf
, st
.st_size
);
548 if (len
== st
.st_size
)
554 len
= gcry_md_get_algo_dlen (GCRY_MD_CRC32
);
558 pthread_cleanup_push (xfree
, crc
);
559 gcry_md_hash_buffer (GCRY_MD_CRC32
, crc
, buf
, st
.st_size
);
562 pthread_cleanup_pop (0);
569 rc
= GPG_ERR_TOO_SHORT
;
571 pthread_cleanup_pop (1);
576 pthread_cleanup_pop (1);
580 wchar_t *str_to_wchar (const char *str
)
587 memset (&ps
, 0, sizeof(mbstate_t));
588 len
= mbsrtowcs (NULL
, &p
, 0, &ps
);
592 wc
= xcalloc (len
+1, sizeof(wchar_t));
594 memset (&ps
, 0, sizeof(mbstate_t));
595 len
= mbsrtowcs (wc
, &p
, len
, &ps
);