summaryrefslogtreecommitdiff
path: root/pci-arbiter/netfs_impl.c
blob: b987a0bcdc0ce04235ebdc4b3d3158954d777375 (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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/*
   Copyright (C) 2017 Free Software Foundation, Inc.
   Written by Miles Bader <miles@gnu.org>
   This file is part of the GNU Hurd.

   The GNU Hurd 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.

   The GNU Hurd 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 the GNU Hurd.  If not, see <http://www.gnu.org/licenses/>.
*/

/* Libnetfs callbacks */

#include "netfs_impl.h"

#include <stddef.h>
#include <stdlib.h>
#include <dirent.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
#include <hurd/netfs.h>

#include "pcifs.h"
#include "ncache.h"
#include <pciaccess.h>
#include "func_files.h"

#define DIRENTS_CHUNK_SIZE      (8*1024)
/* Returned directory entries are aligned to blocks this many bytes long.
 * Must be a power of two.  */
#define DIRENT_ALIGN 4
#define DIRENT_NAME_OFFS offsetof (struct dirent, d_name)

/* Length is structure before the name + the name + '\0', all
 *    padded to a four-byte alignment.  */
#define DIRENT_LEN(name_len)                                                  \
  ((DIRENT_NAME_OFFS + (name_len) + 1 + (DIRENT_ALIGN - 1))                   \
   & ~(DIRENT_ALIGN - 1))

/* Fetch a directory, as for netfs_get_dirents.  */
static error_t
get_dirents (struct pcifs_dirent *dir,
	     int first_entry, int max_entries, char **data,
	     mach_msg_type_number_t * data_len,
	     vm_size_t max_data_len, int *data_entries)
{
  struct pcifs_dirent *e;
  error_t err = 0;
  int i, count;
  size_t size;
  char *p;

  if (first_entry >= dir->dir->num_entries)
    {
      *data_len = 0;
      *data_entries = 0;
      return 0;
    }

  if (max_entries < 0)
    count = dir->dir->num_entries;
  else
    {
      count = ((first_entry + max_entries) >= dir->dir->num_entries ?
	       dir->dir->num_entries : max_entries) - first_entry;
    }

  size =
    (count * DIRENTS_CHUNK_SIZE) >
    max_data_len ? max_data_len : count * DIRENTS_CHUNK_SIZE;

  *data = mmap (0, size, PROT_READ | PROT_WRITE, MAP_ANON, 0, 0);
  err = ((void *) *data == (void *) -1) ? errno : 0;
  if (err)
    return err;

  p = *data;
  for (i = 0; i < count; i++)
    {
      struct dirent hdr;
      size_t name_len;
      size_t sz;
      int entry_type;

      e = dir->dir->entries[i + first_entry];
      name_len = strlen (e->name) + 1;
      sz = DIRENT_LEN (name_len);
      entry_type = IFTODT (e->stat.st_mode);

      hdr.d_namlen = name_len;
      hdr.d_fileno = e->stat.st_ino;
      hdr.d_reclen = sz;
      hdr.d_type = entry_type;

      memcpy (p, &hdr, DIRENT_NAME_OFFS);
      strncpy (p + DIRENT_NAME_OFFS, e->name, name_len);
      p += sz;
    }

  vm_address_t alloc_end = (vm_address_t) (*data + size);
  vm_address_t real_end = round_page (p);
  if (alloc_end > real_end)
    munmap ((caddr_t) real_end, alloc_end - real_end);
  *data_len = p - *data;
  *data_entries = count;

  return err;
}

static struct pcifs_dirent *
lookup (struct node *np, char *name)
{
  int i;
  struct pcifs_dirent *ret = 0, *e;

  for (i = 0; i < np->nn->ln->dir->num_entries; i++)
    {
      e = np->nn->ln->dir->entries[i];

      if (!strncmp (e->name, name, NAME_SIZE))
	{
	  ret = e;
	  break;
	}
    }

  return ret;
}

static error_t
create_node (struct pcifs_dirent * e, struct node ** node)
{
  struct node *np;
  struct netnode *nn;

  np = netfs_make_node_alloc (sizeof (struct netnode));
  if (!np)
    return ENOMEM;
  np->nn_stat = e->stat;
  np->nn_translated = np->nn_stat.st_mode;

  nn = netfs_node_netnode (np);
  memset (nn, 0, sizeof (struct netnode));
  nn->ln = e;

  *node = e->node = np;

  return 0;
}

static void
destroy_node (struct node *node)
{
  if (node->nn->ln)
    node->nn->ln->node = 0;
  free (node);
}

/* Attempt to create a file named NAME in DIR for USER with MODE.  Set *NODE
   to the new node upon return.  On any error, clear *NODE.  *NODE should be
   locked on success; no matter what, unlock DIR before returning.  */
error_t
netfs_attempt_create_file (struct iouser * user, struct node * dir,
			   char *name, mode_t mode, struct node ** node)
{
  *node = 0;
  pthread_mutex_unlock (&dir->lock);
  return EOPNOTSUPP;
}

/* Node NODE is being opened by USER, with FLAGS.  NEWNODE is nonzero if we
   just created this node.  Return an error if we should not permit the open
   to complete because of a permission restriction. */
error_t
netfs_check_open_permissions (struct iouser * user, struct node * node,
			      int flags, int newnode)
{
  return entry_check_perms (user, node->nn->ln, flags);
}

/* This should attempt a utimes call for the user specified by CRED on node
   NODE, to change the atime to ATIME and the mtime to MTIME. */
error_t
netfs_attempt_utimes (struct iouser * cred, struct node * node,
		      struct timespec * atime, struct timespec * mtime)
{
  return EOPNOTSUPP;
}

/* Return the valid access types (bitwise OR of O_READ, O_WRITE, and O_EXEC)
   in *TYPES for file NODE and user CRED.  */
error_t
netfs_report_access (struct iouser * cred, struct node * node, int *types)
{
  return EOPNOTSUPP;
}

/* Trivial definitions.  */

/* Make sure that NP->nn_stat is filled with current information.  CRED
   identifies the user responsible for the operation.  */
error_t
netfs_validate_stat (struct node * node, struct iouser * cred)
{
  /* Nothing to do here */
  return 0;
}

/* This should sync the file NODE completely to disk, for the user CRED.  If
   WAIT is set, return only after sync is completely finished.  */
error_t
netfs_attempt_sync (struct iouser * cred, struct node * node, int wait)
{
  return EOPNOTSUPP;
}

error_t
netfs_get_dirents (struct iouser * cred, struct node * dir,
		   int first_entry, int max_entries, char **data,
		   mach_msg_type_number_t * data_len,
		   vm_size_t max_data_len, int *data_entries)
{
  error_t err = 0;

  if (dir->nn->ln->dir)
    {
      err = get_dirents (dir->nn->ln, first_entry, max_entries,
			 data, data_len, max_entries, data_entries);
    }
  else
    err = ENOTDIR;

  if (!err)
    /* Update atime */
    UPDATE_TIMES (dir->nn->ln, TOUCH_ATIME);

  return err;
}

/* Lookup NAME in DIR for USER; set *NODE to the found name upon return.  If
   the name was not found, then return ENOENT.  On any error, clear *NODE.
   (*NODE, if found, should be locked, this call should unlock DIR no matter
   what.) */
error_t
netfs_attempt_lookup (struct iouser * user, struct node * dir,
		      char *name, struct node ** node)
{
  error_t err = 0;
  struct pcifs_dirent *entry;

  if (*name == '\0' || strcmp (name, ".") == 0)
    /* Current directory -- just add an additional reference to DIR's node
       and return it.  */
    {
      netfs_nref (dir);
      *node = dir;
      return 0;
    }
  else if (strcmp (name, "..") == 0)
    /* Parent directory.  */
    {
      if (dir->nn->ln->parent)
	{
	  *node = dir->nn->ln->parent->node;
	  pthread_mutex_lock (&(*node)->lock);
	  netfs_nref (*node);
	}
      else
	{
	  err = ENOENT;		/* No .. */
	  *node = 0;
	}

      pthread_mutex_unlock (&dir->lock);

      return err;
    }

  /* `name' is not . nor .. */
  if (dir->nn->ln->dir)
    {
      /* `dir' is a directory */

      /* Check dir permissions */
      err = entry_check_perms (user, dir->nn->ln, O_READ | O_EXEC);
      if (!err)
	{
	  entry = lookup (dir, name);
	  if (!entry)
	    {
	      err = ENOENT;
	    }
	  else
	    {
	      if (entry->node)
		{
		  netfs_nref (entry->node);
		}
	      else
		{
		  /*
		   * No active node, create one.
		   * The new node is created with a reference.
		   */
		  err = create_node (entry, node);
		}

	      if (!err)
		{
		  *node = entry->node;
		  /* We have to unlock DIR's node before locking the child node
		     because the locking order is always child-parent.  We know
		     the child node won't go away because we already hold the
		     additional reference to it.  */
		  pthread_mutex_unlock (&dir->lock);
		  pthread_mutex_lock (&(*node)->lock);
		}
	    }
	}
    }
  else
    {
      err = ENOTDIR;
    }

  if (err)
    {
      *node = 0;
      pthread_mutex_unlock (&dir->lock);
    }
  else
    {
      /* Update the node cache */
      node_cache (*node);
    }

  return err;
}

/* Delete NAME in DIR for USER. */
error_t
netfs_attempt_unlink (struct iouser * user, struct node * dir, char *name)
{
  return EOPNOTSUPP;
}

/* Note that in this one call, neither of the specific nodes are locked. */
error_t
netfs_attempt_rename (struct iouser * user, struct node * fromdir,
		      char *fromname, struct node * todir,
		      char *toname, int excl)
{
  return EOPNOTSUPP;
}

/* Attempt to create a new directory named NAME in DIR for USER with mode
   MODE.  */
error_t
netfs_attempt_mkdir (struct iouser * user, struct node * dir,
		     char *name, mode_t mode)
{
  return EOPNOTSUPP;
}

/* Attempt to remove directory named NAME in DIR for USER. */
error_t
netfs_attempt_rmdir (struct iouser * user, struct node * dir, char *name)
{
  return EOPNOTSUPP;
}

/* This should attempt a chmod call for the user specified by CRED on node
   NODE, to change the owner to UID and the group to GID. */
error_t
netfs_attempt_chown (struct iouser * cred, struct node * node,
		     uid_t uid, uid_t gid)
{
  return EOPNOTSUPP;
}

/* This should attempt a chauthor call for the user specified by CRED on node
   NODE, to change the author to AUTHOR. */
error_t
netfs_attempt_chauthor (struct iouser * cred, struct node * node,
			uid_t author)
{
  return EOPNOTSUPP;
}

/* This should attempt a chmod call for the user specified by CRED on node
   NODE, to change the mode to MODE.  Unlike the normal Unix and Hurd meaning
   of chmod, this function is also used to attempt to change files into other
   types.  If such a transition is attempted which is impossible, then return
   EOPNOTSUPP.  */
error_t
netfs_attempt_chmod (struct iouser * cred, struct node * node, mode_t mode)
{
  return EOPNOTSUPP;
}

/* Attempt to turn NODE (user CRED) into a symlink with target NAME. */
error_t
netfs_attempt_mksymlink (struct iouser * cred, struct node * node, char *name)
{
  return EOPNOTSUPP;
}

/* Attempt to turn NODE (user CRED) into a device.  TYPE is either S_IFBLK or
   S_IFCHR. */
error_t
netfs_attempt_mkdev (struct iouser * cred, struct node * node,
		     mode_t type, dev_t indexes)
{
  return EOPNOTSUPP;
}

/* This should attempt a chflags call for the user specified by CRED on node
   NODE, to change the flags to FLAGS. */
error_t
netfs_attempt_chflags (struct iouser * cred, struct node * node, int flags)
{
  return EOPNOTSUPP;
}

/* This should attempt to set the size of the file NODE (for user CRED) to
   SIZE bytes long. */
error_t
netfs_attempt_set_size (struct iouser * cred, struct node * node, off_t size)
{
  /* Do nothing */
  return 0;
}

/* This should attempt to fetch filesystem status information for the remote
   filesystem, for the user CRED. */
error_t
netfs_attempt_statfs (struct iouser * cred, struct node * node,
		      struct statfs * st)
{
  memset (st, 0, sizeof *st);
  st->f_type = FSTYPE_PCI;
  st->f_fsid = getpid ();
  return 0;
}

/* This should sync the entire remote filesystem.  If WAIT is set, return
   only after sync is completely finished.  */
error_t
netfs_attempt_syncfs (struct iouser * cred, int wait)
{
  return 0;
}

/* Create a link in DIR with name NAME to FILE for USER.  Note that neither
   DIR nor FILE are locked.  If EXCL is set, do not delete the target, but
   return EEXIST if NAME is already found in DIR.  */
error_t
netfs_attempt_link (struct iouser * user, struct node * dir,
		    struct node * file, char *name, int excl)
{
  return EOPNOTSUPP;
}

/* Attempt to create an anonymous file related to DIR for USER with MODE.
   Set *NODE to the returned file upon success.  No matter what, unlock DIR. */
error_t
netfs_attempt_mkfile (struct iouser * user, struct node * dir,
		      mode_t mode, struct node ** node)
{
  return EOPNOTSUPP;
}

/* Read the contents of NODE (a symlink), for USER, into BUF. */
error_t
netfs_attempt_readlink (struct iouser * user, struct node * node, char *buf)
{
  return EOPNOTSUPP;
}

/* Read from the file NODE for user CRED starting at OFFSET and continuing for
   up to *LEN bytes.  Put the data at DATA.  Set *LEN to the amount
   successfully read upon return.  */
error_t
netfs_attempt_read (struct iouser * cred, struct node * node,
		    off_t offset, size_t * len, void *data)
{
  error_t err;

  if (!strncmp (node->nn->ln->name, FILE_CONFIG_NAME, NAME_SIZE))
    {
      err =
        io_config_file (node->nn->ln->device, offset, len, data,
                        pci_device_cfg_read);
      if (!err)
        /* Update atime */
        UPDATE_TIMES (node->nn->ln, TOUCH_ATIME);
    }
  else if (!strncmp (node->nn->ln->name, FILE_ROM_NAME, NAME_SIZE))
    {
      err = read_rom_file (node->nn->ln->device, offset, len, data);
      if (!err)
	/* Update atime */
	UPDATE_TIMES (node->nn->ln, TOUCH_ATIME);
    }
  else if (!strncmp
	   (node->nn->ln->name, FILE_REGION_NAME, strlen (FILE_REGION_NAME)))
    {
      err = io_region_file (node->nn->ln, offset, len, data, 1);
      if (!err)
	/* Update atime */
	UPDATE_TIMES (node->nn->ln, TOUCH_ATIME);
    }
  else
    return EOPNOTSUPP;

  return err;
}

/* Write to the file NODE for user CRED starting at OFSET and continuing for up
   to *LEN bytes from DATA.  Set *LEN to the amount seccessfully written upon
   return. */
error_t
netfs_attempt_write (struct iouser * cred, struct node * node,
		     off_t offset, size_t * len, void *data)
{
  error_t err;

  if (!strncmp (node->nn->ln->name, FILE_CONFIG_NAME, NAME_SIZE))
    {
      err =
        io_config_file (node->nn->ln->device, offset, len, data,
                       (pci_io_op_t) pci_device_cfg_write);
      if (!err)
        {
          /* Update mtime and ctime */
          UPDATE_TIMES (node->nn->ln, TOUCH_MTIME | TOUCH_CTIME);
        }
    }
  else if (!strncmp
	   (node->nn->ln->name, FILE_REGION_NAME, strlen (FILE_REGION_NAME)))
    {
      err = io_region_file (node->nn->ln, offset, len, data, 0);
      if (!err)
	/* Update atime */
	UPDATE_TIMES (node->nn->ln, TOUCH_MTIME | TOUCH_CTIME);
    }
  else
    return EOPNOTSUPP;

  return err;
}

/* Node NP is all done; free all its associated storage. */
void
netfs_node_norefs (struct node *node)
{
  destroy_node (node);
}