[Asterisk-cvs] asterisk Makefile, 1.134, 1.135 asterisk.c, 1.140,
1.141
markster at lists.digium.com
markster at lists.digium.com
Fri Feb 11 15:16:33 CST 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv8252
Modified Files:
Makefile asterisk.c
Log Message:
Flagify hold (bug #3456)
Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk/Makefile,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -d -r1.134 -r1.135
--- Makefile 8 Feb 2005 18:48:01 -0000 1.134
+++ Makefile 11 Feb 2005 21:16:34 -0000 1.135
@@ -494,6 +494,13 @@
echo "astspooldir => $(ASTSPOOLDIR)" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
echo "astrundir => $(ASTVARRUNDIR)" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
echo "astlogdir => $(ASTLOGDIR)" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
+ echo "" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
+ echo "; Changing the following lines may compromise your security." >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
+ echo ";[files]" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
+ echo ";astctlpermissions = 0660" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
+ echo ";astctlowner = root" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
+ echo ";astctlgroup = apache" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
+ echo ";astctl = asterisk.ctl" >> $(DESTDIR)$(ASTETCDIR)/asterisk.conf ; \
else \
echo "Skipping asterisk.conf creation"; \
fi
Index: asterisk.c
===================================================================
RCS file: /usr/cvsroot/asterisk/asterisk.c,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -d -r1.140 -r1.141
--- asterisk.c 9 Feb 2005 21:17:34 -0000 1.140
+++ asterisk.c 11 Feb 2005 21:16:34 -0000 1.141
@@ -385,6 +385,16 @@
struct sockaddr_un sunaddr;
int res;
int x;
+
+ struct ast_config *cfg;
+ char *config = ASTCONFPATH;
+ char *owner;
+ char *group;
+ char *perms;
+ uid_t uid;
+ gid_t gid;
+
+
for (x=0;x<AST_MAX_CONNECTS;x++)
consoles[x].fd = -1;
unlink((char *)ast_config_AST_SOCKET);
@@ -412,6 +422,48 @@
}
ast_register_verbose(network_verboser);
ast_pthread_create(<hread, NULL, listener, NULL);
+
+ /* Load the options for owner, group and permissions from
+ asterisk.conf. if the file doesn't exist (????) just skip
+ this part.
+ */
+ if (option_overrideconfig == 1) {
+ cfg = ast_config_load((char *)ast_config_AST_CONFIG_FILE);
+ } else {
+ cfg = ast_config_load(config);
+ }
+ if (!cfg) return 0;
+
+ gid=-1;
+ uid=-1;
+ group = ast_variable_retrieve(cfg, "files", "astctlgroup");
+ owner = ast_variable_retrieve(cfg, "files", "astctlowner");
+ perms = ast_variable_retrieve(cfg, "files", "astctlpermissions");
+
+ if (owner!=NULL) {
+ struct passwd *pw;
+ if ((pw=getpwnam(owner))==NULL)
+ ast_log(LOG_WARNING, "Unable to find uid of user %s\n", owner);
+ else
+ uid=pw->pw_uid;
+ }
+ if (group!=NULL) {
+ struct group *grp;
+ if ((grp=getgrnam(group))==NULL)
+ ast_log(LOG_WARNING, "Unable to find gid of group %s\n", group);
+ else
+ gid=grp->gr_gid;
+ }
+ if (chown(ast_config_AST_SOCKET,uid,gid)<0)
+ ast_log(LOG_WARNING, "Unable to change ownership of %s: %s\n", ast_config_AST_SOCKET,strerror(errno));
+
+ if (perms!=NULL) {
+ mode_t p;
+ sscanf(perms,"%o",&p);
+ if ((chmod(ast_config_AST_SOCKET,p))<0)
+ ast_log(LOG_WARNING, "Unable to change file permissions of %s: %s\n", ast_config_AST_SOCKET,strerror(errno));
+ }
+
return 0;
}
@@ -1495,6 +1547,7 @@
static void ast_readconfig(void) {
struct ast_config *cfg;
struct ast_variable *v;
+ struct ast_variable *v_ctlfile;
char *config = ASTCONFPATH;
if (option_overrideconfig == 1) {
@@ -1522,6 +1575,14 @@
if (!cfg) {
return;
}
+
+ v_ctlfile = ast_variable_browse(cfg, "files");
+ while (v_ctlfile!=NULL) {
+ if (strcmp(v_ctlfile->name,"astctl")==0)
+ break;
+ v_ctlfile=v_ctlfile->next;
+ }
+
v = ast_variable_browse(cfg, "directories");
while(v) {
if (!strcasecmp(v->name, "astetcdir")) {
@@ -1536,8 +1597,8 @@
} else if (!strcasecmp(v->name, "astagidir")) {
strncpy((char *)ast_config_AST_AGI_DIR,v->value,sizeof(ast_config_AST_AGI_DIR)-1);
} else if (!strcasecmp(v->name, "astrundir")) {
- snprintf((char *)ast_config_AST_PID,sizeof(ast_config_AST_PID),"%s/%s",v->value,"asterisk.pid");
- snprintf((char *)ast_config_AST_SOCKET,sizeof(ast_config_AST_SOCKET),"%s/%s",v->value,"asterisk.ctl");
+ snprintf((char *)ast_config_AST_PID,sizeof(ast_config_AST_PID),"%s/%s",v->value,"asterisk.pid");
+ snprintf((char *)ast_config_AST_SOCKET,sizeof(ast_config_AST_SOCKET),"%s/%s",v->value,v_ctlfile==NULL?"asterisk.ctl":v_ctlfile->value);
strncpy((char *)ast_config_AST_RUN_DIR,v->value,sizeof(ast_config_AST_RUN_DIR)-1);
} else if (!strcasecmp(v->name, "astmoddir")) {
strncpy((char *)ast_config_AST_MODULE_DIR,v->value,sizeof(ast_config_AST_MODULE_DIR)-1);
@@ -1793,7 +1854,7 @@
exit(1);
}
} else if (option_remote || option_exec) {
- ast_log(LOG_ERROR, "Unable to connect to remote asterisk\n");
+ ast_log(LOG_ERROR, "Unable to connect to remote asterisk (does %s exist?)\n",ast_config_AST_SOCKET);
printf(term_quit());
exit(1);
}
More information about the svn-commits
mailing list