summaryrefslogtreecommitdiffhomepage
path: root/src/cmds/ntux_cmd_chmod.c
blob: 7be2bc828ca83bd00cde1066f3f3d2c503d185af (plain)
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/***********************************************************/
/*  ntux: native translation und extension                 */
/*  Copyright (C) 2016--2021  SysDeer Technologies, LLC    */
/*  Released under GPLv2 and GPLv3; see COPYING.NTUX.      */
/***********************************************************/

#include <psxabi/sys_sysapi.h>
#include <psxabi/sys_stat.h>
#include <psxabi/sys_errno.h>

#include <psxxfi/xfi_base.h>
#include <psxxfi/xfi_acl.h>
#include <psxxfi/xfi_fs.h>
#include <psxxfi/xfi_ofd.h>
#include <psxxfi/xfi_unicode.h>

#include <ntapi/nt_object.h>
#include <ntapi/nt_acl.h>
#include <ntapi/nt_file.h>

#include <ntux/ntux.h>
#include "ntux_driver_impl.h"
#include "ntux_nolibc_impl.h"
#include "ntux_errinfo_impl.h"
#include "nolibc/stdbool.h"

#define __SID_SYSTEM			{1,1,{{0,0,0,0,0,5}},{18}}
#define __SID_ADMINISTRATORS		{1,2,{{0,0,0,0,0,5}},{32,544}}

#define NTUX_OPT_MODE_NEUTRAL		(0)
#define NTUX_OPT_MODE_EQUAL		(1)
#define NTUX_OPT_MODE_PLUS		(2)
#define NTUX_OPT_MODE_MINUS		(3)

static const nt_sid    sid_system       = __SID_SYSTEM;
static const nt_sid_os sid_admins       = __SID_ADMINISTRATORS;

static int ntux_cmd_chmod_ret(int fd, struct __ofd * ofd, void * hasync, int ret)
{
	if (hasync)
		__xfi_close_handle(hasync);

	if (ofd)
		__xfi_ofd_ref_dec(ofd);

	if (fd >= 0)
		__sys_close(fd);

	return ret;
}

static nt_sid * ntux_cmd_chmod_sid_from_name(const char * name)
{
	if (!strcmp(name,"Administrators"))
		return (nt_sid *)&sid_admins;

	else if (!strcmp(name,"SYSTEM"))
		return (nt_sid *)&sid_system;

	else
		return 0;
}

