File: mount_flags.c

package info (click to toggle)
zulucrypt 6.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,908 kB
  • sloc: ansic: 25,142; cpp: 23,281; makefile: 24; xml: 10; sh: 2
file content (205 lines) | stat: -rw-r--r-- 4,035 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/*
 *
 *  Copyright (c) 2012-2015
 *  name : Francis Banyikwa
 *  email: mhogomchungu@gmail.com
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <sys/mount.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#include "includes.h"

#define MOUNT_WITH_NOEXEC_BY_DEFAULT 0

static int _user_has_no_access( uid_t uid )
{
	if( uid == 0 ){

		return 0 ;
	}else{
		/*
		 * zuluCryptUserIsAMemberOfAGroup() is defined in security.c
		 */
		return !zuluCryptUserIsAMemberOfAGroup( uid,"zulumount" ) ;
	}
}

int zuluCryptMountFlagsAreNotCorrect( const char * mode,uid_t uid,unsigned long * flags )
{
	unsigned long flg = 0 ;

	if( mode == NULL ){

		flg |= MS_NODEV | MS_NOSUID | MS_NOEXEC | MS_RELATIME ;
		*flags = flg ;
		return 0 ;
	}
	if( StringHasComponent( mode,"ro" ) ){

		flg |= MS_RDONLY ;
	}
	if( StringHasComponent( mode,"dev" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
	}else{
		flg |= MS_NODEV ;
	}
#if MOUNT_WITH_NOEXEC_BY_DEFAULT
	if( zuluCryptUserIsAMemberOfAGroup( uid,"zulumount-exec" ) ){

		/*
		 * user is a member of a group,mount volume with exec option by default
		 */
		if( StringHasComponent( mode,"noexec" ) ){
			/*
			 * user with access wish to mount a volume without it
			 */
			flg |= MS_NOEXEC ;
		}
	}else{
		if( StringHasComponent( mode,"exec" ) ){

			if( _user_has_no_access( uid ) ){

				return 1 ;
			}
		}else{
			flg |= MS_NOEXEC ;
		}
	}
#else
	if( StringHasComponent( mode,"noexec" ) ){
		/*
		* user with access wish to mount a volume without it
		*/
		flg |= MS_NOEXEC ;
	}
#endif
	if( StringHasComponent( mode,"suid" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
	}else{
		flg |= MS_NOSUID ;
	}
	if( StringHasComponent( mode,"bind" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_BIND ;
	}
	if( StringHasComponent( mode,"mandlock" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_MANDLOCK ;
	}
	if( StringHasComponent( mode,"move" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_MOVE ;
	}
	if( StringHasComponent( mode,"noatime" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_NOATIME ;
	}
	if( StringHasComponent( mode,"strictatime" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_STRICTATIME ;
	}
	if( flg & MS_NOATIME ){
		/*
		 * MS_NOATIME flag is set by user,use it instead of MS_RELATIME
		 */		
	}else if( flg & MS_STRICTATIME ){
		/*
		 *  MS_STRICTATIME flag is set by user,use it instead of MS_RELATIME
		 */		
	}else{
		/*
		 * MS_NOATIME flag not set,autoset MS_RELATIME flag as the default flag
		 */
		flg |= MS_RELATIME ;
	}
#if 0
	/*
	 * done check for this one since its a default option set above
	 */
	if( StringHasComponent( mode,"relatime" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_RELATIME ;
	}
#endif
	if( StringHasComponent( mode,"nodiratime" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_NODIRATIME ;
	}
	if( StringHasComponent( mode,"remount" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_REMOUNT ;
	}
	if( StringHasComponent( mode,"silent" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_SILENT ;
	}
	if( StringHasComponent( mode,"synchronous" ) ){

		if( _user_has_no_access( uid ) ){

			return 1 ;
		}
		flg |= MS_SYNCHRONOUS ;
	}
	*flags = flg ;
	return 0 ;
}