-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli_cmd.c
441 lines (412 loc) · 11.3 KB
/
cli_cmd.c
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
#include "cli.h"
#include "cli_cmd.h"
#define NUM_MAX_CHARS (10)
/***************************************************************************
** Function: logincheck
** Checks for login.
** Inputs: login name.
**
** Outputs: Success or Failure.
**************************************************************************/
int logincheck(char **args)
{
int i;
char uid[25];
sscanf(args[0],"%s",uid);
for (i = 0; i < NMODES; ++i)
{
if (!strcmp(usermodes[i].userid, uid))
{
if(usermodes[i].mode == current_mode)
{
printf("You are already in %s mode\n", usermodes[i].userid);
return CLI_SUCCESS;
}
break;
}
}
if (i == NMODES)
{
printf("ERR: No such login mode exists\r\n");
return CLI_FAILURE;
}
printf("Password:");
{
/* CLI terminal has triggered for login, take action only in CLI terminal */
CLILoginCheck(i);
return CLI_SUCCESS;
}
return CLI_SUCCESS;
}
/***************************************************************************
** Function: CLILoginCheck
**
** Inputs:
**
** Outputs:
**************************************************************************/
int CLILoginCheck(int accessmode)
{
char string[MAX_PWD_LEN];
DISABLEECHO();
CLI_Input(string, MAX_PWD_LEN);
ENABLEECHO();
if (!strcmp(string, usermodes[accessmode].passwd))
{
current_mode = usermodes[accessmode].mode;
ChangePrompt(usermodes[accessmode].prompt);
/* sprintf(string, "[INFO]: Changing to mode %s \r\n", usermodes[accessmode].name);
printf(string); */
}
else
{
printf("INFO: Login Incorrect\r\n");
}
return CLI_SUCCESS;
}
/***************************************************************************
** Function: passwdcheck
** Checks pasword.
** Inputs: passwd string.
**
** Outputs: Success or Failure.
**************************************************************************/
int passwdcheck(char **args)
{
int i = 0;
char uid[25];
int CLIAccessPasswdChg(int accessModeId);
sscanf(args[0],"%s",uid );
for (i = 0; i < NMODES; ++i)
if (!strcmp(usermodes[i].userid, uid))
break;
if (i == NMODES)
{
printf("[ERR]: No such user exists\r\n");
return CLI_FAILURE;
}
if(!strcmp(uid, ENGG_MODE_ID) && (current_mode == SUPERVISORY_MODE))
{
printf("ERR: Invalid Use.....\r\n");
return CLI_FAILURE;
}
printf("Old Password:");
CLIAccessPasswdChg(i);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: CLIAccessPasswdChg
**
** Inputs:
**
** Outputs:
**************************************************************************/
int CLIAccessPasswdChg(int accessmode)
{
char ostring[MAX_PWD_LEN];
DISABLEECHO();
CLI_Input(ostring, MAX_PWD_LEN);
ENABLEECHO();
if (!strcmp(ostring, usermodes[accessmode].passwd))
{
char nstring[MAX_PWD_LEN], rstring[MAX_PWD_LEN];
printf("New Password: ");
DISABLEECHO();
CLI_Input(nstring, MAX_PWD_LEN);
ENABLEECHO();
if(strlen(nstring) < MIN_PWD_LEN)
{
printf("ERR: Password < %u \r\n", MIN_PWD_LEN);
return CLI_FAILURE;
}
printf("Retype New Password:");
DISABLEECHO();
CLI_Input(rstring, MAX_PWD_LEN);
ENABLEECHO();
if(strlen(rstring) < MIN_PWD_LEN)
{
printf("ERR: Password < %u \r\n", MIN_PWD_LEN);
return CLI_FAILURE;
}
strcpy(usermodes[accessmode].passwd, nstring);
printf("INFO: Pwd successfully changed \r\n");
}
else
{
printf("INFO: Login Incorrect\r\n");
return CLI_FAILURE;
}
return CLI_SUCCESS;
}
/***************************************************************************
** Function: modenames
**
** Inputs: cmd line argument.
**
** Outputs: Success.
**************************************************************************/
int modenames(char **args)
{
char string[128];
int i = 0;
string[0] = '\0';
for (; i < NMODES; ++i)
{
strcat(string, usermodes[i].userid);
strcat(string, " ");
}
strcat(string, "\r\n");
printf(string);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: whichmode
**
** Inputs: cmd line arg.
**
** Outputs: Success.
**************************************************************************/
int whichmode(char **args)
{
int i = 0;
char string[128];
for (i = 0; i < NMODES; ++i)
if (usermodes[i].mode == current_mode)
break;
sprintf(string, "You are now in %s mode\r\n", usermodes[i].userid);
printf(string);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: exitmode
**
** Inputs: cmd line arg.
**
** Outputs: Success.
**************************************************************************/
int exitmode(char **argv)
{
exit_flag = 1;
printf("Exit from Application\n");
return CLI_SUCCESS;
}
/***************************************************************************
** Function: SetSystemPrompt
**
** Inputs:
**
** Outputs:
**************************************************************************/
int SetSystemPrompt(char **argv)
{
int i=0;
for (i = 0; i < NMODES; ++i)
if (usermodes[i].mode == current_mode )
break;
if (strlen(argv[0]) > (CLI_PROMPT_LEN -1))
return CLI_FAILURE;
strcpy(usermodes[i].prompt,argv[0]);
ChangePrompt(usermodes[i].prompt);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: RegisterCli
**
** Inputs:
**
** Outputs:
**************************************************************************/
int RegisterCli()
{
if(InsertCommand("<num1> + <num2>", START_MODE, num_addition) == CLI_FAILURE)
return CLI_FAILURE;
if(InsertCommand("<num1> - <num2>", START_MODE, num_subtraction) == CLI_FAILURE)
return CLI_FAILURE;
if(InsertCommand("<num1> * <num2>", START_MODE, num_multiplication) == CLI_FAILURE)
return CLI_FAILURE;
if(InsertCommand("<num1> / <num2>", START_MODE, num_division) == CLI_FAILURE)
return CLI_FAILURE;
if(InsertCommand("<num1> % <num2>", START_MODE, num_modulus) == CLI_FAILURE)
return CLI_FAILURE;
return CLI_SUCCESS;
}
/***************************************************************************
** Function: num_addition
**
** Inputs:
**
** Outputs:
**************************************************************************/
int num_addition(char **args)
{
#define ADD_NUM_CHARS (10)
char num1_str[ADD_NUM_CHARS], num2_str[ADD_NUM_CHARS], result_str[ADD_NUM_CHARS + 1], *ptr;
double num1, num2, result;
if(strlen(args[0]) >= ADD_NUM_CHARS || strlen(args[1]) >= ADD_NUM_CHARS )
{
printf("ERR: Num chars exceeds %d\n", ADD_NUM_CHARS);
return CLI_SUCCESS;
}
sscanf(args[0], "%s", num1_str);
sscanf(args[1], "%s", num2_str);
num1 = strtod(num1_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: invalid num1: %s \n", num1_str);
return CLI_SUCCESS;
}
num2 = strtod(num2_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: invalid num2: %s \n", num2_str);
return CLI_SUCCESS;
}
result = num1 + num2;
sprintf(result_str, "%lf", result);
printf("%s + %s = %s\n", num1_str, num2_str, result_str);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: num_subtraction
**
** Inputs:
**
** Outputs:
**************************************************************************/
int num_subtraction(char **args)
{
#define SUB_NUM_CHARS (10)
char num1_str[SUB_NUM_CHARS], num2_str[SUB_NUM_CHARS], result_str[SUB_NUM_CHARS + 1], *ptr;
double num1, num2, result;
if(strlen(args[0]) >= SUB_NUM_CHARS || strlen(args[1]) >= SUB_NUM_CHARS )
{
printf("ERR: Num chars exceeds %d \n", SUB_NUM_CHARS);
return CLI_SUCCESS;
}
sscanf(args[0], "%s", num1_str);
sscanf(args[1], "%s", num2_str);
num1 = strtod(num1_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: invalid num1: %s \n", num1_str);
return CLI_SUCCESS;
}
num2 = strtod(num2_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: invalid num2: %s \n", num2_str);
return CLI_SUCCESS;
}
result = num1 - num2;
sprintf(result_str, "%lf", result);
printf("%s - %s = %s\n", num1_str, num2_str, result_str);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: num_multiplication
**
** Inputs:
**
** Outputs:
**************************************************************************/
int num_multiplication(char **args)
{
#define MUL_NUM_CHARS (8)
char num1_str[MUL_NUM_CHARS], num2_str[MUL_NUM_CHARS], result_str[MUL_NUM_CHARS + 4], *ptr;
double num1, num2, result;
if(strlen(args[0]) >= MUL_NUM_CHARS || strlen(args[1]) >= MUL_NUM_CHARS )
{
printf("ERR: Num chars exceeds %d \n", MUL_NUM_CHARS);
return CLI_SUCCESS;
}
sscanf(args[0], "%s", num1_str);
sscanf(args[1], "%s", num2_str);
num1 = strtod(num1_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: Invalid num1: %s \n", num1_str);
return CLI_SUCCESS;
}
num2 = strtod(num2_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: Invalid num2: %s \n", num2_str);
return CLI_SUCCESS;
}
result = num1 * num2;
sprintf(result_str, "%lf", result);
printf("%s * %s = %s\n", num1_str, num2_str, result_str);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: num_division
**
** Inputs:
**
** Outputs:
**************************************************************************/
int num_division(char **args)
{
#define DIV_NUM_CHARS (8)
char num1_str[DIV_NUM_CHARS], num2_str[DIV_NUM_CHARS], result_str[DIV_NUM_CHARS + 4], *ptr;
double num1, num2, result;
if(strlen(args[0]) >= DIV_NUM_CHARS || strlen(args[1]) >= DIV_NUM_CHARS )
{
printf("ERR: Num chars exceeds %d \n", DIV_NUM_CHARS);
return CLI_SUCCESS;
}
sscanf(args[0], "%s", num1_str);
sscanf(args[1], "%s", num2_str);
num1 = strtod(num1_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: Invalid num1: %s \n", num1_str);
return CLI_SUCCESS;
}
num2 = strtod(num2_str, &ptr);
if(strcmp(ptr, ""))
{
printf("ERR: Invalid num2: %s \n", num2_str);
return CLI_SUCCESS;
}
result = num1 / num2;
sprintf(result_str, "%lf", result);
printf("%s / %s = %s\n", num1_str, num2_str, result_str);
return CLI_SUCCESS;
}
/***************************************************************************
** Function: num_modulus
**
** Inputs:
**
** Outputs:
**************************************************************************/
int num_modulus(char **args)
{
#define MOD_NUM_CHARS (8)
char num1_str[MOD_NUM_CHARS], num2_str[MOD_NUM_CHARS], result_str[MOD_NUM_CHARS], *ptr;
long int num1, num2, result;
if(strlen(args[0]) >= MOD_NUM_CHARS || strlen(args[1]) >= MOD_NUM_CHARS )
{
printf("ERR: Num chars exceeds %d \n", MOD_NUM_CHARS);
return CLI_SUCCESS;
}
sscanf(args[0], "%s", num1_str);
sscanf(args[1], "%s", num2_str);
num1 = strtol(num1_str, &ptr, 10);
if(strcmp(ptr, ""))
{
printf("ERR: Invalid num1: %s \n", num1_str);
return CLI_SUCCESS;
}
num2 = strtol(num2_str, &ptr, 10);
if(strcmp(ptr, ""))
{
printf("ERR: Invalid num2: %s \n", num2_str);
return CLI_SUCCESS;
}
result = num1 % num2;
sprintf(result_str, "%ld", result);
printf("%s %% %s = %s\n", num1_str, num2_str, result_str);
return CLI_SUCCESS;
}