X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Fdcc.c;h=2ad451d0b3378f66ade503dbe79bcb70dd011bec;hb=ba96c15acada57f6ee24be266256d606dae53e26;hp=c743290b1b6d9ef097f82cb382ba436f8399d239;hpb=b9e94344acc2e0b5a627ec24ad19a93cead387de;p=exim.git diff --git a/src/src/dcc.c b/src/src/dcc.c index c743290b1..2ad451d0b 100644 --- a/src/src/dcc.c +++ b/src/src/dcc.c @@ -1,10 +1,8 @@ -/* $Cambridge: exim/src/src/dcc.c,v 1.2 2009/06/30 18:25:03 tom Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) Wolfgang Breyha 2005-2008 +/* Copyright (c) Wolfgang Breyha 2005-2009 * Vienna University Computer Center * wbreyha@gmx.net * See the file NOTICE for conditions of use and distribution. @@ -50,23 +48,17 @@ int flushbuffer (int socket, uschar *buffer) int dcc_process(uschar **listptr) { int sep = 0; uschar *list = *listptr; - uschar *user_name; - uschar *body_begin; - uschar user_name_buffer[128]; - unsigned long mbox_size; FILE *data_file; - int dcc_sock; - uschar dcc_buffer[32600]; uschar *dcc_daemon_ip = US""; - int dcc_daemon_port = 6276; - uschar *dcc_request = US"header"; uschar *dcc_default_ip_option = US"127.0.0.1"; uschar *dcc_ip_option = US""; uschar *dcc_helo_option = US"localhost"; uschar *dcc_reject_message = US"Rejected by DCC"; + uschar *xtra_hdrs = NULL; /* from local_scan */ - int i, j, k, c, retval, sockfd, servlen, resp, rcpt_count, portnr, line; + int i, j, k, c, retval, sockfd, resp, line; + unsigned int portnr; struct sockaddr_un serv_addr; struct sockaddr_in serv_addr_in; struct hostent *ipaddress; @@ -81,22 +73,9 @@ int dcc_process(uschar **listptr) { uschar mbox_path[1024]; uschar message_subdir[2]; struct header_line *dcchdr; - struct recipient_item *dcc_rcpt = recipients_list; - int some; uschar *dcc_acl_options; uschar dcc_acl_options_buffer[10]; - - int offset, result; - uschar *p,*q; - int override = 0; - time_t start; - struct sockaddr_un server; -#ifndef NO_POLL_H - struct pollfd pollfd; -#endif - - /* stop compiler warning */ - result = result; + uschar dcc_xtra_hdrs[1024]; /* grep 1st option */ if ((dcc_acl_options = string_nextinlist(&list, &sep, @@ -152,7 +131,7 @@ int dcc_process(uschar **listptr) { if (dccifd_address[0] == '/') Ustrncpy(sockpath, dccifd_address, sizeof(sockpath)); else - if( sscanf(CS dccifd_address, "%s %u", sockip, portnr) != 2) { + if( sscanf(CS dccifd_address, "%s %u", sockip, &portnr) != 2) { log_write(0, LOG_MAIN, "dcc acl condition: warning - invalid dccifd address: '%s'", dccifd_address); (void)fclose(data_file); @@ -172,16 +151,7 @@ int dcc_process(uschar **listptr) { if(!(Ustrcmp(client_ip, ""))){ /* Do we have a sender_host_address or is it NULL? */ if(sender_host_address){ - /* check if it is an ipv6 address */ - if(Ustrchr(sender_host_address, ':')){ - /* This is an IPv6 address - * For the moment we will not use it, but use 127.0.0.1 instead */ - DEBUG(D_acl) - debug_printf("IPv6 address!\n"); - Ustrncpy(client_ip, dcc_default_ip_option, sizeof(client_ip)-1); - } else { - Ustrncpy(client_ip, sender_host_address, sizeof(client_ip)-1); - } + Ustrncpy(client_ip, sender_host_address, sizeof(client_ip)-1); } else { /* sender_host_address is NULL which means it comes from localhost */ Ustrncpy(client_ip, dcc_default_ip_option, sizeof(client_ip)-1); @@ -199,7 +169,6 @@ int dcc_process(uschar **listptr) { /* initialize the other variables */ dcchdr = header_list; - rcpt_count = 0; /* we set the default return value to DEFER */ retval = DEFER; @@ -208,7 +177,11 @@ int dcc_process(uschar **listptr) { bzero(rcpt,sizeof(rcpt)); bzero(from,sizeof(from)); - Ustrncpy(from, sender_address, sizeof(from)); + /* send a null return path as "<>". */ + if (Ustrlen(sender_address) > 0) + Ustrncpy(from, sender_address, sizeof(from)); + else + Ustrncpy(from, "<>", sizeof(from)); Ustrncat(from, "\n", sizeof(from)-Ustrlen(from)-1); /************************************** @@ -244,7 +217,6 @@ int dcc_process(uschar **listptr) { bzero((char *)&serv_addr,sizeof(serv_addr)); serv_addr.sun_family = AF_UNIX; Ustrcpy(serv_addr.sun_path, sockpath); - servlen = Ustrlen(serv_addr.sun_path) + sizeof(serv_addr.sun_family); if ((sockfd = socket(AF_UNIX, SOCK_STREAM,0)) < 0){ DEBUG(D_acl) debug_printf("Creating socket failed: %s\n", strerror(errno)); @@ -254,7 +226,7 @@ int dcc_process(uschar **listptr) { return retval; } /* Now connecting the socket (UNIX) */ - if (connect(sockfd, (struct sockaddr *) &serv_addr, servlen) < 0){ + if (connect(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0){ DEBUG(D_acl) debug_printf("Connecting socket failed: %s\n", strerror(errno)); log_write(0,LOG_REJECT,"Connecting socket failed: %s\n", strerror(errno)); @@ -334,7 +306,7 @@ int dcc_process(uschar **listptr) { Ustrncat(sendbuf, "\n", sizeof(sendbuf)-Ustrlen(sendbuf)-1); flushbuffer(sockfd, sendbuf); DEBUG(D_acl) - debug_printf("\n****************************\n", sendbuf); + debug_printf("\n****************************\n%s", sendbuf); /* Clear the input buffer */ bzero(sendbuf, sizeof(sendbuf)); @@ -380,14 +352,12 @@ int dcc_process(uschar **listptr) { ******************************************************************/ line = 1; /* we start at the first line of the output */ - rcpt_count = 0; /* initializing the recipients counter */ j = 0; /* will be used as index for the recipients list */ k = 0; /* initializing the index of the X-DCC header: xhdr[k] */ - some = 0; /* Let's read from the socket until there's nothing left to read */ bzero(recvbuf, sizeof(recvbuf)); - while(resp = read(sockfd, recvbuf, sizeof(recvbuf)-1) > 0) { + while((resp = read(sockfd, recvbuf, sizeof(recvbuf)-1)) > 0) { /* How much did we get from the socket */ c = Ustrlen(recvbuf) + 1; DEBUG(D_acl) @@ -412,11 +382,13 @@ int dcc_process(uschar **listptr) { DEBUG(D_acl) debug_printf("Overall result = A\treturning OK\n"); Ustrcpy(dcc_return_text, "Mail accepted by DCC"); + dcc_result = US"A"; retval = OK; } else if(recvbuf[i] == 'R') { DEBUG(D_acl) debug_printf("Overall result = R\treturning FAIL\n"); + dcc_result = US"R"; retval = FAIL; if(sender_host_name) { log_write(0, LOG_MAIN, "H=%s [%s] F=<%s>: rejected by DCC", sender_host_name, sender_host_address, sender_address); @@ -430,14 +402,17 @@ int dcc_process(uschar **listptr) { DEBUG(D_acl) debug_printf("Overall result = S\treturning OK\n"); Ustrcpy(dcc_return_text, "Not all recipients accepted by DCC"); - some = 1; + /* Since we're in an ACL we want a global result + * so we accept for all */ + dcc_result = US"A"; retval = OK; } else if(recvbuf[i] == 'G') { DEBUG(D_acl) debug_printf("Overall result = G\treturning FAIL\n"); Ustrcpy(dcc_return_text, "Greylisted by DCC"); - retval = DEFER; + dcc_result = US"G"; + retval = FAIL; } else if(recvbuf[i] == 'T') { DEBUG(D_acl) @@ -445,6 +420,7 @@ int dcc_process(uschar **listptr) { retval = DEFER; log_write(0,LOG_MAIN,"Temporary error with DCC: %s\n", recvbuf); Ustrcpy(dcc_return_text, "Temporary error with DCC"); + dcc_result = US"T"; } else { DEBUG(D_acl) @@ -452,6 +428,7 @@ int dcc_process(uschar **listptr) { retval = DEFER; log_write(0,LOG_MAIN,"Unknown DCC response: %s\n", recvbuf); Ustrcpy(dcc_return_text, "Unknown DCC response"); + dcc_result = US"T"; } } else { @@ -464,41 +441,15 @@ int dcc_process(uschar **listptr) { } else if(line == 2) { /* On the second line we get a list of - * answer for each recipient */ - /* We only need to copy the list of recipients if we - * accept the mail i.e. if retval is LOCAL_SCAN_ACCEPT */ -// I don't care about results "SOME" since we're in the DATA stage. So we've a global result - if(some) { - if(j > recipients_count - 1) { - DEBUG(D_acl) - debug_printf("More recipients returned than sent!\nSent %d recipients, got %d in return.\n", recipients_count, j); - } - else { - if(recvbuf[i] == 'A') { - DEBUG(D_acl) - debug_printf("Accepted recipient: %c - %s\n", recvbuf[i], recipients_list[j].address); -// Ustrcpy(dcc_rcpt[rcpt_count].address, recipients_list[j].address); - rcpt_count++; - } - else { - DEBUG(D_acl) - debug_printf("Rejected recipient: %c - %s\n", recvbuf[i], recipients_list[j].address); - } - j++; - } - } - else { - DEBUG(D_acl) - debug_printf("result was not SOME, so we take the overall result\n"); - } + * answer for each recipient. We don't care about + * it because we're in an acl and so just take the + * global result. */ } else if(line > 2) { /* The third and following lines is the X-DCC header, * so we store it in xhdr. */ /* check if we don't get more than what we can handle */ if(k < sizeof(xhdr)) { /* xhdr has a length of 120 */ -// DEBUG(D_acl) -// debug_printf("Writing X-DCC header: k = %d recvbuf[%d] = %c\n", k, i, recvbuf[i]); xhdr[k] = recvbuf[i]; k++; } @@ -525,34 +476,14 @@ int dcc_process(uschar **listptr) { /* Now let's sum up what we've got. */ DEBUG(D_acl) - debug_printf("\n--------------------------\nOverall result = %d\nNumber of recipients accepted: %d\nX-DCC header: %s\nReturn message: %s\n", retval, rcpt_count, xhdr, dcc_return_text); - - /* If some recipients were rejected, then rcpt_count is - * less than the original recipients_count. - * Then reconstruct the recipients list for those accepted - * recipients only. */ - if((rcpt_count == 0) & (retval == OK)) { /* There should be at least 1 recipient; but who knows... */ - DEBUG(D_acl) - debug_printf("List of accepted recipients is 0!\n"); - retval = FAIL; - } - else { -/* if(rcpt_count < recipients_count) { - recipients_count=0; - for(i=0; i < rcpt_count; i++){ - DEBUG(D_acl) - debug_printf("Adding the new recipient: %s\n", dcc_rcpt[i].address); - receive_add_recipient(dcc_rcpt[i].address, -1); - } */ - retval = OK; - } + debug_printf("\n--------------------------\nOverall result = %d\nX-DCC header: %sReturn message: %s\ndcc_result: %s\n", retval, xhdr, dcc_return_text, dcc_result); /* We only add the X-DCC header if it starts with X-DCC */ if(!(Ustrncmp(xhdr, "X-DCC", 5))){ dcc_header = xhdr; if(dcc_direct_add_header) { header_add(' ' , "%s", xhdr); - /* since the MIME ACL already writes the .eml file to disk without DCC Header we've to earase it */ + /* since the MIME ACL already writes the .eml file to disk without DCC Header we've to erase it */ unspool_mbox(); } } @@ -561,13 +492,26 @@ int dcc_process(uschar **listptr) { debug_printf("Wrong format of the X-DCC header: %s\n", xhdr); } + /* check if we should add additional headers passed in acl_m_dcc_add_header */ + if(dcc_direct_add_header) { + if (((xtra_hdrs = expand_string(US"$acl_m_dcc_add_header")) != NULL) && (xtra_hdrs[0] != '\0')) { + Ustrncpy(dcc_xtra_hdrs, xtra_hdrs, sizeof(dcc_xtra_hdrs) - 2); + if (dcc_xtra_hdrs[Ustrlen(dcc_xtra_hdrs)-1] != '\n') + Ustrcat(dcc_xtra_hdrs, "\n"); + header_add(' ', "%s", dcc_xtra_hdrs); + DEBUG(D_acl) + debug_printf("adding additional headers in $acl_m_dcc_add_header: %s", dcc_xtra_hdrs); + } + } + dcc_ok = 1; /* Now return to exim main process */ DEBUG(D_acl) - debug_printf("Before returning to exim main process:\nreturn_text = %s - retval = %d\n", dcc_return_text, retval); + debug_printf("Before returning to exim main process:\nreturn_text = %s - retval = %d\ndcc_result = %s\n", dcc_return_text, retval, dcc_result); (void)fclose(data_file); - return retval; + dcc_rc = retval; + return dcc_rc; } #endif