int ntux_cmd_chmod(const struct ntux_driver_ctx * dctx, const char * dunit)
{
	intptr_t		ret;
	int32_t			status;
	int			fdout;
	int			fdcwd;
	int			optmode;
	const char *		strmode;
	const char *		chmode;
	const unsigned char *	unit;
	nt_sd *			srcsd;
	nt_sd_common_buffer	dstsd;
	nt_sd_common_meta	meta;
	nt_sid *		owner;
	nt_sid *		group;
	uint32_t		access_owner;
	uint32_t		access_group;
	uint32_t		access_other;
	uint32_t		access_admin;
	uint32_t		ace_flags;
	uint32_t		sec_mask;
	size_t			size;
	int			fd      = -1;
	struct __ofd *		ofd     = 0;
	void *			hasync  = 0;
	uint32_t		buf[0x300] = {0};

	/* strmode */
	strmode   = dctx->cctx->strmode ? dctx->cctx->strmode : (char *)buf;
	optmode   = NTUX_OPT_MODE_NEUTRAL;
	ace_flags = 0;

	for (chmode=strmode; *chmode; chmode++) {
		switch (*chmode) {
			case '=':
				optmode   = NTUX_OPT_MODE_EQUAL;
				ace_flags = 0;
				break;

			case '+':
				optmode = NTUX_OPT_MODE_PLUS;
				break;

			case '-':
				optmode = NTUX_OPT_MODE_MINUS;
				break;

			case 'p':
				switch (optmode) {
					case NTUX_OPT_MODE_EQUAL:
					case NTUX_OPT_MODE_PLUS:
						ace_flags = NT_ACE_CONTAINER_INHERIT | NT_ACE_OBJECT_INHERIT;
						break;

					case NTUX_OPT_MODE_MINUS:
						ace_flags = 0;
						break;

					default:
						return ntux_cmd_chmod_ret(
							0,0,0,
							NTUX_CUSTOM_ERROR(
								dctx,
								NTUX_ERR_FLEE_ERROR));
				}

				break;

			default:
				return ntux_cmd_chmod_ret(
					0,0,0,
					NTUX_CUSTOM_ERROR(
						dctx,
						NTUX_ERR_FLEE_ERROR));
		}
	}

	/* initial --owner and --group support: Administrators, SYSTEM */
	owner = 0;
	group = 0;

	if (dctx->cctx->owner)
		if (!(owner = ntux_cmd_chmod_sid_from_name(dctx->cctx->owner)))
			return ntux_cmd_chmod_ret(
				0,0,0,
				NTUX_CUSTOM_ERROR(
					dctx,
					NTUX_ERR_NOT_IMPLEMENTED));

	if (dctx->cctx->group)
		if (!(group = ntux_cmd_chmod_sid_from_name(dctx->cctx->group)))
			return ntux_cmd_chmod_ret(
				0,0,0,
				NTUX_CUSTOM_ERROR(
					dctx,
					NTUX_ERR_NOT_IMPLEMENTED));

	/* init */
	ntux_driver_set_ectx(
		dctx,0,dunit);

	unit = (const unsigned char *)dunit;

	/* fdctx */
	fdout = ntux_driver_fdout(dctx);
	fdcwd = ntux_driver_fdcwd(dctx);

	/* fd */
	if ((ret = __sys_openat(fdcwd,unit,0,0)) < 0)
		if (ntux_errno_set(dctx,ret))
			return ntux_cmd_chmod_ret(
				0,0,0,
				NTUX_SYSTEM_ERROR(dctx));

	fd = ret;

	/* ofd */
	if (!(ofd = __xfi_ofd_ref_inc(fd)))
		return ntux_cmd_chmod_ret(
			fd,0,0,
			NTUX_CUSTOM_ERROR(
				dctx,
				NTUX_ERR_FLOW_ERROR));

	/* hasync */
	sec_mask  = NT_SEC_READ_CONTROL;
	sec_mask |= NT_SEC_WRITE_DAC;
	sec_mask |= owner ? NT_SEC_WRITE_OWNER : 0;

	if ((status = __xfi_fs_open_async(
			&hasync,
			ofd->info.hfile,0,
			sec_mask,
			NT_FILE_SHARE_READ
				| NT_FILE_SHARE_WRITE
				| NT_FILE_SHARE_DELETE)))
		if (ntux_errno_set(dctx,EACCES))
			return ntux_cmd_chmod_ret(
				fd,ofd,0,
				NTUX_SYSTEM_ERROR(dctx));

	/* srcsd */
	srcsd = (nt_sd *)buf;

	if ((status = __xfi_query_security_object(
			hasync,
			NT_OWNER_SECURITY_INFORMATION
				| NT_GROUP_SECURITY_INFORMATION
				| NT_DACL_SECURITY_INFORMATION,
			srcsd,sizeof(buf),&size)))
		if (ntux_errno_set(dctx,ENXIO))
			return ntux_cmd_chmod_ret(
				fd,ofd,hasync,
				NTUX_SYSTEM_ERROR(dctx));

	if ((status = __xfi_acl_init_common_descriptor_meta(
			&meta,srcsd,
			NT_ACL_INIT_COMMON_DESCRIPTION_META_STRICT_MODE)))
		if (ntux_errno_set(dctx,EBADF))
			return ntux_cmd_chmod_ret(
				fd,ofd,hasync,
				NTUX_SYSTEM_ERROR(dctx));

	/* source permissions */
	access_owner  = meta.owner_ace  ? meta.owner_ace->mask  : 0;
	access_group  = meta.group_ace  ? meta.group_ace->mask  : 0;
	access_other  = meta.other_ace  ? meta.other_ace->mask  : 0;
	access_admin  = meta.admin_ace  ? meta.admin_ace->mask  : 0;

	/* initial --strmode support, retaining previous options as needed */
	if (!dctx->cctx->strmode) {
		ace_flags |= meta.owner_ace  ? meta.owner_ace->header.ace_flags : 0;
		ace_flags |= meta.group_ace  ? meta.group_ace->header.ace_flags : 0;
		ace_flags |= meta.other_ace  ? meta.other_ace->header.ace_flags : 0;
		ace_flags |= meta.admin_ace  ? meta.admin_ace->header.ace_flags : 0;
	}

	/* updated dacl */
	__xfi_acl_init_common_descriptor(
		&dstsd,
		owner ? owner : meta.owner,
		group ? group : meta.group,
		0,0,
		access_owner,access_group,access_other,
		access_admin,meta.system_acc,
		ace_flags);

	sec_mask  = NT_DACL_SECURITY_INFORMATION;
	sec_mask |= owner ? NT_OWNER_SECURITY_INFORMATION : 0;

	if ((status = __xfi_set_security_object(
			hasync,sec_mask,&dstsd.sd)))
		if (ntux_errno_set(dctx,EPERM))
			return ntux_cmd_chmod_ret(
				fd,ofd,hasync,
				NTUX_SYSTEM_ERROR(dctx));

	/* changes */
	(void)fdout;

	/* all done */
	return ntux_cmd_chmod_ret(fd,ofd,hasync,0);
}