Factor trim format function out
[mmh] / sbr / context_save.c
1 /*
2 ** context_save.c -- write out the updated context file
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 /*
10  * This function used to support setuid/setgid programs by writing
11  * the file as the user.  But that code, m_chkids(), was removed
12  * because there no longer are setuid/setgid programs in nmh.
13  */
14
15 #include <sysexits.h>
16 #include <h/mh.h>
17 #include <h/signals.h>
18
19 void
20 context_save(void)
21 {
22         struct node *np;
23         FILE *out;
24         sigset_t set, oset;
25
26         /* No context in use -- silently ignore any changes! */
27         if (!ctxpath)
28                 return;
29
30         if (!(ctxflags & CTXMOD))
31                 return;
32         ctxflags &= ~CTXMOD;
33
34         /* block a few signals */
35         sigemptyset(&set);
36         sigaddset(&set, SIGHUP);
37         sigaddset(&set, SIGINT);
38         sigaddset(&set, SIGQUIT);
39         sigaddset(&set, SIGTERM);
40         sigprocmask(SIG_BLOCK, &set, &oset);
41
42         if (!(out = lkfopen(ctxpath, "w")))
43                 adios(EX_IOERR, ctxpath, "unable to write");
44         for (np = m_defs; np; np = np->n_next)
45                 if (np->n_context)
46                         fprintf(out, "%s: %s\n", np->n_name, np->n_field);
47         lkfclose(out, ctxpath);
48
49         sigprocmask(SIG_SETMASK, &oset, &set); /* reset the signal mask */
50 }