summaryrefslogtreecommitdiff
path: root/libdiskfs/dir-renamed.c
blob: 447c45a477df548fa20ca53b4da3f3006ba56654 (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
/* 
   Copyright (C) 1994 Free Software Foundation

   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, 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, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */

#include "priv.h"


/* Rename directory node FNP (whose parent is FDP, and which has name
   FROMNAME in that directory) to have name TONAME inside directory
   TDP.  None of these nodes are locked, and none should be locked
   upon return.  This routine is serialized, so it doesn't have to be
   reentrant.  Directories will never be renamed except by this
   routine.  FROMCRED and TOCRED are the users responsible for
   FDP/FNP and TDP respectively.  */
error_t
diskfs_rename_dir (struct node *fdp, struct node *fnp, char *fromname,
		   struct node *tdp, char *toname, struct protid *fromcred,
		   struct protid *tocred)
{
  error_t err;
  struct node *tnp, *tmpnp;
  void *buf = alloca (diskfs_dirstat_size);
  struct diskfs_dirstat *ds;
  struct diskfs_dirstat *tmpds;

  mutex_lock (&tdp->lock);
  diskfs_nref (tdp);		/* reference and lock will get consumed by
				   checkpath */
  err = checkpath (fnp, tdp, tocred);
  
  if (err)
    return err;
  
  /* Now, lock the parent directories.  This is legal because tdp is not
     a child of fnp (guaranteed by checkpath above). */
  mutex_lock (&fdp->lock);
  if (fdp != tdp)
    mutex_lock (&tdp->lock);
  
  /* 1: Lookup target; if it exists, make sure it's an empty directory. */
  mutex_lock (&tdp->lock);
  ds = buf;
  err = diskfs_lookup (tdp, toname, RENAME, &tnp, ds, tocred);
  
  if (tnp == fnp)
    {
      diskfs_drop_dirstat (ds);
      diskfs_nrele (tnp);
      mutex_unlock (&tdp->lock);
      mutex_unlock (&ftp->lock);
      return 0;
    }
  
  /* Now we can safely lock fnp */
  mutex_lock (&fnp->lock);

  if (tnp)
    {
      if (! S_ISDIR(tnp->dn_stat.st_mode))
	err = ENOTDIR;
      else if (!dirempty (tnp, tocred))
	err = ENOTEMPTY;
    }     

  if (err && err != ENOENT)
    goto out;

  /* 2: Set our .. to point to the new parent */
  if (tdp->dn_stat.st_nlink == LINK_MAX - 1)
    {
      err = EMLINK;
      return EMLINK;
    }
  tdp->dn_stat.st_nlink++;
  tdp->dn_set_ctime = 1;
  err = diskfs_checkdirmod (fnp, fnp->dn_stat.st_mode, fdp, fromcred);
  if (err)
    goto out;
  
  tmpds = alloca (diskfs_dirstat_size);
  err = lookup (fnp, "..", RENAME | SPEC_DOTDOT, tmpnp, &tmpds, fromcred);
  assert (err != ENOENT);
  assert (tmpnp == fdp);
  diskfs_nrele (tmpnp);
  if (err)
    {
      diskfs_drop_dirstat (tmpds);
      goto out;
    }

  err = diskfs_dirrewrite (fnp, tdp, tmpds);
  if (err)
    goto out;
  
  fdp->dn_stat.st_nlink--;
  fdp->dn_set_ctime = 1;


  /* 3: Increment the link count on the node being moved and rewrite
     tdp. */
  if (fnp->dn_stat.st_nlink == LINK_MAX - 1)
    {
      mutex_unlock (&fnp->lock);
      diskfs_drop_dirstat (ds);
      mutex_unlock (&tdp->lock);
      if (tnp)
	diskfs_nput (tnp);
      return EMLINK;
    }
  fnp->dn_stat.st_nlink++;
  fnp->dn_set_ctime = 1;
  diskfs_node_update (fnp, 1);
  
  if (tnp)
    {
      err = diskfs_dirrewrite (tdp, fnp, ds);
      ds = 0;
      if (!err)
	{
	  tnp->dn_stat.st_nlink--;
	  tnp->dn_set_ctime = 1;
	}
      diskfs_clear_directory (tnp, tdp, tocred);
    }
  else
    err = diskfs_direnter (tdp, toname, fnp, ds, tocred);

  if (err)
    goto out;

  /* 4: Remove the entry in fdp. */
  ds = buf;
  mutex_unlock (&fnp->lock);
  err = diskfs_lookup (fdp, fromname, REMOVE, tmpnp, ds, fromcred);
  assert (tmpnp == fnp);
  if (err)
    goto out;
  
  dirremove (fdp, ds);
  ds = 0;
  fnp->dn_stat.st_nlink--;
  fnp->dn_set_ctime = 1;
  
 out:
  if (tdp)
    mutex_unlock (&tdp->lock);
  if (tnp)
    diskfs_nput (tnp);
  if (fdp)
    mutex_unlock (&fdp->lock);
  if (fnp)
    mutex_unlock (&fnp->lock);
  if (ds)
    diskfs_drop_dirstat (ds);
  return err;
}