summaryrefslogtreecommitdiff
path: root/ext2fs/truncate.c
blob: 1aae239af7ce0dc5e08c54f21d0a984324bed349 (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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
/*
 *  linux/fs/ext2/truncate.c
 *
 * Copyright (C) 1992, 1993, 1994, 1995
 * Remy Card (card@masi.ibp.fr)
 * Laboratoire MASI - Institut Blaise Pascal
 * Universite Pierre et Marie Curie (Paris VI)
 *
 *  from
 *
 *  linux/fs/minix/truncate.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 */

/*
 * Truncate has the most races in the whole filesystem: coding it is
 * a pain in the a**. Especially as I don't do any locking...
 *
 * The code may look a bit weird, but that's just because I've tried to
 * handle things like file-size changes in a somewhat graceful manner.
 * Anyway, truncating a file at the same time somebody else writes to it
 * is likely to result in pretty weird behaviour...
 *
 * The new code handles normal truncates (size = 0) as well as the more
 * general case (size = XXX). I hope.
 */

#define DIRECT_BLOCK(length) \
  ((length + block_size - 1) / block_size)
#define INDIRECT_BLOCK(length, offset) \
  ((int)DIRECT_BLOCK(length) - offset)
#define DINDIRECT_BLOCK(length, offset) \
  (((int)DIRECT_BLOCK(length) - offset) / addr_per_block)
#define TINDIRECT_BLOCK(length) \
  (((int)DIRECT_BLOCK(length) \
    - (addr_per_block * addr_per_block + addr_per_block + EXT2_NDIR_BLOCKS)) \
   / (addr_per_block * addr_per_block))

static int trunc_direct (struct node * node, unsigned long length)
{
  u32 * p;
  int i, tmp;
  char * bh;
  unsigned long block_to_free = 0;
  unsigned long free_count = 0;
  int retry = 0;
  int blocks = block_size / 512;
  int direct_block = DIRECT_BLOCK(length);

 repeat:
  for (i = direct_block ; i < EXT2_NDIR_BLOCKS ; i++)
    {
      p = node->dn.info.i_data + i;
      tmp = *p;
      if (!tmp)
	continue;

      bh = baddr(tmp);

      if (i < direct_block)
	goto repeat;

      if ((bh && bh->b_count != 1) || tmp != *p)
	{
	  retry = 1;
	  continue;
	}

      *p = 0;
      node->dn_stat.st_blocks -= blocks;
      node->dirty = 1;

      if (free_count == 0) {
	block_to_free = tmp;
	free_count++;
      } else if (free_count > 0 && block_to_free == tmp - free_count)
	free_count++;
      else {
	ext2_free_blocks (block_to_free, free_count);
	block_to_free = tmp;
	free_count = 1;
      }
      /*		ext2f_free_blocks (tmp, 1); */
    }

  if (free_count > 0)
    ext2_free_blocks (block_to_free, free_count);

  return retry;
}

static int trunc_indirect (struct node * node, unsigned long length,
			   int offset, u32 * p)
{
  int i, tmp;
  char * bh;
  char * ind_bh;
  u32 * ind;
  unsigned long block_to_free = 0;
  unsigned long free_count = 0;
  int retry = 0;
  int blocks = block_size / 512;
  int indirect_block = INDIRECT_BLOCK (length, offset);

  tmp = *p;
  if (!tmp)
    return 0;
  ind_bh = baddr (tmp);
  if (tmp != *p)
    return 1;
  if (!ind_bh) {
    *p = 0;
    return 0;
  }

 repeat:
  for (i = indirect_block ; i < addr_per_block ; i++)
    {
      if (i < 0)
	i = 0;
      if (i < indirect_block)
	goto repeat;

      ind = i + (u32 *) ind_bh;
      tmp = *ind;
      if (!tmp)
	continue;

      bh = baddr (tmp);
      if (i < indirect_block)
	goto repeat;
      if ((bh && bh->b_count != 1) || tmp != *ind)
	{
	  retry = 1;
	  continue;
	}

      *ind = 0;
      poke_loc (ind, sizeof *ind);

      if (free_count == 0)
	{
	  block_to_free = tmp;
	  free_count++;
	}
      else if (free_count > 0 && block_to_free == tmp - free_count)
	free_count++;
      else
	{
	  ext2_free_blocks (block_to_free, free_count);
	  block_to_free = tmp;
	  free_count = 1;
	}
      /*		ext2_free_blocks (tmp, 1); */
      node->dn_stat.st_blocks -= blocks;
      node->dirty = 1;
    }

  if (free_count > 0)
    ext2_free_blocks (block_to_free, free_count);

  ind = (u32 *) ind_bh;
  for (i = 0; i < addr_per_block; i++)
    if (*(ind++))
      break;
  if (i >= addr_per_block)
    if (ind_bh->b_count != 1)
      retry = 1;
    else
      {
	tmp = *p;
	*p = 0;
	node->dn_stat.st_blocks -= blocks;
	node->dirty = 1;
	ext2_free_blocks (tmp, 1);
      }

  return retry;
}

static int trunc_dindirect (struct node * node, unsigned long length,
			    int offset, u32 * p)
{
  int i, tmp;
  char * dind_bh;
  u32 * dind;
  int retry = 0;
  int blocks = block_size / 512;
  int dindirect_block = DINDIRECT_BLOCK (length, offset);

  tmp = *p;
  if (!tmp)
    return 0;

  dind_bh = baddr (tmp);
  if (tmp != *p)
    return 1;

  if (!dind_bh)
    {
      *p = 0;
      return 0;
    }

 repeat:
  for (i = dindirect_block ; i < addr_per_block ; i++) {
    if (i < 0)
      i = 0;
    if (i < dindirect_block)
      goto repeat;

    dind = i + (u32 *) dind_bh;
    tmp = *dind;
    if (!tmp)
      continue;

    retry |= trunc_indirect (node, offset + (i * addr_per_block), dind);

    poke_loc (dind_bh, block_size);
  }

  dind = (u32 *) dind_bh;
  for (i = 0; i < addr_per_block; i++)
    if (*(dind++))
      break;

  if (i >= addr_per_block)
    if (dind_bh->b_count != 1)
      retry = 1;
    else
      {
	tmp = *p;
	*p = 0;
	node->dn_stat.st_blocks -= blocks;
	node->dirty = 1;
	ext2_free_blocks (tmp, 1);
      }

  return retry;
}

static int trunc_tindirect (struct node * node, unsigned long length)
{
  int i, tmp;
  char * tind_bh;
  u32 * tind, * p;
  int retry = 0;
  int blocks = block_size / 512;
  int tindirect_block = TINDIRECT_BLOCK (length);

  p = node->dn.info.i_data + EXT2_TIND_BLOCK;
  if (!(tmp = *p))
    return 0;

  tind_bh = baddr (tmp);
  if (tmp != *p)
    return 1;

  if (!tind_bh)
    {
      *p = 0;
      return 0;
    }

repeat:
  for (i = tindirect_block ; i < addr_per_block ; i++)
    {
      if (i < 0)
	i = 0;
      if (i < tindirect_block)
	goto repeat;

      tind = i + (u32 *) tind_bh;
      retry |=
	trunc_dindirect(node,
			(EXT2_NDIR_BLOCKS
			 + addr_per_block
			 + (i + 1) * addr_per_block * addr_per_block),
			tind);
      poke_loc (tind_bh, block_size);
    }

  tind = (u32 *) tind_bh;
  for (i = 0; i < addr_per_block; i++)
    if (*(tind++))
      break;

  if (i >= addr_per_block)
    if (tind_bh->b_count != 1)
      retry = 1;
    else
      {
	tmp = *p;
	*p = 0;
	node->dn_stat.st_blocks -= blocks;
	node->dirty = 1;
	ext2_free_blocks (tmp, 1);
      }

  return retry;
}
		
void ext2_truncate (struct node * node)
{
  int retry;
  int offset;
  mode_t mode = node->dn_state.st_mode;

  if (!(S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
    return;
  if (IS_APPEND(node) || IS_IMMUTABLE(node))
    return;

  ext2_discard_prealloc(node);

  while (1)
    {
      down(&node->i_sem);
      retry = trunc_direct(node, length);
      retry |=
	trunc_indirect (node, length, EXT2_IND_BLOCK,
			(u32 *) &node->dn.info.i_data[EXT2_IND_BLOCK]);
      retry |=
	trunc_dindirect (node, length, EXT2_IND_BLOCK +
			 EXT2_ADDR_PER_BLOCK(sblock),
			 (u32 *) &node->dn.info.i_data[EXT2_DIND_BLOCK]);
      retry |= trunc_tindirect (node, length);
      up(&node->i_sem);

      if (!retry)
	break;

      if (IS_SYNC(node) && node->dirty)
	ext2_sync_inode (node);
      current->counter = 0;
      schedule ();
    }

  /*
   * If the file is not being truncated to a block boundary, the
   * contents of the partial block following the end of the file must be
   * zeroed in case it ever becomes accessible again because of
   * subsequent file growth.
   */
  offset = node->allocsize % block_size;
  if (offset)
    {
      char * bh = baddr (node->allocsize / block_size);
      memset (bh + offset, 0, block_size - offset);
      poke_loc (bh + offset, block_size - offset);
    }

  node->dn_set_mtime = 1;
  node->dn_set_ctime = 1;
  node->dirty = 1;
}