summaryrefslogtreecommitdiff
path: root/usermux/usermux.h
blob: 2eed33c4800fbc201c6fd9e1978e7e573a2df70b (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
/* Multiplexing filesystems by user

   Copyright (C) 1997, 2000 Free Software Foundation, Inc.
   Written by Miles Bader <miles@gnu.ai.mit.edu>
   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 this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. */

#ifndef __USERMUX_H__
#define __USERMUX_H__

#include <hurd/netfs.h>
#include <pthread.h>
#include <maptime.h>

struct passwd;

/* Filenos (aka inode numbers) for user nodes are the uid + this.  */
#define USERMUX_FILENO_UID_OFFSET	10

/* Handy source of time.  */
extern volatile struct mapped_time_value *usermux_maptime;

/* The state associated with a user multiplexer translator.  */
struct usermux
{
  /* The user nodes in this mux.  */
  struct usermux_name *names;
  pthread_rwlock_t names_lock;

  /* A template argz, which is used to start each user-specific translator
     with the user name appropriately added.  */
  char *trans_template;
  size_t trans_template_len;

  /* What string to replace in TRANS_TEMPLATE with the name of the various
     user params; if none occur in the template, the user's home dir is
     appended as an additional argument.  */
  char *user_pat;		/* User name */
  char *home_pat;		/* Home directory */
  char *uid_pat;		/* Numeric user id */

  /* Constant fields for user stat entries.  */
  struct stat stat_template;

  /* The file that this translator is sitting on top of; we inherit various
     characteristics from it.  */
  file_t underlying;
};

/* The name of a recently looked up user entry.  */
struct usermux_name
{
  const char *name;		/* Looked up name.  */

  /* A filesystem node associated with NAME.  */
  struct node *node;

  struct usermux_name *next;
};

/* The fs specific storage that libnetfs associates with each filesystem
   node.  */
struct netnode
{
  /* The mux this node belongs to (the node can either be the mux root, or
     one of the users served by it).  */
  struct usermux *mux;

  /* For mux nodes, 0, and for leaf nodes, the name under which the node was
     looked up. */
  struct usermux_name *name;

  /* The translator associated with node, or if its a symlink, just the link
     target.  */
  char *trans;
  size_t trans_len;
};

error_t create_user_node (struct usermux *mux, struct usermux_name *name,
			  struct passwd *pw, struct node **node);

#ifndef USERMUX_EI
# define USERMUX_EI extern inline
#endif

#endif /* __USERMUX_H__ */