Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Related Pages  

permstring.c

Go to the documentation of this file.
00001 /* 
00002    Copyright (C) Andrew Tridgell 1996
00003    Copyright (C) Paul Mackerras 1996
00004    Copyright (C) 2001 by Martin Pool <mbp@samba.org>
00005    
00006    This program is free software; you can redistribute it and/or modify
00007    it under the terms of the GNU General Public License as published by
00008    the Free Software Foundation; either version 2 of the License, or
00009    (at your option) any later version.
00010    
00011    This program is distributed in the hope that it will be useful,
00012    but WITHOUT ANY WARRANTY; without even the implied warranty of
00013    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014    GNU General Public License for more details.
00015    
00016    You should have received a copy of the GNU General Public License
00017    along with this program; if not, write to the Free Software
00018    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00019 */
00020 
00021 #include "rsync.h"
00022 
00023 /**
00024  * Produce a string representation of Unix mode bits like that used by
00025  * ls(1).
00026  *
00027  * @param buf buffer of at least 11 characters
00028  **/
00029 void permstring(char *perms,
00030                 int mode)
00031 {
00032         static const char *perm_map = "rwxrwxrwx";
00033         int i;
00034 
00035         strcpy(perms, "----------");
00036         
00037         for (i=0;i<9;i++) {
00038                 if (mode & (1<<i)) perms[9-i] = perm_map[8-i];
00039         }
00040 
00041         /* Handle setuid/sticky bits.  You might think the indices are
00042          * off by one, but remember there's a type char at the
00043          * start.  */
00044         if (mode & S_ISUID)
00045                 perms[3] = (mode & S_IXUSR) ? 's' : 'S';
00046 
00047         if (mode & S_ISGID)
00048                 perms[6] = (mode & S_IXGRP) ? 's' : 'S';
00049         
00050         if (mode & S_ISVTX)
00051                 perms[9] = (mode & S_IXOTH) ? 't' : 'T';
00052                 
00053         if (S_ISLNK(mode)) perms[0] = 'l';
00054         if (S_ISDIR(mode)) perms[0] = 'd';
00055         if (S_ISBLK(mode)) perms[0] = 'b';
00056         if (S_ISCHR(mode)) perms[0] = 'c';
00057         if (S_ISSOCK(mode)) perms[0] = 's';
00058         if (S_ISFIFO(mode)) perms[0] = 'p';
00059 }
00060 
00061         

Generated on Tue Apr 16 12:37:37 2002 for rsync by doxygen1.2.15