summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 3e991d1815f3c04f26c5cd99a6275371da236d20 (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
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/errno.h>
#include <limits.h>
#include <unistd.h>
#include <signal.h>
#include <grp.h>
#include <pwd.h>

#include <readline/readline.h>
#include <readline/history.h>

#include <utils.h>
#include <completion.h>
#include <commands.h>


char *progname; /* The name of this program, as taken from argv[0]. */
int  done;       /* When non-zero, this global means the user is done using this program. */
char pwd[PATH_MAX], home[PATH_MAX];

static sigset_t  blockmask;


COMMAND top_admin_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "shell", com_shell, "Activate submenu shell" },
  { "users", com_users, "Activate submenu users" },
  { "quit", com_quit, "Quit using SILA Shell" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND top_operator_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "shell", com_shell, "Activate submenu shell" },
  { "users", com_users, "Activate submenu users" },
  { "quit", com_quit, "Quit using SILA Shell" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND top_user_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "shell", com_shell, "Activate submenu shell" },
  { "quit", com_quit, "Quit using SILA Shell" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND_LIST top;


COMMAND shell_admin_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "cd", com_cd, "Change to directory DIR" },
  { "delete", com_delete, "Delete FILE" },
  { "list", com_ls, "List files in DIR" },
  { "ls", com_ls, "Synonym for `list'" },
  { "id", com_id, "Print user identity" },
  { "ping", com_ping, "Ping some host" },
  { "pwd", com_pwd, "Print the current working directory" },
  { "rename", com_rename, "Rename FILE to NEWNAME" },
  { "stat", com_stat, "Print out statistics on FILE" },
  { "more", com_more, "View the contents of FILE" },
  { "vi", com_vi, "Edit the contents of text FILE" },
  { "..", com_top, "Return to top menu" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND shell_operator_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "cd", com_cd, "Change to directory DIR" },
  { "delete", com_delete, "Delete FILE" },
  { "list", com_ls, "List files in DIR" },
  { "ls", com_ls, "Synonym for `list'" },
  { "id", com_id, "Print user identity" },
  { "ping", com_ping, "Ping some host" },
  { "pwd", com_pwd, "Print the current working directory" },
  { "rename", com_rename, "Rename FILE to NEWNAME" },
  { "stat", com_stat, "Print out statistics on FILE" },
  { "more", com_more, "View the contents of FILE" },
  { "vi", com_vi, "Edit the contents of text FILE" },
  { "..", com_top, "Return to top menu" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND shell_user_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "cd", com_cd, "Change to directory DIR" },
  { "delete", com_delete, "Delete FILE" },
  { "list", com_ls, "List files in DIR" },
  { "ls", com_ls, "Synonym for `list'" },
  { "id", com_id, "Print user identity" },
  { "ping", com_ping, "Ping some host" },
  { "pwd", com_pwd, "Print the current working directory" },
  { "rename", com_rename, "Rename FILE to NEWNAME" },
  { "stat", com_stat, "Print out statistics on FILE" },
  { "more", com_more, "View the contents of FILE" },
  { "vi", com_vi, "Edit the contents of text FILE" },
  { "..", com_top, "Return to top menu" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND_LIST shell;


COMMAND users_admin_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "useradd", com_useradd, "Register new user" },
  { "userdel", com_userdel, "Delete user" },
  { "list", com_userlist, "List users" },
  { "..", com_top, "Return to top menu" },
  { "quit", com_quit, "Quit using SILA Shell" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND users_operator_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "useradd", com_useradd, "Register new user" },
  { "userdel", com_userdel, "Delete user" },
  { "list", com_userlist, "List users" },
  { "..", com_top, "Return to top menu" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};

