Whamcloud - gitweb
efc37cb49c67437c5124be2e57548e7040ec501c
[tools/e2fsprogs.git] / lib / support / mkquota.c
1 /*
2  * mkquota.c --- create quota files for a filesystem
3  *
4  * Aditya Kali <adityakali@google.com>
5  */
6 #include "config.h"
7 #include <sys/types.h>
8 #include <sys/stat.h>
9 #include <unistd.h>
10 #include <errno.h>
11 #include <string.h>
12 #include <fcntl.h>
13
14 #include "ext2fs/ext2_fs.h"
15 #include "ext2fs/ext2fs.h"
16 #include "e2p/e2p.h"
17
18 #include "quotaio.h"
19 #include "quotaio_v2.h"
20 #include "quotaio_tree.h"
21 #include "common.h"
22 #include "dict.h"
23
24 /* Needed for architectures where sizeof(int) != sizeof(void *) */
25 #define UINT_TO_VOIDPTR(val)  ((void *)(intptr_t)(val))
26 #define VOIDPTR_TO_UINT(ptr)  ((unsigned int)(intptr_t)(ptr))
27
28 #if DEBUG_QUOTA
29 static void print_inode(struct ext2_inode *inode)
30 {
31         if (!inode)
32                 return;
33
34         fprintf(stderr, "  i_mode = %d\n", inode->i_mode);
35         fprintf(stderr, "  i_uid = %d\n", inode->i_uid);
36         fprintf(stderr, "  i_size = %d\n", inode->i_size);
37         fprintf(stderr, "  i_atime = %d\n", inode->i_atime);
38         fprintf(stderr, "  i_ctime = %d\n", inode->i_ctime);
39         fprintf(stderr, "  i_mtime = %d\n", inode->i_mtime);
40         fprintf(stderr, "  i_dtime = %d\n", inode->i_dtime);
41         fprintf(stderr, "  i_gid = %d\n", inode->i_gid);
42         fprintf(stderr, "  i_links_count = %d\n", inode->i_links_count);
43         fprintf(stderr, "  i_blocks = %d\n", inode->i_blocks);
44         fprintf(stderr, "  i_flags = %d\n", inode->i_flags);
45
46         return;
47 }
48
49 static void print_dquot(const char *desc, struct dquot *dq)
50 {
51         if (desc)
52                 fprintf(stderr, "%s: ", desc);
53         fprintf(stderr, "%u %lld:%lld:%lld %lld:%lld:%lld\n",
54                 dq->dq_id, (long long) dq->dq_dqb.dqb_curspace,
55                 (long long) dq->dq_dqb.dqb_bsoftlimit,
56                 (long long) dq->dq_dqb.dqb_bhardlimit,
57                 (long long) dq->dq_dqb.dqb_curinodes,
58                 (long long) dq->dq_dqb.dqb_isoftlimit,
59                 (long long) dq->dq_dqb.dqb_ihardlimit);
60 }
61 #else
62 static void print_dquot(const char *desc EXT2FS_ATTR((unused)),
63                         struct dquot *dq EXT2FS_ATTR((unused)))
64 {
65 }
66 #endif
67
68 /*
69  * Returns 0 if not able to find the quota file, otherwise returns its
70  * inode number.
71  */
72 int quota_file_exists(ext2_filsys fs, enum quota_type qtype)
73 {
74         char qf_name[256];
75         errcode_t ret;
76         ext2_ino_t ino;
77
78         if (qtype >= MAXQUOTAS)
79                 return -EINVAL;
80
81         quota_get_qf_name(qtype, QFMT_VFS_V1, qf_name);
82
83         ret = ext2fs_lookup(fs, EXT2_ROOT_INO, qf_name, strlen(qf_name), 0,
84                             &ino);
85         if (ret)
86                 return 0;
87
88         return ino;
89 }
90
91 /*
92  * Set the value for reserved quota inode number field in superblock.
93  */
94 void quota_set_sb_inum(ext2_filsys fs, ext2_ino_t ino, enum quota_type qtype)
95 {
96         ext2_ino_t *inump;
97
98         inump = quota_sb_inump(fs->super, qtype);
99
100         log_debug("setting quota ino in superblock: ino=%u, type=%d", ino,
101                  qtype);
102         *inump = ino;
103         ext2fs_mark_super_dirty(fs);
104 }
105
106 errcode_t quota_remove_inode(ext2_filsys fs, enum quota_type qtype)
107 {
108         ext2_ino_t qf_ino;
109         errcode_t       retval;
110
111         retval = ext2fs_read_bitmaps(fs);
112         if (retval) {
113                 log_debug("Couldn't read bitmaps: %s", error_message(retval));
114                 return retval;
115         }
116
117         qf_ino = *quota_sb_inump(fs->super, qtype);
118         if (qf_ino == 0)
119                 return 0;
120         retval = quota_inode_truncate(fs, qf_ino);
121         if (retval)
122                 return retval;
123         if (qf_ino >= EXT2_FIRST_INODE(fs->super)) {
124                 struct ext2_inode inode;
125
126                 retval = ext2fs_read_inode(fs, qf_ino, &inode);
127                 if (!retval) {
128                         memset(&inode, 0, sizeof(struct ext2_inode));
129                         ext2fs_write_inode(fs, qf_ino, &inode);
130                 }
131                 ext2fs_inode_alloc_stats2(fs, qf_ino, -1, 0);
132                 ext2fs_mark_ib_dirty(fs);
133
134         }
135         quota_set_sb_inum(fs, 0, qtype);
136
137         ext2fs_mark_super_dirty(fs);
138         fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
139         retval = ext2fs_write_bitmaps(fs);
140         if (retval) {
141                 log_debug("Couldn't write bitmaps: %s", error_message(retval));
142                 return retval;
143         }
144         return 0;
145 }
146
147 static void write_dquots(dict_t *dict, struct quota_handle *qh)
148 {
149         dnode_t         *n;
150         struct dquot    *dq;
151
152         for (n = dict_first(dict); n; n = dict_next(dict, n)) {
153                 dq = dnode_get(n);
154                 if (dq) {
155                         print_dquot("write", dq);
156                         dq->dq_h = qh;
157                         update_grace_times(dq);
158                         qh->qh_ops->commit_dquot(dq);
159                 }
160         }
161 }
162
163 errcode_t quota_write_inode(quota_ctx_t qctx, unsigned int qtype_bits)
164 {
165         int             retval = 0;
166         enum quota_type qtype;
167         dict_t          *dict;
168         ext2_filsys     fs;
169         struct quota_handle *h = NULL;
170         int             fmt = QFMT_VFS_V1;
171
172         if (!qctx)
173                 return 0;
174
175         fs = qctx->fs;
176         retval = ext2fs_get_mem(sizeof(struct quota_handle), &h);
177         if (retval) {
178                 log_debug("Unable to allocate quota handle: %s",
179                         error_message(retval));
180                 goto out;
181         }
182
183         retval = ext2fs_read_bitmaps(fs);
184         if (retval) {
185                 log_debug("Couldn't read bitmaps: %s", error_message(retval));
186                 goto out;
187         }
188
189         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
190                 if (((1 << qtype) & qtype_bits) == 0)
191                         continue;
192
193                 dict = qctx->quota_dict[qtype];
194                 if (!dict)
195                         continue;
196
197                 retval = quota_file_create(h, fs, qtype, fmt);
198                 if (retval) {
199                         log_debug("Cannot initialize io on quotafile: %s",
200                                   error_message(retval));
201                         goto out;
202                 }
203
204                 write_dquots(dict, h);
205                 retval = quota_file_close(qctx, h);
206                 if (retval) {
207                         log_debug("Cannot finish IO on new quotafile: %s",
208                                   strerror(errno));
209                         if (h->qh_qf.e2_file)
210                                 ext2fs_file_close(h->qh_qf.e2_file);
211                         (void) quota_inode_truncate(fs, h->qh_qf.ino);
212                         goto out;
213                 }
214
215                 /* Set quota inode numbers in superblock. */
216                 quota_set_sb_inum(fs, h->qh_qf.ino, qtype);
217                 ext2fs_mark_super_dirty(fs);
218                 ext2fs_mark_bb_dirty(fs);
219                 fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
220         }
221
222         retval = ext2fs_write_bitmaps(fs);
223         if (retval) {
224                 log_debug("Couldn't write bitmaps: %s", error_message(retval));
225                 goto out;
226         }
227 out:
228         if (h)
229                 ext2fs_free_mem(&h);
230         return retval;
231 }
232
233 /******************************************************************/
234 /* Helper functions for computing quota in memory.                */
235 /******************************************************************/
236
237 static int dict_uint_cmp(const void *a, const void *b)
238 {
239         unsigned int    c, d;
240
241         c = VOIDPTR_TO_UINT(a);
242         d = VOIDPTR_TO_UINT(b);
243
244         if (c == d)
245                 return 0;
246         else if (c > d)
247                 return 1;
248         else
249                 return -1;
250 }
251
252 static inline int project_quota_valid(quota_ctx_t qctx)
253 {
254         return (EXT2_INODE_SIZE(qctx->fs->super) > EXT2_GOOD_OLD_INODE_SIZE);
255 }
256
257 static inline qid_t get_qid(struct ext2_inode_large *inode, enum quota_type qtype)
258 {
259         unsigned int inode_size;
260
261         switch (qtype) {
262         case USRQUOTA:
263                 return inode_uid(*inode);
264         case GRPQUOTA:
265                 return inode_gid(*inode);
266         case PRJQUOTA:
267                 inode_size = EXT2_GOOD_OLD_INODE_SIZE +
268                         inode->i_extra_isize;
269                 if (inode_includes(inode_size, i_projid))
270                         return inode_projid(*inode);
271         default:
272                 return 0;
273         }
274
275         return 0;
276 }
277
278 static void quota_dnode_free(dnode_t *node,
279                              void *context EXT2FS_ATTR((unused)))
280 {
281         void *ptr = node ? dnode_get(node) : 0;
282
283         ext2fs_free_mem(&ptr);
284         free(node);
285 }
286
287 /*
288  * Set up the quota tracking data structures.
289  */
290 errcode_t quota_init_context(quota_ctx_t *qctx, ext2_filsys fs,
291                              unsigned int qtype_bits)
292 {
293         errcode_t err;
294         dict_t  *dict;
295         quota_ctx_t ctx;
296         enum quota_type qtype;
297
298         err = ext2fs_get_mem(sizeof(struct quota_ctx), &ctx);
299         if (err) {
300                 log_debug("Failed to allocate quota context");
301                 return err;
302         }
303
304         memset(ctx, 0, sizeof(struct quota_ctx));
305         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
306                 ctx->quota_file[qtype] = NULL;
307                 if (qtype_bits) {
308                         if (((1 << qtype) & qtype_bits) == 0)
309                                 continue;
310                 } else {
311                         if (*quota_sb_inump(fs->super, qtype) == 0)
312                                 continue;
313                 }
314                 err = ext2fs_get_mem(sizeof(dict_t), &dict);
315                 if (err) {
316                         log_debug("Failed to allocate dictionary");
317                         quota_release_context(&ctx);
318                         return err;
319                 }
320                 ctx->quota_dict[qtype] = dict;
321                 dict_init(dict, DICTCOUNT_T_MAX, dict_uint_cmp);
322                 dict_set_allocator(dict, NULL, quota_dnode_free, NULL);
323         }
324
325         ctx->fs = fs;
326         *qctx = ctx;
327         return 0;
328 }
329
330 void quota_release_context(quota_ctx_t *qctx)
331 {
332         errcode_t err;
333         dict_t  *dict;
334         enum quota_type qtype;
335         quota_ctx_t ctx;
336
337         if (!qctx)
338                 return;
339
340         ctx = *qctx;
341         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
342                 dict = ctx->quota_dict[qtype];
343                 ctx->quota_dict[qtype] = 0;
344                 if (dict) {
345                         dict_free_nodes(dict);
346                         free(dict);
347                 }
348                 if (ctx->quota_file[qtype]) {
349                         err = quota_file_close(ctx, ctx->quota_file[qtype]);
350                         if (err) {
351                                 log_err("Cannot close quotafile: %s",
352                                         strerror(errno));
353                                 ext2fs_free_mem(&ctx->quota_file[qtype]);
354                         }
355                 }
356         }
357         *qctx = NULL;
358         free(ctx);
359 }
360
361 static struct dquot *get_dq(dict_t *dict, __u32 key)
362 {
363         struct dquot    *dq;
364         dnode_t         *n;
365
366         n = dict_lookup(dict, UINT_TO_VOIDPTR(key));
367         if (n)
368                 dq = dnode_get(n);
369         else {
370                 if (ext2fs_get_mem(sizeof(struct dquot), &dq)) {
371                         log_err("Unable to allocate dquot");
372                         return NULL;
373                 }
374                 memset(dq, 0, sizeof(struct dquot));
375                 dict_alloc_insert(dict, UINT_TO_VOIDPTR(key), dq);
376                 dq->dq_id = key;
377         }
378         return dq;
379 }
380
381
382 /*
383  * Called to update the blocks used by a particular inode
384  */
385 void quota_data_add(quota_ctx_t qctx, struct ext2_inode_large *inode,
386                     ext2_ino_t ino EXT2FS_ATTR((unused)),
387                     qsize_t space)
388 {
389         struct dquot    *dq;
390         dict_t          *dict;
391         enum quota_type qtype;
392
393         if (!qctx)
394                 return;
395
396         log_debug("ADD_DATA: Inode: %u, UID/GID: %u/%u, space: %ld", ino,
397                         inode_uid(*inode),
398                         inode_gid(*inode), space);
399         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
400                 if (qtype == PRJQUOTA && !project_quota_valid(qctx))
401                         continue;
402                 dict = qctx->quota_dict[qtype];
403                 if (dict) {
404                         dq = get_dq(dict, get_qid(inode, qtype));
405                         if (dq)
406                                 dq->dq_dqb.dqb_curspace += space;
407                 }
408         }
409 }
410
411 /*
412  * Called to remove some blocks used by a particular inode
413  */
414 void quota_data_sub(quota_ctx_t qctx, struct ext2_inode_large *inode,
415                     ext2_ino_t ino EXT2FS_ATTR((unused)),
416                     qsize_t space)
417 {
418         struct dquot    *dq;
419         dict_t          *dict;
420         enum quota_type qtype;
421
422         if (!qctx)
423                 return;
424
425         log_debug("SUB_DATA: Inode: %u, UID/GID: %u/%u, space: %ld", ino,
426                         inode_uid(*inode),
427                         inode_gid(*inode), space);
428         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
429                 if (qtype == PRJQUOTA && !project_quota_valid(qctx))
430                         continue;
431                 dict = qctx->quota_dict[qtype];
432                 if (dict) {
433                         dq = get_dq(dict, get_qid(inode, qtype));
434                         dq->dq_dqb.dqb_curspace -= space;
435                 }
436         }
437 }
438
439 /*
440  * Called to count the files used by an inode's user/group
441  */
442 void quota_data_inodes(quota_ctx_t qctx, struct ext2_inode_large *inode,
443                        ext2_ino_t ino EXT2FS_ATTR((unused)), int adjust)
444 {
445         struct dquot    *dq;
446         dict_t          *dict;
447         enum quota_type qtype;
448
449         if (!qctx)
450                 return;
451
452         log_debug("ADJ_INODE: Inode: %u, UID/GID: %u/%u, adjust: %d", ino,
453                         inode_uid(*inode),
454                         inode_gid(*inode), adjust);
455         for (qtype = 0; qtype < MAXQUOTAS; qtype++) {
456                 if (qtype == PRJQUOTA && !project_quota_valid(qctx))
457                         continue;
458                 dict = qctx->quota_dict[qtype];
459                 if (dict) {
460                         dq = get_dq(dict, get_qid(inode, qtype));
461                         dq->dq_dqb.dqb_curinodes += adjust;
462                 }
463         }
464 }
465
466 errcode_t quota_compute_usage(quota_ctx_t qctx)
467 {
468         ext2_filsys fs;
469         ext2_ino_t ino;
470         errcode_t ret;
471         struct ext2_inode_large *inode;
472         int inode_size;
473         qsize_t space;
474         ext2_inode_scan scan;
475
476         if (!qctx)
477                 return 0;
478
479         fs = qctx->fs;
480         ret = ext2fs_open_inode_scan(fs, 0, &scan);
481         if (ret) {
482                 log_err("while opening inode scan. ret=%ld", ret);
483                 return ret;
484         }
485         inode_size = fs->super->s_inode_size;
486         inode = malloc(inode_size);
487         if (!inode)
488                 return ENOMEM;
489         while (1) {
490                 ret = ext2fs_get_next_inode_full(scan, &ino,
491                                                  EXT2_INODE(inode), inode_size);
492                 if (ret) {
493                         log_err("while getting next inode. ret=%ld", ret);
494                         ext2fs_close_inode_scan(scan);
495                         free(inode);
496                         return ret;
497                 }
498                 if (ino == 0)
499                         break;
500                 if (inode->i_links_count &&
501                     (ino == EXT2_ROOT_INO ||
502                      ino >= EXT2_FIRST_INODE(fs->super))) {
503                         space = ext2fs_inode_i_blocks(fs,
504                                                       EXT2_INODE(inode)) << 9;
505                         quota_data_add(qctx, inode, ino, space);
506                         quota_data_inodes(qctx, inode, ino, +1);
507                 }
508         }
509
510         ext2fs_close_inode_scan(scan);
511         free(inode);
512         return 0;
513 }
514
515 struct scan_dquots_data {
516         dict_t          *quota_dict;
517         int             update_limits; /* update limits from disk */
518         int             update_usage;
519         int             check_consistency;
520         int             usage_is_inconsistent;
521 };
522
523 static int scan_dquots_callback(struct dquot *dquot, void *cb_data)
524 {
525         struct scan_dquots_data *scan_data = cb_data;
526         dict_t *quota_dict = scan_data->quota_dict;
527         struct dquot *dq;
528
529         dq = get_dq(quota_dict, dquot->dq_id);
530         dq->dq_id = dquot->dq_id;
531         dq->dq_flags |= DQF_SEEN;
532
533         print_dquot("mem", dq);
534         print_dquot("dsk", dquot);
535
536         /* Check if there is inconsistency */
537         if (scan_data->check_consistency &&
538             (dq->dq_dqb.dqb_curspace != dquot->dq_dqb.dqb_curspace ||
539              dq->dq_dqb.dqb_curinodes != dquot->dq_dqb.dqb_curinodes)) {
540                 scan_data->usage_is_inconsistent = 1;
541                 fprintf(stderr, "[QUOTA WARNING] Usage inconsistent for ID %u:"
542                         "actual (%lld, %lld) != expected (%lld, %lld)\n",
543                         dq->dq_id, (long long) dq->dq_dqb.dqb_curspace,
544                         (long long) dq->dq_dqb.dqb_curinodes,
545                         (long long) dquot->dq_dqb.dqb_curspace,
546                         (long long) dquot->dq_dqb.dqb_curinodes);
547         }
548
549         if (scan_data->update_limits) {
550                 dq->dq_dqb.dqb_ihardlimit = dquot->dq_dqb.dqb_ihardlimit;
551                 dq->dq_dqb.dqb_isoftlimit = dquot->dq_dqb.dqb_isoftlimit;
552                 dq->dq_dqb.dqb_bhardlimit = dquot->dq_dqb.dqb_bhardlimit;
553                 dq->dq_dqb.dqb_bsoftlimit = dquot->dq_dqb.dqb_bsoftlimit;
554         }
555
556         if (scan_data->update_usage) {
557                 dq->dq_dqb.dqb_curspace = dquot->dq_dqb.dqb_curspace;
558                 dq->dq_dqb.dqb_curinodes = dquot->dq_dqb.dqb_curinodes;
559         }
560
561         return 0;
562 }
563
564 /*
565  * Read all dquots from quota file into memory
566  */
567 static errcode_t quota_read_all_dquots(struct quota_handle *qh,
568                                        quota_ctx_t qctx, int update_limits)
569 {
570         struct scan_dquots_data scan_data;
571
572         scan_data.quota_dict = qctx->quota_dict[qh->qh_type];
573         scan_data.check_consistency = 0;
574         scan_data.update_limits = 0;
575         scan_data.update_usage = 1;
576
577         return qh->qh_ops->scan_dquots(qh, scan_dquots_callback, &scan_data);
578 }
579
580 /*
581  * Write all memory dquots into quota file
582  */
583 #if 0 /* currently unused, but may be useful in the future? */
584 static errcode_t quota_write_all_dquots(struct quota_handle *qh,
585                                         quota_ctx_t qctx)
586 {
587         errcode_t err;
588
589         err = ext2fs_read_bitmaps(qctx->fs);
590         if (err)
591                 return err;
592         write_dquots(qctx->quota_dict[qh->qh_type], qh);
593         ext2fs_mark_bb_dirty(qctx->fs);
594         qctx->fs->flags &= ~EXT2_FLAG_SUPER_ONLY;
595         ext2fs_write_bitmaps(qctx->fs);
596         return 0;
597 }
598 #endif
599
600 /*
601  * Updates the in-memory quota limits from the given quota inode.
602  */
603 errcode_t quota_update_limits(quota_ctx_t qctx, ext2_ino_t qf_ino,
604                               enum quota_type qtype)
605 {
606         struct quota_handle *qh;
607         errcode_t err;
608
609         if (!qctx)
610                 return 0;
611
612         err = ext2fs_get_mem(sizeof(struct quota_handle), &qh);
613         if (err) {
614                 log_debug("Unable to allocate quota handle");
615                 return err;
616         }
617
618         err = quota_file_open(qctx, qh, qf_ino, qtype, -1, 0);
619         if (err) {
620                 log_debug("Open quota file failed");
621                 goto out;
622         }
623
624         quota_read_all_dquots(qh, qctx, 1);
625
626         err = quota_file_close(qctx, qh);
627         if (err) {
628                 log_debug("Cannot finish IO on new quotafile: %s",
629                         strerror(errno));
630                 if (qh->qh_qf.e2_file)
631                         ext2fs_file_close(qh->qh_qf.e2_file);
632         }
633 out:
634         ext2fs_free_mem(&qh);
635         return err;
636 }
637
638 /*
639  * Compares the measured quota in qctx->quota_dict with that in the quota inode
640  * on disk and updates the limits in qctx->quota_dict. 'usage_inconsistent' is
641  * set to 1 if the supplied and on-disk quota usage values are not identical.
642  */
643 errcode_t quota_compare_and_update(quota_ctx_t qctx, enum quota_type qtype,
644                                    int *usage_inconsistent)
645 {
646         struct quota_handle qh;
647         struct scan_dquots_data scan_data;
648         struct dquot *dq;
649         dnode_t *n;
650         dict_t *dict = qctx->quota_dict[qtype];
651         errcode_t err = 0;
652
653         if (!dict)
654                 goto out;
655
656         err = quota_file_open(qctx, &qh, 0, qtype, -1, 0);
657         if (err) {
658                 log_debug("Open quota file failed");
659                 goto out;
660         }
661
662         scan_data.quota_dict = qctx->quota_dict[qtype];
663         scan_data.update_limits = 1;
664         scan_data.update_usage = 0;
665         scan_data.check_consistency = 1;
666         scan_data.usage_is_inconsistent = 0;
667         err = qh.qh_ops->scan_dquots(&qh, scan_dquots_callback, &scan_data);
668         if (err) {
669                 log_debug("Error scanning dquots");
670                 goto out_close_qh;
671         }
672
673         for (n = dict_first(dict); n; n = dict_next(dict, n)) {
674                 dq = dnode_get(n);
675                 if (!dq)
676                         continue;
677                 if ((dq->dq_flags & DQF_SEEN) == 0) {
678                         fprintf(stderr, "[QUOTA WARNING] "
679                                 "Missing quota entry ID %d\n", dq->dq_id);
680                         scan_data.usage_is_inconsistent = 1;
681                 }
682         }
683         *usage_inconsistent = scan_data.usage_is_inconsistent;
684
685 out_close_qh:
686         err = quota_file_close(qctx, &qh);
687         if (err) {
688                 log_debug("Cannot close quotafile: %s", error_message(errno));
689                 if (qh.qh_qf.e2_file)
690                         ext2fs_file_close(qh.qh_qf.e2_file);
691         }
692 out:
693         return err;
694 }
695
696 int parse_quota_opts(const char *opts, int (*func)(char *))
697 {
698         char    *buf, *token, *next, *p;
699         int     len;
700         int     ret = 0;
701
702         len = strlen(opts);
703         buf = malloc(len + 1);
704         if (!buf) {
705                 fprintf(stderr,
706                         "Couldn't allocate memory to parse quota options!\n");
707                 return -ENOMEM;
708         }
709         strcpy(buf, opts);
710         for (token = buf; token && *token; token = next) {
711                 p = strchr(token, ',');
712                 next = 0;
713                 if (p) {
714                         *p = 0;
715                         next = p + 1;
716                 }
717                 ret = func(token);
718                 if (ret)
719                         break;
720         }
721         free(buf);
722         return ret;
723 }