1333{
1334 char buf[1024] = { 0 };
1336 char *cert_end = NULL;
1337 FILE *fp_smime_in = NULL, *fp_smime_err = NULL, *fp_out = NULL, *fp_tmp = NULL;
1338 struct Body *b_enc = NULL;
1339 bool err = false;
1340 int empty, off;
1341 pid_t pid;
1342
1345
1348 if (!fp_out)
1349 {
1351 goto cleanup;
1352 }
1353
1355 if (!fp_smime_err)
1356 {
1358 goto cleanup;
1359 }
1360
1363 if (!fp_tmp)
1364 {
1366 goto cleanup;
1367 }
1368
1369 *certfile = '\0';
1370 for (char *cert_start = certlist; cert_start; cert_start = cert_end)
1371 {
1372 cert_end = strchr(cert_start, ' ');
1373 if (cert_end)
1374 *cert_end = '\0';
1375 if (*cert_start)
1376 {
1379 snprintf(certfile + off, sizeof(certfile) - off, "%s%s/%s",
1380 (off != 0) ?
" " :
"",
NONULL(c_smime_certificates), cert_start);
1381 }
1382 if (cert_end)
1383 *cert_end++ = ' ';
1384 }
1385
1386
1388 fputc('\n', fp_tmp);
1391
1393 fileno(fp_smime_err),
buf_string(smime_infile), certfile);
1394 if (pid == -1)
1395 {
1397 goto cleanup;
1398 }
1399
1401
1404
1405 fflush(fp_out);
1406 rewind(fp_out);
1407 empty = (fgetc(fp_out) == EOF);
1409
1410 fflush(fp_smime_err);
1411 rewind(fp_smime_err);
1412 while (fgets(buf, sizeof(buf) - 1, fp_smime_err))
1413 {
1414 err = true;
1415 fputs(buf, stdout);
1416 }
1418
1419
1420 if (err)
1422
1423 if (empty)
1424 {
1425
1426 if (!err)
1429 goto cleanup;
1430 }
1431
1443 b_enc->
parts = NULL;
1445
1446cleanup:
1447 if (fp_out)
1448 {
1451 }
1453 if (fp_tmp)
1454 {
1457 }
1460
1461 return b_enc;
1462}
char * buf_strdup(const struct Buffer *buf)
Copy a Buffer's string.
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
const char * cs_subset_path(const struct ConfigSubset *sub, const char *name)
Get a path config item by name.
int mutt_any_key_to_continue(const char *s)
Prompt the user to 'press any key' and wait.
void mutt_file_unlink(const char *s)
Delete a file, carefully.
#define mutt_file_fclose(FP)
#define mutt_file_fopen(PATH, MODE)
int filter_wait(pid_t pid)
Wait for the exit of a process and return its status.
size_t mutt_str_len(const char *a)
Calculate the length of a string, safely.
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
int mutt_write_mime_body(struct Body *b, FILE *fp, struct ConfigSubset *sub)
Write a MIME part.
static pid_t smime_invoke_encrypt(FILE **fp_smime_in, FILE **fp_smime_out, FILE **fp_smime_err, int fp_smime_infd, int fp_smime_outfd, int fp_smime_errfd, const char *fname, const char *uids)
Use SMIME to encrypt a file.
String manipulation buffer.
Container for Accounts, Notifications.
struct ConfigSubset * sub
Inherited config items.
#define mutt_file_mkstemp()