Whitespace changes only.
[pspp] / src / language / utilities / permissions.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2004, 2010, 2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include <errno.h>
20 #include <stdlib.h>
21 #include <sys/stat.h>
22 #include <sys/types.h>
23 #include <unistd.h>
24
25 #include "data/settings.h"
26 #include "language/command.h"
27 #include "language/lexer/lexer.h"
28 #include "libpspp/cast.h"
29 #include "libpspp/i18n.h"
30 #include "libpspp/message.h"
31 #include "libpspp/misc.h"
32 #include "libpspp/str.h"
33
34 #include "gettext.h"
35 #define _(msgid) gettext (msgid)
36
37 enum PER {PER_RO, PER_RW};
38
39 int change_permissions(const char *file_name, enum PER per);
40
41
42 /* Parses the PERMISSIONS command. */
43 int
44 cmd_permissions (struct lexer *lexer, struct dataset *ds UNUSED)
45 {
46   char  *fn = NULL;
47   const char *str = NULL;
48   lex_match (lexer, T_SLASH);
49
50   if (lex_match_id (lexer, "FILE"))
51     lex_match (lexer, T_EQUALS);
52
53   str = lex_tokcstr (lexer);
54   if (str)
55     fn = strdup (str);
56
57   if (!lex_force_match (lexer, T_STRING) || str == NULL)
58     goto error;
59
60   lex_match (lexer, T_SLASH);
61
62   if (! lex_match_id (lexer, "PERMISSIONS"))
63     goto error;
64
65   lex_match (lexer, T_EQUALS);
66
67   if (lex_match_id (lexer, "READONLY"))
68     {
69       if (! change_permissions (fn, PER_RO))
70         goto error;
71     }
72   else if (lex_match_id (lexer, "WRITEABLE"))
73     {
74       if (! change_permissions (fn, PER_RW))
75         goto error;
76     }
77   else
78     {
79       lex_error_expecting (lexer, "WRITEABLE", "READONLY");
80       goto error;
81     }
82
83   free (fn);
84
85   return CMD_SUCCESS;
86
87  error:
88
89   free(fn);
90
91   return CMD_FAILURE;
92 }
93
94
95
96 int
97 change_permissions (const char *file_name, enum PER per)
98 {
99   char *locale_file_name;
100   struct stat buf;
101   mode_t mode;
102
103   if (settings_get_safer_mode ())
104     {
105       msg (SE, _("This command not allowed when the %s option is set."), "SAFER");
106       return 0;
107     }
108
109   locale_file_name = utf8_to_filename (file_name);
110   if (-1 == stat(locale_file_name, &buf))
111     {
112       const int errnum = errno;
113       msg (SE, _("Cannot stat %s: %s"), file_name, strerror(errnum));
114       free (locale_file_name);
115       return 0;
116     }
117
118   if (per == PER_RW)
119     mode = buf.st_mode | 0200;
120   else
121     mode = buf.st_mode & ~0222;
122
123   if (-1 == chmod(locale_file_name, mode))
124
125     {
126       const int errnum = errno;
127       msg (SE, _("Cannot change mode of %s: %s"), file_name, strerror(errnum));
128       free (locale_file_name);
129       return 0;
130     }
131
132   free (locale_file_name);
133
134   return 1;
135 }