2ea91de1dcbac0ed27ce267fade61e32b8b6c983
[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 = 0;
47
48   lex_match (lexer, T_SLASH);
49
50   if (lex_match_id (lexer, "FILE"))
51     lex_match (lexer, T_EQUALS);
52
53   if (!lex_force_string (lexer))
54     return CMD_FAILURE;
55
56   fn = ss_xstrdup (lex_tokss (lexer));
57   lex_force_match (lexer, T_STRING);
58
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", NULL_SENTINEL);
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 SAFER option is set."));
106       return 0;
107     }
108
109
110   locale_file_name = utf8_to_filename (file_name);
111   if ( -1 == stat(locale_file_name, &buf) )
112     {
113       const int errnum = errno;
114       msg (SE, _("Cannot stat %s: %s"), file_name, strerror(errnum));
115       free (locale_file_name);
116       return 0;
117     }
118
119   if ( per == PER_RW )
120     mode = buf.st_mode | 0200;
121   else
122     mode = buf.st_mode & ~0222;
123
124   if ( -1 == chmod(locale_file_name, mode))
125
126     {
127       const int errnum = errno;
128       msg (SE, _("Cannot change mode of %s: %s"), file_name, strerror(errnum));
129       free (locale_file_name);
130       return 0;
131     }
132
133   free (locale_file_name);
134
135   return 1;
136 }