LCOV - code coverage report
Current view: top level - tools - wks-util.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 64 0.0 %
Date: 2016-12-01 18:37:21 Functions: 0 2 0.0 %

          Line data    Source code
       1             : /* wks-utils.c - Common helper fucntions for wks tools
       2             :  * Copyright (C) 2016 g10 Code GmbH
       3             :  *
       4             :  * This file is part of GnuPG.
       5             :  *
       6             :  * GnuPG is free software; you can redistribute it and/or modify
       7             :  * it under the terms of the GNU General Public License as published by
       8             :  * the Free Software Foundation; either version 3 of the License, or
       9             :  * (at your option) any later version.
      10             :  *
      11             :  * GnuPG is distributed in the hope that it will be useful,
      12             :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      13             :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      14             :  * GNU General Public License for more details.
      15             :  *
      16             :  * You should have received a copy of the GNU General Public License
      17             :  * along with this program; if not, see <https://www.gnu.org/licenses/>.
      18             :  */
      19             : 
      20             : #include <config.h>
      21             : #include <stdio.h>
      22             : #include <stdlib.h>
      23             : #include <string.h>
      24             : 
      25             : #include "util.h"
      26             : #include "mime-maker.h"
      27             : #include "send-mail.h"
      28             : #include "gpg-wks.h"
      29             : 
      30             : 
      31             : /* Helper to write mail to the output(s).  */
      32             : gpg_error_t
      33           0 : wks_send_mime (mime_maker_t mime)
      34             : {
      35             :   gpg_error_t err;
      36             :   estream_t mail;
      37             : 
      38             :   /* Without any option we take a short path.  */
      39           0 :   if (!opt.use_sendmail && !opt.output)
      40           0 :     return mime_maker_make (mime, es_stdout);
      41             : 
      42           0 :   mail = es_fopenmem (0, "w+b");
      43           0 :   if (!mail)
      44             :     {
      45           0 :       err = gpg_error_from_syserror ();
      46           0 :       return err;
      47             :     }
      48             : 
      49           0 :   err = mime_maker_make (mime, mail);
      50             : 
      51           0 :   if (!err && opt.output)
      52             :     {
      53           0 :       es_rewind (mail);
      54           0 :       err = send_mail_to_file (mail, opt.output);
      55             :     }
      56             : 
      57           0 :   if (!err && opt.use_sendmail)
      58             :     {
      59           0 :       es_rewind (mail);
      60           0 :       err = send_mail (mail);
      61             :     }
      62             : 
      63           0 :   es_fclose (mail);
      64           0 :   return err;
      65             : }
      66             : 
      67             : 
      68             : /* Parse the policy flags by reading them from STREAM and storing them
      69             :  * into FLAGS.  If IGNORE_UNKNOWN is iset unknown keywords are
      70             :  * ignored.  */
      71             : gpg_error_t
      72           0 : wks_parse_policy (policy_flags_t flags, estream_t stream, int ignore_unknown)
      73             : {
      74             :   enum tokens {
      75             :     TOK_MAILBOX_ONLY,
      76             :     TOK_DANE_ONLY,
      77             :     TOK_AUTH_SUBMIT,
      78             :     TOK_MAX_PENDING
      79             :   };
      80             :   static struct {
      81             :     const char *name;
      82             :     enum tokens token;
      83             :   } keywords[] = {
      84             :     { "mailbox-only", TOK_MAILBOX_ONLY },
      85             :     { "dane-only",    TOK_DANE_ONLY    },
      86             :     { "auth-submit",  TOK_AUTH_SUBMIT  },
      87             :     { "max-pending",  TOK_MAX_PENDING  }
      88             :   };
      89           0 :   gpg_error_t err = 0;
      90           0 :   int lnr = 0;
      91             :   char line[1024];
      92             :   char *p, *keyword, *value;
      93             :   int i, n;
      94             : 
      95           0 :   memset (flags, 0, sizeof *flags);
      96             : 
      97           0 :   while (es_fgets (line, DIM(line)-1, stream) )
      98             :     {
      99           0 :       lnr++;
     100           0 :       n = strlen (line);
     101           0 :       if (!n || line[n-1] != '\n')
     102             :         {
     103           0 :           err = gpg_error (*line? GPG_ERR_LINE_TOO_LONG
     104             :                            : GPG_ERR_INCOMPLETE_LINE);
     105           0 :           break;
     106             :         }
     107           0 :       trim_trailing_spaces (line);
     108             :       /* Skip empty and comment lines. */
     109           0 :       for (p=line; spacep (p); p++)
     110             :         ;
     111           0 :       if (!*p || *p == '#')
     112           0 :         continue;
     113             : 
     114           0 :       if (*p == ':')
     115             :         {
     116           0 :           err = gpg_error (GPG_ERR_SYNTAX);
     117           0 :           break;
     118             :         }
     119             : 
     120           0 :       keyword = p;
     121           0 :       value = NULL;
     122           0 :       if ((p = strchr (p, ':')))
     123             :         {
     124             :           /* Colon found: Keyword with value.  */
     125           0 :           *p++ = 0;
     126           0 :           for (; spacep (p); p++)
     127             :             ;
     128           0 :           if (!*p)
     129             :             {
     130           0 :               err = gpg_error (GPG_ERR_MISSING_VALUE);
     131           0 :               break;
     132             :             }
     133           0 :           value = p;
     134             :         }
     135             : 
     136           0 :       for (i=0; i < DIM (keywords); i++)
     137           0 :         if (!ascii_strcasecmp (keywords[i].name, keyword))
     138           0 :           break;
     139           0 :       if (!(i < DIM (keywords)))
     140             :         {
     141           0 :           if (ignore_unknown)
     142           0 :             continue;
     143           0 :           err = gpg_error (GPG_ERR_INV_NAME);
     144           0 :           break;
     145             :         }
     146             : 
     147           0 :       switch (keywords[i].token)
     148             :         {
     149           0 :         case TOK_MAILBOX_ONLY: flags->mailbox_only = 1; break;
     150           0 :         case TOK_DANE_ONLY:    flags->dane_only = 1;    break;
     151           0 :         case TOK_AUTH_SUBMIT:  flags->auth_submit = 1;  break;
     152             :         case TOK_MAX_PENDING:
     153           0 :           if (!value)
     154             :             {
     155           0 :               err = gpg_error (GPG_ERR_SYNTAX);
     156           0 :               goto leave;
     157             :             }
     158             :           /* FIXME: Define whether these are seconds, hours, or days
     159             :            * and decide whether to allow other units.  */
     160           0 :           flags->max_pending = atoi (value);
     161           0 :           break;
     162             :         }
     163             :     }
     164             : 
     165           0 :   if (!err && !es_feof (stream))
     166           0 :     err = gpg_error_from_syserror ();
     167             :     leave:
     168           0 :   if (err)
     169           0 :     log_error ("error reading '%s', line %d: %s\n",
     170             :                es_fname_get (stream), lnr, gpg_strerror (err));
     171             : 
     172           0 :   return err;
     173             : }

Generated by: LCOV version 1.11