COMMAND users_user_list[] = {
  { "help", com_help, "Display this text" },
  { "?", com_help, "Synonym for `help'" },
  { "list", com_userlist, "List users" },
  { "..", com_top, "Return to top menu" },
  { (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL }
};


COMMAND_LIST users;

COMMAND_LIST *current;


enum priv {
  ADMIN,
  OPERATOR,
  USER
};

enum priv user_privileges()
{
  enum priv      ret    = USER;
  gid_t         *groups = NULL;
  int            ng     = 0;
  uid_t          uid    = getuid();
  struct passwd *pw     = getpwuid( uid );

  if( !pw ) return ret;

  (void)getgrouplist( pw->pw_name, pw->pw_gid, NULL, &ng );
  /* allocate groups[] */
  if( ng == 0 )
  {
    fprintf( stderr, "Cannot get user groups list\n" );
    exit( 1 );
  }
  groups = (gid_t *)malloc( sizeof(gid_t)* ng );
  if( !groups )
  {
    fprintf( stderr, "Cannot allocate memory\n" );
    exit( 1 );
  }
  if( getgrouplist( pw->pw_name, pw->pw_gid, groups, &ng ) == -1 )
  {
    free( groups );
    fprintf( stderr, "getgrouplist() returned -1; ngroups = %d\n", ng );
    exit( 1 );
  }

  for( int i = 0; i < ng; i++ )
  {
    struct group *gr = getgrgid(groups[i]);

    if( gr )
    {
      if( !strncmp( gr->gr_name, "priv-operator", 10 ) )
        ret = OPERATOR;
    }
  }

  for( int i = 0; i < ng; i++ )
  {
    struct group *gr = getgrgid(groups[i]);

    if( gr )
    {
      if( !strncmp( gr->gr_name, "priv-admin", 10 ) )
        ret = ADMIN;
    }
  }

  free( groups );

  return ret;
}

void cmd_lists_init( gid_t gid )
{
  enum priv privileges = USER;

  privileges = user_privileges();

  top.name   = "top";
  shell.name = "shell";
  users.name = "users";

  if( privileges == ADMIN || gid == 0 )
  {
    top.list   =   &top_admin_list[0];
    shell.list = &shell_admin_list[0];
    users.list = &users_admin_list[0];
  }
  else if( privileges == OPERATOR )
  {
    top.list   =   &top_operator_list[0];
    shell.list = &shell_operator_list[0];
    users.list = &users_operator_list[0];
  }
  else
  {
    top.list   =   &top_user_list[0];
    shell.list = &shell_user_list[0];
    users.list = &users_user_list[0];
  }

  current = &top;
}

/*
   Strip whitespace from the start and end of STRING.
   Return a pointer into STRING.
 */
char *stripwhite( char *string )
{
  register char *s, *t;

  for( s = string; whitespace (*s); ++s )
    ;

  if( *s == 0 )
    return( s );

  t = s + strlen (s) - 1;
  while( t > s && whitespace( *t ) )
    t--;
  *++t = '\0';

  return s;
}

/*
   Look up NAME as the name of a command, and return a pointer to
   that command. Return a NULL pointer if NAME isn't a command name.
 */
COMMAND *find_command( char *name )
{
  register int i;

  for( i = 0; current->list[i].name; i++ )
    if( strcmp( name, current->list[i].name ) == 0 )
      return( &current->list[i] );

  return( (COMMAND *)NULL );
}

/*
   Execute a command line.
 */
int execute_line( char *line )
{
  register int i;
  COMMAND *command;
  char *word;

  /* Isolate the command word. */
  i = 0;
  while( line[i] && whitespace( line[i] ) )
    i++;
  word = line + i;

  while( line[i] && !whitespace( line[i] ) )
    i++;

  if( line[i] )
    line[i++] = '\0';

  command = find_command( word );

  if( !command )
  {
    if( strcmp( current->name, "top" ) )
      fprintf( stderr, "%s: No such command for SILA[%s] Shell.\n", word, current->name );
    else
      fprintf( stderr, "%s: No such command for SILA Shell.\n", word );
    return( -1 );
  }

  /* Get argument to command, if any. */
  while( whitespace( line[i] ) )
    i++;

  word = line + i;

  /* Call the function. */
  return( (*(command->func))(word) );
}

void sigint( int signum )
{
  if( signum == SIGTERM )
  {
    /* free resourses and exit */
    exit( 0 );
  }
  else
  {
    /* Ignore SIGINT */
    return;
  }
}

static void set_signal_handlers()
{
  struct sigaction  sa;
  sigset_t          set;

  memset( &sa, 0, sizeof( sa ) );
  sa.sa_handler = sigint;          /* TERM, INT */
  sa.sa_flags = SA_RESTART;
  sigemptyset( &set );
  sigaddset( &set, SIGTERM );
  sigaddset( &set, SIGINT );
  sa.sa_mask = set;
  sigaction( SIGTERM, &sa, NULL );
  sigaction( SIGINT, &sa,  NULL );

  /* на случай блокировки сигналов с помощью sigprocmask(): */
  sigemptyset( &blockmask );
  sigaddset( &blockmask, SIGTERM );
  sigaddset( &blockmask, SIGINT );
}



int main( int argc, char **argv )
{
  char *line, *s, *home, *curdir;
  char prompt[PATH_MAX];

  set_signal_handlers();

  cmd_lists_init( getgid() );

  progname = argv[0];

  initialize_readline(); /* Bind our completer. */

  /* Loop reading and executing lines until the user quits. */
  for( ; done == 0; )
  {
    home = getenv( "HOME" );
    curdir = getcwd( pwd, PATH_MAX );

    if( home && curdir == strstr( curdir, home ) )
    {
      curdir[strlen( home ) - 1] = '~';
      curdir += strlen( home ) - 1;
    }
    if( strcmp( current->name, "top" ) )
      sprintf( prompt, "%s[%s]:%s$ ", "sila", current->name, curdir );
    else
      sprintf( prompt, "%s:%s$ ", "sila", curdir );

    line = readline( prompt );

    if( !line )
    {
      break;
    }

    /*
       Remove leading and trailing whitespace from the line.
       Then, if there is anything left, add it to the history list
       and execute it.
     */
    s = stripwhite( line );

    if( *s )
    {
      add_history( s );
      execute_line( s );
    }

    free( line );
  }
  exit( 0 );
}