hammer2 - major simplification 1/many (stabilization)
[dragonfly.git] / sys / vfs / hammer2 / hammer2_ioctl.c
1 /*
2  * Copyright (c) 2011-2014 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@dragonflybsd.org>
6  * by Venkatesh Srinivas <vsrinivas@dragonflybsd.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 /*
36  * Ioctl Functions.
37  *
38  * WARNING! The ioctl functions which manipulate the connection state need
39  *          to be able to run without deadlock on the volume's chain lock.
40  *          Most of these functions use a separate lock.
41  */
42
43 #include "hammer2.h"
44
45 static int hammer2_ioctl_version_get(hammer2_inode_t *ip, void *data);
46 static int hammer2_ioctl_recluster(hammer2_inode_t *ip, void *data);
47 static int hammer2_ioctl_remote_scan(hammer2_inode_t *ip, void *data);
48 static int hammer2_ioctl_remote_add(hammer2_inode_t *ip, void *data);
49 static int hammer2_ioctl_remote_del(hammer2_inode_t *ip, void *data);
50 static int hammer2_ioctl_remote_rep(hammer2_inode_t *ip, void *data);
51 static int hammer2_ioctl_socket_get(hammer2_inode_t *ip, void *data);
52 static int hammer2_ioctl_socket_set(hammer2_inode_t *ip, void *data);
53 static int hammer2_ioctl_pfs_get(hammer2_inode_t *ip, void *data);
54 static int hammer2_ioctl_pfs_lookup(hammer2_inode_t *ip, void *data);
55 static int hammer2_ioctl_pfs_create(hammer2_inode_t *ip, void *data);
56 static int hammer2_ioctl_pfs_snapshot(hammer2_inode_t *ip, void *data);
57 static int hammer2_ioctl_pfs_delete(hammer2_inode_t *ip, void *data);
58 static int hammer2_ioctl_inode_get(hammer2_inode_t *ip, void *data);
59 static int hammer2_ioctl_inode_set(hammer2_inode_t *ip, void *data);
60 static int hammer2_ioctl_debug_dump(hammer2_inode_t *ip);
61 //static int hammer2_ioctl_inode_comp_set(hammer2_inode_t *ip, void *data);
62 //static int hammer2_ioctl_inode_comp_rec_set(hammer2_inode_t *ip, void *data);
63 //static int hammer2_ioctl_inode_comp_rec_set2(hammer2_inode_t *ip, void *data);
64
65 int
66 hammer2_ioctl(hammer2_inode_t *ip, u_long com, void *data, int fflag,
67               struct ucred *cred)
68 {
69         int error;
70
71         /*
72          * Standard root cred checks, will be selectively ignored below
73          * for ioctls that do not require root creds.
74          */
75         error = priv_check_cred(cred, PRIV_HAMMER_IOCTL, 0);
76
77         switch(com) {
78         case HAMMER2IOC_VERSION_GET:
79                 error = hammer2_ioctl_version_get(ip, data);
80                 break;
81         case HAMMER2IOC_RECLUSTER:
82                 if (error == 0)
83                         error = hammer2_ioctl_recluster(ip, data);
84                 break;
85         case HAMMER2IOC_REMOTE_SCAN:
86                 if (error == 0)
87                         error = hammer2_ioctl_remote_scan(ip, data);
88                 break;
89         case HAMMER2IOC_REMOTE_ADD:
90                 if (error == 0)
91                         error = hammer2_ioctl_remote_add(ip, data);
92                 break;
93         case HAMMER2IOC_REMOTE_DEL:
94                 if (error == 0)
95                         error = hammer2_ioctl_remote_del(ip, data);
96                 break;
97         case HAMMER2IOC_REMOTE_REP:
98                 if (error == 0)
99                         error = hammer2_ioctl_remote_rep(ip, data);
100                 break;
101         case HAMMER2IOC_SOCKET_GET:
102                 if (error == 0)
103                         error = hammer2_ioctl_socket_get(ip, data);
104                 break;
105         case HAMMER2IOC_SOCKET_SET:
106                 if (error == 0)
107                         error = hammer2_ioctl_socket_set(ip, data);
108                 break;
109         case HAMMER2IOC_PFS_GET:
110                 if (error == 0)
111                         error = hammer2_ioctl_pfs_get(ip, data);
112                 break;
113         case HAMMER2IOC_PFS_LOOKUP:
114                 if (error == 0)
115                         error = hammer2_ioctl_pfs_lookup(ip, data);
116                 break;
117         case HAMMER2IOC_PFS_CREATE:
118                 if (error == 0)
119                         error = hammer2_ioctl_pfs_create(ip, data);
120                 break;
121         case HAMMER2IOC_PFS_DELETE:
122                 if (error == 0)
123                         error = hammer2_ioctl_pfs_delete(ip, data);
124                 break;
125         case HAMMER2IOC_PFS_SNAPSHOT:
126                 if (error == 0)
127                         error = hammer2_ioctl_pfs_snapshot(ip, data);
128                 break;
129         case HAMMER2IOC_INODE_GET:
130                 error = hammer2_ioctl_inode_get(ip, data);
131                 break;
132         case HAMMER2IOC_INODE_SET:
133                 if (error == 0)
134                         error = hammer2_ioctl_inode_set(ip, data);
135                 break;
136         /*case HAMMER2IOC_INODE_COMP_SET:
137                 error = hammer2_ioctl_inode_comp_set(ip, data);
138                 break;
139         case HAMMER2IOC_INODE_COMP_REC_SET:
140                 error = hammer2_ioctl_inode_comp_rec_set(ip, data);
141                 break;
142         case HAMMER2IOC_INODE_COMP_REC_SET2:
143                 error = hammer2_ioctl_inode_comp_rec_set2(ip, data);
144                 break;*/
145         case HAMMER2IOC_DEBUG_DUMP:
146                 error = hammer2_ioctl_debug_dump(ip);
147                 break;
148         default:
149                 error = EOPNOTSUPP;
150                 break;
151         }
152         return (error);
153 }
154
155 /*
156  * Retrieve version and basic info
157  */
158 static int
159 hammer2_ioctl_version_get(hammer2_inode_t *ip, void *data)
160 {
161         hammer2_mount_t *hmp = ip->pmp->iroot->cluster.focus->hmp;
162         hammer2_ioc_version_t *version = data;
163
164         version->version = hmp->voldata.version;
165         return 0;
166 }
167
168 static int
169 hammer2_ioctl_recluster(hammer2_inode_t *ip, void *data)
170 {
171         hammer2_ioc_recluster_t *recl = data;
172         struct file *fp;
173         hammer2_cluster_t *cluster;
174         int error;
175
176         fp = holdfp(curproc->p_fd, recl->fd, -1);
177         if (fp) {
178                 kprintf("reconnect to cluster: ");
179                 cluster = &ip->pmp->iroot->cluster;
180                 if (cluster->nchains != 1 || cluster->focus == NULL) {
181                         kprintf("not a local device mount\n");
182                         error = EINVAL;
183                 } else {
184                         hammer2_cluster_reconnect(cluster->focus->hmp, fp);
185                         kprintf("ok\n");
186                         error = 0;
187                 }
188         } else {
189                 error = EINVAL;
190         }
191         return error;
192 }
193
194 /*
195  * Retrieve information about a remote
196  */
197 static int
198 hammer2_ioctl_remote_scan(hammer2_inode_t *ip, void *data)
199 {
200         hammer2_mount_t *hmp = ip->pmp->iroot->cluster.focus->hmp;
201         hammer2_ioc_remote_t *remote = data;
202         int copyid = remote->copyid;
203
204         if (copyid < 0 || copyid >= HAMMER2_COPYID_COUNT)
205                 return (EINVAL);
206
207         hammer2_voldata_lock(hmp);
208         remote->copy1 = hmp->voldata.copyinfo[copyid];
209         hammer2_voldata_unlock(hmp);
210
211         /*
212          * Adjust nextid (GET only)
213          */
214         while (++copyid < HAMMER2_COPYID_COUNT &&
215                hmp->voldata.copyinfo[copyid].copyid == 0) {
216                 ;
217         }
218         if (copyid == HAMMER2_COPYID_COUNT)
219                 remote->nextid = -1;
220         else
221                 remote->nextid = copyid;
222
223         return(0);
224 }
225
226 /*
227  * Add new remote entry
228  */
229 static int
230 hammer2_ioctl_remote_add(hammer2_inode_t *ip, void *data)
231 {
232         hammer2_ioc_remote_t *remote = data;
233         hammer2_pfsmount_t *pmp = ip->pmp;
234         hammer2_mount_t *hmp;
235         int copyid = remote->copyid;
236         int error = 0;
237
238         if (copyid >= HAMMER2_COPYID_COUNT)
239                 return (EINVAL);
240
241         hmp = pmp->iroot->cluster.focus->hmp; /* XXX */
242         hammer2_voldata_lock(hmp);
243         if (copyid < 0) {
244                 for (copyid = 1; copyid < HAMMER2_COPYID_COUNT; ++copyid) {
245                         if (hmp->voldata.copyinfo[copyid].copyid == 0)
246                                 break;
247                 }
248                 if (copyid == HAMMER2_COPYID_COUNT) {
249                         error = ENOSPC;
250                         goto failed;
251                 }
252         }
253         hammer2_voldata_modify(hmp);
254         remote->copy1.copyid = copyid;
255         hmp->voldata.copyinfo[copyid] = remote->copy1;
256         hammer2_volconf_update(hmp, copyid);
257 failed:
258         hammer2_voldata_unlock(hmp);
259         return (error);
260 }
261
262 /*
263  * Delete existing remote entry
264  */
265 static int
266 hammer2_ioctl_remote_del(hammer2_inode_t *ip, void *data)
267 {
268         hammer2_ioc_remote_t *remote = data;
269         hammer2_pfsmount_t *pmp = ip->pmp;
270         hammer2_mount_t *hmp;
271         int copyid = remote->copyid;
272         int error = 0;
273
274         hmp = pmp->iroot->cluster.focus->hmp; /* XXX */
275         if (copyid >= HAMMER2_COPYID_COUNT)
276                 return (EINVAL);
277         remote->copy1.path[sizeof(remote->copy1.path) - 1] = 0;
278         hammer2_voldata_lock(hmp);
279         if (copyid < 0) {
280                 for (copyid = 1; copyid < HAMMER2_COPYID_COUNT; ++copyid) {
281                         if (hmp->voldata.copyinfo[copyid].copyid == 0)
282                                 continue;
283                         if (strcmp(remote->copy1.path,
284                             hmp->voldata.copyinfo[copyid].path) == 0) {
285                                 break;
286                         }
287                 }
288                 if (copyid == HAMMER2_COPYID_COUNT) {
289                         error = ENOENT;
290                         goto failed;
291                 }
292         }
293         hammer2_voldata_modify(hmp);
294         hmp->voldata.copyinfo[copyid].copyid = 0;
295         hammer2_volconf_update(hmp, copyid);
296 failed:
297         hammer2_voldata_unlock(hmp);
298         return (error);
299 }
300
301 /*
302  * Replace existing remote entry
303  */
304 static int
305 hammer2_ioctl_remote_rep(hammer2_inode_t *ip, void *data)
306 {
307         hammer2_ioc_remote_t *remote = data;
308         hammer2_mount_t *hmp;
309         int copyid = remote->copyid;
310
311         hmp = ip->pmp->iroot->cluster.focus->hmp; /* XXX */
312
313         if (copyid < 0 || copyid >= HAMMER2_COPYID_COUNT)
314                 return (EINVAL);
315
316         hammer2_voldata_lock(hmp);
317         hammer2_voldata_modify(hmp);
318         /*hammer2_volconf_update(hmp, copyid);*/
319         hammer2_voldata_unlock(hmp);
320
321         return(0);
322 }
323
324 /*
325  * Retrieve communications socket
326  */
327 static int
328 hammer2_ioctl_socket_get(hammer2_inode_t *ip, void *data)
329 {
330         return (EOPNOTSUPP);
331 }
332
333 /*
334  * Set communications socket for connection
335  */
336 static int
337 hammer2_ioctl_socket_set(hammer2_inode_t *ip, void *data)
338 {
339         hammer2_ioc_remote_t *remote = data;
340         hammer2_mount_t *hmp;
341         int copyid = remote->copyid;
342
343         hmp = ip->pmp->iroot->cluster.focus->hmp; /* XXX */
344         if (copyid < 0 || copyid >= HAMMER2_COPYID_COUNT)
345                 return (EINVAL);
346
347         hammer2_voldata_lock(hmp);
348         hammer2_voldata_unlock(hmp);
349
350         return(0);
351 }
352
353 /*
354  * Used to scan and retrieve PFS information.  PFS's are directories under
355  * the super-root.
356  *
357  * To scan PFSs pass name_key=0.  The function will scan for the next
358  * PFS and set all fields, as well as set name_next to the next key.
359  * When no PFSs remain, name_next is set to (hammer2_key_t)-1.
360  *
361  * To retrieve the PFS associated with the file descriptor, pass
362  * name_key set to (hammer2_key_t)-1.
363  */
364 static int
365 hammer2_ioctl_pfs_get(hammer2_inode_t *ip, void *data)
366 {
367         const hammer2_inode_data_t *ipdata;
368         hammer2_mount_t *hmp;
369         hammer2_ioc_pfs_t *pfs;
370         hammer2_cluster_t *cparent;
371         hammer2_cluster_t *rcluster;
372         hammer2_cluster_t *cluster;
373         hammer2_key_t key_next;
374         int error;
375         int ddflag;
376
377         error = 0;
378         hmp = ip->pmp->iroot->cluster.focus->hmp; /* XXX */
379         pfs = data;
380         cparent = hammer2_inode_lock_ex(hmp->spmp->iroot);
381         rcluster = hammer2_inode_lock_ex(ip->pmp->iroot);
382
383         /*
384          * Search for the first key or specific key.  Remember that keys
385          * can be returned in any order.
386          */
387         if (pfs->name_key == 0) {
388                 cluster = hammer2_cluster_lookup(cparent, &key_next,
389                                                  0, (hammer2_key_t)-1,
390                                                  0, &ddflag);
391         } else if (pfs->name_key == (hammer2_key_t)-1) {
392                 ipdata = &hammer2_cluster_data(rcluster)->ipdata;
393                 cluster = hammer2_cluster_lookup(cparent, &key_next,
394                                                  ipdata->name_key,
395                                                  ipdata->name_key,
396                                                  0, &ddflag);
397                 ipdata = NULL;  /* safety */
398         } else {
399                 cluster = hammer2_cluster_lookup(cparent, &key_next,
400                                                  pfs->name_key, pfs->name_key,
401                                                  0, &ddflag);
402         }
403         hammer2_inode_unlock_ex(ip->pmp->iroot, rcluster);
404
405         while (cluster &&
406                hammer2_cluster_type(cluster) != HAMMER2_BREF_TYPE_INODE) {
407                 cluster = hammer2_cluster_next(cparent, cluster, &key_next,
408                                                key_next, (hammer2_key_t)-1,
409                                                0);
410         }
411         if (cluster) {
412                 /*
413                  * Load the data being returned by the ioctl.
414                  */
415                 ipdata = &hammer2_cluster_data(cluster)->ipdata;
416                 pfs->name_key = ipdata->name_key;
417                 pfs->pfs_type = ipdata->pfs_type;
418                 pfs->pfs_clid = ipdata->pfs_clid;
419                 pfs->pfs_fsid = ipdata->pfs_fsid;
420                 KKASSERT(ipdata->name_len < sizeof(pfs->name));
421                 bcopy(ipdata->filename, pfs->name, ipdata->name_len);
422                 pfs->name[ipdata->name_len] = 0;
423                 ipdata = NULL;  /* safety */
424
425                 /*
426                  * Calculate the next field
427                  */
428                 do {
429                         cluster = hammer2_cluster_next(cparent, cluster,
430                                                        &key_next,
431                                                        0, (hammer2_key_t)-1,
432                                                        0);
433                 } while (cluster &&
434                          hammer2_cluster_type(cluster) !=
435                           HAMMER2_BREF_TYPE_INODE);
436                 if (cluster) {
437                         ipdata = &hammer2_cluster_data(cluster)->ipdata;
438                         pfs->name_next = ipdata->name_key;
439                         hammer2_cluster_unlock(cluster);
440                 } else {
441                         pfs->name_next = (hammer2_key_t)-1;
442                 }
443         } else {
444                 pfs->name_next = (hammer2_key_t)-1;
445                 error = ENOENT;
446         }
447         hammer2_inode_unlock_ex(hmp->spmp->iroot, cparent);
448
449         return (error);
450 }
451
452 /*
453  * Find a specific PFS by name
454  */
455 static int
456 hammer2_ioctl_pfs_lookup(hammer2_inode_t *ip, void *data)
457 {
458         const hammer2_inode_data_t *ipdata;
459         hammer2_mount_t *hmp;
460         hammer2_ioc_pfs_t *pfs;
461         hammer2_cluster_t *cparent;
462         hammer2_cluster_t *cluster;
463         hammer2_key_t key_next;
464         hammer2_key_t lhc;
465         int error;
466         int ddflag;
467         size_t len;
468
469         error = 0;
470         hmp = ip->pmp->iroot->cluster.focus->hmp; /* XXX */
471         pfs = data;
472         cparent = hammer2_inode_lock_sh(hmp->spmp->iroot);
473
474         pfs->name[sizeof(pfs->name) - 1] = 0;
475         len = strlen(pfs->name);
476         lhc = hammer2_dirhash(pfs->name, len);
477
478         cluster = hammer2_cluster_lookup(cparent, &key_next,
479                                          lhc, lhc + HAMMER2_DIRHASH_LOMASK,
480                                          HAMMER2_LOOKUP_SHARED, &ddflag);
481         while (cluster) {
482                 if (hammer2_cluster_type(cluster) == HAMMER2_BREF_TYPE_INODE) {
483                         ipdata = &hammer2_cluster_data(cluster)->ipdata;
484                         if (ipdata->name_len == len &&
485                             bcmp(ipdata->filename, pfs->name, len) == 0) {
486                                 break;
487                         }
488                         ipdata = NULL;  /* safety */
489                 }
490                 cluster = hammer2_cluster_next(cparent, cluster, &key_next,
491                                            key_next,
492                                            lhc + HAMMER2_DIRHASH_LOMASK,
493                                            HAMMER2_LOOKUP_SHARED);
494         }
495
496         /*
497          * Load the data being returned by the ioctl.
498          */
499         if (cluster) {
500                 ipdata = &hammer2_cluster_data(cluster)->ipdata;
501                 pfs->name_key = ipdata->name_key;
502                 pfs->pfs_type = ipdata->pfs_type;
503                 pfs->pfs_clid = ipdata->pfs_clid;
504                 pfs->pfs_fsid = ipdata->pfs_fsid;
505                 ipdata = NULL;
506
507                 hammer2_cluster_unlock(cluster);
508         } else {
509                 error = ENOENT;
510         }
511         hammer2_inode_unlock_sh(hmp->spmp->iroot, cparent);
512
513         return (error);
514 }
515
516 /*
517  * Create a new PFS under the super-root
518  */
519 static int
520 hammer2_ioctl_pfs_create(hammer2_inode_t *ip, void *data)
521 {
522         hammer2_inode_data_t *nipdata;
523         hammer2_mount_t *hmp;
524         hammer2_ioc_pfs_t *pfs;
525         hammer2_inode_t *nip;
526         hammer2_cluster_t *ncluster;
527         hammer2_trans_t trans;
528         int error;
529
530         hmp = ip->pmp->iroot->cluster.focus->hmp; /* XXX */
531         pfs = data;
532         nip = NULL;
533
534         if (pfs->name[0] == 0)
535                 return(EINVAL);
536         pfs->name[sizeof(pfs->name) - 1] = 0;   /* ensure 0-termination */
537
538         hammer2_trans_init(&trans, ip->pmp, HAMMER2_TRANS_NEWINODE);
539         nip = hammer2_inode_create(&trans, hmp->spmp->iroot, NULL, NULL,
540                                      pfs->name, strlen(pfs->name),
541                                      &ncluster, &error);
542         if (error == 0) {
543                 nipdata = hammer2_cluster_modify_ip(&trans, nip, ncluster, 0);
544                 nipdata->pfs_type = pfs->pfs_type;
545                 nipdata->pfs_clid = pfs->pfs_clid;
546                 nipdata->pfs_fsid = pfs->pfs_fsid;
547
548                 /*
549                  * Do not allow compression on PFS's with the special name
550                  * "boot", the boot loader can't decompress (yet).
551                  */
552                 if (strcmp(pfs->name, "boot") == 0)
553                         nipdata->comp_algo = HAMMER2_COMP_AUTOZERO;
554                 hammer2_cluster_modsync(ncluster);
555                 hammer2_inode_unlock_ex(nip, ncluster);
556         }
557         hammer2_trans_done(&trans);
558
559         return (error);
560 }
561
562 /*
563  * Destroy an existing PFS under the super-root
564  */
565 static int
566 hammer2_ioctl_pfs_delete(hammer2_inode_t *ip, void *data)
567 {
568         hammer2_mount_t *hmp;
569         hammer2_ioc_pfs_t *pfs = data;
570         hammer2_trans_t trans;
571         int error;
572
573         hmp = ip->pmp->iroot->cluster.focus->hmp; /* XXX */
574         hammer2_trans_init(&trans, ip->pmp, 0);
575         error = hammer2_unlink_file(&trans, hmp->spmp->iroot,
576                                     pfs->name, strlen(pfs->name),
577                                     2, NULL, NULL, -1);
578         hammer2_trans_done(&trans);
579
580         return (error);
581 }
582
583 static int
584 hammer2_ioctl_pfs_snapshot(hammer2_inode_t *ip, void *data)
585 {
586         hammer2_ioc_pfs_t *pfs = data;
587         hammer2_trans_t trans;
588         hammer2_cluster_t *cparent;
589         int error;
590
591         if (pfs->name[0] == 0)
592                 return(EINVAL);
593         if (pfs->name[sizeof(pfs->name)-1] != 0)
594                 return(EINVAL);
595
596         hammer2_vfs_sync(ip->pmp->mp, MNT_WAIT);
597
598         hammer2_trans_init(&trans, ip->pmp, HAMMER2_TRANS_NEWINODE);
599         cparent = hammer2_inode_lock_ex(ip);
600         error = hammer2_cluster_snapshot(&trans, cparent, pfs);
601         hammer2_inode_unlock_ex(ip, cparent);
602         hammer2_trans_done(&trans);
603
604         return (error);
605 }
606
607 /*
608  * Retrieve the raw inode structure
609  */
610 static int
611 hammer2_ioctl_inode_get(hammer2_inode_t *ip, void *data)
612 {
613         const hammer2_inode_data_t *ipdata;
614         hammer2_ioc_inode_t *ino;
615         hammer2_cluster_t *cparent;
616
617         ino = data;
618
619         cparent = hammer2_inode_lock_sh(ip);
620         ipdata = &hammer2_cluster_data(cparent)->ipdata;
621         ino->ip_data = *ipdata;
622         ino->kdata = ip;
623         hammer2_inode_unlock_sh(ip, cparent);
624
625         return (0);
626 }
627
628 /*
629  * Set various parameters in an inode which cannot be set through
630  * normal filesystem VNOPS.
631  */
632 static int
633 hammer2_ioctl_inode_set(hammer2_inode_t *ip, void *data)
634 {
635         const hammer2_inode_data_t *ripdata;
636         hammer2_inode_data_t *wipdata;
637         hammer2_ioc_inode_t *ino = data;
638         hammer2_cluster_t *cparent;
639         hammer2_trans_t trans;
640         int error = 0;
641         int dosync = 0;
642
643         hammer2_trans_init(&trans, ip->pmp, 0);
644         cparent = hammer2_inode_lock_ex(ip);
645         ripdata = &hammer2_cluster_data(cparent)->ipdata;
646
647         if (ino->ip_data.comp_algo != ripdata->comp_algo) {
648                 wipdata = hammer2_cluster_modify_ip(&trans, ip, cparent, 0);
649                 wipdata->comp_algo = ino->ip_data.comp_algo;
650                 ripdata = wipdata; /* safety */
651                 dosync = 1;
652         }
653         ino->kdata = ip;
654         
655         /* Ignore these flags for now...*/
656         if (ino->flags & HAMMER2IOC_INODE_FLAG_IQUOTA) {
657         }
658         if (ino->flags & HAMMER2IOC_INODE_FLAG_DQUOTA) {
659         }
660         if (ino->flags & HAMMER2IOC_INODE_FLAG_COPIES) {
661         }
662         if (dosync)
663                 hammer2_cluster_modsync(cparent);
664         hammer2_trans_done(&trans);
665         hammer2_inode_unlock_ex(ip, cparent);
666
667         return (error);
668 }
669
670 static
671 int
672 hammer2_ioctl_debug_dump(hammer2_inode_t *ip)
673 {
674         hammer2_chain_t *chain;
675         int count = 1000;
676         int i;
677
678         for (i = 0; i < ip->cluster.nchains; ++i) {
679                 chain = ip->cluster.array[i];
680                 if (chain == NULL)
681                         continue;
682                 hammer2_dump_chain(chain, 0, &count, 'i');
683         }
684         return 0;
685 }