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
);
160 /* The 'more' parameter lets the calling command process remaining
161 * non-option arguments. */
163 parse_options (char **line
, struct argv_s
* args
[], void *data
, int more
)
176 if (*p
== '-' && *(p
+ 1) == '-')
179 char opt
[255] = { 0 }, value
[255] =
185 if (!*p
|| *p
== ' ')
193 for (tp
= opt
, len
= 0; *p
; p
++, len
++)
196 return GPG_ERR_LINE_TOO_LONG
;
198 if (*p
== ' ' || *p
== '=')
208 for (tp
= value
, len
= 0; *p
; p
++, len
++)
211 return GPG_ERR_LINE_TOO_LONG
;
218 else if (*p
== ' ' && !inquote
)
236 for (int i
= 0; args
[i
]; i
++)
238 if (!strcmp (args
[i
]->opt
, opt
))
240 log_write1 ("param: name='%s' value='%s'", opt
, value
);
241 if (args
[i
]->type
== OPTION_TYPE_NOARG
&& *value
)
242 return GPG_ERR_SYNTAX
;
243 else if (args
[i
]->type
== OPTION_TYPE_ARG
&& !*value
)
244 return GPG_ERR_SYNTAX
;
246 rc
= args
[i
]->func (data
, value
);
257 return GPG_ERR_UNKNOWN_OPTION
;
266 return GPG_ERR_SYNTAX
;
276 bin2hex (const unsigned char *data
, size_t len
)
278 size_t size
= len
* 2 + 1;
284 for (n
= 0; n
< len
; n
++)
288 sprintf (c
, "%02X", data
[n
]);
292 return str_dup (buf
);
296 plus_escape (const char *fmt
, ...)
303 if (str_vasprintf (&str
, fmt
, ap
) > 0)
307 for (p
= str
; *p
; p
++)
322 strip_texi (const char *str
)
325 char *s
= str_dup (str
);
331 for (p
= str
; *p
; p
++)
333 if (*p
== '@' && *(p
+ 1) != '@')
335 if (!strncasecmp (p
+ 1, "table", 5)
336 || !strncasecmp (p
+ 1, "end ", 4))
338 while (*p
++ != '\n');
342 else if (!strncasecmp (p
+ 1, "example", 7)
343 || !strncasecmp (p
+ 1, "end ", 4))
345 while (*p
++ != '\n');
349 else if (!strncasecmp (p
+ 1, "sp ", 3))
353 while (*p
&& isdigit (*p
++))
357 else if (!strncasecmp (p
+ 1, "item", 4))
360 while (*p
&& *p
!= '\n')
365 else if (!strncasecmp (p
+ 1, "pxref", 5))
372 else if (!strncasecmp (p
+ 1, "xref", 4))
380 while (*p
&& *p
!= '{')
394 while (*p
&& *p
!= '}')
403 else if (*p
== '@' && *(p
+ 1) == '@')
419 strip_texi_and_wrap (const char *str
)
421 char *tmp
= strip_texi (str
);
422 char *help
= xmalloc (strlen (tmp
) * 2 + 1);
426 for (p
= tmp
, ph
= help
, i
= 0; *p
; p
++, i
++)
428 if (i
== 78 || *p
== '\n')
435 while (!(*--t
== ' '))
451 while (*p
!= '\n' && *p
== ' ')
465 free_key (void *data
)
471 create_thread (void *(*cb
) (void *), void *data
,
472 pthread_t
* tid
, int detached
)
477 pthread_attr_init (&attr
);
480 pthread_attr_setdetachstate (&attr
, PTHREAD_CREATE_DETACHED
);
482 n
= pthread_create (tid
, &attr
, cb
, data
);
483 pthread_attr_destroy (&attr
);
484 return gpg_error_from_errno (n
);
488 cleanup_mutex_cb (void *arg
)
490 pthread_mutex_t
*m
= (pthread_mutex_t
*) arg
;
496 cleanup_fd_cb (void *arg
)
498 int fd
= *(int *) arg
;
505 cleanup_unlink_cb (void *arg
)
514 cleanup_cache_mutex (void *arg
)
520 valid_keygrip (const unsigned char *data
, size_t len
)
522 for (size_t i
= 0; i
< len
; i
++)
532 get_checksum (const char *filename
, unsigned char **r_crc
, size_t * r_crclen
)
539 if (stat (filename
, &st
) == -1)
540 return gpg_error_from_errno (errno
);
542 fd
= open (filename
, O_RDONLY
);
544 return gpg_error_from_errno (errno
);
546 pthread_cleanup_push (cleanup_fd_cb
, &fd
);
547 buf
= xmalloc (st
.st_size
);
550 pthread_cleanup_push (xfree
, buf
);
552 size_t len
= read (fd
, buf
, st
.st_size
);
553 if (len
== st
.st_size
)
559 len
= gcry_md_get_algo_dlen (GCRY_MD_CRC32
);
563 pthread_cleanup_push (xfree
, crc
);
564 gcry_md_hash_buffer (GCRY_MD_CRC32
, crc
, buf
, st
.st_size
);
567 pthread_cleanup_pop (0);
574 rc
= GPG_ERR_TOO_SHORT
;
576 pthread_cleanup_pop (1);
581 pthread_cleanup_pop (1);
585 wchar_t *str_to_wchar (const char *str
)
592 memset (&ps
, 0, sizeof(mbstate_t));
593 len
= mbsrtowcs (NULL
, &p
, 0, &ps
);
597 wc
= xcalloc (len
+1, sizeof(wchar_t));
599 memset (&ps
, 0, sizeof(mbstate_t));
600 len
= mbsrtowcs (wc
, &p
, len
, &ps
);