BOOK.TXT
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1020k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. 24317 #include <signal.h>
  2. 24318 #include <minix/boot.h>
  3. 24319 #include <minix/callnr.h>
  4. 24320 #include <minix/com.h>
  5. 24321 #include "dev.h"
  6. 24322 #include "file.h"
  7. 24323 #include "fproc.h"
  8. 24324 #include "inode.h"
  9. 24325 #include "param.h"
  10. 24326
  11. 24327 PRIVATE message mess;
  12. 24328
  13. 24329 /*===========================================================================*
  14. 24330  *                              do_pipe                                      *
  15. 24331  *===========================================================================*/
  16. 24332 PUBLIC int do_pipe()
  17. 24333 {
  18. 24334 /* Perform the pipe(fil_des) system call. */
  19. 24335
  20. 24336   register struct fproc *rfp;
  21. 24337   register struct inode *rip;
  22. 24338   int r;
  23. 24339   struct filp *fil_ptr0, *fil_ptr1;
  24. 24340   int fil_des[2];               /* reply goes here */
  25. 24341
  26. 24342   /* Acquire two file descriptors. */
  27. 24343   rfp = fp;
  28. 24344   if ( (r = get_fd(0, R_BIT, &fil_des[0], &fil_ptr0)) != OK) return(r);
  29. 24345   rfp->fp_filp[fil_des[0]] = fil_ptr0;
  30. 24346   fil_ptr0->filp_count = 1;
  31. 24347   if ( (r = get_fd(0, W_BIT, &fil_des[1], &fil_ptr1)) != OK) {
  32. 24348         rfp->fp_filp[fil_des[0]] = NIL_FILP;
  33. 24349         fil_ptr0->filp_count = 0;
  34. 24350         return(r);
  35. 24351   }
  36. 24352   rfp->fp_filp[fil_des[1]] = fil_ptr1;
  37. 24353   fil_ptr1->filp_count = 1;
  38. 24354
  39. 24355   /* Make the inode on the pipe device. */
  40. 24356   if ( (rip = alloc_inode(PIPE_DEV, I_REGULAR) ) == NIL_INODE) {
  41. 24357         rfp->fp_filp[fil_des[0]] = NIL_FILP;
  42. 24358         fil_ptr0->filp_count = 0;
  43. 24359         rfp->fp_filp[fil_des[1]] = NIL_FILP;
  44. 24360         fil_ptr1->filp_count = 0;
  45. 24361         return(err_code);
  46. 24362   }
  47. 24363
  48. 24364   if (read_only(rip) != OK) panic("pipe device is read only", NO_NUM);
  49. 24365  
  50. 24366   rip->i_pipe = I_PIPE;
  51. 24367   rip->i_mode &= ~I_REGULAR;
  52. 24368   rip->i_mode |= I_NAMED_PIPE;  /* pipes and FIFOs have this bit set */
  53. 24369   fil_ptr0->filp_ino = rip;
  54. 24370   fil_ptr0->filp_flags = O_RDONLY;
  55. 24371   dup_inode(rip);               /* for double usage */
  56. 24372   fil_ptr1->filp_ino = rip;
  57. 24373   fil_ptr1->filp_flags = O_WRONLY;
  58. 24374   rw_inode(rip, WRITING);       /* mark inode as allocated */
  59. 24375   reply_i1 = fil_des[0];
  60. 24376   reply_i2 = fil_des[1];
  61. 24377   rip->i_update = ATIME | CTIME | MTIME;
  62. 24378   return(OK);
  63. 24379 }
  64. 24382 /*===========================================================================*
  65. 24383  *                              pipe_check                                   *
  66. 24384  *===========================================================================*/
  67. 24385 PUBLIC int pipe_check(rip, rw_flag, oflags, bytes, position, canwrite)
  68. 24386 register struct inode *rip;     /* the inode of the pipe */
  69. 24387 int rw_flag;                    /* READING or WRITING */
  70. 24388 int oflags;                     /* flags set by open or fcntl */
  71. 24389 register int bytes;             /* bytes to be read or written (all chunks) */
  72. 24390 register off_t position;        /* current file position */
  73. 24391 int *canwrite;                  /* return: number of bytes we can write */
  74. 24392 {
  75. 24393 /* Pipes are a little different.  If a process reads from an empty pipe for
  76. 24394  * which a writer still exists, suspend the reader.  If the pipe is empty
  77. 24395  * and there is no writer, return 0 bytes.  If a process is writing to a
  78. 24396  * pipe and no one is reading from it, give a broken pipe error.
  79. 24397  */
  80. 24398
  81. 24399   int r = 0;
  82. 24400
  83. 24401   /* If reading, check for empty pipe. */
  84. 24402   if (rw_flag == READING) {
  85. 24403         if (position >= rip->i_size) {
  86. 24404                 /* Process is reading from an empty pipe. */
  87. 24405                 if (find_filp(rip, W_BIT) != NIL_FILP) {
  88. 24406                         /* Writer exists */
  89. 24407                         if (oflags & O_NONBLOCK) 
  90. 24408                                 r = EAGAIN;
  91. 24409                         else 
  92. 24410                                 suspend(XPIPE); /* block reader */
  93. 24411
  94. 24412                         /* If need be, activate sleeping writers. */
  95. 24413                         if (susp_count > 0) release(rip, WRITE, susp_count);
  96. 24414                 }
  97. 24415                 return(r);
  98. 24416         }
  99. 24417   } else {
  100. 24418         /* Process is writing to a pipe. */
  101. 24419 /*      if (bytes > PIPE_SIZE) return(EFBIG); */
  102. 24420         if (find_filp(rip, R_BIT) == NIL_FILP) {
  103. 24421                 /* Tell kernel to generate a SIGPIPE signal. */
  104. 24422                 sys_kill((int)(fp - fproc), SIGPIPE);
  105. 24423                 return(EPIPE);
  106. 24424         }
  107. 24425
  108. 24426         if (position + bytes > PIPE_SIZE) {
  109. 24427                 if ((oflags & O_NONBLOCK) && bytes < PIPE_SIZE) 
  110. 24428                         return(EAGAIN);
  111. 24429                 else if ((oflags & O_NONBLOCK) && bytes > PIPE_SIZE) {
  112. 24430                         if ( (*canwrite = (PIPE_SIZE - position)) > 0)  {
  113. 24431                                 /* Do a partial write. Need to wakeup reader */
  114. 24432                                 release(rip, READ, susp_count);
  115. 24433                                 return(1);
  116. 24434                         } else {
  117. 24435                                 return(EAGAIN);
  118. 24436                         }
  119. 24437                      }
  120. 24438                 if (bytes > PIPE_SIZE) {
  121. 24439                         if ((*canwrite = PIPE_SIZE - position) > 0) {
  122. 24440                                 /* Do a partial write. Need to wakeup reader
  123. 24441                                  * since we'll suspend ourself in read_write()
  124. 24442                                  */
  125. 24443                                 release(rip, READ, susp_count);
  126. 24444                                 return(1);
  127. 24445                         }
  128. 24446                 }
  129. 24447                 suspend(XPIPE); /* stop writer -- pipe full */
  130. 24448                 return(0);
  131. 24449         }
  132. 24450
  133. 24451         /* Writing to an empty pipe.  Search for suspended reader. */
  134. 24452         if (position == 0) release(rip, READ, susp_count);
  135. 24453   }
  136. 24454
  137. 24455   *canwrite = 0;
  138. 24456   return(1);
  139. 24457 }
  140. 24460 /*===========================================================================*
  141. 24461  *                              suspend                                      *
  142. 24462  *===========================================================================*/
  143. 24463 PUBLIC void suspend(task)
  144. 24464 int task;                       /* who is proc waiting for? (PIPE = pipe) */
  145. 24465 {
  146. 24466 /* Take measures to suspend the processing of the present system call.
  147. 24467  * Store the parameters to be used upon resuming in the process table.
  148. 24468  * (Actually they are not used when a process is waiting for an I/O device,
  149. 24469  * but they are needed for pipes, and it is not worth making the distinction.)
  150. 24470  */
  151. 24471
  152. 24472   if (task == XPIPE || task == XPOPEN) susp_count++;/* #procs susp'ed on pipe*/
  153. 24473   fp->fp_suspended = SUSPENDED;
  154. 24474   fp->fp_fd = fd << 8 | fs_call;
  155. 24475   fp->fp_task = -task;
  156. 24476   if (task == XLOCK) {
  157. 24477         fp->fp_buffer = (char *) name1; /*  third arg to fcntl() */
  158. 24478         fp->fp_nbytes =request;         /* second arg to fcntl() */
  159. 24479   } else {
  160. 24480         fp->fp_buffer = buffer;         /* for reads and writes */
  161. 24481         fp->fp_nbytes = nbytes;
  162. 24482   }
  163. 24483   dont_reply = TRUE;            /* do not send caller a reply message now */
  164. 24484 }
  165. 24487 /*===========================================================================*
  166. 24488  *                              release                                      *
  167. 24489  *===========================================================================*/
  168. 24490 PUBLIC void release(ip, call_nr, count)
  169. 24491 register struct inode *ip;      /* inode of pipe */
  170. 24492 int call_nr;                    /* READ, WRITE, OPEN or CREAT */
  171. 24493 int count;                      /* max number of processes to release */
  172. 24494 {
  173. 24495 /* Check to see if any process is hanging on the pipe whose inode is in 'ip'.
  174. 24496  * If one is, and it was trying to perform the call indicated by 'call_nr',
  175. 24497  * release it.
  176. 24498  */
  177. 24499
  178. 24500   register struct fproc *rp;
  179. 24501
  180. 24502   /* Search the proc table. */
  181. 24503   for (rp = &fproc[0]; rp < &fproc[NR_PROCS]; rp++) {
  182. 24504         if (rp->fp_suspended == SUSPENDED &&
  183. 24505                         rp->fp_revived == NOT_REVIVING &&
  184. 24506                         (rp->fp_fd & BYTE) == call_nr &&
  185. 24507                         rp->fp_filp[rp->fp_fd>>8]->filp_ino == ip) {
  186. 24508                 revive((int)(rp - fproc), 0);
  187. 24509                 susp_count--;   /* keep track of who is suspended */
  188. 24510                 if (--count == 0) return;
  189. 24511         }
  190. 24512   }
  191. 24513 }
  192. 24516 /*===========================================================================*
  193. 24517  *                              revive                                       *
  194. 24518  *===========================================================================*/
  195. 24519 PUBLIC void revive(proc_nr, bytes)
  196. 24520 int proc_nr;                    /* process to revive */
  197. 24521 int bytes;                      /* if hanging on task, how many bytes read */
  198. 24522 {
  199. 24523 /* Revive a previously blocked process. When a process hangs on tty, this
  200. 24524  * is the way it is eventually released.
  201. 24525  */
  202. 24526
  203. 24527   register struct fproc *rfp;
  204. 24528   register int task;
  205. 24529
  206. 24530   if (proc_nr < 0 || proc_nr >= NR_PROCS) panic("revive err", proc_nr);
  207. 24531   rfp = &fproc[proc_nr];
  208. 24532   if (rfp->fp_suspended == NOT_SUSPENDED || rfp->fp_revived == REVIVING)return;
  209. 24533
  210. 24534   /* The 'reviving' flag only applies to pipes.  Processes waiting for TTY get
  211. 24535    * a message right away.  The revival process is different for TTY and pipes.
  212. 24536    * For TTY revival, the work is already done, for pipes it is not: the proc
  213. 24537    * must be restarted so it can try again.
  214. 24538    */
  215. 24539   task = -rfp->fp_task;
  216. 24540   if (task == XPIPE || task == XLOCK) {
  217. 24541         /* Revive a process suspended on a pipe or lock. */
  218. 24542         rfp->fp_revived = REVIVING;
  219. 24543         reviving++;             /* process was waiting on pipe or lock */
  220. 24544   } else {
  221. 24545         rfp->fp_suspended = NOT_SUSPENDED;
  222. 24546         if (task == XPOPEN) /* process blocked in open or create */
  223. 24547                 reply(proc_nr, rfp->fp_fd>>8);
  224. 24548         else {
  225. 24549                 /* Revive a process suspended on TTY or other device. */
  226. 24550                 rfp->fp_nbytes = bytes; /*pretend it wants only what there is*/
  227. 24551                 reply(proc_nr, bytes);  /* unblock the process */
  228. 24552         }
  229. 24553   }
  230. 24554 }
  231. 24557 /*===========================================================================*
  232. 24558  *                              do_unpause                                   *
  233. 24559  *===========================================================================*/
  234. 24560 PUBLIC int do_unpause()
  235. 24561 {
  236. 24562 /* A signal has been sent to a user who is paused on the file system.
  237. 24563  * Abort the system call with the EINTR error message.
  238. 24564  */
  239. 24565
  240. 24566   register struct fproc *rfp;
  241. 24567   int proc_nr, task, fild;
  242. 24568   struct filp *f;
  243. 24569   dev_t dev;
  244. 24570
  245. 24571   if (who > MM_PROC_NR) return(EPERM);
  246. 24572   proc_nr = pro;
  247. 24573   if (proc_nr < 0 || proc_nr >= NR_PROCS) panic("unpause err 1", proc_nr);
  248. 24574   rfp = &fproc[proc_nr];
  249. 24575   if (rfp->fp_suspended == NOT_SUSPENDED) return(OK);
  250. 24576   task = -rfp->fp_task;
  251. 24577
  252. 24578   switch(task) {
  253. 24579         case XPIPE:             /* process trying to read or write a pipe */
  254. 24580                 break;
  255. 24581
  256. 24582         case XOPEN:             /* process trying to open a special file */
  257. 24583                 panic ("fs/do_unpause called with XOPENn", NO_NUM);
  258. 24584
  259. 24585         case XLOCK:             /* process trying to set a lock with FCNTL */
  260. 24586                 break;
  261. 24587
  262. 24588         case XPOPEN:            /* process trying to open a fifo */
  263. 24589                 break;
  264. 24590
  265. 24591         default:                /* process trying to do device I/O (e.g. tty)*/
  266. 24592                 fild = (rfp->fp_fd >> 8) & BYTE;/* extract file descriptor */
  267. 24593                 if (fild < 0 || fild >= OPEN_MAX)panic("unpause err 2",NO_NUM);
  268. 24594                 f = rfp->fp_filp[fild];
  269. 24595                 dev = (dev_t) f->filp_ino->i_zone[0];   /* device hung on */
  270. 24596                 mess.TTY_LINE = (dev >> MINOR) & BYTE;
  271. 24597                 mess.PROC_NR = proc_nr;
  272. 24598
  273. 24599                 /* Tell kernel R or W. Mode is from current call, not open. */
  274. 24600                 mess.COUNT = (rfp->fp_fd & BYTE) == READ ? R_BIT : W_BIT;
  275. 24601                 mess.m_type = CANCEL;
  276. 24602                 fp = rfp;       /* hack - call_ctty uses fp */
  277. 24603                 (*dmap[(dev >> MAJOR) & BYTE].dmap_rw)(task, &mess);
  278. 24604   }
  279. 24605
  280. 24606   rfp->fp_suspended = NOT_SUSPENDED;
  281. 24607   reply(proc_nr, EINTR);        /* signal interrupted call */
  282. 24608   return(OK);
  283. 24609 }
  284. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  285. src/fs/path.c    
  286. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  287. 24700 /* This file contains the procedures that look up path names in the directory
  288. 24701  * system and determine the inode number that goes with a given path name.
  289. 24702  *
  290. 24703  *  The entry points into this file are
  291. 24704  *   eat_path:   the 'main' routine of the path-to-inode conversion mechanism
  292. 24705  *   last_dir:   find the final directory on a given path
  293. 24706  *   advance:    parse one component of a path name
  294. 24707  *   search_dir: search a directory for a string and return its inode number
  295. 24708  */
  296. 24709
  297. 24710 #include "fs.h"
  298. 24711 #include <string.h>
  299. 24712 #include <minix/callnr.h>
  300. 24713 #include "buf.h"
  301. 24714 #include "file.h"
  302. 24715 #include "fproc.h"
  303. 24716 #include "inode.h"
  304. 24717 #include "super.h"
  305. 24718
  306. 24719 PUBLIC char dot1[2] = ".";      /* used for search_dir to bypass the access */
  307. 24720 PUBLIC char dot2[3] = "..";     /* permissions for . and ..                 */
  308. 24721
  309. 24722 FORWARD _PROTOTYPE( char *get_name, (char *old_name, char string [NAME_MAX]) );
  310. 24723
  311. 24724 /*===========================================================================*
  312. 24725  *                              eat_path                                     *
  313. 24726  *===========================================================================*/
  314. 24727 PUBLIC struct inode *eat_path(path)
  315. 24728 char *path;                     /* the path name to be parsed */
  316. 24729 {
  317. 24730 /* Parse the path 'path' and put its inode in the inode table. If not possible,
  318. 24731  * return NIL_INODE as function value and an error code in 'err_code'.
  319. 24732  */
  320. 24733
  321. 24734   register struct inode *ldip, *rip;
  322. 24735   char string[NAME_MAX];        /* hold 1 path component name here */
  323. 24736
  324. 24737   /* First open the path down to the final directory. */
  325. 24738   if ( (ldip = last_dir(path, string)) == NIL_INODE)
  326. 24739         return(NIL_INODE);      /* we couldn't open final directory */
  327. 24740
  328. 24741   /* The path consisting only of "/" is a special case, check for it. */
  329. 24742   if (string[0] == '') return(ldip);
  330. 24743
  331. 24744   /* Get final component of the path. */
  332. 24745   rip = advance(ldip, string);
  333. 24746   put_inode(ldip);
  334. 24747   return(rip);
  335. 24748 }
  336. 24751 /*===========================================================================*
  337. 24752  *                              last_dir                                     *
  338. 24753  *===========================================================================*/
  339. 24754 PUBLIC struct inode *last_dir(path, string)
  340. 24755 char *path;                     /* the path name to be parsed */
  341. 24756 char string[NAME_MAX];          /* the final component is returned here */
  342. 24757 {
  343. 24758 /* Given a path, 'path', located in the fs address space, parse it as
  344. 24759  * far as the last directory, fetch the inode for the last directory into
  345. 24760  * the inode table, and return a pointer to the inode.  In
  346. 24761  * addition, return the final component of the path in 'string'.
  347. 24762  * If the last directory can't be opened, return NIL_INODE and
  348. 24763  * the reason for failure in 'err_code'.
  349. 24764  */
  350. 24765
  351. 24766   register struct inode *rip;
  352. 24767   register char *new_name;
  353. 24768   register struct inode *new_ip;
  354. 24769
  355. 24770   /* Is the path absolute or relative?  Initialize 'rip' accordingly. */
  356. 24771   rip = (*path == '/' ? fp->fp_rootdir : fp->fp_workdir);
  357. 24772
  358. 24773   /* If dir has been removed or path is empty, return ENOENT. */
  359. 24774   if (rip->i_nlinks == 0 || *path == '') {
  360. 24775         err_code = ENOENT;
  361. 24776         return(NIL_INODE);
  362. 24777   }
  363. 24778
  364. 24779   dup_inode(rip);               /* inode will be returned with put_inode */
  365. 24780
  366. 24781   /* Scan the path component by component. */
  367. 24782   while (TRUE) {
  368. 24783         /* Extract one component. */
  369. 24784         if ( (new_name = get_name(path, string)) == (char*) 0) {
  370. 24785                 put_inode(rip); /* bad path in user space */
  371. 24786                 return(NIL_INODE);
  372. 24787         }
  373. 24788         if (*new_name == '')
  374. 24789                 if ( (rip->i_mode & I_TYPE) == I_DIRECTORY)
  375. 24790                         return(rip);    /* normal exit */
  376. 24791                 else {
  377. 24792                         /* last file of path prefix is not a directory */
  378. 24793                         put_inode(rip);
  379. 24794                         err_code = ENOTDIR;                     
  380. 24795                         return(NIL_INODE);
  381. 24796                 }
  382. 24797
  383. 24798         /* There is more path.  Keep parsing. */
  384. 24799         new_ip = advance(rip, string);
  385. 24800         put_inode(rip);         /* rip either obsolete or irrelevant */
  386. 24801         if (new_ip == NIL_INODE) return(NIL_INODE);
  387. 24802
  388. 24803         /* The call to advance() succeeded.  Fetch next component. */
  389. 24804         path = new_name;
  390. 24805         rip = new_ip;
  391. 24806   }
  392. 24807 }
  393. 24810 /*===========================================================================*
  394. 24811  *                              get_name                                     *
  395. 24812  *===========================================================================*/
  396. 24813 PRIVATE char *get_name(old_name, string)
  397. 24814 char *old_name;                 /* path name to parse */
  398. 24815 char string[NAME_MAX];          /* component extracted from 'old_name' */
  399. 24816 {
  400. 24817 /* Given a pointer to a path name in fs space, 'old_name', copy the next
  401. 24818  * component to 'string' and pad with zeros.  A pointer to that part of
  402. 24819  * the name as yet unparsed is returned.  Roughly speaking,
  403. 24820  * 'get_name' = 'old_name' - 'string'.
  404. 24821  *
  405. 24822  * This routine follows the standard convention that /usr/ast, /usr//ast,
  406. 24823  * //usr///ast and /usr/ast/ are all equivalent.
  407. 24824  */
  408. 24825
  409. 24826   register int c;
  410. 24827   register char *np, *rnp;
  411. 24828
  412. 24829   np = string;                  /* 'np' points to current position */
  413. 24830   rnp = old_name;               /* 'rnp' points to unparsed string */
  414. 24831   while ( (c = *rnp) == '/') rnp++;     /* skip leading slashes */
  415. 24832
  416. 24833   /* Copy the unparsed path, 'old_name', to the array, 'string'. */
  417. 24834   while ( rnp < &old_name[PATH_MAX]  &&  c != '/'   &&  c != '') {
  418. 24835         if (np < &string[NAME_MAX]) *np++ = c;
  419. 24836         c = *++rnp;             /* advance to next character */
  420. 24837   }
  421. 24838
  422. 24839   /* To make /usr/ast/ equivalent to /usr/ast, skip trailing slashes. */
  423. 24840   while (c == '/' && rnp < &old_name[PATH_MAX]) c = *++rnp;
  424. 24841
  425. 24842   if (np < &string[NAME_MAX]) *np = '';       /* Terminate string */
  426. 24843
  427. 24844   if (rnp >= &old_name[PATH_MAX]) {
  428. 24845         err_code = ENAMETOOLONG;
  429. 24846         return((char *) 0);
  430. 24847   }
  431. 24848   return(rnp);
  432. 24849 }
  433. 24852 /*===========================================================================*
  434. 24853  *                              advance                                      *
  435. 24854  *===========================================================================*/
  436. 24855 PUBLIC struct inode *advance(dirp, string)
  437. 24856 struct inode *dirp;             /* inode for directory to be searched */
  438. 24857 char string[NAME_MAX];          /* component name to look for */
  439. 24858 {
  440. 24859 /* Given a directory and a component of a path, look up the component in
  441. 24860  * the directory, find the inode, open it, and return a pointer to its inode
  442. 24861  * slot.  If it can't be done, return NIL_INODE.
  443. 24862  */
  444. 24863
  445. 24864   register struct inode *rip;
  446. 24865   struct inode *rip2;
  447. 24866   register struct super_block *sp;
  448. 24867   int r, inumb;
  449. 24868   dev_t mnt_dev;
  450. 24869   ino_t numb;
  451. 24870
  452. 24871   /* If 'string' is empty, yield same inode straight away. */
  453. 24872   if (string[0] == '') return(get_inode(dirp->i_dev, (int) dirp->i_num));
  454. 24873
  455. 24874   /* Check for NIL_INODE. */
  456. 24875   if (dirp == NIL_INODE) return(NIL_INODE);
  457. 24876
  458. 24877   /* If 'string' is not present in the directory, signal error. */
  459. 24878   if ( (r = search_dir(dirp, string, &numb, LOOK_UP)) != OK) {
  460. 24879         err_code = r;
  461. 24880         return(NIL_INODE);
  462. 24881   }
  463. 24882
  464. 24883   /* Don't go beyond the current root directory, unless the string is dot2. */
  465. 24884   if (dirp == fp->fp_rootdir && strcmp(string, "..") == 0 && string != dot2)
  466. 24885                 return(get_inode(dirp->i_dev, (int) dirp->i_num));
  467. 24886
  468. 24887   /* The component has been found in the directory.  Get inode. */
  469. 24888   if ( (rip = get_inode(dirp->i_dev, (int) numb)) == NIL_INODE) 
  470. 24889         return(NIL_INODE);
  471. 24890
  472. 24891   if (rip->i_num == ROOT_INODE)
  473. 24892         if (dirp->i_num == ROOT_INODE) {
  474. 24893             if (string[1] == '.') {
  475. 24894                 for (sp = &super_block[1]; sp < &super_block[NR_SUPERS]; sp++){
  476. 24895                         if (sp->s_dev == rip->i_dev) {
  477. 24896                                 /* Release the root inode.  Replace by the
  478. 24897                                  * inode mounted on.
  479. 24898                                  */
  480. 24899                                 put_inode(rip);
  481. 24900                                 mnt_dev = sp->s_imount->i_dev;
  482. 24901                                 inumb = (int) sp->s_imount->i_num;
  483. 24902                                 rip2 = get_inode(mnt_dev, inumb);
  484. 24903                                 rip = advance(rip2, string);
  485. 24904                                 put_inode(rip2);
  486. 24905                                 break;
  487. 24906                         }
  488. 24907                 }
  489. 24908             }
  490. 24909         }
  491. 24910   if (rip == NIL_INODE) return(NIL_INODE);
  492. 24911
  493. 24912   /* See if the inode is mounted on.  If so, switch to root directory of the
  494. 24913    * mounted file system.  The super_block provides the linkage between the
  495. 24914    * inode mounted on and the root directory of the mounted file system.
  496. 24915    */
  497. 24916   while (rip != NIL_INODE && rip->i_mount == I_MOUNT) {
  498. 24917         /* The inode is indeed mounted on. */
  499. 24918         for (sp = &super_block[0]; sp < &super_block[NR_SUPERS]; sp++) {
  500. 24919                 if (sp->s_imount == rip) {
  501. 24920                         /* Release the inode mounted on.  Replace by the
  502. 24921                          * inode of the root inode of the mounted device.
  503. 24922                          */
  504. 24923                         put_inode(rip);
  505. 24924                         rip = get_inode(sp->s_dev, ROOT_INODE);
  506. 24925                         break;
  507. 24926                 }
  508. 24927         }
  509. 24928   }
  510. 24929   return(rip);          /* return pointer to inode's component */
  511. 24930 }
  512. 24933 /*===========================================================================*
  513. 24934  *                              search_dir                                   *
  514. 24935  *===========================================================================*/
  515. 24936 PUBLIC int search_dir(ldir_ptr, string, numb, flag)
  516. 24937 register struct inode *ldir_ptr;        /* ptr to inode for dir to search */
  517. 24938 char string[NAME_MAX];          /* component to search for */
  518. 24939 ino_t *numb;                    /* pointer to inode number */
  519. 24940 int flag;                       /* LOOK_UP, ENTER, DELETE or IS_EMPTY */
  520. 24941 {
  521. 24942 /* This function searches the directory whose inode is pointed to by 'ldip':
  522. 24943  * if (flag == ENTER)  enter 'string' in the directory with inode # '*numb';
  523. 24944  * if (flag == DELETE) delete 'string' from the directory;
  524. 24945  * if (flag == LOOK_UP) search for 'string' and return inode # in 'numb';
  525. 24946  * if (flag == IS_EMPTY) return OK if only . and .. in dir else ENOTEMPTY;
  526. 24947  *
  527. 24948  *    if 'string' is dot1 or dot2, no access permissions are checked.
  528. 24949  */
  529. 24950
  530. 24951   register struct direct *dp;
  531. 24952   register struct buf *bp;
  532. 24953   int i, r, e_hit, t, match;
  533. 24954   mode_t bits;
  534. 24955   off_t pos;
  535. 24956   unsigned new_slots, old_slots;
  536. 24957   block_t b;
  537. 24958   struct super_block *sp;
  538. 24959   int extended = 0;
  539. 24960
  540. 24961   /* If 'ldir_ptr' is not a pointer to a dir inode, error. */
  541. 24962   if ( (ldir_ptr->i_mode & I_TYPE) != I_DIRECTORY) return(ENOTDIR);
  542. 24963
  543. 24964   r = OK;
  544. 24965
  545. 24966   if (flag != IS_EMPTY) {
  546. 24967         bits = (flag == LOOK_UP ? X_BIT : W_BIT | X_BIT);
  547. 24968
  548. 24969         if (string == dot1 || string == dot2) {
  549. 24970                 if (flag != LOOK_UP) r = read_only(ldir_ptr);
  550. 24971                                      /* only a writable device is required. */
  551. 24972         }
  552. 24973         else r = forbidden(ldir_ptr, bits); /* check access permissions */
  553. 24974   }
  554. 24975   if (r != OK) return(r);
  555. 24976   
  556. 24977   /* Step through the directory one block at a time. */
  557. 24978   old_slots = (unsigned) (ldir_ptr->i_size/DIR_ENTRY_SIZE);
  558. 24979   new_slots = 0;
  559. 24980   e_hit = FALSE;
  560. 24981   match = 0;                    /* set when a string match occurs */
  561. 24982
  562. 24983   for (pos = 0; pos < ldir_ptr->i_size; pos += BLOCK_SIZE) {
  563. 24984         b = read_map(ldir_ptr, pos);    /* get block number */
  564. 24985
  565. 24986         /* Since directories don't have holes, 'b' cannot be NO_BLOCK. */
  566. 24987         bp = get_block(ldir_ptr->i_dev, b, NORMAL);     /* get a dir block */
  567. 24988
  568. 24989         /* Search a directory block. */
  569. 24990         for (dp = &bp->b_dir[0]; dp < &bp->b_dir[NR_DIR_ENTRIES]; dp++) {
  570. 24991                 if (++new_slots > old_slots) { /* not found, but room left */
  571. 24992                         if (flag == ENTER) e_hit = TRUE;
  572. 24993                         break;
  573. 24994                 }
  574. 24995
  575. 24996                 /* Match occurs if string found. */
  576. 24997                 if (flag != ENTER && dp->d_ino != 0) {
  577. 24998                         if (flag == IS_EMPTY) {
  578. 24999                                 /* If this test succeeds, dir is not empty. */
  579. 25000                                 if (strcmp(dp->d_name, "." ) != 0 &&
  580. 25001                                     strcmp(dp->d_name, "..") != 0) match = 1;
  581. 25002                         } else {
  582. 25003                                 if (strncmp(dp->d_name, string, NAME_MAX) == 0)
  583. 25004                                         match = 1;
  584. 25005                         }
  585. 25006                 }
  586. 25007
  587. 25008                 if (match) {
  588. 25009                         /* LOOK_UP or DELETE found what it wanted. */
  589. 25010                         r = OK;
  590. 25011                         if (flag == IS_EMPTY) r = ENOTEMPTY;
  591. 25012                         else if (flag == DELETE) {
  592. 25013                                 /* Save d_ino for recovery. */
  593. 25014                                 t = NAME_MAX - sizeof(ino_t);
  594. 25015                                 *((ino_t *) &dp->d_name[t]) = dp->d_ino;
  595. 25016                                 dp->d_ino = 0;  /* erase entry */
  596. 25017                                 bp->b_dirt = DIRTY;
  597. 25018                                 ldir_ptr->i_update |= CTIME | MTIME;
  598. 25019                                 ldir_ptr->i_dirt = DIRTY;
  599. 25020                         } else {
  600. 25021                                 sp = ldir_ptr->i_sp;    /* 'flag' is LOOK_UP */
  601. 25022                                 *numb = conv2(sp->s_native, (int) dp->d_ino);
  602. 25023                         }
  603. 25024                         put_block(bp, DIRECTORY_BLOCK);
  604. 25025                         return(r);
  605. 25026                 }
  606. 25027
  607. 25028
  608. 25029                 /* Check for free slot for the benefit of ENTER. */
  609. 25030                 if (flag == ENTER && dp->d_ino == 0) {
  610. 25031                         e_hit = TRUE;   /* we found a free slot */
  611. 25032                         break;
  612. 25033                 }
  613. 25034         }
  614. 25035
  615. 25036         /* The whole block has been searched or ENTER has a free slot. */
  616. 25037         if (e_hit) break;       /* e_hit set if ENTER can be performed now */
  617. 25038         put_block(bp, DIRECTORY_BLOCK); /* otherwise, continue searching dir */
  618. 25039   }
  619. 25040
  620. 25041   /* The whole directory has now been searched. */
  621. 25042   if (flag != ENTER) return(flag == IS_EMPTY ? OK : ENOENT);
  622. 25043
  623. 25044   /* This call is for ENTER.  If no free slot has been found so far, try to
  624. 25045    * extend directory.
  625. 25046    */
  626. 25047   if (e_hit == FALSE) { /* directory is full and no room left in last block */
  627. 25048         new_slots++;            /* increase directory size by 1 entry */
  628. 25049         if (new_slots == 0) return(EFBIG); /* dir size limited by slot count */
  629. 25050         if ( (bp = new_block(ldir_ptr, ldir_ptr->i_size)) == NIL_BUF)
  630. 25051                 return(err_code);
  631. 25052         dp = &bp->b_dir[0];
  632. 25053         extended = 1;
  633. 25054   }
  634. 25055
  635. 25056   /* 'bp' now points to a directory block with space. 'dp' points to slot. */
  636. 25057   (void) memset(dp->d_name, 0, (size_t) NAME_MAX); /* clear entry */
  637. 25058   for (i = 0; string[i] && i < NAME_MAX; i++) dp->d_name[i] = string[i];
  638. 25059   sp = ldir_ptr->i_sp; 
  639. 25060   dp->d_ino = conv2(sp->s_native, (int) *numb);
  640. 25061   bp->b_dirt = DIRTY;
  641. 25062   put_block(bp, DIRECTORY_BLOCK);
  642. 25063   ldir_ptr->i_update |= CTIME | MTIME;  /* mark mtime for update later */
  643. 25064   ldir_ptr->i_dirt = DIRTY;
  644. 25065   if (new_slots > old_slots) {
  645. 25066         ldir_ptr->i_size = (off_t) new_slots * DIR_ENTRY_SIZE;
  646. 25067         /* Send the change to disk if the directory is extended. */
  647. 25068         if (extended) rw_inode(ldir_ptr, WRITING);
  648. 25069   }
  649. 25070   return(OK);
  650. 25071 }
  651. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  652. src/fs/mount.c    
  653. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  654. 25100 /* This file performs the MOUNT and UMOUNT system calls.
  655. 25101  *
  656. 25102  * The entry points into this file are
  657. 25103  *   do_mount:  perform the MOUNT system call
  658. 25104  *   do_umount: perform the UMOUNT system call
  659. 25105  */
  660. 25106
  661. 25107 #include "fs.h"
  662. 25108 #include <fcntl.h>
  663. 25109 #include <minix/com.h>
  664. 25110 #include <sys/stat.h>
  665. 25111 #include "buf.h"
  666. 25112 #include "dev.h"
  667. 25113 #include "file.h"
  668. 25114 #include "fproc.h"
  669. 25115 #include "inode.h"
  670. 25116 #include "param.h"
  671. 25117 #include "super.h"
  672. 25118
  673. 25119 PRIVATE message dev_mess;
  674. 25120
  675. 25121 FORWARD _PROTOTYPE( dev_t name_to_dev, (char *path)                     );
  676. 25122
  677. 25123 /*===========================================================================*
  678. 25124  *                              do_mount                                     *
  679. 25125  *===========================================================================*/
  680. 25126 PUBLIC int do_mount()
  681. 25127 {
  682. 25128 /* Perform the mount(name, mfile, rd_only) system call. */
  683. 25129
  684. 25130   register struct inode *rip, *root_ip;
  685. 25131   struct super_block *xp, *sp;
  686. 25132   dev_t dev;
  687. 25133   mode_t bits;
  688. 25134   int rdir, mdir;               /* TRUE iff {root|mount} file is dir */
  689. 25135   int r, found, major, task;
  690. 25136
  691. 25137   /* Only the super-user may do MOUNT. */
  692. 25138   if (!super_user) return(EPERM);
  693. 25139
  694. 25140   /* If 'name' is not for a block special file, return error. */
  695. 25141   if (fetch_name(name1, name1_length, M1) != OK) return(err_code);
  696. 25142   if ( (dev = name_to_dev(user_path)) == NO_DEV) return(err_code);
  697. 25143
  698. 25144   /* Scan super block table to see if dev already mounted & find a free slot.*/
  699. 25145   sp = NIL_SUPER;
  700. 25146   found = FALSE;
  701. 25147   for (xp = &super_block[0]; xp < &super_block[NR_SUPERS]; xp++) {
  702. 25148         if (xp->s_dev == dev) found = TRUE;     /* is it mounted already? */
  703. 25149         if (xp->s_dev == NO_DEV) sp = xp;       /* record free slot */
  704. 25150   }
  705. 25151   if (found) return(EBUSY);     /* already mounted */
  706. 25152   if (sp == NIL_SUPER) return(ENFILE);  /* no super block available */
  707. 25153
  708. 25154   dev_mess.m_type = DEV_OPEN;           /* distinguish from close */
  709. 25155   dev_mess.DEVICE = dev;                /* Touch the device. */  
  710. 25156   if (rd_only) dev_mess.COUNT = R_BIT;
  711. 25157   else  dev_mess.COUNT = R_BIT|W_BIT;
  712. 25158
  713. 25159   major = (dev >> MAJOR) & BYTE;
  714. 25160   if (major <= 0 || major >= max_major) return(ENODEV);
  715. 25161   task = dmap[major].dmap_task;         /* device task nr */
  716. 25162   (*dmap[major].dmap_open)(task, &dev_mess);
  717. 25163   if (dev_mess.REP_STATUS != OK) return(EINVAL);
  718. 25164
  719. 25165   /* Fill in the super block. */
  720. 25166   sp->s_dev = dev;              /* read_super() needs to know which dev */
  721. 25167   r = read_super(sp);
  722. 25168
  723. 25169   /* Is it recognized as a Minix filesystem? */
  724. 25170   if (r != OK) {
  725. 25171         dev_mess.m_type = DEV_CLOSE;
  726. 25172         dev_mess.DEVICE = dev;
  727. 25173         (*dmap[major].dmap_close)(task, &dev_mess);
  728. 25174         return(r);
  729. 25175   }
  730. 25176
  731. 25177   /* Now get the inode of the file to be mounted on. */
  732. 25178   if (fetch_name(name2, name2_length, M1) != OK) {
  733. 25179         sp->s_dev = NO_DEV;
  734. 25180         dev_mess.m_type = DEV_CLOSE;
  735. 25181         dev_mess.DEVICE = dev;
  736. 25182         (*dmap[major].dmap_close)(task, &dev_mess);
  737. 25183         return(err_code);
  738. 25184   }
  739. 25185   if ( (rip = eat_path(user_path)) == NIL_INODE) {
  740. 25186         sp->s_dev = NO_DEV;
  741. 25187         dev_mess.m_type = DEV_CLOSE;
  742. 25188         dev_mess.DEVICE = dev;
  743. 25189         (*dmap[major].dmap_close)(task, &dev_mess);
  744. 25190         return(err_code);
  745. 25191   }
  746. 25192
  747. 25193   /* It may not be busy. */
  748. 25194   r = OK;
  749. 25195   if (rip->i_count > 1) r = EBUSY;
  750. 25196
  751. 25197   /* It may not be special. */
  752. 25198   bits = rip->i_mode & I_TYPE;
  753. 25199   if (bits == I_BLOCK_SPECIAL || bits == I_CHAR_SPECIAL) r = ENOTDIR;
  754. 25200
  755. 25201   /* Get the root inode of the mounted file system. */
  756. 25202   root_ip = NIL_INODE;          /* if 'r' not OK, make sure this is defined */
  757. 25203   if (r == OK) {
  758. 25204         if ( (root_ip = get_inode(dev, ROOT_INODE)) == NIL_INODE) r = err_code;
  759. 25205   }
  760. 25206   if (root_ip != NIL_INODE && root_ip->i_mode == 0) r = EINVAL;
  761. 25207
  762. 25208   /* File types of 'rip' and 'root_ip' may not conflict. */
  763. 25209   if (r == OK) {
  764. 25210         mdir = ((rip->i_mode & I_TYPE) == I_DIRECTORY);  /* TRUE iff dir */
  765. 25211         rdir = ((root_ip->i_mode & I_TYPE) == I_DIRECTORY);
  766. 25212         if (!mdir && rdir) r = EISDIR;
  767. 25213   }
  768. 25214
  769. 25215   /* If error, return the super block and both inodes; release the maps. */
  770. 25216   if (r != OK) {
  771. 25217         put_inode(rip);
  772. 25218         put_inode(root_ip);
  773. 25219         (void) do_sync();
  774. 25220         invalidate(dev);
  775. 25221
  776. 25222         sp->s_dev = NO_DEV;
  777. 25223         dev_mess.m_type = DEV_CLOSE;
  778. 25224         dev_mess.DEVICE = dev;
  779. 25225         (*dmap[major].dmap_close)(task, &dev_mess);
  780. 25226         return(r);
  781. 25227   }
  782. 25228
  783. 25229   /* Nothing else can go wrong.  Perform the mount. */
  784. 25230   rip->i_mount = I_MOUNT;       /* this bit says the inode is mounted on */
  785. 25231   sp->s_imount = rip;
  786. 25232   sp->s_isup = root_ip;
  787. 25233   sp->s_rd_only = rd_only;
  788. 25234   return(OK);
  789. 25235 }
  790. 25238 /*===========================================================================*
  791. 25239  *                              do_umount                                    *
  792. 25240  *===========================================================================*/
  793. 25241 PUBLIC int do_umount()
  794. 25242 {
  795. 25243 /* Perform the umount(name) system call. */
  796. 25244
  797. 25245   register struct inode *rip;
  798. 25246   struct super_block *sp, *sp1;
  799. 25247   dev_t dev;
  800. 25248   int count;
  801. 25249   int major, task;
  802. 25250
  803. 25251   /* Only the super-user may do UMOUNT. */
  804. 25252   if (!super_user) return(EPERM);
  805. 25253
  806. 25254   /* If 'name' is not for a block special file, return error. */
  807. 25255   if (fetch_name(name, name_length, M3) != OK) return(err_code);
  808. 25256   if ( (dev = name_to_dev(user_path)) == NO_DEV) return(err_code);
  809. 25257
  810. 25258   /* See if the mounted device is busy.  Only 1 inode using it should be
  811. 25259    * open -- the root inode -- and that inode only 1 time.
  812. 25260    */
  813. 25261   count = 0;
  814. 25262   for (rip = &inode[0]; rip< &inode[NR_INODES]; rip++)
  815. 25263         if (rip->i_count > 0 && rip->i_dev == dev) count += rip->i_count;
  816. 25264   if (count > 1) return(EBUSY); /* can't umount a busy file system */
  817. 25265
  818. 25266   /* Find the super block. */
  819. 25267   sp = NIL_SUPER;
  820. 25268   for (sp1 = &super_block[0]; sp1 < &super_block[NR_SUPERS]; sp1++) {
  821. 25269         if (sp1->s_dev == dev) {
  822. 25270                 sp = sp1;
  823. 25271                 break;
  824. 25272         }
  825. 25273   }
  826. 25274
  827. 25275   /* Sync the disk, and invalidate cache. */
  828. 25276   (void) do_sync();             /* force any cached blocks out of memory */
  829. 25277   invalidate(dev);              /* invalidate cache entries for this dev */
  830. 25278   if (sp == NIL_SUPER) return(EINVAL);
  831. 25279
  832. 25280   major = (dev >> MAJOR) & BYTE;        /* major device nr */
  833. 25281   task = dmap[major].dmap_task; /* device task nr */
  834. 25282   dev_mess.m_type = DEV_CLOSE;          /* distinguish from open */
  835. 25283   dev_mess.DEVICE = dev;
  836. 25284   (*dmap[major].dmap_close)(task, &dev_mess);
  837. 25285
  838. 25286   /* Finish off the unmount. */
  839. 25287   sp->s_imount->i_mount = NO_MOUNT;     /* inode returns to normal */
  840. 25288   put_inode(sp->s_imount);      /* release the inode mounted on */
  841. 25289   put_inode(sp->s_isup);        /* release the root inode of the mounted fs */
  842. 25290   sp->s_imount = NIL_INODE;
  843. 25291   sp->s_dev = NO_DEV;
  844. 25292   return(OK);
  845. 25293 }
  846. 25296 /*===========================================================================*
  847. 25297  *                              name_to_dev                                  *
  848. 25298  *===========================================================================*/
  849. 25299 PRIVATE dev_t name_to_dev(path)
  850. 25300 char *path;                     /* pointer to path name */
  851. 25301 {
  852. 25302 /* Convert the block special file 'path' to a device number.  If 'path'
  853. 25303  * is not a block special file, return error code in 'err_code'.
  854. 25304  */
  855. 25305
  856. 25306   register struct inode *rip;
  857. 25307   register dev_t dev;
  858. 25308
  859. 25309   /* If 'path' can't be opened, give up immediately. */
  860. 25310   if ( (rip = eat_path(path)) == NIL_INODE) return(NO_DEV);
  861. 25311
  862. 25312   /* If 'path' is not a block special file, return error. */
  863. 25313   if ( (rip->i_mode & I_TYPE) != I_BLOCK_SPECIAL) {
  864. 25314         err_code = ENOTBLK;
  865. 25315         put_inode(rip);
  866. 25316         return(NO_DEV);
  867. 25317   }
  868. 25318
  869. 25319   /* Extract the device number. */
  870. 25320   dev = (dev_t) rip->i_zone[0];
  871. 25321   put_inode(rip);
  872. 25322   return(dev);
  873. 25323 }
  874. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  875. src/fs/link.c    
  876. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  877. 25400 /* This file handles the LINK and UNLINK system calls.  It also deals with
  878. 25401  * deallocating the storage used by a file when the last UNLINK is done to a
  879. 25402  * file and the blocks must be returned to the free block pool.
  880. 25403  *
  881. 25404  * The entry points into this file are
  882. 25405  *   do_link:   perform the LINK system call
  883. 25406  *   do_unlink: perform the UNLINK and RMDIR system calls
  884. 25407  *   do_rename: perform the RENAME system call
  885. 25408  *   truncate:  release all the blocks associated with an inode
  886. 25409  */
  887. 25410
  888. 25411 #include "fs.h"
  889. 25412 #include <sys/stat.h>
  890. 25413 #include <string.h>
  891. 25414 #include <minix/callnr.h>
  892. 25415 #include "buf.h"
  893. 25416 #include "file.h"
  894. 25417 #include "fproc.h"
  895. 25418 #include "inode.h"
  896. 25419 #include "param.h"
  897. 25420 #include "super.h"
  898. 25421
  899. 25422 #define SAME 1000
  900. 25423
  901. 25424 FORWARD _PROTOTYPE( int remove_dir, (struct inode *rldirp, struct inode *rip,
  902. 25425                         char dir_name[NAME_MAX])                        );
  903. 25426
  904. 25427 FORWARD _PROTOTYPE( int unlink_file, (struct inode *dirp, struct inode *rip,
  905. 25428                         char file_name[NAME_MAX])                       );
  906. 25429
  907. 25430
  908. 25431 /*===========================================================================*
  909. 25432  *                              do_link                                      *
  910. 25433  *===========================================================================*/
  911. 25434 PUBLIC int do_link()
  912. 25435 {
  913. 25436 /* Perform the link(name1, name2) system call. */
  914. 25437
  915. 25438   register struct inode *ip, *rip;
  916. 25439   register int r;
  917. 25440   char string[NAME_MAX];
  918. 25441   struct inode *new_ip;
  919. 25442
  920. 25443   /* See if 'name' (file to be linked) exists. */
  921. 25444   if (fetch_name(name1, name1_length, M1) != OK) return(err_code);
  922. 25445   if ( (rip = eat_path(user_path)) == NIL_INODE) return(err_code);
  923. 25446
  924. 25447   /* Check to see if the file has maximum number of links already. */
  925. 25448   r = OK;
  926. 25449   if ( (rip->i_nlinks & BYTE) >= LINK_MAX) r = EMLINK;
  927. 25450
  928. 25451   /* Only super_user may link to directories. */
  929. 25452   if (r == OK)
  930. 25453         if ( (rip->i_mode & I_TYPE) == I_DIRECTORY && !super_user) r = EPERM;
  931. 25454
  932. 25455   /* If error with 'name', return the inode. */
  933. 25456   if (r != OK) {
  934. 25457         put_inode(rip);
  935. 25458         return(r);
  936. 25459   }
  937. 25460
  938. 25461   /* Does the final directory of 'name2' exist? */
  939. 25462   if (fetch_name(name2, name2_length, M1) != OK) {
  940. 25463         put_inode(rip);
  941. 25464         return(err_code);
  942. 25465   }
  943. 25466   if ( (ip = last_dir(user_path, string)) == NIL_INODE) r = err_code;
  944. 25467
  945. 25468   /* If 'name2' exists in full (even if no space) set 'r' to error. */
  946. 25469   if (r == OK) {
  947. 25470         if ( (new_ip = advance(ip, string)) == NIL_INODE) {
  948. 25471                 r = err_code;
  949. 25472                 if (r == ENOENT) r = OK;
  950. 25473         } else {
  951. 25474                 put_inode(new_ip);
  952. 25475                 r = EEXIST;
  953. 25476         }
  954. 25477   }
  955. 25478
  956. 25479   /* Check for links across devices. */
  957. 25480   if (r == OK)
  958. 25481         if (rip->i_dev != ip->i_dev) r = EXDEV;
  959. 25482
  960. 25483   /* Try to link. */
  961. 25484   if (r == OK)
  962. 25485         r = search_dir(ip, string, &rip->i_num, ENTER);
  963. 25486
  964. 25487   /* If success, register the linking. */
  965. 25488   if (r == OK) {
  966. 25489         rip->i_nlinks++;
  967. 25490         rip->i_update |= CTIME;
  968. 25491         rip->i_dirt = DIRTY;
  969. 25492   }
  970. 25493
  971. 25494   /* Done.  Release both inodes. */
  972. 25495   put_inode(rip);
  973. 25496   put_inode(ip);
  974. 25497   return(r);
  975. 25498 }
  976. 25501 /*===========================================================================*
  977. 25502  *                              do_unlink                                    *
  978. 25503  *===========================================================================*/
  979. 25504 PUBLIC int do_unlink()
  980. 25505 {
  981. 25506 /* Perform the unlink(name) or rmdir(name) system call. The code for these two
  982. 25507  * is almost the same.  They differ only in some condition testing.  Unlink()
  983. 25508  * may be used by the superuser to do dangerous things; rmdir() may not.
  984. 25509  */
  985. 25510
  986. 25511   register struct inode *rip;
  987. 25512   struct inode *rldirp;
  988. 25513   int r;
  989. 25514   char string[NAME_MAX];
  990. 25515
  991. 25516   /* Get the last directory in the path. */
  992. 25517   if (fetch_name(name, name_length, M3) != OK) return(err_code);
  993. 25518   if ( (rldirp = last_dir(user_path, string)) == NIL_INODE)
  994. 25519         return(err_code);
  995. 25520
  996. 25521   /* The last directory exists.  Does the file also exist? */
  997. 25522   r = OK;
  998. 25523   if ( (rip = advance(rldirp, string)) == NIL_INODE) r = err_code;
  999. 25524
  1000. 25525   /* If error, return inode. */
  1001. 25526   if (r != OK) {
  1002. 25527         put_inode(rldirp);
  1003. 25528         return(r);
  1004. 25529   }
  1005. 25530
  1006. 25531   /* Do not remove a mount point. */
  1007. 25532   if (rip->i_num == ROOT_INODE) {
  1008. 25533         put_inode(rldirp);
  1009. 25534         put_inode(rip);
  1010. 25535         return(EBUSY);
  1011. 25536   }
  1012. 25537
  1013. 25538   /* Now test if the call is allowed, separately for unlink() and rmdir(). */
  1014. 25539   if (fs_call == UNLINK) {
  1015. 25540         /* Only the su may unlink directories, but the su can unlink any dir.*/
  1016. 25541         if ( (rip->i_mode & I_TYPE) == I_DIRECTORY && !super_user) r = EPERM;
  1017. 25542
  1018. 25543         /* Don't unlink a file if it is the root of a mounted file system. */
  1019. 25544         if (rip->i_num == ROOT_INODE) r = EBUSY;
  1020. 25545
  1021. 25546         /* Actually try to unlink the file; fails if parent is mode 0 etc. */
  1022. 25547         if (r == OK) r = unlink_file(rldirp, rip, string);
  1023. 25548
  1024. 25549   } else {
  1025. 25550         r = remove_dir(rldirp, rip, string); /* call is RMDIR */
  1026. 25551   }
  1027. 25552
  1028. 25553   /* If unlink was possible, it has been done, otherwise it has not. */
  1029. 25554   put_inode(rip);
  1030. 25555   put_inode(rldirp);
  1031. 25556   return(r);
  1032. 25557 }
  1033. 25560 /*===========================================================================*
  1034. 25561  *                              do_rename                                    *
  1035. 25562  *===========================================================================*/
  1036. 25563 PUBLIC int do_rename()
  1037. 25564 {
  1038. 25565 /* Perform the rename(name1, name2) system call. */
  1039. 25566
  1040. 25567   struct inode *old_dirp, *old_ip;      /* ptrs to old dir, file inodes */
  1041. 25568   struct inode *new_dirp, *new_ip;      /* ptrs to new dir, file inodes */
  1042. 25569   struct inode *new_superdirp, *next_new_superdirp;
  1043. 25570   int r = OK;                           /* error flag; initially no error */
  1044. 25571   int odir, ndir;                       /* TRUE iff {old|new} file is dir */
  1045. 25572   int same_pdir;                        /* TRUE iff parent dirs are the same */
  1046. 25573   char old_name[NAME_MAX], new_name[NAME_MAX];
  1047. 25574   ino_t numb;
  1048. 25575   int r1;
  1049. 25576   
  1050. 25577   /* See if 'name1' (existing file) exists.  Get dir and file inodes. */
  1051. 25578   if (fetch_name(name1, name1_length, M1) != OK) return(err_code);
  1052. 25579   if ( (old_dirp = last_dir(user_path, old_name))==NIL_INODE) return(err_code);
  1053. 25580
  1054. 25581   if ( (old_ip = advance(old_dirp, old_name)) == NIL_INODE) r = err_code;
  1055. 25582
  1056. 25583   /* See if 'name2' (new name) exists.  Get dir and file inodes. */
  1057. 25584   if (fetch_name(name2, name2_length, M1) != OK) r = err_code;
  1058. 25585   if ( (new_dirp = last_dir(user_path, new_name)) == NIL_INODE) r = err_code;
  1059. 25586   new_ip = advance(new_dirp, new_name); /* not required to exist */
  1060. 25587
  1061. 25588   if (old_ip != NIL_INODE)
  1062. 25589         odir = ((old_ip->i_mode & I_TYPE) == I_DIRECTORY);  /* TRUE iff dir */
  1063. 25590
  1064. 25591   /* If it is ok, check for a variety of possible errors. */
  1065. 25592   if (r == OK) {
  1066. 25593         same_pdir = (old_dirp == new_dirp);
  1067. 25594
  1068. 25595         /* The old inode must not be a superdirectory of the new last dir. */
  1069. 25596         if (odir && !same_pdir) {
  1070. 25597                 dup_inode(new_superdirp = new_dirp);
  1071. 25598                 while (TRUE) {          /* may hang in a file system loop */
  1072. 25599                         if (new_superdirp == old_ip) {
  1073. 25600                                 r = EINVAL;
  1074. 25601                                 break;
  1075. 25602                         }
  1076. 25603                         next_new_superdirp = advance(new_superdirp, dot2);
  1077. 25604                         put_inode(new_superdirp);
  1078. 25605                         if (next_new_superdirp == new_superdirp)
  1079. 25606                                 break;  /* back at system root directory */
  1080. 25607                         new_superdirp = next_new_superdirp;
  1081. 25608                         if (new_superdirp == NIL_INODE) {
  1082. 25609                                 /* Missing ".." entry.  Assume the worst. */
  1083. 25610                                 r = EINVAL;
  1084. 25611                                 break;
  1085. 25612                         }
  1086. 25613                 }       
  1087. 25614                 put_inode(new_superdirp);
  1088. 25615         }       
  1089. 25616
  1090. 25617         /* The old or new name must not be . or .. */
  1091. 25618         if (strcmp(old_name, ".")==0 || strcmp(old_name, "..")==0 ||
  1092. 25619             strcmp(new_name, ".")==0 || strcmp(new_name, "..")==0) r = EINVAL;
  1093. 25620
  1094. 25621         /* Both parent directories must be on the same device. */
  1095. 25622         if (old_dirp->i_dev != new_dirp->i_dev) r = EXDEV;
  1096. 25623
  1097. 25624         /* Parent dirs must be writable, searchable and on a writable device */
  1098. 25625         if ((r1 = forbidden(old_dirp, W_BIT | X_BIT)) != OK ||
  1099. 25626             (r1 = forbidden(new_dirp, W_BIT | X_BIT)) != OK) r = r1;
  1100. 25627
  1101. 25628         /* Some tests apply only if the new path exists. */
  1102. 25629         if (new_ip == NIL_INODE) {
  1103. 25630                 /* don't rename a file with a file system mounted on it. */
  1104. 25631                 if (old_ip->i_dev != old_dirp->i_dev) r = EXDEV;
  1105. 25632                 if (odir && (new_dirp->i_nlinks & BYTE) >= LINK_MAX &&
  1106. 25633                     !same_pdir && r == OK) r = EMLINK;
  1107. 25634         } else {
  1108. 25635                 if (old_ip == new_ip) r = SAME; /* old=new */
  1109. 25636
  1110. 25637                 /* has the old file or new file a file system mounted on it? */
  1111. 25638                 if (old_ip->i_dev != new_ip->i_dev) r = EXDEV;
  1112. 25639
  1113. 25640                 ndir = ((new_ip->i_mode & I_TYPE) == I_DIRECTORY); /* dir ? */
  1114. 25641                 if (odir == TRUE && ndir == FALSE) r = ENOTDIR;
  1115. 25642                 if (odir == FALSE && ndir == TRUE) r = EISDIR;
  1116. 25643         }
  1117. 25644   }
  1118. 25645
  1119. 25646   /* If a process has another root directory than the system root, we might
  1120. 25647    * "accidently" be moving it's working directory to a place where it's
  1121. 25648    * root directory isn't a super directory of it anymore. This can make
  1122. 25649    * the function chroot useless. If chroot will be used often we should
  1123. 25650    * probably check for it here.
  1124. 25651    */
  1125. 25652
  1126. 25653   /* The rename will probably work. Only two things can go wrong now:
  1127. 25654    * 1. being unable to remove the new file. (when new file already exists)
  1128. 25655    * 2. being unable to make the new directory entry. (new file doesn't exists)
  1129. 25656    *     [directory has to grow by one block and cannot because the disk
  1130. 25657    *      is completely full].
  1131. 25658    */
  1132. 25659   if (r == OK) {
  1133. 25660         if (new_ip != NIL_INODE) {
  1134. 25661                   /* There is already an entry for 'new'. Try to remove it. */
  1135. 25662                 if (odir) 
  1136. 25663                         r = remove_dir(new_dirp, new_ip, new_name);
  1137. 25664                 else 
  1138. 25665                         r = unlink_file(new_dirp, new_ip, new_name);
  1139. 25666         }
  1140. 25667         /* if r is OK, the rename will succeed, while there is now an
  1141. 25668          * unused entry in the new parent directory.
  1142. 25669          */
  1143. 25670   }
  1144. 25671
  1145. 25672   if (r == OK) {
  1146. 25673         /* If the new name will be in the same parent directory as the old one,
  1147. 25674          * first remove the old name to free an entry for the new name,
  1148. 25675          * otherwise first try to create the new name entry to make sure
  1149. 25676          * the rename will succeed.
  1150. 25677          */
  1151. 25678         numb = old_ip->i_num;           /* inode number of old file */
  1152. 25679
  1153. 25680         if (same_pdir) {
  1154. 25681                 r = search_dir(old_dirp, old_name, (ino_t *) 0, DELETE);
  1155. 25682                                                 /* shouldn't go wrong. */
  1156. 25683                 if (r==OK) (void) search_dir(old_dirp, new_name, &numb, ENTER);
  1157. 25684         } else {
  1158. 25685                 r = search_dir(new_dirp, new_name, &numb, ENTER);
  1159. 25686                 if (r == OK)
  1160. 25687                     (void) search_dir(old_dirp, old_name, (ino_t *) 0, DELETE);
  1161. 25688         }
  1162. 25689   }
  1163. 25690   /* If r is OK, the ctime and mtime of old_dirp and new_dirp have been marked
  1164. 25691    * for update in search_dir.
  1165. 25692    */
  1166. 25693
  1167. 25694   if (r == OK && odir && !same_pdir) {
  1168. 25695         /* Update the .. entry in the directory (still points to old_dirp). */
  1169. 25696         numb = new_dirp->i_num;
  1170. 25697         (void) unlink_file(old_ip, NIL_INODE, dot2);
  1171. 25698         if (search_dir(old_ip, dot2, &numb, ENTER) == OK) {
  1172. 25699                 /* New link created. */
  1173. 25700                 new_dirp->i_nlinks++;
  1174. 25701                 new_dirp->i_dirt = DIRTY;
  1175. 25702         }
  1176. 25703   }
  1177. 25704         
  1178. 25705   /* Release the inodes. */
  1179. 25706   put_inode(old_dirp);
  1180. 25707   put_inode(old_ip);
  1181. 25708   put_inode(new_dirp);
  1182. 25709   put_inode(new_ip);
  1183. 25710   return(r == SAME ? OK : r);
  1184. 25711 }
  1185. 25714 /*===========================================================================*
  1186. 25715  *                              truncate                                     *
  1187. 25716  *===========================================================================*/
  1188. 25717 PUBLIC void truncate(rip)
  1189. 25718 register struct inode *rip;     /* pointer to inode to be truncated */
  1190. 25719 {
  1191. 25720 /* Remove all the zones from the inode 'rip' and mark it dirty. */
  1192. 25721
  1193. 25722   register block_t b;
  1194. 25723   zone_t z, zone_size, z1;
  1195. 25724   off_t position;
  1196. 25725   int i, scale, file_type, waspipe, single, nr_indirects;
  1197. 25726   struct buf *bp;
  1198. 25727   dev_t dev;
  1199. 25728
  1200. 25729   file_type = rip->i_mode & I_TYPE;     /* check to see if file is special */
  1201. 25730   if (file_type == I_CHAR_SPECIAL || file_type == I_BLOCK_SPECIAL) return;
  1202. 25731   dev = rip->i_dev;             /* device on which inode resides */
  1203. 25732   scale = rip->i_sp->s_log_zone_size;
  1204. 25733   zone_size = (zone_t) BLOCK_SIZE << scale;
  1205. 25734   nr_indirects = rip->i_nindirs;
  1206. 25735
  1207. 25736   /* Pipes can shrink, so adjust size to make sure all zones are removed. */
  1208. 25737   waspipe = rip->i_pipe == I_PIPE;      /* TRUE is this was a pipe */
  1209. 25738   if (waspipe) rip->i_size = PIPE_SIZE;
  1210. 25739
  1211. 25740   /* Step through the file a zone at a time, finding and freeing the zones. */
  1212. 25741   for (position = 0; position < rip->i_size; position += zone_size) {
  1213. 25742         if ( (b = read_map(rip, position)) != NO_BLOCK) {
  1214. 25743                 z = (zone_t) b >> scale;
  1215. 25744                 free_zone(dev, z);
  1216. 25745         }
  1217. 25746   }
  1218. 25747
  1219. 25748   /* All the data zones have been freed.  Now free the indirect zones. */
  1220. 25749   rip->i_dirt = DIRTY;
  1221. 25750   if (waspipe) {
  1222. 25751         wipe_inode(rip);        /* clear out inode for pipes */
  1223. 25752         return;                 /* indirect slots contain file positions */
  1224. 25753   }
  1225. 25754   single = rip->i_ndzones;
  1226. 25755   free_zone(dev, rip->i_zone[single]);  /* single indirect zone */
  1227. 25756   if ( (z = rip->i_zone[single+1]) != NO_ZONE) {
  1228. 25757         /* Free all the single indirect zones pointed to by the double. */
  1229. 25758         b = (block_t) z << scale;
  1230. 25759         bp = get_block(dev, b, NORMAL); /* get double indirect zone */
  1231. 25760         for (i = 0; i < nr_indirects; i++) {
  1232. 25761                 z1 = rd_indir(bp, i);
  1233. 25762                 free_zone(dev, z1);
  1234. 25763         }
  1235. 25764
  1236. 25765         /* Now free the double indirect zone itself. */
  1237. 25766         put_block(bp, INDIRECT_BLOCK);
  1238. 25767         free_zone(dev, z);
  1239. 25768   }
  1240. 25769
  1241. 25770   /* Leave zone numbers for de(1) to recover file after an unlink(2).  */
  1242. 25771 }
  1243. 25774 /*===========================================================================*
  1244. 25775  *                              remove_dir                                   *
  1245. 25776  *===========================================================================*/
  1246. 25777 PRIVATE int remove_dir(rldirp, rip, dir_name)
  1247. 25778 struct inode *rldirp;                   /* parent directory */
  1248. 25779 struct inode *rip;                      /* directory to be removed */
  1249. 25780 char dir_name[NAME_MAX];                /* name of directory to be removed */
  1250. 25781 {
  1251. 25782   /* A directory file has to be removed. Five conditions have to met:
  1252. 25783    *    - The file must be a directory
  1253. 25784    *    - The directory must be empty (except for . and ..)
  1254. 25785    *    - The final component of the path must not be . or ..
  1255. 25786    *    - The directory must not be the root of a mounted file system
  1256. 25787    *    - The directory must not be anybody's root/working directory
  1257. 25788    */
  1258. 25789
  1259. 25790   int r;
  1260. 25791   register struct fproc *rfp;
  1261. 25792
  1262. 25793   /* search_dir checks that rip is a directory too. */
  1263. 25794   if ((r = search_dir(rip, "", (ino_t *) 0, IS_EMPTY)) != OK) return r;
  1264. 25795
  1265. 25796   if (strcmp(dir_name, ".") == 0 || strcmp(dir_name, "..") == 0)return(EINVAL);
  1266. 25797   if (rip->i_num == ROOT_INODE) return(EBUSY); /* can't remove 'root' */
  1267. 25798   
  1268. 25799   for (rfp = &fproc[INIT_PROC_NR + 1]; rfp < &fproc[NR_PROCS]; rfp++)
  1269. 25800         if (rfp->fp_workdir == rip || rfp->fp_rootdir == rip) return(EBUSY);
  1270. 25801                                 /* can't remove anybody's working dir */
  1271. 25802
  1272. 25803   /* Actually try to unlink the file; fails if parent is mode 0 etc. */
  1273. 25804   if ((r = unlink_file(rldirp, rip, dir_name)) != OK) return r;
  1274. 25805
  1275. 25806   /* Unlink . and .. from the dir. The super user can link and unlink any dir,
  1276. 25807    * so don't make too many assumptions about them.
  1277. 25808    */
  1278. 25809   (void) unlink_file(rip, NIL_INODE, dot1);
  1279. 25810   (void) unlink_file(rip, NIL_INODE, dot2);
  1280. 25811   return(OK);
  1281. 25812 }
  1282. 25815 /*===========================================================================*
  1283. 25816  *                              unlink_file                                  *
  1284. 25817  *===========================================================================*/
  1285. 25818 PRIVATE int unlink_file(dirp, rip, file_name)
  1286. 25819 struct inode *dirp;             /* parent directory of file */
  1287. 25820 struct inode *rip;              /* inode of file, may be NIL_INODE too. */
  1288. 25821 char file_name[NAME_MAX];       /* name of file to be removed */
  1289. 25822 {
  1290. 25823 /* Unlink 'file_name'; rip must be the inode of 'file_name' or NIL_INODE. */
  1291. 25824
  1292. 25825   ino_t numb;                   /* inode number */
  1293. 25826   int   r;
  1294. 25827
  1295. 25828   /* If rip is not NIL_INODE, it is used to get faster access to the inode. */
  1296. 25829   if (rip == NIL_INODE) {
  1297. 25830         /* Search for file in directory and try to get its inode. */
  1298. 25831         err_code = search_dir(dirp, file_name, &numb, LOOK_UP);
  1299. 25832         if (err_code == OK) rip = get_inode(dirp->i_dev, (int) numb);
  1300. 25833         if (err_code != OK || rip == NIL_INODE) return(err_code);
  1301. 25834   } else {
  1302. 25835         dup_inode(rip);         /* inode will be returned with put_inode */
  1303. 25836   }
  1304. 25837
  1305. 25838   r = search_dir(dirp, file_name, (ino_t *) 0, DELETE);
  1306. 25839
  1307. 25840   if (r == OK) {
  1308. 25841         rip->i_nlinks--;        /* entry deleted from parent's dir */
  1309. 25842         rip->i_update |= CTIME;
  1310. 25843         rip->i_dirt = DIRTY;
  1311. 25844   }
  1312. 25845
  1313. 25846   put_inode(rip);
  1314. 25847   return(r);
  1315. 25848 }
  1316. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1317. src/fs/stadir.c    
  1318. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1319. 25900 /* This file contains the code for performing four system calls relating to
  1320. 25901  * status and directories.
  1321. 25902  *
  1322. 25903  * The entry points into this file are
  1323. 25904  *   do_chdir:  perform the CHDIR system call
  1324. 25905  *   do_chroot: perform the CHROOT system call
  1325. 25906  *   do_stat:   perform the STAT system call
  1326. 25907  *   do_fstat:  perform the FSTAT system call
  1327. 25908  */
  1328. 25909
  1329. 25910 #include "fs.h"
  1330. 25911 #include <sys/stat.h>
  1331. 25912 #include "file.h"
  1332. 25913 #include "fproc.h"
  1333. 25914 #include "inode.h"
  1334. 25915 #include "param.h"
  1335. 25916
  1336. 25917 FORWARD _PROTOTYPE( int change, (struct inode **iip, char *name_ptr, int len));
  1337. 25918 FORWARD _PROTOTYPE( int stat_inode, (struct inode *rip, struct filp *fil_ptr,
  1338. 25919                         char *user_addr)                                );
  1339. 25920
  1340. 25921 /*===========================================================================*
  1341. 25922  *                              do_chdir                                     *
  1342. 25923  *===========================================================================*/
  1343. 25924 PUBLIC int do_chdir()
  1344. 25925 {
  1345. 25926 /* Change directory.  This function is  also called by MM to simulate a chdir
  1346. 25927  * in order to do EXEC, etc.  It also changes the root directory, the uids and
  1347. 25928  * gids, and the umask. 
  1348. 25929  */
  1349. 25930
  1350. 25931   int r;
  1351. 25932   register struct fproc *rfp;
  1352. 25933
  1353. 25934   if (who == MM_PROC_NR) {
  1354. 25935         rfp = &fproc[slot1];
  1355. 25936         put_inode(fp->fp_rootdir);
  1356. 25937         dup_inode(fp->fp_rootdir = rfp->fp_rootdir);
  1357. 25938         put_inode(fp->fp_workdir);
  1358. 25939         dup_inode(fp->fp_workdir = rfp->fp_workdir);
  1359. 25940
  1360. 25941         /* MM uses access() to check permissions.  To make this work, pretend
  1361. 25942          * that the user's real ids are the same as the user's effective ids.
  1362. 25943          * FS calls other than access() do not use the real ids, so are not
  1363. 25944          * affected.
  1364. 25945          */
  1365. 25946         fp->fp_realuid =
  1366. 25947         fp->fp_effuid = rfp->fp_effuid;
  1367. 25948         fp->fp_realgid =
  1368. 25949         fp->fp_effgid = rfp->fp_effgid;
  1369. 25950         fp->fp_umask = rfp->fp_umask;
  1370. 25951         return(OK);
  1371. 25952   }
  1372. 25953
  1373. 25954   /* Perform the chdir(name) system call. */
  1374. 25955   r = change(&fp->fp_workdir, name, name_length);
  1375. 25956   return(r);
  1376. 25957 }
  1377. 25960 /*===========================================================================*
  1378. 25961  *                              do_chroot                                    *
  1379. 25962  *===========================================================================*/
  1380. 25963 PUBLIC int do_chroot()
  1381. 25964 {
  1382. 25965 /* Perform the chroot(name) system call. */
  1383. 25966
  1384. 25967   register int r;
  1385. 25968
  1386. 25969   if (!super_user) return(EPERM);       /* only su may chroot() */
  1387. 25970   r = change(&fp->fp_rootdir, name, name_length);
  1388. 25971   return(r);
  1389. 25972 }
  1390. 25975 /*===========================================================================*
  1391. 25976  *                              change                                       *
  1392. 25977  *===========================================================================*/
  1393. 25978 PRIVATE int change(iip, name_ptr, len)
  1394. 25979 struct inode **iip;             /* pointer to the inode pointer for the dir */
  1395. 25980 char *name_ptr;                 /* pointer to the directory name to change to */
  1396. 25981 int len;                        /* length of the directory name string */
  1397. 25982 {
  1398. 25983 /* Do the actual work for chdir() and chroot(). */
  1399. 25984
  1400. 25985   struct inode *rip;
  1401. 25986   register int r;
  1402. 25987
  1403. 25988   /* Try to open the new directory. */
  1404. 25989   if (fetch_name(name_ptr, len, M3) != OK) return(err_code);
  1405. 25990   if ( (rip = eat_path(user_path)) == NIL_INODE) return(err_code);
  1406. 25991
  1407. 25992   /* It must be a directory and also be searchable. */
  1408. 25993   if ( (rip->i_mode & I_TYPE) != I_DIRECTORY)
  1409. 25994         r = ENOTDIR;
  1410. 25995   else
  1411. 25996         r = forbidden(rip, X_BIT);      /* check if dir is searchable */
  1412. 25997
  1413. 25998   /* If error, return inode. */
  1414. 25999   if (r != OK) {
  1415. 26000         put_inode(rip);
  1416. 26001         return(r);
  1417. 26002   }
  1418. 26003
  1419. 26004   /* Everything is OK.  Make the change. */
  1420. 26005   put_inode(*iip);              /* release the old directory */
  1421. 26006   *iip = rip;                   /* acquire the new one */
  1422. 26007   return(OK);
  1423. 26008 }
  1424. 26011 /*===========================================================================*
  1425. 26012  *                              do_stat                                      *
  1426. 26013  *===========================================================================*/
  1427. 26014 PUBLIC int do_stat()
  1428. 26015 {
  1429. 26016 /* Perform the stat(name, buf) system call. */
  1430. 26017
  1431. 26018   register struct inode *rip;
  1432. 26019   register int r;
  1433. 26020
  1434. 26021   /* Both stat() and fstat() use the same routine to do the real work.  That
  1435. 26022    * routine expects an inode, so acquire it temporarily.
  1436. 26023    */
  1437. 26024   if (fetch_name(name1, name1_length, M1) != OK) return(err_code);
  1438. 26025   if ( (rip = eat_path(user_path)) == NIL_INODE) return(err_code);
  1439. 26026   r = stat_inode(rip, NIL_FILP, name2); /* actually do the work.*/
  1440. 26027   put_inode(rip);               /* release the inode */
  1441. 26028   return(r);
  1442. 26029 }
  1443. 26032 /*===========================================================================*
  1444. 26033  *                              do_fstat                                     *
  1445. 26034  *===========================================================================*/
  1446. 26035 PUBLIC int do_fstat()
  1447. 26036 {
  1448. 26037 /* Perform the fstat(fd, buf) system call. */
  1449. 26038
  1450. 26039   register struct filp *rfilp;
  1451. 26040
  1452. 26041   /* Is the file descriptor valid? */
  1453. 26042   if ( (rfilp = get_filp(fd)) == NIL_FILP) return(err_code);
  1454. 26043
  1455. 26044   return(stat_inode(rfilp->filp_ino, rfilp, buffer));
  1456. 26045 }
  1457. 26048 /*===========================================================================*
  1458. 26049  *                              stat_inode                                   *
  1459. 26050  *===========================================================================*/
  1460. 26051 PRIVATE int stat_inode(rip, fil_ptr, user_addr)
  1461. 26052 register struct inode *rip;     /* pointer to inode to stat */
  1462. 26053 struct filp *fil_ptr;           /* filp pointer, supplied by 'fstat' */
  1463. 26054 char *user_addr;                /* user space address where stat buf goes */
  1464. 26055 {
  1465. 26056 /* Common code for stat and fstat system calls. */
  1466. 26057
  1467. 26058   struct stat statbuf;
  1468. 26059   mode_t mo;
  1469. 26060   int r, s;
  1470. 26061
  1471. 26062   /* Update the atime, ctime, and mtime fields in the inode, if need be. */
  1472. 26063   if (rip->i_update) update_times(rip);
  1473. 26064
  1474. 26065   /* Fill in the statbuf struct. */
  1475. 26066   mo = rip->i_mode & I_TYPE;
  1476. 26067   s = (mo == I_CHAR_SPECIAL || mo == I_BLOCK_SPECIAL);  /* true iff special */
  1477. 26068   statbuf.st_dev = rip->i_dev;
  1478. 26069   statbuf.st_ino = rip->i_num;
  1479. 26070   statbuf.st_mode = rip->i_mode;
  1480. 26071   statbuf.st_nlink = rip->i_nlinks & BYTE;
  1481. 26072   statbuf.st_uid = rip->i_uid;
  1482. 26073   statbuf.st_gid = rip->i_gid & BYTE;
  1483. 26074   statbuf.st_rdev = (dev_t) (s ? rip->i_zone[0] : NO_DEV);
  1484. 26075   statbuf.st_size = rip->i_size;
  1485. 26076
  1486. 26077   if (rip->i_pipe == I_PIPE) {
  1487. 26078         statbuf.st_mode &= ~I_REGULAR;  /* wipe out I_REGULAR bit for pipes */
  1488. 26079         if (fil_ptr != NIL_FILP && fil_ptr->filp_mode & R_BIT) 
  1489. 26080                 statbuf.st_size -= fil_ptr->filp_pos;
  1490. 26081   }
  1491. 26082
  1492. 26083   statbuf.st_atime = rip->i_atime;
  1493. 26084   statbuf.st_mtime = rip->i_mtime;
  1494. 26085   statbuf.st_ctime = rip->i_ctime;
  1495. 26086
  1496. 26087   /* Copy the struct to user space. */
  1497. 26088   r = sys_copy(FS_PROC_NR, D, (phys_bytes) &statbuf,
  1498. 26089                 who, D, (phys_bytes) user_addr, (phys_bytes) sizeof(statbuf));
  1499. 26090   return(r);
  1500. 26091 }
  1501. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1502. src/fs/protect.c    
  1503. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1504. 26100 /* This file deals with protection in the file system.  It contains the code
  1505. 26101  * for four system calls that relate to protection.
  1506. 26102  *
  1507. 26103  * The entry points into this file are
  1508. 26104  *   do_chmod:  perform the CHMOD system call
  1509. 26105  *   do_chown:  perform the CHOWN system call
  1510. 26106  *   do_umask:  perform the UMASK system call
  1511. 26107  *   do_access: perform the ACCESS system call
  1512. 26108  *   forbidden: check to see if a given access is allowed on a given inode
  1513. 26109  */
  1514. 26110
  1515. 26111 #include "fs.h"
  1516. 26112 #include <unistd.h>
  1517. 26113 #include <minix/callnr.h>
  1518. 26114 #include "buf.h"
  1519. 26115 #include "file.h"
  1520. 26116 #include "fproc.h"
  1521. 26117 #include "inode.h"
  1522. 26118 #include "param.h"
  1523. 26119 #include "super.h"
  1524. 26120
  1525. 26121 /*===========================================================================*
  1526. 26122  *                              do_chmod                                     *
  1527. 26123  *===========================================================================*/
  1528. 26124 PUBLIC int do_chmod()
  1529. 26125 {
  1530. 26126 /* Perform the chmod(name, mode) system call. */
  1531. 26127
  1532. 26128   register struct inode *rip;
  1533. 26129   register int r;
  1534. 26130
  1535. 26131   /* Temporarily open the file. */
  1536. 26132   if (fetch_name(name, name_length, M3) != OK) return(err_code);
  1537. 26133   if ( (rip = eat_path(user_path)) == NIL_INODE) return(err_code);
  1538. 26134
  1539. 26135   /* Only the owner or the super_user may change the mode of a file.
  1540. 26136    * No one may change the mode of a file on a read-only file system.
  1541. 26137    */
  1542. 26138   if (rip->i_uid != fp->fp_effuid && !super_user)
  1543. 26139         r = EPERM;
  1544. 26140   else
  1545. 26141         r = read_only(rip);
  1546. 26142
  1547. 26143   /* If error, return inode. */
  1548. 26144   if (r != OK)  {
  1549. 26145         put_inode(rip);
  1550. 26146         return(r);
  1551. 26147   }
  1552. 26148
  1553. 26149   /* Now make the change. Clear setgid bit if file is not in caller's grp */
  1554. 26150   rip->i_mode = (rip->i_mode & ~ALL_MODES) | (mode & ALL_MODES);
  1555. 26151   if (!super_user && rip->i_gid != fp->fp_effgid)rip->i_mode &= ~I_SET_GID_BIT;
  1556. 26152   rip->i_update |= CTIME;
  1557. 26153   rip->i_dirt = DIRTY;
  1558. 26154
  1559. 26155   put_inode(rip);
  1560. 26156   return(OK);
  1561. 26157 }
  1562. 26160 /*===========================================================================*
  1563. 26161  *                              do_chown                                     *
  1564. 26162  *===========================================================================*/
  1565. 26163 PUBLIC int do_chown()
  1566. 26164 {
  1567. 26165 /* Perform the chown(name, owner, group) system call. */
  1568. 26166
  1569. 26167   register struct inode *rip;
  1570. 26168   register int r;
  1571. 26169
  1572. 26170   /* Temporarily open the file. */
  1573. 26171   if (fetch_name(name1, name1_length, M1) != OK) return(err_code);
  1574. 26172   if ( (rip = eat_path(user_path)) == NIL_INODE) return(err_code);
  1575. 26173
  1576. 26174   /* Not permitted to change the owner of a file on a read-only file sys. */
  1577. 26175   r = read_only(rip);
  1578. 26176   if (r == OK) {
  1579. 26177         /* FS is R/W.  Whether call is allowed depends on ownership, etc. */
  1580. 26178         if (super_user) {
  1581. 26179                 /* The super user can do anything. */
  1582. 26180                 rip->i_uid = owner;     /* others later */
  1583. 26181         } else {
  1584. 26182                 /* Regular users can only change groups of their own files. */
  1585. 26183                 if (rip->i_uid != fp->fp_effuid) r = EPERM;
  1586. 26184                 if (rip->i_uid != owner) r = EPERM;     /* no giving away */
  1587. 26185                 if (fp->fp_effgid != group) r = EPERM;
  1588. 26186         }
  1589. 26187   }
  1590. 26188   if (r == OK) {
  1591. 26189         rip->i_gid = group;
  1592. 26190         rip->i_mode &= ~(I_SET_UID_BIT | I_SET_GID_BIT);
  1593. 26191         rip->i_update |= CTIME;
  1594. 26192         rip->i_dirt = DIRTY;
  1595. 26193   }
  1596. 26194
  1597. 26195   put_inode(rip);
  1598. 26196   return(r);
  1599. 26197 }
  1600. 26200 /*===========================================================================*
  1601. 26201  *                              do_umask                                     *
  1602. 26202  *===========================================================================*/
  1603. 26203 PUBLIC int do_umask()
  1604. 26204 {
  1605. 26205 /* Perform the umask(co_mode) system call. */
  1606. 26206   register mode_t r;
  1607. 26207
  1608. 26208   r = ~fp->fp_umask;            /* set 'r' to complement of old mask */
  1609. 26209   fp->fp_umask = ~(co_mode & RWX_MODES);
  1610. 26210   return(r);                    /* return complement of old mask */
  1611. 26211 }
  1612. 26214 /*===========================================================================*
  1613. 26215  *                              do_access                                    *
  1614. 26216  *===========================================================================*/
  1615. 26217 PUBLIC int do_access()
  1616. 26218 {
  1617. 26219 /* Perform the access(name, mode) system call. */
  1618. 26220
  1619. 26221   struct inode *rip;
  1620. 26222   register int r;
  1621. 26223
  1622. 26224   /* First check to see if the mode is correct. */
  1623. 26225   if ( (mode & ~(R_OK | W_OK | X_OK)) != 0 && mode != F_OK)
  1624. 26226         return(EINVAL);
  1625. 26227
  1626. 26228   /* Temporarily open the file whose access is to be checked. */
  1627. 26229   if (fetch_name(name, name_length, M3) != OK) return(err_code);
  1628. 26230   if ( (rip = eat_path(user_path)) == NIL_INODE) return(err_code);
  1629. 26231
  1630. 26232   /* Now check the permissions. */
  1631. 26233   r = forbidden(rip, (mode_t) mode);
  1632. 26234   put_inode(rip);
  1633. 26235   return(r);
  1634. 26236 }
  1635. 26239 /*===========================================================================*
  1636. 26240  *                              forbidden                                    *
  1637. 26241  *===========================================================================*/
  1638. 26242 PUBLIC int forbidden(rip, access_desired)
  1639. 26243 register struct inode *rip;     /* pointer to inode to be checked */
  1640. 26244 mode_t access_desired;  /* RWX bits */
  1641. 26245 {
  1642. 26246 /* Given a pointer to an inode, 'rip', and the access desired, determine
  1643. 26247  * if the access is allowed, and if not why not.  The routine looks up the
  1644. 26248  * caller's uid in the 'fproc' table.  If access is allowed, OK is returned
  1645. 26249  * if it is forbidden, EACCES is returned.
  1646. 26250  */
  1647. 26251
  1648. 26252   register struct inode *old_rip = rip;
  1649. 26253   register struct super_block *sp;
  1650. 26254   register mode_t bits, perm_bits;
  1651. 26255   int r, shift, test_uid, test_gid;
  1652. 26256
  1653. 26257   if (rip->i_mount == I_MOUNT)  /* The inode is mounted on. */
  1654. 26258         for (sp = &super_block[1]; sp < &super_block[NR_SUPERS]; sp++)
  1655. 26259                 if (sp->s_imount == rip) {
  1656. 26260                         rip = get_inode(sp->s_dev, ROOT_INODE);
  1657. 26261                         break;
  1658. 26262                 } /* if */
  1659. 26263
  1660. 26264   /* Isolate the relevant rwx bits from the mode. */
  1661. 26265   bits = rip->i_mode;
  1662. 26266   test_uid = (fs_call == ACCESS ? fp->fp_realuid : fp->fp_effuid);
  1663. 26267   test_gid = (fs_call == ACCESS ? fp->fp_realgid : fp->fp_effgid);
  1664. 26268   if (test_uid == SU_UID) {
  1665. 26269         /* Grant read and write permission.  Grant search permission for
  1666. 26270          * directories.  Grant execute permission (for non-directories) if
  1667. 26271          * and only if one of the 'X' bits is set.
  1668. 26272          */
  1669. 26273         if ( (bits & I_TYPE) == I_DIRECTORY ||
  1670. 26274              bits & ((X_BIT << 6) | (X_BIT << 3) | X_BIT))
  1671. 26275                 perm_bits = R_BIT | W_BIT | X_BIT;
  1672. 26276         else
  1673. 26277                 perm_bits = R_BIT | W_BIT;
  1674. 26278   } else {
  1675. 26279         if (test_uid == rip->i_uid) shift = 6;          /* owner */
  1676. 26280         else if (test_gid == rip->i_gid ) shift = 3;    /* group */
  1677. 26281         else shift = 0;                                 /* other */
  1678. 26282         perm_bits = (bits >> shift) & (R_BIT | W_BIT | X_BIT);
  1679. 26283   }
  1680. 26284
  1681. 26285   /* If access desired is not a subset of what is allowed, it is refused. */
  1682. 26286   r = OK;
  1683. 26287   if ((perm_bits | access_desired) != perm_bits) r = EACCES;
  1684. 26288
  1685. 26289   /* Check to see if someone is trying to write on a file system that is
  1686. 26290    * mounted read-only.
  1687. 26291    */
  1688. 26292   if (r == OK)
  1689. 26293         if (access_desired & W_BIT) r = read_only(rip);
  1690. 26294
  1691. 26295   if (rip != old_rip) put_inode(rip);
  1692. 26296
  1693. 26297   return(r);
  1694. 26298 }
  1695. 26301 /*===========================================================================*
  1696. 26302  *                              read_only                                    *
  1697. 26303  *===========================================================================*/
  1698. 26304 PUBLIC int read_only(ip)
  1699. 26305 struct inode *ip;               /* ptr to inode whose file sys is to be cked */
  1700. 26306 {
  1701. 26307 /* Check to see if the file system on which the inode 'ip' resides is mounted
  1702. 26308  * read only.  If so, return EROFS, else return OK.
  1703. 26309  */
  1704. 26310
  1705. 26311   register struct super_block *sp;
  1706. 26312
  1707. 26313   sp = ip->i_sp;
  1708. 26314   return(sp->s_rd_only ? EROFS : OK);
  1709. 26315 }
  1710. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1711. src/fs/time.c    
  1712. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1713. 26400 /* This file takes care of those system calls that deal with time.
  1714. 26401  *
  1715. 26402  * The entry points into this file are
  1716. 26403  *   do_utime:  perform the UTIME system call
  1717. 26404  *   do_time:   perform the TIME system call
  1718. 26405  *   do_stime:  perform the STIME system call
  1719. 26406  *   do_tims:   perform the TIMES system call
  1720. 26407  */
  1721. 26408
  1722. 26409 #include "fs.h"
  1723. 26410 #include <minix/callnr.h>
  1724. 26411 #include <minix/com.h>
  1725. 26412 #include "file.h"
  1726. 26413 #include "fproc.h"
  1727. 26414 #include "inode.h"
  1728. 26415 #include "param.h"
  1729. 26416
  1730. 26417 PRIVATE message clock_mess;
  1731. 26418
  1732. 26419 /*===========================================================================*
  1733. 26420  *                              do_utime                                     *
  1734. 26421  *===========================================================================*/
  1735. 26422 PUBLIC int do_utime()
  1736. 26423 {
  1737. 26424 /* Perform the utime(name, timep) system call. */
  1738. 26425
  1739. 26426   register struct inode *rip;
  1740. 26427   register int len, r;
  1741. 26428
  1742. 26429   /* Adjust for case of NULL 'timep'. */
  1743. 26430   len = utime_length;
  1744. 26431   if (len == 0) len = m.m2_i2;
  1745. 26432
  1746. 26433   /* Temporarily open the file. */
  1747. 26434   if (fetch_name(utime_file, len, M1) != OK) return(err_code);
  1748. 26435   if ( (rip = eat_path(user_path)) == NIL_INODE) return(err_code);
  1749. 26436
  1750. 26437   /* Only the owner of a file or the super_user can change its time. */
  1751. 26438   r = OK;
  1752. 26439   if (rip->i_uid != fp->fp_effuid && !super_user) r = EPERM;
  1753. 26440   if (utime_length == 0 && r != OK) r = forbidden(rip, W_BIT);
  1754. 26441   if (read_only(rip) != OK) r = EROFS;  /* not even su can touch if R/O */
  1755. 26442   if (r == OK) {
  1756. 26443         if (utime_length == 0) {
  1757. 26444                 rip->i_atime = clock_time();
  1758. 26445                 rip->i_mtime = rip->i_atime;
  1759. 26446         } else {
  1760. 26447                 rip->i_atime = utime_actime;
  1761. 26448                 rip->i_mtime = utime_modtime;
  1762. 26449         }
  1763. 26450         rip->i_update = CTIME;  /* discard any stale ATIME and MTIME flags */
  1764. 26451         rip->i_dirt = DIRTY;
  1765. 26452   }
  1766. 26453
  1767. 26454   put_inode(rip);
  1768. 26455   return(r);
  1769. 26456 }
  1770. 26459 /*===========================================================================*
  1771. 26460  *                              do_time                                      *
  1772. 26461  *===========================================================================*/
  1773. 26462 PUBLIC int do_time()
  1774. 26463
  1775. 26464 {
  1776. 26465 /* Perform the time(tp) system call. */
  1777. 26466
  1778. 26467   reply_l1 = clock_time();      /* return time in seconds */
  1779. 26468   return(OK);
  1780. 26469 }
  1781. 26472 /*===========================================================================*
  1782. 26473  *                              do_stime                                     *
  1783. 26474  *===========================================================================*/
  1784. 26475 PUBLIC int do_stime()
  1785. 26476 {
  1786. 26477 /* Perform the stime(tp) system call. */
  1787. 26478
  1788. 26479   register int k;
  1789. 26480
  1790. 26481   if (!super_user) return(EPERM);
  1791. 26482   clock_mess.m_type = SET_TIME;
  1792. 26483   clock_mess.NEW_TIME = (long) tp;
  1793. 26484   if ( (k = sendrec(CLOCK, &clock_mess)) != OK) panic("do_stime error", k);
  1794. 26485   return(OK);
  1795. 26486 }
  1796. 26489 /*===========================================================================*
  1797. 26490  *                              do_tims                                      *
  1798. 26491  *===========================================================================*/
  1799. 26492 PUBLIC int do_tims()
  1800. 26493 {
  1801. 26494 /* Perform the times(buffer) system call. */
  1802. 26495
  1803. 26496   clock_t t[5];
  1804. 26497
  1805. 26498   sys_times(who, t);
  1806. 26499   reply_t1 = t[0];
  1807. 26500   reply_t2 = t[1];
  1808. 26501   reply_t3 = t[2];
  1809. 26502   reply_t4 = t[3];
  1810. 26503   reply_t5 = t[4];
  1811. 26504   return(OK);
  1812. 26505 }
  1813. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1814. src/fs/misc.c    
  1815. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1816. 26600 /* This file contains a collection of miscellaneous procedures.  Some of them
  1817. 26601  * perform simple system calls.  Some others do a little part of system calls
  1818. 26602  * that are mostly performed by the Memory Manager.
  1819. 26603  *
  1820. 26604  * The entry points into this file are
  1821. 26605  *   do_dup:      perform the DUP system call
  1822. 26606  *   do_fcntl:    perform the FCNTL system call
  1823. 26607  *   do_sync:     perform the SYNC system call
  1824. 26608  *   do_fork:     adjust the tables after MM has performed a FORK system call
  1825. 26609  *   do_exec:     handle files with FD_CLOEXEC on after MM has done an EXEC
  1826. 26610  *   do_exit:     a process has exited; note that in the tables
  1827. 26611  *   do_set:      set uid or gid for some process
  1828. 26612  *   do_revive:   revive a process that was waiting for something (e.g. TTY)
  1829. 26613  */
  1830. 26614
  1831. 26615 #include "fs.h"
  1832. 26616 #include <fcntl.h>
  1833. 26617 #include <unistd.h>     /* cc runs out of memory with unistd.h :-( */
  1834. 26618 #include <minix/callnr.h>
  1835. 26619 #include <minix/com.h>
  1836. 26620 #include <minix/boot.h>
  1837. 26621 #include "buf.h"
  1838. 26622 #include "file.h"
  1839. 26623 #include "fproc.h"
  1840. 26624 #include "inode.h"
  1841. 26625 #include "dev.h"
  1842. 26626 #include "param.h"
  1843. 26627
  1844. 26628
  1845. 26629 /*===========================================================================*
  1846. 26630  *                              do_dup                                       *
  1847. 26631  *===========================================================================*/
  1848. 26632 PUBLIC int do_dup()
  1849. 26633 {
  1850. 26634 /* Perform the dup(fd) or dup2(fd,fd2) system call. These system calls are
  1851. 26635  * obsolete.  In fact, it is not even possible to invoke them using the
  1852. 26636  * current library because the library routines call fcntl().  They are
  1853. 26637  * provided to permit old binary programs to continue to run.
  1854. 26638  */
  1855. 26639
  1856. 26640   register int rfd;
  1857. 26641   register struct filp *f;
  1858. 26642   struct filp *dummy;
  1859. 26643   int r;
  1860. 26644
  1861. 26645   /* Is the file descriptor valid? */
  1862. 26646   rfd = fd & ~DUP_MASK;         /* kill off dup2 bit, if on */
  1863. 26647   if ((f = get_filp(rfd)) == NIL_FILP) return(err_code);
  1864. 26648
  1865. 26649   /* Distinguish between dup and dup2. */
  1866. 26650   if (fd == rfd) {                      /* bit not on */
  1867. 26651         /* dup(fd) */
  1868. 26652         if ( (r = get_fd(0, 0, &fd2, &dummy)) != OK) return(r);
  1869. 26653   } else {
  1870. 26654         /* dup2(fd, fd2) */
  1871. 26655         if (fd2 < 0 || fd2 >= OPEN_MAX) return(EBADF);
  1872. 26656         if (rfd == fd2) return(fd2);    /* ignore the call: dup2(x, x) */
  1873. 26657         fd = fd2;               /* prepare to close fd2 */
  1874. 26658         (void) do_close();      /* cannot fail */
  1875. 26659   }
  1876. 26660
  1877. 26661   /* Success. Set up new file descriptors. */
  1878. 26662   f->filp_count++;
  1879. 26663   fp->fp_filp[fd2] = f;
  1880. 26664   return(fd2);
  1881. 26665 }
  1882. 26667 /*===========================================================================*
  1883. 26668  *                              do_fcntl                                     *
  1884. 26669  *===========================================================================*/
  1885. 26670 PUBLIC int do_fcntl()
  1886. 26671 {
  1887. 26672 /* Perform the fcntl(fd, request, ...) system call. */
  1888. 26673
  1889. 26674   register struct filp *f;
  1890. 26675   int new_fd, r, fl;
  1891. 26676   long cloexec_mask;            /* bit map for the FD_CLOEXEC flag */
  1892. 26677   long clo_value;               /* FD_CLOEXEC flag in proper position */
  1893. 26678   struct filp *dummy;
  1894. 26679
  1895. 26680   /* Is the file descriptor valid? */
  1896. 26681   if ((f = get_filp(fd)) == NIL_FILP) return(err_code);
  1897. 26682
  1898. 26683   switch (request) {
  1899. 26684      case F_DUPFD: 
  1900. 26685         /* This replaces the old dup() system call. */
  1901. 26686         if (addr < 0 || addr >= OPEN_MAX) return(EINVAL);
  1902. 26687         if ((r = get_fd(addr, 0, &new_fd, &dummy)) != OK) return(r);
  1903. 26688         f->filp_count++;
  1904. 26689         fp->fp_filp[new_fd] = f;
  1905. 26690         return(new_fd);
  1906. 26691
  1907. 26692      case F_GETFD: 
  1908. 26693         /* Get close-on-exec flag (FD_CLOEXEC in POSIX Table 6-2). */
  1909. 26694         return( ((fp->fp_cloexec >> fd) & 01) ? FD_CLOEXEC : 0);
  1910. 26695
  1911. 26696      case F_SETFD: 
  1912. 26697         /* Set close-on-exec flag (FD_CLOEXEC in POSIX Table 6-2). */
  1913. 26698         cloexec_mask = 1L << fd;        /* singleton set position ok */
  1914. 26699         clo_value = (addr & FD_CLOEXEC ? cloexec_mask : 0L);
  1915. 26700         fp->fp_cloexec = (fp->fp_cloexec & ~cloexec_mask) | clo_value;
  1916. 26701         return(OK);
  1917. 26702
  1918. 26703      case F_GETFL: 
  1919. 26704         /* Get file status flags (O_NONBLOCK and O_APPEND). */
  1920. 26705         fl = f->filp_flags & (O_NONBLOCK | O_APPEND | O_ACCMODE);
  1921. 26706         return(fl);     
  1922. 26707
  1923. 26708      case F_SETFL: 
  1924. 26709         /* Set file status flags (O_NONBLOCK and O_APPEND). */
  1925. 26710         fl = O_NONBLOCK | O_APPEND;
  1926. 26711         f->filp_flags = (f->filp_flags & ~fl) | (addr & fl);
  1927. 26712         return(OK);
  1928. 26713
  1929. 26714      case F_GETLK:
  1930. 26715      case F_SETLK:
  1931. 26716      case F_SETLKW:
  1932. 26717         /* Set or clear a file lock. */
  1933. 26718         r = lock_op(f, request);
  1934. 26719         return(r);
  1935. 26720
  1936. 26721      default:
  1937. 26722         return(EINVAL);
  1938. 26723   }
  1939. 26724 }
  1940. 26727 /*===========================================================================*
  1941. 26728  *                              do_sync                                      *
  1942. 26729  *===========================================================================*/
  1943. 26730 PUBLIC int do_sync()
  1944. 26731 {
  1945. 26732 /* Perform the sync() system call.  Flush all the tables. */
  1946. 26733
  1947. 26734   register struct inode *rip;
  1948. 26735   register struct buf *bp;
  1949. 26736
  1950. 26737   /* The order in which the various tables are flushed is critical.  The
  1951. 26738    * blocks must be flushed last, since rw_inode() leaves its results in
  1952. 26739    * the block cache.
  1953. 26740    */
  1954. 26741
  1955. 26742   /* Write all the dirty inodes to the disk. */
  1956. 26743   for (rip = &inode[0]; rip < &inode[NR_INODES]; rip++)
  1957. 26744         if (rip->i_count > 0 && rip->i_dirt == DIRTY) rw_inode(rip, WRITING);
  1958. 26745
  1959. 26746   /* Write all the dirty blocks to the disk, one drive at a time. */
  1960. 26747   for (bp = &buf[0]; bp < &buf[NR_BUFS]; bp++)
  1961. 26748         if (bp->b_dev != NO_DEV && bp->b_dirt == DIRTY) flushall(bp->b_dev);
  1962. 26749
  1963. 26750   return(OK);           /* sync() can't fail */
  1964. 26751 }
  1965. 26754 /*===========================================================================*
  1966. 26755  *                              do_fork                                      *
  1967. 26756  *===========================================================================*/
  1968. 26757 PUBLIC int do_fork()
  1969. 26758 {
  1970. 26759 /* Perform those aspects of the fork() system call that relate to files.
  1971. 26760  * In particular, let the child inherit its parent's file descriptors.
  1972. 26761  * The parent and child parameters tell who forked off whom. The file
  1973. 26762  * system uses the same slot numbers as the kernel.  Only MM makes this call.
  1974. 26763  */
  1975. 26764
  1976. 26765   register struct fproc *cp;
  1977. 26766   int i;
  1978. 26767
  1979. 26768   /* Only MM may make this call directly. */
  1980. 26769   if (who != MM_PROC_NR) return(EGENERIC);
  1981. 26770
  1982. 26771   /* Copy the parent's fproc struct to the child. */
  1983. 26772   fproc[child] = fproc[parent];
  1984. 26773
  1985. 26774   /* Increase the counters in the 'filp' table. */
  1986. 26775   cp = &fproc[child];
  1987. 26776   for (i = 0; i < OPEN_MAX; i++)
  1988. 26777         if (cp->fp_filp[i] != NIL_FILP) cp->fp_filp[i]->filp_count++;
  1989. 26778
  1990. 26779   /* Fill in new process id. */
  1991. 26780   cp->fp_pid = pid;
  1992. 26781
  1993. 26782   /* A child is not a process leader. */
  1994. 26783   cp->fp_sesldr = 0;
  1995. 26784
  1996. 26785   /* Record the fact that both root and working dir have another user. */
  1997. 26786   dup_inode(cp->fp_rootdir);
  1998. 26787   dup_inode(cp->fp_workdir);
  1999. 26788   return(OK);
  2000. 26789 }
  2001. 26792 /*===========================================================================*
  2002. 26793  *                              do_exec                                      *
  2003. 26794  *===========================================================================*/
  2004. 26795 PUBLIC int do_exec()
  2005. 26796 {
  2006. 26797 /* Files can be marked with the FD_CLOEXEC bit (in fp->fp_cloexec).  When
  2007. 26798  * MM does an EXEC, it calls FS to allow FS to find these files and close them.
  2008. 26799  */
  2009. 26800
  2010. 26801   register int i;
  2011. 26802   long bitmap;
  2012. 26803
  2013. 26804   /* Only MM may make this call directly. */
  2014. 26805   if (who != MM_PROC_NR) return(EGENERIC);
  2015. 26806
  2016. 26807   /* The array of FD_CLOEXEC bits is in the fp_cloexec bit map. */
  2017. 26808   fp = &fproc[slot1];           /* get_filp() needs 'fp' */
  2018. 26809   bitmap = fp->fp_cloexec;
  2019. 26810   if (bitmap == 0) return(OK);  /* normal case, no FD_CLOEXECs */
  2020. 26811
  2021. 26812   /* Check the file desriptors one by one for presence of FD_CLOEXEC. */
  2022. 26813   for (i = 0; i < OPEN_MAX; i++) {
  2023. 26814         fd = i;
  2024. 26815         if ( (bitmap >> i) & 01) (void) do_close();
  2025. 26816   }
  2026. 26817
  2027. 26818   return(OK);
  2028. 26819 }
  2029. 26822 /*===========================================================================*
  2030. 26823  *                              do_exit                                      *
  2031. 26824  *===========================================================================*/
  2032. 26825 PUBLIC int do_exit()
  2033. 26826 {
  2034. 26827 /* Perform the file system portion of the exit(status) system call. */
  2035. 26828
  2036. 26829   register int i, exitee, task;
  2037. 26830   register struct fproc *rfp;
  2038. 26831   register struct filp *rfilp;
  2039. 26832   register struct inode *rip;
  2040. 26833   int major;
  2041. 26834   dev_t dev;
  2042. 26835   message dev_mess;
  2043. 26836
  2044. 26837   /* Only MM may do the EXIT call directly. */
  2045. 26838   if (who != MM_PROC_NR) return(EGENERIC);
  2046. 26839
  2047. 26840   /* Nevertheless, pretend that the call came from the user. */
  2048. 26841   fp = &fproc[slot1];           /* get_filp() needs 'fp' */
  2049. 26842   exitee = slot1;
  2050. 26843
  2051. 26844   if (fp->fp_suspended == SUSPENDED) {
  2052. 26845         task = -fp->fp_task;
  2053. 26846         if (task == XPIPE || task == XPOPEN) susp_count--;
  2054. 26847         pro = exitee;
  2055. 26848         (void) do_unpause();    /* this always succeeds for MM */
  2056. 26849         fp->fp_suspended = NOT_SUSPENDED;
  2057. 26850   }
  2058. 26851
  2059. 26852   /* Loop on file descriptors, closing any that are open. */
  2060. 26853   for (i = 0; i < OPEN_MAX; i++) {
  2061. 26854         fd = i;
  2062. 26855         (void) do_close();
  2063. 26856   }
  2064. 26857
  2065. 26858   /* Release root and working directories. */
  2066. 26859   put_inode(fp->fp_rootdir);
  2067. 26860   put_inode(fp->fp_workdir);
  2068. 26861   fp->fp_rootdir = NIL_INODE;
  2069. 26862   fp->fp_workdir = NIL_INODE;
  2070. 26863
  2071. 26864   /* If a session leader exits then revoke access to its controlling tty from
  2072. 26865    * all other processes using it.
  2073. 26866    */
  2074. 26867   if (!fp->fp_sesldr) return(OK);               /* not a session leader */
  2075. 26868   fp->fp_sesldr = FALSE;
  2076. 26869   if (fp->fp_tty == 0) return(OK);              /* no controlling tty */
  2077. 26870   dev = fp->fp_tty;
  2078. 26871
  2079. 26872   for (rfp = &fproc[LOW_USER]; rfp < &fproc[NR_PROCS]; rfp++) {
  2080. 26873         if (rfp->fp_tty == dev) rfp->fp_tty = 0;
  2081. 26874
  2082. 26875         for (i = 0; i < OPEN_MAX; i++) {
  2083. 26876                 if ((rfilp = rfp->fp_filp[i]) == NIL_FILP) continue;
  2084. 26877                 if (rfilp->filp_mode == FILP_CLOSED) continue;
  2085. 26878                 rip = rfilp->filp_ino;
  2086. 26879                 if ((rip->i_mode & I_TYPE) != I_CHAR_SPECIAL) continue;
  2087. 26880                 if ((dev_t) rip->i_zone[0] != dev) continue;
  2088. 26881                 dev_mess.m_type = DEV_CLOSE;
  2089. 26882                 dev_mess.DEVICE = dev;
  2090. 26883                 major = (dev >> MAJOR) & BYTE;  /* major device nr */
  2091. 26884                 task = dmap[major].dmap_task;   /* device task nr */
  2092. 26885                 (*dmap[major].dmap_close)(task, &dev_mess);
  2093. 26886                 rfilp->filp_mode = FILP_CLOSED;
  2094. 26887         }
  2095. 26888   }
  2096. 26889   return(OK);
  2097. 26890 }
  2098. 26893 /*===========================================================================*
  2099. 26894  *                              do_set                                       *
  2100. 26895  *===========================================================================*/
  2101. 26896 PUBLIC int do_set()
  2102. 26897 {
  2103. 26898 /* Set uid_t or gid_t field. */
  2104. 26899
  2105. 26900   register struct fproc *tfp;
  2106. 26901
  2107. 26902   /* Only MM may make this call directly. */
  2108. 26903   if (who != MM_PROC_NR) return(EGENERIC);
  2109. 26904
  2110. 26905   tfp = &fproc[slot1];
  2111. 26906   if (fs_call == SETUID) {
  2112. 26907         tfp->fp_realuid = (uid_t) real_user_id;
  2113. 26908         tfp->fp_effuid =  (uid_t) eff_user_id;
  2114. 26909   }
  2115. 26910   if (fs_call == SETGID) {
  2116. 26911         tfp->fp_effgid =  (gid_t) eff_grp_id;
  2117. 26912         tfp->fp_realgid = (gid_t) real_grp_id;
  2118. 26913   }
  2119. 26914   return(OK);
  2120. 26915 }
  2121. 26918 /*===========================================================================*
  2122. 26919  *                              do_revive                                    *
  2123. 26920  *===========================================================================*/
  2124. 26921 PUBLIC int do_revive()
  2125. 26922 {
  2126. 26923 /* A task, typically TTY, has now gotten the characters that were needed for a
  2127. 26924  * previous read.  The process did not get a reply when it made the call.
  2128. 26925  * Instead it was suspended.  Now we can send the reply to wake it up.  This
  2129. 26926  * business has to be done carefully, since the incoming message is from
  2130. 26927  * a task (to which no reply can be sent), and the reply must go to a process
  2131. 26928  * that blocked earlier.  The reply to the caller is inhibited by setting the
  2132. 26929  * 'dont_reply' flag, and the reply to the blocked process is done explicitly
  2133. 26930  * in revive().
  2134. 26931  */
  2135. 26932
  2136. 26933 #if !ALLOW_USER_SEND
  2137. 26934   if (who >= LOW_USER) return(EPERM);
  2138. 26935 #endif
  2139. 26936
  2140. 26937   revive(m.REP_PROC_NR, m.REP_STATUS);
  2141. 26938   dont_reply = TRUE;            /* don't reply to the TTY task */
  2142. 26939   return(OK);
  2143. 26940 }
  2144. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2145. src/fs/device.c    
  2146. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2147. 27000 /* When a needed block is not in the cache, it must be fetched from the disk.
  2148. 27001  * Special character files also require I/O.  The routines for these are here.
  2149. 27002  *
  2150. 27003  * The entry points in this file are:
  2151. 27004  *   dev_io:     perform a read or write on a block or character device
  2152. 27005  *   dev_opcl:   perform generic device-specific processing for open & close
  2153. 27006  *   tty_open:   perform tty-specific processing for open
  2154. 27007  *   ctty_open:  perform controlling-tty-specific processing for open
  2155. 27008  *   ctty_close: perform controlling-tty-specific processing for close
  2156. 27009  *   do_setsid:  perform the SETSID system call (FS side)
  2157. 27010  *   do_ioctl:   perform the IOCTL system call
  2158. 27011  *   call_task:  procedure that actually calls the kernel tasks
  2159. 27012  *   call_ctty:  procedure that actually calls task for /dev/tty
  2160. 27013  */
  2161. 27014
  2162. 27015 #include "fs.h"
  2163. 27016 #include <fcntl.h>
  2164. 27017 #include <minix/callnr.h>
  2165. 27018 #include <minix/com.h>
  2166. 27019 #include "dev.h"
  2167. 27020 #include "file.h"
  2168. 27021 #include "fproc.h"
  2169. 27022 #include "inode.h"
  2170. 27023 #include "param.h"
  2171. 27024
  2172. 27025 PRIVATE message dev_mess;
  2173. 27026 PRIVATE major, minor, task;
  2174. 27027
  2175. 27028 FORWARD _PROTOTYPE( void find_dev, (Dev_t dev)                          );
  2176. 27029
  2177. 27030 /*===========================================================================*
  2178. 27031  *                              dev_io                                       *
  2179. 27032  *===========================================================================*/
  2180. 27033 PUBLIC int dev_io(op, nonblock, dev, pos, bytes, proc, buff)
  2181. 27034 int op;                         /* DEV_READ, DEV_WRITE, DEV_IOCTL, etc. */
  2182. 27035 int nonblock;                   /* TRUE if nonblocking op */
  2183. 27036 dev_t dev;                      /* major-minor device number */
  2184. 27037 off_t pos;                      /* byte position */
  2185. 27038 int bytes;                      /* how many bytes to transfer */
  2186. 27039 int proc;                       /* in whose address space is buff? */
  2187. 27040 char *buff;                     /* virtual address of the buffer */
  2188. 27041 {
  2189. 27042 /* Read or write from a device.  The parameter 'dev' tells which one. */
  2190. 27043
  2191. 27044   find_dev(dev);                /* load the variables major, minor, and task */
  2192. 27045
  2193. 27046   /* Set up the message passed to task. */
  2194. 27047   dev_mess.m_type   = op;
  2195. 27048   dev_mess.DEVICE   = (dev >> MINOR) & BYTE;
  2196. 27049   dev_mess.POSITION = pos;
  2197. 27050   dev_mess.PROC_NR  = proc;
  2198. 27051   dev_mess.ADDRESS  = buff;
  2199. 27052   dev_mess.COUNT    = bytes;
  2200. 27053   dev_mess.TTY_FLAGS = nonblock; /* temporary kludge */
  2201. 27054
  2202. 27055   /* Call the task. */
  2203. 27056   (*dmap[major].dmap_rw)(task, &dev_mess);
  2204. 27057
  2205. 27058   /* Task has completed.  See if call completed. */
  2206. 27059   if (dev_mess.REP_STATUS == SUSPEND) {
  2207. 27060         if (op == DEV_OPEN) task = XPOPEN;
  2208. 27061         suspend(task);          /* suspend user */
  2209. 27062   }
  2210. 27063
  2211. 27064   return(dev_mess.REP_STATUS);
  2212. 27065 }
  2213. 27068 /*===========================================================================*
  2214. 27069  *                              dev_opcl                                     *
  2215. 27070  *===========================================================================*/
  2216. 27071 PUBLIC void dev_opcl(task_nr, mess_ptr)
  2217. 27072 int task_nr;                    /* which task */
  2218. 27073 message *mess_ptr;              /* message pointer */
  2219. 27074 {
  2220. 27075 /* Called from the dmap struct in table.c on opens & closes of special files.*/
  2221. 27076
  2222. 27077   int op;
  2223. 27078
  2224. 27079   op = mess_ptr->m_type;        /* save DEV_OPEN or DEV_CLOSE for later */
  2225. 27080   mess_ptr->DEVICE = (mess_ptr->DEVICE >> MINOR) & BYTE;
  2226. 27081   mess_ptr->PROC_NR = fp - fproc;
  2227. 27082
  2228. 27083   call_task(task_nr, mess_ptr);
  2229. 27084
  2230. 27085   /* Task has completed.  See if call completed. */
  2231. 27086   if (mess_ptr->REP_STATUS == SUSPEND) {
  2232. 27087         if (op == DEV_OPEN) task_nr = XPOPEN;
  2233. 27088         suspend(task_nr);       /* suspend user */
  2234. 27089   }
  2235. 27090 }
  2236. 27092 /*===========================================================================*
  2237. 27093  *                              tty_open                                     *
  2238. 27094  *===========================================================================*/
  2239. 27095 PUBLIC void tty_open(task_nr, mess_ptr)
  2240. 27096 int task_nr;
  2241. 27097 message *mess_ptr;
  2242. 27098 {
  2243. 27099 /* This procedure is called from the dmap struct in table.c on tty opens. */
  2244. 27100   
  2245. 27101   int r;
  2246. 27102   dev_t dev;
  2247. 27103   int flags, proc;
  2248. 27104   register struct fproc *rfp;
  2249. 27105
  2250. 27106   dev = (dev_t) mess_ptr->DEVICE;
  2251. 27107   flags = mess_ptr->COUNT;
  2252. 27108   proc = fp - fproc;
  2253. 27109
  2254. 27110   /* Add O_NOCTTY to the flags if this process is not a session leader, or
  2255. 27111    * if it already has a controlling tty, or if it is someone elses
  2256. 27112    * controlling tty.
  2257. 27113    */
  2258. 27114   if (!fp->fp_sesldr || fp->fp_tty != 0) {
  2259. 27115         flags |= O_NOCTTY;
  2260. 27116   } else {
  2261. 27117         for (rfp = &fproc[LOW_USER]; rfp < &fproc[NR_PROCS]; rfp++) {
  2262. 27118                 if (rfp->fp_tty == dev) flags |= O_NOCTTY;
  2263. 27119         }
  2264. 27120   }
  2265. 27121
  2266. 27122   r = dev_io(DEV_OPEN, mode, dev, (off_t) 0, flags, proc, NIL_PTR);
  2267. 27123
  2268. 27124   if (r == 1) {
  2269. 27125         fp->fp_tty = dev;
  2270. 27126         r = OK;
  2271. 27127   }
  2272. 27128
  2273. 27129   mess_ptr->REP_STATUS = r;
  2274. 27130 }
  2275. 27133 /*===========================================================================*
  2276. 27134  *                              ctty_open                                    *
  2277. 27135  *===========================================================================*/
  2278. 27136 PUBLIC void ctty_open(task_nr, mess_ptr)
  2279. 27137 int task_nr;
  2280. 27138 message *mess_ptr;
  2281. 27139 {
  2282. 27140 /* This procedure is called from the dmap struct in table.c on opening
  2283. 27141  * /dev/tty, the magic device that translates to the controlling tty.
  2284. 27142  */
  2285. 27143   
  2286. 27144   mess_ptr->REP_STATUS = fp->fp_tty == 0 ? ENXIO : OK;
  2287. 27145 }
  2288. 27148 /*===========================================================================*
  2289. 27149  *                              ctty_close                                   *
  2290. 27150  *===========================================================================*/
  2291. 27151 PUBLIC void ctty_close(task_nr, mess_ptr)
  2292. 27152 int task_nr;
  2293. 27153 message *mess_ptr;
  2294. 27154 {
  2295. 27155 /* Close /dev/tty. */
  2296. 27156
  2297. 27157   mess_ptr->REP_STATUS = OK;
  2298. 27158 }
  2299. 27161 /*===========================================================================*
  2300. 27162  *                              do_setsid                                    *
  2301. 27163  *===========================================================================*/
  2302. 27164 PUBLIC int do_setsid()
  2303. 27165 {
  2304. 27166 /* Perform the FS side of the SETSID call, i.e. get rid of the controlling
  2305. 27167  * terminal of a process, and make the process a session leader.
  2306. 27168  */
  2307. 27169   register struct fproc *rfp;
  2308. 27170
  2309. 27171   /* Only MM may do the SETSID call directly. */
  2310. 27172   if (who != MM_PROC_NR) return(ENOSYS);
  2311. 27173
  2312. 27174   /* Make the process a session leader with no controlling tty. */
  2313. 27175   rfp = &fproc[slot1];
  2314. 27176   rfp->fp_sesldr = TRUE;
  2315. 27177   rfp->fp_tty = 0;
  2316. 27178 }
  2317. 27181 /*===========================================================================*
  2318. 27182  *                              do_ioctl                                     *
  2319. 27183  *===========================================================================*/
  2320. 27184 PUBLIC int do_ioctl()
  2321. 27185 {
  2322. 27186 /* Perform the ioctl(ls_fd, request, argx) system call (uses m2 fmt). */
  2323. 27187
  2324. 27188   struct filp *f;
  2325. 27189   register struct inode *rip;
  2326. 27190   dev_t dev;
  2327. 27191
  2328. 27192   if ( (f = get_filp(ls_fd)) == NIL_FILP) return(err_code);
  2329. 27193   rip = f->filp_ino;            /* get inode pointer */
  2330. 27194   if ( (rip->i_mode & I_TYPE) != I_CHAR_SPECIAL
  2331. 27195         && (rip->i_mode & I_TYPE) != I_BLOCK_SPECIAL) return(ENOTTY);
  2332. 27196   dev = (dev_t) rip->i_zone[0];
  2333. 27197   find_dev(dev);
  2334. 27198
  2335. 27199   dev_mess= m;
  2336. 27200
  2337. 27201   dev_mess.m_type  = DEV_IOCTL;
  2338. 27202   dev_mess.PROC_NR = who;
  2339. 27203   dev_mess.TTY_LINE = minor;    
  2340. 27204
  2341. 27205   /* Call the task. */
  2342. 27206   (*dmap[major].dmap_rw)(task, &dev_mess);
  2343. 27207
  2344. 27208   /* Task has completed.  See if call completed. */
  2345. 27209   if (dev_mess.REP_STATUS == SUSPEND) {
  2346. 27210         if (f->filp_flags & O_NONBLOCK) {
  2347. 27211                 /* Not supposed to block. */
  2348. 27212                 dev_mess.m_type = CANCEL;
  2349. 27213                 dev_mess.PROC_NR = who;
  2350. 27214                 dev_mess.TTY_LINE = minor;
  2351. 27215                 (*dmap[major].dmap_rw)(task, &dev_mess);
  2352. 27216                 if (dev_mess.REP_STATUS == EINTR) dev_mess.REP_STATUS = EAGAIN;
  2353. 27217         } else {
  2354. 27218                 suspend(task);          /* User must be suspended. */
  2355. 27219         }
  2356. 27220   }
  2357. 27221   return(dev_mess.REP_STATUS);
  2358. 27222 }
  2359. 27225 /*===========================================================================*
  2360. 27226  *                              find_dev                                     *
  2361. 27227  *===========================================================================*/
  2362. 27228 PRIVATE void find_dev(dev)
  2363. 27229 dev_t dev;                      /* device */
  2364. 27230 {
  2365. 27231 /* Extract the major and minor device number from the parameter. */
  2366. 27232
  2367. 27233   major = (dev >> MAJOR) & BYTE;        /* major device number */
  2368. 27234   minor = (dev >> MINOR) & BYTE;        /* minor device number */
  2369. 27235   if (major >= max_major) {
  2370. 27236         major = minor = 0;              /* will fail with ENODEV */
  2371. 27237   }
  2372. 27238   task = dmap[major].dmap_task; /* which task services the device */
  2373. 27239 }
  2374. 27242 /*===========================================================================*
  2375. 27243  *                              call_task                                    *
  2376. 27244  *===========================================================================*/
  2377. 27245 PUBLIC void call_task(task_nr, mess_ptr)
  2378. 27246 int task_nr;                    /* which task to call */
  2379. 27247 message *mess_ptr;              /* pointer to message for task */
  2380. 27248 {
  2381. 27249 /* All file system I/O ultimately comes down to I/O on major/minor device
  2382. 27250  * pairs.  These lead to calls on the following routines via the dmap table.
  2383. 27251  */
  2384. 27252
  2385. 27253   int r, proc_nr;
  2386. 27254   message local_m;
  2387. 27255
  2388. 27256   proc_nr = mess_ptr->PROC_NR;
  2389. 27257
  2390. 27258   while ((r = sendrec(task_nr, mess_ptr)) == ELOCKED) {
  2391. 27259         /* sendrec() failed to avoid deadlock. The task 'task_nr' is
  2392. 27260          * trying to send a REVIVE message for an earlier request.
  2393. 27261          * Handle it and go try again.
  2394. 27262          */
  2395. 27263         if ((r = receive(task_nr, &local_m)) != OK) break;
  2396. 27264
  2397. 27265         /* If we're trying to send a cancel message to a task which has just
  2398. 27266          * sent a completion reply, ignore the reply and abort the cancel
  2399. 27267          * request. The caller will do the revive for the process. 
  2400. 27268          */
  2401. 27269         if (mess_ptr->m_type == CANCEL && local_m.REP_PROC_NR == proc_nr)
  2402. 27270                 return;
  2403. 27271
  2404. 27272         /* Otherwise it should be a REVIVE. */
  2405. 27273         if (local_m.m_type != REVIVE) {
  2406. 27274                 printf(
  2407. 27275                 "fs: strange device reply from %d, type = %d, proc = %dn",
  2408. 27276                         local_m.m_source,
  2409. 27277                         local_m.m_type, local_m.REP_PROC_NR);
  2410. 27278                 continue;
  2411. 27279         }
  2412. 27280
  2413. 27281         revive(local_m.REP_PROC_NR, local_m.REP_STATUS);
  2414. 27282   }
  2415. 27283
  2416. 27284   /* The message received may be a reply to this call, or a REVIVE for some
  2417. 27285    * other process.
  2418. 27286    */
  2419. 27287   for (;;) {
  2420. 27288         if (r != OK) panic("call_task: can't send/receive", NO_NUM);
  2421. 27289
  2422. 27290         /* Did the process we did the sendrec() for get a result? */
  2423. 27291         if (mess_ptr->REP_PROC_NR == proc_nr) break;
  2424. 27292
  2425. 27293         /* Otherwise it should be a REVIVE. */
  2426. 27294         if (mess_ptr->m_type != REVIVE) {
  2427. 27295                 printf(
  2428. 27296                 "fs: strange device reply from %d, type = %d, proc = %dn",
  2429. 27297                         mess_ptr->m_source,
  2430. 27298                         mess_ptr->m_type, mess_ptr->REP_PROC_NR);
  2431. 27299                 continue;
  2432. 27300         }
  2433. 27301         revive(mess_ptr->REP_PROC_NR, mess_ptr->REP_STATUS);
  2434. 27302
  2435. 27303         r = receive(task_nr, mess_ptr);
  2436. 27304   }
  2437. 27305 }
  2438. 27308 /*===========================================================================*
  2439. 27309  *                              call_ctty                                            *
  2440. 27310  *===========================================================================*/
  2441. 27311 PUBLIC void call_ctty(task_nr, mess_ptr)
  2442. 27312 int task_nr;                    /* not used - for compatibility with dmap_t */
  2443. 27313 message *mess_ptr;              /* pointer to message for task */
  2444. 27314 {
  2445. 27315 /* This routine is only called for one device, namely /dev/tty.  Its job
  2446. 27316  * is to change the message to use the controlling terminal, instead of the
  2447. 27317  * major/minor pair for /dev/tty itself.
  2448. 27318  */
  2449. 27319
  2450. 27320   int major_device;
  2451. 27321  
  2452. 27322   if (fp->fp_tty == 0) {
  2453. 27323         /* No controlling tty present anymore, return an I/O error. */
  2454. 27324         mess_ptr->REP_STATUS = EIO;
  2455. 27325         return;
  2456. 27326   }
  2457. 27327   major_device = (fp->fp_tty >> MAJOR) & BYTE;
  2458. 27328   task_nr = dmap[major_device].dmap_task;       /* task for controlling tty */
  2459. 27329   mess_ptr->DEVICE = (fp->fp_tty >> MINOR) & BYTE;
  2460. 27330   call_task(task_nr, mess_ptr);
  2461. 27331 }
  2462. 27334 /*===========================================================================*
  2463. 27335  *                              no_dev                                       *
  2464. 27336  *===========================================================================*/
  2465. 27337 PUBLIC void no_dev(task_nr, m_ptr)
  2466. 27338 int task_nr;                    /* not used - for compatibility with dmap_t */
  2467. 27339 message *m_ptr;                 /* message pointer */
  2468. 27340 {
  2469. 27341 /* No device there. */
  2470. 27342
  2471. 27343   m_ptr->REP_STATUS = ENODEV;
  2472. 27344 }
  2473. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2474. src/fs/utility.c    
  2475. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2476. 27400 /* This file contains a few general purpose utility routines.
  2477. 27401  *
  2478. 27402  * The entry points into this file are
  2479. 27403  *   clock_time:  ask the clock task for the real time
  2480. 27404  *   copy:        copy a block of data
  2481. 27405  *   fetch_name:  go get a path name from user space
  2482. 27406  *   no_sys:      reject a system call that FS does not handle
  2483. 27407  *   panic:       something awful has occurred;  MINIX cannot continue
  2484. 27408  *   conv2:       do byte swapping on a 16-bit int
  2485. 27409  *   conv4:       do byte swapping on a 32-bit long
  2486. 27410  */
  2487. 27411
  2488. 27412 #include "fs.h"
  2489. 27413 #include <minix/com.h>
  2490. 27414 #include <minix/boot.h>
  2491. 27415 #include <unistd.h>
  2492. 27416 #include "buf.h"
  2493. 27417 #include "file.h"
  2494. 27418 #include "fproc.h"
  2495. 27419 #include "inode.h"
  2496. 27420 #include "param.h"
  2497. 27421
  2498. 27422 PRIVATE int panicking;          /* inhibits recursive panics during sync */
  2499. 27423 PRIVATE message clock_mess;
  2500. 27424
  2501. 27425 /*===========================================================================*
  2502. 27426  *                              clock_time                                   *
  2503. 27427  *===========================================================================*/
  2504. 27428 PUBLIC time_t clock_time()
  2505. 27429 {
  2506. 27430 /* This routine returns the time in seconds since 1.1.1970.  MINIX is an
  2507. 27431  * astrophysically naive system that assumes the earth rotates at a constant
  2508. 27432  * rate and that such things as leap seconds do not exist.
  2509. 27433  */
  2510. 27434
  2511. 27435   register int k;
  2512. 27436
  2513. 27437   clock_mess.m_type = GET_TIME;
  2514. 27438   if ( (k = sendrec(CLOCK, &clock_mess)) != OK) panic("clock_time err", k);
  2515. 27439
  2516. 27440   return( (time_t) clock_mess.NEW_TIME);
  2517. 27441 }
  2518. 27444 /*===========================================================================*
  2519. 27445  *                              fetch_name                                   *
  2520. 27446  *===========================================================================*/
  2521. 27447 PUBLIC int fetch_name(path, len, flag)
  2522. 27448 char *path;                     /* pointer to the path in user space */
  2523. 27449 int len;                        /* path length, including 0 byte */
  2524. 27450 int flag;                       /* M3 means path may be in message */
  2525. 27451 {
  2526. 27452 /* Go get path and put it in 'user_path'.
  2527. 27453  * If 'flag' = M3 and 'len' <= M3_STRING, the path is present in 'message'.
  2528. 27454  * If it is not, go copy it from user space.
  2529. 27455  */
  2530. 27456
  2531. 27457   register char *rpu, *rpm;
  2532. 27458   int r;
  2533. 27459
  2534. 27460   /* Check name length for validity. */
  2535. 27461   if (len <= 0) {
  2536. 27462         err_code = EINVAL;
  2537. 27463         return(EGENERIC);
  2538. 27464   }
  2539. 27465
  2540. 27466   if (len > PATH_MAX) {
  2541. 27467         err_code = ENAMETOOLONG;
  2542. 27468         return(EGENERIC);
  2543. 27469   }
  2544. 27470
  2545. 27471   if (flag == M3 && len <= M3_STRING) {
  2546. 27472         /* Just copy the path from the message to 'user_path'. */
  2547. 27473         rpu = &user_path[0];
  2548. 27474         rpm = pathname;         /* contained in input message */
  2549. 27475         do { *rpu++ = *rpm++; } while (--len);
  2550. 27476         r = OK;
  2551. 27477   } else {
  2552. 27478         /* String is not contained in the message.  Get it from user space. */
  2553. 27479         r = sys_copy(who, D, (phys_bytes) path,
  2554. 27480                 FS_PROC_NR, D, (phys_bytes) user_path, (phys_bytes) len);
  2555. 27481   }
  2556. 27482   return(r);
  2557. 27483 }
  2558. 27486 /*===========================================================================*
  2559. 27487  *                              no_sys                                       *
  2560. 27488  *===========================================================================*/
  2561. 27489 PUBLIC int no_sys()
  2562. 27490 {
  2563. 27491 /* Somebody has used an illegal system call number */
  2564. 27492
  2565. 27493   return(EINVAL);
  2566. 27494 }
  2567. 27497 /*===========================================================================*
  2568. 27498  *                              panic                                        *
  2569. 27499  *===========================================================================*/
  2570. 27500 PUBLIC void panic(format, num)
  2571. 27501 char *format;                   /* format string */
  2572. 27502 int num;                        /* number to go with format string */
  2573. 27503 {
  2574. 27504 /* Something awful has happened.  Panics are caused when an internal
  2575. 27505  * inconsistency is detected, e.g., a programming error or illegal value of a
  2576. 27506  * defined constant.
  2577. 27507  */
  2578. 27508
  2579. 27509   if (panicking) return;        /* do not panic during a sync */
  2580. 27510   panicking = TRUE;             /* prevent another panic during the sync */
  2581. 27511   printf("File system panic: %s ", format);
  2582. 27512   if (num != NO_NUM) printf("%d",num); 
  2583. 27513   printf("n");
  2584. 27514   (void) do_sync();             /* flush everything to the disk */
  2585. 27515   sys_abort(RBT_PANIC);
  2586. 27516 }
  2587. 27519 /*===========================================================================*
  2588. 27520  *                              conv2                                        *
  2589. 27521  *===========================================================================*/
  2590. 27522 PUBLIC unsigned conv2(norm, w)
  2591. 27523 int norm;                       /* TRUE if no swap, FALSE for byte swap */
  2592. 27524 int w;                          /* promotion of 16-bit word to be swapped */
  2593. 27525 {
  2594. 27526 /* Possibly swap a 16-bit word between 8086 and 68000 byte order. */
  2595. 27527
  2596. 27528   if (norm) return( (unsigned) w & 0xFFFF);
  2597. 27529   return( ((w&BYTE) << 8) | ( (w>>8) & BYTE));
  2598. 27530 }
  2599. 27533 /*===========================================================================*
  2600. 27534  *                              conv4                                        *
  2601. 27535  *===========================================================================*/
  2602. 27536 PUBLIC long conv4(norm, x)
  2603. 27537 int norm;                       /* TRUE if no swap, FALSE for byte swap */
  2604. 27538 long x;                         /* 32-bit long to be byte swapped */
  2605. 27539 {
  2606. 27540 /* Possibly swap a 32-bit long between 8086 and 68000 byte order. */
  2607. 27541
  2608. 27542   unsigned lo, hi;
  2609. 27543   long l;
  2610. 27544   
  2611. 27545   if (norm) return(x);                  /* byte order was already ok */
  2612. 27546   lo = conv2(FALSE, (int) x & 0xFFFF);  /* low-order half, byte swapped */
  2613. 27547   hi = conv2(FALSE, (int) (x>>16) & 0xFFFF);    /* high-order half, swapped */
  2614. 27548   l = ( (long) lo <<16) | hi;
  2615. 27549   return(l);
  2616. 27550 }
  2617. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2618. src/fs/putk.c    
  2619. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2620. 27600 /* FS must occasionally print some message.  It uses the standard library
  2621. 27601  * routine prink().  (The name "printf" is really a macro defined as "printk").
  2622. 27602  * Printing is done by calling the TTY task directly, not going through FS.
  2623. 27603  */
  2624. 27604
  2625. 27605 #include "fs.h"
  2626. 27606 #include <minix/com.h>
  2627. 27607
  2628. 27608 #define BUF_SIZE          100   /* print buffer size */
  2629. 27609
  2630. 27610 PRIVATE int buf_count;          /* # characters in the buffer */
  2631. 27611 PRIVATE char print_buf[BUF_SIZE];       /* output is buffered here */
  2632. 27612 PRIVATE message putch_msg;      /* used for message to TTY task */
  2633. 27613
  2634. 27614 FORWARD _PROTOTYPE( void flush, (void)                                  );
  2635. 27615
  2636. 27616 /*===========================================================================*
  2637. 27617  *                              putk                                         *
  2638. 27618  *===========================================================================*/
  2639. 27619 PUBLIC void putk(c)
  2640. 27620 int c;
  2641. 27621 {
  2642. 27622 /* Accumulate another character.  If 0 or buffer full, print it. */
  2643. 27623
  2644. 27624   if (c == 0 || buf_count == BUF_SIZE) flush();
  2645. 27625   if (c == 'n') putk('r');
  2646. 27626   if (c != 0) print_buf[buf_count++] = c;
  2647. 27627 }
  2648. 27630 /*===========================================================================*
  2649. 27631  *                              flush                                        *
  2650. 27632  *===========================================================================*/
  2651. 27633 PRIVATE void flush()
  2652. 27634 {
  2653. 27635 /* Flush the print buffer by calling TTY task. */
  2654. 27636
  2655. 27637
  2656. 27638   if (buf_count == 0) return;
  2657. 27639   putch_msg.m_type = DEV_WRITE;
  2658. 27640   putch_msg.PROC_NR  = 1;
  2659. 27641   putch_msg.TTY_LINE = 0;
  2660. 27642   putch_msg.ADDRESS  = print_buf;
  2661. 27643   putch_msg.COUNT = buf_count;
  2662. 27644   call_task(TTY, &putch_msg);
  2663. 27645   buf_count = 0;
  2664. 27646 }
  2665. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2666. ./end_of_list    
  2667. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++