nt-quotas: vfs_get_ntquota() return NTSTATUS
[kai/samba-autobuild/.git] / source3 / smbd / ntquotas.c
1 /* 
2    Unix SMB/CIFS implementation.
3    NT QUOTA suppport
4    Copyright (C) Stefan (metze) Metzmacher      2003
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include "smbd/smbd.h"
22 #include "../lib/util/util_pw.h"
23 #include "system/passwd.h"
24 #include "passdb/lookup_sid.h"
25 #include "libsmb/libsmb.h"
26
27 #undef DBGC_CLASS
28 #define DBGC_CLASS DBGC_QUOTA
29
30 static uint64_t limit_nt2unix(uint64_t in, uint64_t bsize)
31 {
32         uint64_t ret = (uint64_t)0;
33
34         ret =   (uint64_t)(in/bsize);
35         if (in>0 && ret==0) {
36                 /* we have to make sure that a overflow didn't set NO_LIMIT */
37                 ret = (uint64_t)1;
38         }
39
40         if (in == SMB_NTQUOTAS_NO_LIMIT)
41                 ret = SMB_QUOTAS_NO_LIMIT;
42         else if (in == SMB_NTQUOTAS_NO_SPACE)
43                 ret = SMB_QUOTAS_NO_SPACE;
44         else if (in == SMB_NTQUOTAS_NO_ENTRY)
45                 ret = SMB_QUOTAS_NO_LIMIT;
46
47         return ret;
48 }
49
50 static uint64_t limit_unix2nt(uint64_t in, uint64_t bsize)
51 {
52         uint64_t ret = (uint64_t)0;
53
54         ret = (uint64_t)(in*bsize);
55         
56         if (ret < in) {
57                 /* we overflow */
58                 ret = SMB_NTQUOTAS_NO_LIMIT;
59         }
60
61         if (in == SMB_QUOTAS_NO_LIMIT)
62                 ret = SMB_NTQUOTAS_NO_LIMIT;
63
64         return ret;
65 }
66
67 static uint64_t limit_blk2inodes(uint64_t in)
68 {
69         uint64_t ret = (uint64_t)0;
70         
71         ret = (uint64_t)(in/2);
72         
73         if (ret == 0 && in != 0)
74                 ret = (uint64_t)1;
75
76         return ret;     
77 }
78
79 NTSTATUS vfs_get_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype,
80                          struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt)
81 {
82         int ret;
83         SMB_DISK_QUOTA D;
84         unid_t id;
85
86         ZERO_STRUCT(D);
87
88         if (!fsp || !fsp->conn || !qt) {
89                 return NT_STATUS_INTERNAL_ERROR;
90         }
91
92         ZERO_STRUCT(*qt);
93
94         id.uid = -1;
95
96         if (psid && !sid_to_uid(psid, &id.uid)) {
97                 DEBUG(0,("sid_to_uid: failed, SID[%s]\n",
98                          sid_string_dbg(psid)));
99                 return NT_STATUS_NO_SUCH_USER;
100         }
101
102         ret = SMB_VFS_GET_QUOTA(fsp->conn, ".", qtype, id, &D);
103
104         if (psid)
105                 qt->sid    = *psid;
106
107         if (ret!=0) {
108                 return map_nt_error_from_unix(errno);
109         }
110                 
111         qt->usedspace = (uint64_t)D.curblocks*D.bsize;
112         qt->softlim = limit_unix2nt(D.softlimit, D.bsize);
113         qt->hardlim = limit_unix2nt(D.hardlimit, D.bsize);
114         qt->qflags = D.qflags;
115
116         return NT_STATUS_OK;
117 }
118
119 int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt)
120 {
121         int ret;
122         SMB_DISK_QUOTA D;
123         unid_t id;
124         ZERO_STRUCT(D);
125
126         if (!fsp||!fsp->conn||!qt)
127                 return (-1);
128
129         id.uid = -1;
130
131         D.bsize     = (uint64_t)QUOTABLOCK_SIZE;
132
133         D.softlimit = limit_nt2unix(qt->softlim,D.bsize);
134         D.hardlimit = limit_nt2unix(qt->hardlim,D.bsize);
135         D.qflags     = qt->qflags;
136
137         D.isoftlimit = limit_blk2inodes(D.softlimit);
138         D.ihardlimit = limit_blk2inodes(D.hardlimit);
139
140         if (psid && !sid_to_uid(psid, &id.uid)) {
141                 DEBUG(0,("sid_to_uid: failed, SID[%s]\n",
142                          sid_string_dbg(psid)));
143         }
144
145         ret = SMB_VFS_SET_QUOTA(fsp->conn, qtype, id, &D);
146         
147         return ret;
148 }
149
150 static bool allready_in_quota_list(SMB_NTQUOTA_LIST *qt_list, uid_t uid)
151 {
152         SMB_NTQUOTA_LIST *tmp_list = NULL;
153         
154         if (!qt_list)
155                 return False;
156
157         for (tmp_list=qt_list;tmp_list!=NULL;tmp_list=tmp_list->next) {
158                 if (tmp_list->uid == uid) {
159                         return True;    
160                 }
161         }
162
163         return False;
164 }
165
166 int vfs_get_user_ntquota_list(files_struct *fsp, SMB_NTQUOTA_LIST **qt_list)
167 {
168         struct passwd *usr;
169         TALLOC_CTX *mem_ctx = NULL;
170
171         if (!fsp||!fsp->conn||!qt_list)
172                 return (-1);
173
174         *qt_list = NULL;
175
176         if ((mem_ctx=talloc_init("SMB_USER_QUOTA_LIST"))==NULL) {
177                 DEBUG(0,("talloc_init() failed\n"));
178                 return (-1);
179         }
180
181         setpwent();
182         while ((usr = getpwent()) != NULL) {
183                 SMB_NTQUOTA_STRUCT tmp_qt;
184                 SMB_NTQUOTA_LIST *tmp_list_ent;
185                 struct dom_sid  sid;
186                 NTSTATUS status;
187
188                 ZERO_STRUCT(tmp_qt);
189
190                 if (allready_in_quota_list((*qt_list),usr->pw_uid)) {
191                         DEBUG(5,("record for uid[%ld] allready in the list\n",(long)usr->pw_uid));
192                         continue;
193                 }
194
195                 uid_to_sid(&sid, usr->pw_uid);
196
197                 status =
198                     vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &tmp_qt);
199                 if (!NT_STATUS_IS_OK(status)) {
200                         DEBUG(5,("no quota entry for sid[%s] path[%s]\n",
201                                  sid_string_dbg(&sid),
202                                  fsp->conn->connectpath));
203                         continue;
204                 }
205
206                 DEBUG(15,("quota entry for id[%s] path[%s]\n",
207                           sid_string_dbg(&sid), fsp->conn->connectpath));
208
209                 if ((tmp_list_ent=talloc_zero(mem_ctx,SMB_NTQUOTA_LIST))==NULL) {
210                         DEBUG(0,("TALLOC_ZERO() failed\n"));
211                         *qt_list = NULL;
212                         talloc_destroy(mem_ctx);
213                         return (-1);
214                 }
215
216                 if ((tmp_list_ent->quotas=talloc_zero(mem_ctx,SMB_NTQUOTA_STRUCT))==NULL) {
217                         DEBUG(0,("TALLOC_ZERO() failed\n"));
218                         *qt_list = NULL;
219                         talloc_destroy(mem_ctx);
220                         return (-1);
221                 }
222
223                 tmp_list_ent->uid = usr->pw_uid;
224                 memcpy(tmp_list_ent->quotas,&tmp_qt,sizeof(tmp_qt));
225                 tmp_list_ent->mem_ctx = mem_ctx;
226
227                 DLIST_ADD((*qt_list),tmp_list_ent);
228                 
229         }
230         endpwent();
231
232         return 0;
233 }
234
235 static int quota_handle_destructor(SMB_NTQUOTA_HANDLE *handle)
236 {
237         if (handle->quota_list)
238                 free_ntquota_list(&handle->quota_list);
239         return 0;
240 }
241
242 void *init_quota_handle(TALLOC_CTX *mem_ctx)
243 {
244         SMB_NTQUOTA_HANDLE *qt_handle;
245
246         if (!mem_ctx)
247                 return NULL;
248
249         qt_handle = talloc_zero(mem_ctx,SMB_NTQUOTA_HANDLE);
250         if (qt_handle==NULL) {
251                 DEBUG(0,("TALLOC_ZERO() failed\n"));
252                 return NULL;
253         }
254
255         talloc_set_destructor(qt_handle, quota_handle_destructor);
256         return (void *)qt_handle;
257 }